repo_name
stringlengths
9
74
language
stringclasses
1 value
length_bytes
int64
11
9.34M
extension
stringclasses
2 values
content
stringlengths
11
9.34M
ekoeppen/MSP430_Generic_Ada_Drivers
Ada
483
ads
with HAL; with Interfaces; use Interfaces; generic with package USART is new HAL.USART (<>); package Drivers.Text_IO is pragma Preelaborate; procedure Put (C : Character); procedure Put (S : String); procedure Put_Line (S : String); procedure Put_Integer (N : Integer; Width : Natural := 0); procedure Put_Hex (N : Unsigned_32; Width : Natural := 0); procedure New_Line; procedure Get_Line (S : out String; Count : out Natural); end Drivers.Text_IO;
sungyeon/drake
Ada
1,911
adb
-- Demonstration of the compiler-defined attribute: 'Scalar_Storage_Order -- The expected output: -- L: 1000000 0100000 1100000 0010000 1010000 0110000 1110000 0001000 -- B: 0000001 0000010 0000011 0000100 0000101 0000110 0000111 0001000 with Ada.Text_IO; with System; procedure bswap is type Unsigned_7 is mod 2 ** 7; type NA is array (1 .. 8) of Unsigned_7; for NA'Component_Size use 7; for NA'Size use 56; type LA is new NA; -- little endian for LA'Scalar_Storage_Order use System.Low_Order_First; type BA is new NA; -- big endian for BA'Scalar_Storage_Order use System.High_Order_First; N_Data : constant NA := (1, 2, 3, 4, 5, 6, 7, 8); L_Data : aliased LA := LA (N_Data); B_Data : aliased BA := BA (N_Data); begin pragma Assert (LA'Size = 56); pragma Assert (BA'Size = 56); for I in NA'Range loop pragma Assert (L_Data (I) = B_Data (I)); null; end loop; declare type Unsigned_1 is mod 2; for Unsigned_1'Size use 1; use Ada.Text_IO; package Unsigned_1_IO is new Modular_IO (Unsigned_1); use Unsigned_1_IO; begin -- dump L_Data declare type LR is array (0 .. NA'Size - 1) of Unsigned_1; for LR'Component_Size use 1; for LR'Size use 56; for LR'Scalar_Storage_Order use System.Low_Order_First; L_Repr : LR; for L_Repr'Address use L_Data'Address; begin Put ("L:"); for I in LR'Range loop if I mod 7 = 0 then Put (' '); end if; Put (L_Repr (I), Width => 1); end loop; New_Line; end; -- dump B_Data declare type BR is array (0 .. NA'Size - 1) of Unsigned_1; for BR'Component_Size use 1; for BR'Size use 56; for BR'Scalar_Storage_Order use System.High_Order_First; B_Repr : BR; for B_Repr'Address use B_Data'Address; begin Put ("B:"); for I in BR'Range loop if I mod 7 = 0 then Put (' '); end if; Put (B_Repr (I), Width => 1); end loop; New_Line; end; end; end bswap;
stcarrez/dynamo
Ada
9,217
adb
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT IMPLEMENTATION COMPONENTS -- -- -- -- A S I S . I M P L E M E N T A T I O N -- -- -- -- Copyright (C) 1995-2007, Free Software Foundation, Inc. -- -- -- -- ASIS-for-GNAT is free software; you can redistribute it and/or modify it -- -- under terms of the GNU General Public License as published by the Free -- -- Software Foundation; either version 2, or (at your option) any later -- -- version. ASIS-for-GNAT is distributed in the hope that it will be use- -- -- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- -- -- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -- -- Public License for more details. You should have received a copy of the -- -- GNU General Public License distributed with ASIS-for-GNAT; see file -- -- COPYING. If not, write to the Free Software Foundation, 51 Franklin -- -- Street, Fifth Floor, Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the -- -- Software Engineering Laboratory of the Swiss Federal Institute of -- -- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the -- -- Scientific Research Computer Center of Moscow State University (SRCC -- -- MSU), Russia, with funding partially provided by grants from the Swiss -- -- National Science Foundation and the Swiss Academy of Engineering -- -- Sciences. ASIS-for-GNAT is now maintained by AdaCore -- -- (http://www.adaccore.com). -- -- -- ------------------------------------------------------------------------------ with Ada.Characters.Handling; use Ada.Characters.Handling; with Ada.Strings; use Ada.Strings; with Ada.Strings.Fixed; use Ada.Strings.Fixed; with Asis.Errors; use Asis.Errors; with Asis.Exceptions; use Asis.Exceptions; with A4G.A_Debug; use A4G.A_Debug; with A4G.A_Opt; use A4G.A_Opt; with A4G.Contt; use A4G.Contt; with A4G.Defaults; with A4G.Vcheck; use A4G.Vcheck; with A4G.A_Osint; use A4G.A_Osint; with Gnatvsn; with Opt; package body Asis.Implementation is Package_Name : constant String := "Asis.Implementation."; ---------------------- -- Asis_Implementor -- ---------------------- function ASIS_Implementor return Wide_String is begin return "AdaCore (http://www.adacore.com)"; end ASIS_Implementor; ---------------------------------- -- ASIS_Implementor_Information -- ---------------------------------- function ASIS_Implementor_Information return Wide_String is begin return "Copyright (C) 1995-" & To_Wide_String (Gnatvsn.Current_Year) & ", Free Software Foundation"; end ASIS_Implementor_Information; ------------------------------ -- ASIS_Implementor_Version -- ------------------------------ function ASIS_Implementor_Version return Wide_String is GNAT_Version : constant String := Gnatvsn.Gnat_Version_String; First_Idx : constant Positive := GNAT_Version'First; Last_Idx : Positive := GNAT_Version'Last; Minus_Detected : Boolean := False; begin for J in reverse GNAT_Version'Range loop if GNAT_Version (J) = '-' then Last_Idx := J - 1; Minus_Detected := True; exit; end if; end loop; if Minus_Detected then return ASIS_Version & " for GNAT " & To_Wide_String (GNAT_Version (First_Idx .. Last_Idx)) & ")"; else return ASIS_Version & " for GNAT " & To_Wide_String (GNAT_Version (First_Idx .. Last_Idx)); end if; end ASIS_Implementor_Version; ------------------ -- ASIS_Version -- ------------------ function ASIS_Version return Wide_String is begin return "ASIS 2.0.R"; end ASIS_Version; --------------- -- Diagnosis -- --------------- function Diagnosis return Wide_String is begin -- The ASIS Diagnosis string uses only the first 256 values of -- Wide_Character type return To_Wide_String (Diagnosis_Buffer (1 .. Diagnosis_Len)); end Diagnosis; -------------- -- Finalize -- -------------- procedure Finalize (Parameters : Wide_String := "") is S_Parameters : constant String := Trim (To_String (Parameters), Both); -- all the valid actuals for Parametes should contain only -- characters from the first 256 values of Wide_Character type begin if not A4G.A_Opt.Is_Initialized then return; end if; if Debug_Flag_C or else Debug_Lib_Model or else Debug_Mode then Print_Context_Info; end if; if S_Parameters'Length > 0 then Process_Finalization_Parameters (S_Parameters); end if; A4G.Contt.Finalize; A4G.A_Opt.Set_Off; A4G.A_Debug.Set_Off; A4G.A_Opt.Is_Initialized := False; exception when ASIS_Failed => A4G.A_Opt.Set_Off; A4G.A_Debug.Set_Off; A4G.A_Opt.Is_Initialized := False; if Status_Indicator = Unhandled_Exception_Error then Add_Call_Information (Outer_Call => Package_Name & "Finalize"); end if; raise; when Ex : others => A4G.A_Opt.Set_Off; A4G.A_Debug.Set_Off; A4G.A_Opt.Is_Initialized := False; Report_ASIS_Bug (Query_Name => Package_Name & "Finalize", Ex => Ex); end Finalize; ---------------- -- Initialize -- ---------------- procedure Initialize (Parameters : Wide_String := "") is S_Parameters : constant String := Trim (To_String (Parameters), Both); -- all the valid actuals for Parametes should contain only -- characters from the first 256 values of Wide_Character type begin if A4G.A_Opt.Is_Initialized then return; end if; if not A4G.A_Opt.Was_Initialized_At_Least_Once then Opt.Maximum_File_Name_Length := Get_Max_File_Name_Length; A4G.A_Opt.Was_Initialized_At_Least_Once := True; end if; if S_Parameters'Length > 0 then Process_Initialization_Parameters (S_Parameters); end if; A4G.Contt.Initialize; A4G.Defaults.Initialize; A4G.A_Opt.Is_Initialized := True; exception when ASIS_Failed => A4G.A_Opt.Set_Off; A4G.A_Debug.Set_Off; A4G.A_Opt.Is_Initialized := False; if Status_Indicator = Unhandled_Exception_Error then Add_Call_Information (Outer_Call => Package_Name & "Initialize"); end if; raise; when Ex : others => A4G.A_Opt.Set_Off; A4G.A_Debug.Set_Off; A4G.A_Opt.Is_Initialized := False; Report_ASIS_Bug (Query_Name => Package_Name & "Initialize", Ex => Ex); end Initialize; ------------------ -- Is_Finalized -- ------------------ function Is_Finalized return Boolean is begin return not A4G.A_Opt.Is_Initialized; end Is_Finalized; -------------------- -- Is_Initialized -- -------------------- function Is_Initialized return Boolean is begin return A4G.A_Opt.Is_Initialized; end Is_Initialized; ---------------- -- Set_Status -- ---------------- procedure Set_Status (Status : Asis.Errors.Error_Kinds := Asis.Errors.Not_An_Error; Diagnosis : Wide_String := "") is begin A4G.Vcheck.Set_Error_Status (Status => Status, Diagnosis => To_String (Diagnosis)); end Set_Status; ------------ -- Status -- ------------ function Status return Asis.Errors.Error_Kinds is begin return Status_Indicator; end Status; end Asis.Implementation;
zrmyers/VulkanAda
Ada
2,254
adb
-------------------------------------------------------------------------------- -- MIT License -- -- Copyright (c) 2021 Zane Myers -- -- Permission is hereby granted, free of charge, to any person obtaining a copy -- of this software and associated documentation files (the "Software"), to deal -- in the Software without restriction, including without limitation the rights -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -- copies of the Software, and to permit persons to whom the Software is -- furnished to do so, subject to the following conditions: -- -- The above copyright notice and this permission notice shall be included in all -- copies or substantial portions of the Software. -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -- SOFTWARE. -------------------------------------------------------------------------------- with Vulkan.Math.Dmat2x2.Test; with Vulkan.Math.Dmat2x3.Test; with Vulkan.Math.Dmat2x4.Test; with Vulkan.Math.Dmat3x2.Test; with Vulkan.Math.Dmat3x3.Test; with Vulkan.Math.Dmat3x4.Test; with Vulkan.Math.Dmat4x2.Test; with Vulkan.Math.Dmat4x3.Test; with Vulkan.Math.Dmat4x4.Test; use Vulkan.Math.Dmat2x2.Test; use Vulkan.Math.Dmat2x3.Test; use Vulkan.Math.Dmat2x4.Test; use Vulkan.Math.Dmat3x2.Test; use Vulkan.Math.Dmat3x3.Test; use Vulkan.Math.Dmat3x4.Test; use Vulkan.Math.Dmat4x2.Test; use Vulkan.Math.Dmat4x3.Test; use Vulkan.Math.Dmat4x4.Test; package body Vulkan.Math.Test_Dmat is -- Test Harness for double precision floating point matrices. procedure Test_Dmat is begin Test_Dmat2x2; Test_Dmat2x3; Test_Dmat2x4; Test_Dmat3x2; Test_Dmat3x3; Test_Dmat3x4; Test_Dmat4x2; Test_Dmat4x3; Test_Dmat4x4; end Test_Dmat; end Vulkan.Math.Test_Dmat;
apple-oss-distributions/old_ncurses
Ada
7,153
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ncurses2.util -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 2000 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Eugene V. Melaragno <[email protected]> 2000 -- Version Control -- $Revision: 1.1.1.1 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Terminal_Interface.Curses; use Terminal_Interface.Curses; with Ada.Text_IO; with Terminal_Interface.Curses; use Terminal_Interface.Curses; pragma Warnings (Off); with Terminal_Interface.Curses.Aux; pragma Warnings (On); with Terminal_Interface.Curses.Trace; use Terminal_Interface.Curses.Trace; with Ada.Text_IO; use Ada.Text_IO; with Interfaces.C; with Interfaces.C.Strings; with Ada.Characters.Handling; with ncurses2.genericPuts; package body ncurses2.util is -- #defines from C -- #define CTRL(x) ((x) & 0x1f) function CTRL (c : Character) return Key_Code is begin return Character'Pos (c) mod 16#20#; -- uses a property of ASCII -- A = 16#41#; a = 16#61#; ^A = 1 or 16#1# end CTRL; function CTRL (c : Character) return Character is begin return Character'Val (Character'Pos (c) mod 16#20#); -- uses a property of ASCII -- A = 16#41#; a = 16#61#; ^A = 1 or 16#1# end CTRL; save_trace : Trace_Attribute_Set; -- Common function to allow ^T to toggle trace-mode in the middle of a test -- so that trace-files can be made smaller. function Getchar (win : Window := Standard_Window) return Key_Code is c : Key_Code; begin -- #ifdef TRACE c := Get_Keystroke (win); while c = CTRL ('T') loop -- if _nc_tracing in C if Current_Trace_Setting /= Trace_Disable then save_trace := Current_Trace_Setting; Trace_Put ("TOGGLE-TRACING OFF"); Current_Trace_Setting := Trace_Disable; else Current_Trace_Setting := save_trace; end if; Trace_On (Current_Trace_Setting); if Current_Trace_Setting /= Trace_Disable then Trace_Put ("TOGGLE-TRACING ON"); end if; end loop; -- #else c := Get_Keystroke; return c; end Getchar; procedure Getchar (win : Window := Standard_Window) is x : Key_Code; begin x := Getchar (win); end Getchar; procedure Pause is begin Move_Cursor (Line => Lines - 1, Column => 0); Add (Str => "Press any key to continue... "); Getchar; end Pause; procedure Cannot (s : String) is use Interfaces.C; use Interfaces.C.Strings; use Terminal_Interface.Curses.Aux; function getenv (x : char_array) return chars_ptr; pragma Import (C, getenv, "getenv"); tmp1 : char_array (0 .. 10); package p is new ncurses2.genericPuts (1024); use p; use p.BS; tmpb : BS.Bounded_String; Length : size_t; begin To_C ("TERM", tmp1, Length); Fill_String (getenv (tmp1), tmpb); Add (Ch => newl); myAdd (Str => "This " & tmpb & " terminal " & s); Pause; end Cannot; procedure ShellOut (message : Boolean) is use Interfaces.C; Txt : char_array (0 .. 10); Length : size_t; procedure system (x : char_array); pragma Import (C, system, "system"); begin To_C ("sh", Txt, Length); if message then Add (Str => "Shelling out..."); end if; Save_Curses_Mode (Mode => Curses); End_Windows; system (Txt); if message then Add (Str => "returned from shellout."); Add (Ch => newl); end if; Refresh; end ShellOut; function Is_Digit (c : Key_Code) return Boolean is begin if c >= 16#100# then return False; else return Ada.Characters.Handling.Is_Digit (Character'Val (c)); end if; end Is_Digit; procedure P (s : String) is begin Add (Str => s); Add (Ch => newl); end P; function Code_To_Char (c : Key_Code) return Character is begin if c > Character'Pos (Character'Last) then return Character'Val (0); -- maybe raise exception? else return Character'Val (c); end if; end Code_To_Char; -- This was untestable due to a bug in GNAT (3.12p) -- Hmm, what bug? I don't remember. function ctoi (c : Character) return Integer is begin return Character'Pos (c) - Character'Pos ('0'); end ctoi; end ncurses2.util;
caqg/linux-home
Ada
1,602
adb
-- Abstract : -- -- See spec. -- -- Copyright (C) 2014, 2017 - 2019 All Rights Reserved. -- -- This program is free software; you can redistribute it and/or -- modify it under terms of the GNU General Public License as -- published by the Free Software Foundation; either version 3, or (at -- your option) any later version. This program is distributed in the -- hope that it will be useful, but WITHOUT ANY WARRANTY; without even -- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -- PURPOSE. See the GNU General Public License for more details. You -- should have received a copy of the GNU General Public License -- distributed with this program; see file COPYING. If not, write to -- the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, -- MA 02110-1335, USA. pragma License (GPL); with Emacs_Wisi_Common_Parse; use Emacs_Wisi_Common_Parse; with WisiToken.Parse.LR.Parser; with WisiToken.Text_IO_Trace; procedure Gen_Emacs_Wisi_LR_Parse is Trace : aliased WisiToken.Text_IO_Trace.Trace (Descriptor'Unrestricted_Access); Parser : WisiToken.Parse.LR.Parser.Parser; Parse_Data : aliased Parse_Data_Type (Parser.Line_Begin_Token'Access); Params : constant Process_Start_Params := Get_Process_Start_Params; begin Create_Parser (Parser, Language_Fixes, Language_Matching_Begin_Tokens, Language_String_ID_Set, Trace'Unrestricted_Access, Parse_Data'Unchecked_Access); Parse_Stream (Name, Language_Protocol_Version, Partial_Parse_Active, Params, Parser, Parse_Data, Descriptor); end Gen_Emacs_Wisi_LR_Parse;
Fabien-Chouteau/samd51-hal
Ada
12,205
ads
with System; use System; with SAM.TC; use SAM.TC; with SAM.SERCOM.USART; use SAM.SERCOM.USART; with SAM.SERCOM.SPI; use SAM.SERCOM.SPI; with SAM.SERCOM.I2C; use SAM.SERCOM.I2C; with SAM.SERCOM; use SAM.SERCOM; with SAM.Port; use SAM.Port; with SAM.ADC; use SAM.ADC; -- Generated by a script from an "avr tools device file" (atdf) package SAM.Device is -- ADC0 -- ADC0_Internal : aliased SAM.ADC.ADC_Internal with Import, Address => System'To_Address (16#43001C00#); ADC0 : aliased SAM.ADC.ADC_Device (ADC0_Internal'Access); -- ADC1 -- ADC1_Internal : aliased SAM.ADC.ADC_Internal with Import, Address => System'To_Address (16#43002000#); ADC1 : aliased SAM.ADC.ADC_Device (ADC1_Internal'Access); -- PORTA -- PORTA_Internal : aliased Port_Internal with Import, Address => System'To_Address (16#41008000# + 16#000#); PORTA : aliased Port_Controller (PORTA_Internal'Access); PA00 : aliased GPIO_Point (PORTA'Access, 0); PA01 : aliased GPIO_Point (PORTA'Access, 1); PA02 : aliased GPIO_Point (PORTA'Access, 2); PA03 : aliased GPIO_Point (PORTA'Access, 3); PA04 : aliased GPIO_Point (PORTA'Access, 4); PA05 : aliased GPIO_Point (PORTA'Access, 5); PA06 : aliased GPIO_Point (PORTA'Access, 6); PA07 : aliased GPIO_Point (PORTA'Access, 7); PA08 : aliased GPIO_Point (PORTA'Access, 8); PA09 : aliased GPIO_Point (PORTA'Access, 9); PA10 : aliased GPIO_Point (PORTA'Access, 10); PA11 : aliased GPIO_Point (PORTA'Access, 11); PA12 : aliased GPIO_Point (PORTA'Access, 12); PA13 : aliased GPIO_Point (PORTA'Access, 13); PA14 : aliased GPIO_Point (PORTA'Access, 14); PA15 : aliased GPIO_Point (PORTA'Access, 15); PA16 : aliased GPIO_Point (PORTA'Access, 16); PA17 : aliased GPIO_Point (PORTA'Access, 17); PA18 : aliased GPIO_Point (PORTA'Access, 18); PA19 : aliased GPIO_Point (PORTA'Access, 19); PA20 : aliased GPIO_Point (PORTA'Access, 20); PA21 : aliased GPIO_Point (PORTA'Access, 21); PA22 : aliased GPIO_Point (PORTA'Access, 22); PA23 : aliased GPIO_Point (PORTA'Access, 23); PA24 : aliased GPIO_Point (PORTA'Access, 24); PA25 : aliased GPIO_Point (PORTA'Access, 25); PA26 : aliased GPIO_Point (PORTA'Access, 26); PA27 : aliased GPIO_Point (PORTA'Access, 27); PA28 : aliased GPIO_Point (PORTA'Access, 28); PA29 : aliased GPIO_Point (PORTA'Access, 29); PA30 : aliased GPIO_Point (PORTA'Access, 30); PA31 : aliased GPIO_Point (PORTA'Access, 31); -- PORTB -- PORTB_Internal : aliased Port_Internal with Import, Address => System'To_Address (16#41008000# + 16#080#); PORTB : aliased Port_Controller (PORTB_Internal'Access); PB00 : aliased GPIO_Point (PORTB'Access, 0); PB01 : aliased GPIO_Point (PORTB'Access, 1); PB02 : aliased GPIO_Point (PORTB'Access, 2); PB03 : aliased GPIO_Point (PORTB'Access, 3); PB04 : aliased GPIO_Point (PORTB'Access, 4); PB05 : aliased GPIO_Point (PORTB'Access, 5); PB06 : aliased GPIO_Point (PORTB'Access, 6); PB07 : aliased GPIO_Point (PORTB'Access, 7); PB08 : aliased GPIO_Point (PORTB'Access, 8); PB09 : aliased GPIO_Point (PORTB'Access, 9); PB10 : aliased GPIO_Point (PORTB'Access, 10); PB11 : aliased GPIO_Point (PORTB'Access, 11); PB12 : aliased GPIO_Point (PORTB'Access, 12); PB13 : aliased GPIO_Point (PORTB'Access, 13); PB14 : aliased GPIO_Point (PORTB'Access, 14); PB15 : aliased GPIO_Point (PORTB'Access, 15); PB16 : aliased GPIO_Point (PORTB'Access, 16); PB17 : aliased GPIO_Point (PORTB'Access, 17); PB18 : aliased GPIO_Point (PORTB'Access, 18); PB19 : aliased GPIO_Point (PORTB'Access, 19); PB20 : aliased GPIO_Point (PORTB'Access, 20); PB21 : aliased GPIO_Point (PORTB'Access, 21); PB22 : aliased GPIO_Point (PORTB'Access, 22); PB23 : aliased GPIO_Point (PORTB'Access, 23); PB24 : aliased GPIO_Point (PORTB'Access, 24); PB25 : aliased GPIO_Point (PORTB'Access, 25); PB26 : aliased GPIO_Point (PORTB'Access, 26); PB27 : aliased GPIO_Point (PORTB'Access, 27); PB28 : aliased GPIO_Point (PORTB'Access, 28); PB29 : aliased GPIO_Point (PORTB'Access, 29); PB30 : aliased GPIO_Point (PORTB'Access, 30); PB31 : aliased GPIO_Point (PORTB'Access, 31); -- PORTC -- PORTC_Internal : aliased Port_Internal with Import, Address => System'To_Address (16#41008000# + 16#100#); PORTC : aliased Port_Controller (PORTC_Internal'Access); PC00 : aliased GPIO_Point (PORTC'Access, 0); PC01 : aliased GPIO_Point (PORTC'Access, 1); PC02 : aliased GPIO_Point (PORTC'Access, 2); PC03 : aliased GPIO_Point (PORTC'Access, 3); PC04 : aliased GPIO_Point (PORTC'Access, 4); PC05 : aliased GPIO_Point (PORTC'Access, 5); PC06 : aliased GPIO_Point (PORTC'Access, 6); PC07 : aliased GPIO_Point (PORTC'Access, 7); PC08 : aliased GPIO_Point (PORTC'Access, 8); PC09 : aliased GPIO_Point (PORTC'Access, 9); PC10 : aliased GPIO_Point (PORTC'Access, 10); PC11 : aliased GPIO_Point (PORTC'Access, 11); PC12 : aliased GPIO_Point (PORTC'Access, 12); PC13 : aliased GPIO_Point (PORTC'Access, 13); PC14 : aliased GPIO_Point (PORTC'Access, 14); PC15 : aliased GPIO_Point (PORTC'Access, 15); PC16 : aliased GPIO_Point (PORTC'Access, 16); PC17 : aliased GPIO_Point (PORTC'Access, 17); PC18 : aliased GPIO_Point (PORTC'Access, 18); PC19 : aliased GPIO_Point (PORTC'Access, 19); PC20 : aliased GPIO_Point (PORTC'Access, 20); PC21 : aliased GPIO_Point (PORTC'Access, 21); PC22 : aliased GPIO_Point (PORTC'Access, 22); PC23 : aliased GPIO_Point (PORTC'Access, 23); PC24 : aliased GPIO_Point (PORTC'Access, 24); PC25 : aliased GPIO_Point (PORTC'Access, 25); PC26 : aliased GPIO_Point (PORTC'Access, 26); PC27 : aliased GPIO_Point (PORTC'Access, 27); PC28 : aliased GPIO_Point (PORTC'Access, 28); PC29 : aliased GPIO_Point (PORTC'Access, 29); PC30 : aliased GPIO_Point (PORTC'Access, 30); PC31 : aliased GPIO_Point (PORTC'Access, 31); -- PORTD -- PORTD_Internal : aliased Port_Internal with Import, Address => System'To_Address (16#41008000# + 16#180#); PORTD : aliased Port_Controller (PORTD_Internal'Access); PD00 : aliased GPIO_Point (PORTD'Access, 0); PD01 : aliased GPIO_Point (PORTD'Access, 1); PD02 : aliased GPIO_Point (PORTD'Access, 2); PD03 : aliased GPIO_Point (PORTD'Access, 3); PD04 : aliased GPIO_Point (PORTD'Access, 4); PD05 : aliased GPIO_Point (PORTD'Access, 5); PD06 : aliased GPIO_Point (PORTD'Access, 6); PD07 : aliased GPIO_Point (PORTD'Access, 7); PD08 : aliased GPIO_Point (PORTD'Access, 8); PD09 : aliased GPIO_Point (PORTD'Access, 9); PD10 : aliased GPIO_Point (PORTD'Access, 10); PD11 : aliased GPIO_Point (PORTD'Access, 11); PD12 : aliased GPIO_Point (PORTD'Access, 12); PD13 : aliased GPIO_Point (PORTD'Access, 13); PD14 : aliased GPIO_Point (PORTD'Access, 14); PD15 : aliased GPIO_Point (PORTD'Access, 15); PD16 : aliased GPIO_Point (PORTD'Access, 16); PD17 : aliased GPIO_Point (PORTD'Access, 17); PD18 : aliased GPIO_Point (PORTD'Access, 18); PD19 : aliased GPIO_Point (PORTD'Access, 19); PD20 : aliased GPIO_Point (PORTD'Access, 20); PD21 : aliased GPIO_Point (PORTD'Access, 21); PD22 : aliased GPIO_Point (PORTD'Access, 22); PD23 : aliased GPIO_Point (PORTD'Access, 23); PD24 : aliased GPIO_Point (PORTD'Access, 24); PD25 : aliased GPIO_Point (PORTD'Access, 25); PD26 : aliased GPIO_Point (PORTD'Access, 26); PD27 : aliased GPIO_Point (PORTD'Access, 27); PD28 : aliased GPIO_Point (PORTD'Access, 28); PD29 : aliased GPIO_Point (PORTD'Access, 29); PD30 : aliased GPIO_Point (PORTD'Access, 30); PD31 : aliased GPIO_Point (PORTD'Access, 31); -- SERCOM0 -- SERCOM0_Internal : aliased SAM.SERCOM.SERCOM_Internal with Import, Address => System'To_Address (16#40003000#); SPI0 : aliased SAM.SERCOM.SPI.SPI_Device (SERCOM0_Internal'Access); I2C0 : aliased SAM.SERCOM.I2C.I2C_Device (SERCOM0_Internal'Access); USART0 : aliased SAM.SERCOM.USART.USART_Device (SERCOM0_Internal'Access); -- SERCOM1 -- SERCOM1_Internal : aliased SAM.SERCOM.SERCOM_Internal with Import, Address => System'To_Address (16#40003400#); SPI1 : aliased SAM.SERCOM.SPI.SPI_Device (SERCOM1_Internal'Access); I2C1 : aliased SAM.SERCOM.I2C.I2C_Device (SERCOM1_Internal'Access); USART1 : aliased SAM.SERCOM.USART.USART_Device (SERCOM1_Internal'Access); -- SERCOM2 -- SERCOM2_Internal : aliased SAM.SERCOM.SERCOM_Internal with Import, Address => System'To_Address (16#41012000#); SPI2 : aliased SAM.SERCOM.SPI.SPI_Device (SERCOM2_Internal'Access); I2C2 : aliased SAM.SERCOM.I2C.I2C_Device (SERCOM2_Internal'Access); USART2 : aliased SAM.SERCOM.USART.USART_Device (SERCOM2_Internal'Access); -- SERCOM3 -- SERCOM3_Internal : aliased SAM.SERCOM.SERCOM_Internal with Import, Address => System'To_Address (16#41014000#); SPI3 : aliased SAM.SERCOM.SPI.SPI_Device (SERCOM3_Internal'Access); I2C3 : aliased SAM.SERCOM.I2C.I2C_Device (SERCOM3_Internal'Access); USART3 : aliased SAM.SERCOM.USART.USART_Device (SERCOM3_Internal'Access); -- SERCOM4 -- SERCOM4_Internal : aliased SAM.SERCOM.SERCOM_Internal with Import, Address => System'To_Address (16#43000000#); SPI4 : aliased SAM.SERCOM.SPI.SPI_Device (SERCOM4_Internal'Access); I2C4 : aliased SAM.SERCOM.I2C.I2C_Device (SERCOM4_Internal'Access); USART4 : aliased SAM.SERCOM.USART.USART_Device (SERCOM4_Internal'Access); -- SERCOM5 -- SERCOM5_Internal : aliased SAM.SERCOM.SERCOM_Internal with Import, Address => System'To_Address (16#43000400#); SPI5 : aliased SAM.SERCOM.SPI.SPI_Device (SERCOM5_Internal'Access); I2C5 : aliased SAM.SERCOM.I2C.I2C_Device (SERCOM5_Internal'Access); USART5 : aliased SAM.SERCOM.USART.USART_Device (SERCOM5_Internal'Access); -- SERCOM6 -- SERCOM6_Internal : aliased SAM.SERCOM.SERCOM_Internal with Import, Address => System'To_Address (16#43000800#); SPI6 : aliased SAM.SERCOM.SPI.SPI_Device (SERCOM6_Internal'Access); I2C6 : aliased SAM.SERCOM.I2C.I2C_Device (SERCOM6_Internal'Access); USART6 : aliased SAM.SERCOM.USART.USART_Device (SERCOM6_Internal'Access); -- SERCOM7 -- SERCOM7_Internal : aliased SAM.SERCOM.SERCOM_Internal with Import, Address => System'To_Address (16#43000C00#); SPI7 : aliased SAM.SERCOM.SPI.SPI_Device (SERCOM7_Internal'Access); I2C7 : aliased SAM.SERCOM.I2C.I2C_Device (SERCOM7_Internal'Access); USART7 : aliased SAM.SERCOM.USART.USART_Device (SERCOM7_Internal'Access); -- TC0 -- TC0_Internal : aliased SAM.TC.TC_Internal with Import, Address => System'To_Address (16#40003800#); TC0 : aliased SAM.TC.TC_Device (TC0_Internal'Access, Master => True); -- TC1 -- TC1_Internal : aliased SAM.TC.TC_Internal with Import, Address => System'To_Address (16#40003C00#); TC1 : aliased SAM.TC.TC_Device (TC1_Internal'Access, Master => False); -- TC2 -- TC2_Internal : aliased SAM.TC.TC_Internal with Import, Address => System'To_Address (16#4101A000#); TC2 : aliased SAM.TC.TC_Device (TC2_Internal'Access, Master => True); -- TC3 -- TC3_Internal : aliased SAM.TC.TC_Internal with Import, Address => System'To_Address (16#4101C000#); TC3 : aliased SAM.TC.TC_Device (TC3_Internal'Access, Master => False); -- TC4 -- TC4_Internal : aliased SAM.TC.TC_Internal with Import, Address => System'To_Address (16#42001400#); TC4 : aliased SAM.TC.TC_Device (TC4_Internal'Access, Master => True); -- TC5 -- TC5_Internal : aliased SAM.TC.TC_Internal with Import, Address => System'To_Address (16#42001800#); TC5 : aliased SAM.TC.TC_Device (TC5_Internal'Access, Master => False); -- TC6 -- TC6_Internal : aliased SAM.TC.TC_Internal with Import, Address => System'To_Address (16#43001400#); TC6 : aliased SAM.TC.TC_Device (TC6_Internal'Access, Master => True); -- TC7 -- TC7_Internal : aliased SAM.TC.TC_Internal with Import, Address => System'To_Address (16#43001800#); TC7 : aliased SAM.TC.TC_Device (TC7_Internal'Access, Master => False); end SAM.Device;
reznikmm/matreshka
Ada
4,665
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Office.Process_Content_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Office_Process_Content_Attribute_Node is begin return Self : Office_Process_Content_Attribute_Node do Matreshka.ODF_Office.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Office_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Office_Process_Content_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Process_Content_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Office_URI, Matreshka.ODF_String_Constants.Process_Content_Attribute, Office_Process_Content_Attribute_Node'Tag); end Matreshka.ODF_Office.Process_Content_Attributes;
reznikmm/matreshka
Ada
3,677
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Asis; with Engines.Contexts; with League.Strings; package Properties.Statements.For_Loop_Statement is function Code (Engine : access Engines.Contexts.Context; Element : Asis.Expression; Name : Engines.Text_Property) return League.Strings.Universal_String; end Properties.Statements.For_Loop_Statement;
stcarrez/ada-ado
Ada
906
ads
----------------------------------------------------------------------- -- regtests-statements -- Tests model -- Copyright (C) 2015 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package Regtests.Statements is end Regtests.Statements;
reznikmm/matreshka
Ada
5,188
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2010-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ package AMF.Internals.Tables.Standard_Profile_L3_Metamodel is pragma Preelaborate; function MM_Standard_Profile_L3_Standard_Profile_L3 return AMF.Internals.CMOF_Element; function MC_Standard_Profile_L3_Build_Component return AMF.Internals.CMOF_Element; function MC_Standard_Profile_L3_Metamodel return AMF.Internals.CMOF_Element; function MC_Standard_Profile_L3_System_Model return AMF.Internals.CMOF_Element; function MP_Standard_Profile_L3_Build_Component_Base_Component_A_Extension_Build_Component return AMF.Internals.CMOF_Element; function MP_Standard_Profile_L3_Metamodel_Base_Model_A_Extension_Metamodel return AMF.Internals.CMOF_Element; function MP_Standard_Profile_L3_System_Model_Base_Model_A_Extension_System_Model return AMF.Internals.CMOF_Element; function MP_Standard_Profile_L3_A_Extension_System_Model_System_Model_Base_Model return AMF.Internals.CMOF_Element; function MP_Standard_Profile_L3_A_Extension_Build_Component_Build_Component_Base_Component return AMF.Internals.CMOF_Element; function MP_Standard_Profile_L3_A_Extension_Metamodel_Metamodel_Base_Model return AMF.Internals.CMOF_Element; function MA_Standard_Profile_L3_A_Extension_System_Model_Base_Model return AMF.Internals.CMOF_Element; function MA_Standard_Profile_L3_A_Extension_Build_Component_Base_Component return AMF.Internals.CMOF_Element; function MA_Standard_Profile_L3_A_Extension_Metamodel_Base_Model return AMF.Internals.CMOF_Element; function MB_Standard_Profile_L3 return AMF.Internals.AMF_Element; function ML_Standard_Profile_L3 return AMF.Internals.AMF_Element; private Base : AMF.Internals.CMOF_Element := 0; end AMF.Internals.Tables.Standard_Profile_L3_Metamodel;
sf17k/sdlada
Ada
4,431
ads
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2014 Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- -- SDL.Inputs.Joysticks -------------------------------------------------------------------------------------------------------------------- with Ada.Finalization; private with SDL.C_Pointers; with SDL.Events.Joysticks; package SDL.Inputs.Joysticks is Joystick_Error : exception; -- Use to determine whether there are no joysticks. type All_Devices is range 0 .. 2 ** 31 - 1 with Convention => C, Size => 32; -- This range is the range of all connected joysticks. subtype Devices is All_Devices range All_Devices'First + 1 .. All_Devices'Last; -- SDL_Joystick_ID = instance ID. type Instances is range 0 .. 2 ** 31 - 1 with Convention => C, Size => 32; type GUID_Element is range 0 .. 255 with convention => C, Size => 8; type GUID_Array is array (1 .. 16) of aliased GUID_Element with Convention => C; -- Pack => True; type GUIDs is record Data : GUID_Array; end record with Convention => C_Pass_By_Copy; -- Device specific information. function Total return All_Devices; function Name (Device : in Devices) return String; function GUID (Device : in Devices) return GUIDs; -- GUID utilities. function Image (GUID : in GUIDs) return String; function Value (GUID : in String) return GUIDs; -- Joysticks. type Joystick is new Ada.Finalization.Limited_Controlled with private; Null_Joystick : constant Joystick; function "=" (Left, Right : in Joystick) return Boolean with Inline => True; procedure Close (Self : in out Joystick); -- Information. function Axes (Self : in Joystick) return SDL.Events.Joysticks.Axes; function Balls (Self : in Joystick) return SDL.Events.Joysticks.Balls; function Buttons (Self : in Joystick) return SDL.Events.Joysticks.Buttons; function Hats (Self : in Joystick) return SDL.Events.Joysticks.Hats; function Name (Self : in Joystick) return String; function Is_Haptic (Self : in Joystick) return Boolean; function Is_Attached (Self : in Joystick) return Boolean; function GUID (Self : in Joystick) return GUIDs; function Instance (Self : in Joystick) return Instances; -- Data. function Axis_Value (Self : in Joystick; Axis : in SDL.Events.Joysticks.Axes) return SDL.Events.Joysticks.Axes_Values; procedure Ball_Value (Self : in Joystick; Ball : in SDL.Events.Joysticks.Balls; Delta_X, Delta_Y : out SDL.Events.Joysticks.Ball_Values); function Hat_Value (Self : in Joystick; Hat : in SDL.Events.Joysticks.Hats) return SDL.Events.Joysticks.Hat_Positions; function Is_Button_Pressed (Self : in Joystick; Button : in SDL.Events.Joysticks.Buttons) return SDL.Events.Button_State; private type Joystick is new Ada.Finalization.Limited_Controlled with record Internal : SDL.C_Pointers.Joystick_Pointer := null; Owns : Boolean := True; end record; Null_Joystick : constant Joystick := (Ada.Finalization.Limited_Controlled with Internal => null, Owns => True); end SDL.Inputs.Joysticks;
ficorax/PortAudioAda
Ada
2,707
adb
with Ada.Float_Text_IO; use Ada.Float_Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; with Ada.Text_IO; use Ada.Text_IO; with Ada.Numerics.Elementary_Functions; use Ada.Numerics.Elementary_Functions; with System; with PortAudioAda; use PortAudioAda; with PaEx_Sine_Types; use PaEx_Sine_Types; with PaEx_Sine_Callbacks; use PaEx_Sine_Callbacks; procedure PaEx_Sine is stream : aliased Pa_Stream_Ptr; err : PA_Error; begin Put ("PortAudio Test: output sine wave. SR = "); Put (Sample_Rate, 0, 0, 0); Put (", BufSize = "); Put (Frames_Per_Buffer, 0); New_Line; Put_Line (PA_Get_Version); ----------------------------------------------------------------------------- -- initialize sinusoidal wavetable for i in 1 .. Table_Size loop data.sine (i) := Sin (Float (i) / Float (Table_Size) * Ada.Numerics.Pi * 2.0); end loop; data.left_phase := 1; data.right_phase := 1; err := PA_Initialize; if err /= paNoError then raise PortAudio_Exception; end if; outputParameters.device := PA_Get_Default_Output_Device; if outputParameters.device = paNoDevice then raise PortAudio_Exception; end if; outputParameters.channelCount := 2; outputParameters.sampleFormat := paFloat32; outputParameters.suggestedLatency := PA_Get_Device_Info (outputParameters.device).defaultLowOutputLatency; outputParameters.hostApiSpecificStreamInfo := System.Null_Address; err := PA_Open_Stream (stream'Access, null, outputParameters'Access, Sample_Rate, Frames_Per_Buffer, paClipOff, paTestCallback'Access, data'Address); if err /= paNoError then raise PortAudio_Exception; end if; data.message := "No Message "; err := PA_Set_Stream_Finished_Callback (stream, StreamFinished'Access); if err /= paNoError then raise PortAudio_Exception; end if; err := PA_Start_Stream (stream); if err /= paNoError then raise PortAudio_Exception; end if; delay Num_Seconds; err := PA_Stop_Stream (stream); if err /= paNoError then raise PortAudio_Exception; end if; err := PA_Close_Stream (stream); if err /= paNoError then raise PortAudio_Exception; end if; err := PA_Terminate; Put_Line ("Test finished."); ----------------------------------------------------------------------------- return; exception when PortAudio_Exception => err := PA_Terminate; Put_Line ("Error occured while using the PortAudio stream"); Put_Line ("Error code: " & PA_Error'Image (err)); Put_Line ("Error message: " & PA_Get_Error_Text (err)); end PaEx_Sine;
AdaCore/training_material
Ada
67
adb
with Tasks; use Tasks; procedure Main is begin null; end Main;
stcarrez/ada-asf
Ada
11,502
adb
----------------------------------------------------------------------- -- facebook - Use Facebook Graph API -- Copyright (C) 2012, 2013, 2014 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Log.Loggers; with Util.Serialize.Mappers.Record_Mapper; with ASF.Sessions; with ASF.Contexts.Faces; with ASF.Events.Faces.Actions; package body Facebook is Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Facebook"); type Friend_Field_Type is (FIELD_NAME, FIELD_ID); type Feed_Field_Type is (FIELD_ID, FIELD_NAME, FIELD_FROM, FIELD_MESSAGE, FIELD_PICTURE, FIELD_LINK, FIELD_DESCRIPTION, FIELD_ICON); procedure Set_Member (Into : in out Friend_Info; Field : in Friend_Field_Type; Value : in Util.Beans.Objects.Object); procedure Set_Member (Into : in out Feed_Info; Field : in Feed_Field_Type; Value : in Util.Beans.Objects.Object); procedure Set_Member (Into : in out Friend_Info; Field : in Friend_Field_Type; Value : in Util.Beans.Objects.Object) is begin case Field is when FIELD_ID => Into.Id := Value; when FIELD_NAME => Into.Name := Value; end case; end Set_Member; procedure Set_Member (Into : in out Feed_Info; Field : in Feed_Field_Type; Value : in Util.Beans.Objects.Object) is begin Log.Info ("Set field {0} to {1}", Feed_Field_Type'Image (Field), Util.Beans.Objects.To_String (Value)); case Field is when FIELD_ID => Into.Id := Value; when FIELD_NAME => Into.Name := Value; when FIELD_FROM => Into.From := Value; when FIELD_MESSAGE => Into.Message := Value; when FIELD_LINK => Into.Link := Value; when FIELD_PICTURE => Into.Picture := Value; when FIELD_ICON => Into.Icon := Value; when FIELD_DESCRIPTION => Into.Description := Value; end case; end Set_Member; package Friend_Mapper is new Util.Serialize.Mappers.Record_Mapper (Element_Type => Friend_Info, Element_Type_Access => Friend_Info_Access, Fields => Friend_Field_Type, Set_Member => Set_Member); package Feed_Mapper is new Util.Serialize.Mappers.Record_Mapper (Element_Type => Feed_Info, Element_Type_Access => Feed_Info_Access, Fields => Feed_Field_Type, Set_Member => Set_Member); Friend_Map : aliased Friend_Mapper.Mapper; Feed_Map : aliased Feed_Mapper.Mapper; -- ------------------------------ -- Get the access token from the user session. -- ------------------------------ function Get_Access_Token return String is use type ASF.Contexts.Faces.Faces_Context_Access; Context : constant ASF.Contexts.Faces.Faces_Context_Access := ASF.Contexts.Faces.Current; begin if Context = null then return ""; end if; declare S : constant ASF.Sessions.Session := Context.Get_Session; begin if not S.Is_Valid then return ""; end if; declare Token : constant Util.Beans.Objects.Object := S.Get_Attribute ("access_token"); begin if Util.Beans.Objects.Is_Null (Token) then return ""; else return Util.Beans.Objects.To_String (Token); end if; end; end; end Get_Access_Token; -- ------------------------------ -- Get the value identified by the name. -- If the name cannot be found, the method should return the Null object. -- ------------------------------ overriding function Get_Value (From : in Friend_Info; Name : in String) return Util.Beans.Objects.Object is begin if Name = "name" then return From.Name; elsif Name = "id" then return From.Id; else return Util.Beans.Objects.Null_Object; end if; end Get_Value; -- ------------------------------ -- Get the value identified by the name. -- If the name cannot be found, the method should return the Null object. -- ------------------------------ overriding function Get_Value (From : in Feed_Info; Name : in String) return Util.Beans.Objects.Object is begin if Name = "id" then return From.Id; elsif Name = "name" then return From.Name; elsif Name = "from" then return From.From; elsif Name = "message" then return From.Message; elsif Name = "picture" then return From.Picture; elsif Name = "link" then return From.Link; elsif Name = "description" then return From.Description; elsif Name = "icon" then return From.Icon; else return Util.Beans.Objects.Null_Object; end if; end Get_Value; -- ------------------------------ -- Get the value identified by the name. -- If the name cannot be found, the method should return the Null object. -- ------------------------------ overriding function Get_Value (From : in Friend_List_Bean; Name : in String) return Util.Beans.Objects.Object is begin if Name = "hasAccessToken" then return Util.Beans.Objects.To_Object (False); end if; return Friend_List.List_Bean (From).Get_Value (Name); end Get_Value; -- ------------------------------ -- Create a Friend_List bean instance. -- ------------------------------ function Create_Friends_Bean return Util.Beans.Basic.Readonly_Bean_Access is List : constant Friend_List_Bean_Access := new Friend_List_Bean; begin return List.all'Access; end Create_Friends_Bean; -- ------------------------------ -- Build and return a Facebook feed list. -- ------------------------------ function Create_Feed_List_Bean return Util.Beans.Basic.Readonly_Bean_Access is List : constant Feed_List.List_Bean_Access := new Feed_List.List_Bean; begin return List.all'Access; end Create_Feed_List_Bean; -- ------------------------------ -- Get the user information identified by the given name. -- ------------------------------ overriding function Get_Value (From : in Facebook_Auth; Name : in String) return Util.Beans.Objects.Object is use type ASF.Contexts.Faces.Faces_Context_Access; F : constant ASF.Contexts.Faces.Faces_Context_Access := ASF.Contexts.Faces.Current; begin if F /= null and Name = "authenticate_url" then declare S : constant ASF.Sessions.Session := F.Get_Session (True); Id : constant String := S.Get_Id; State : constant String := From.Get_State (Id); Params : constant String := From.Get_Auth_Params (State, "user_posts"); begin Log.Info ("OAuth params: {0}", Params); return Util.Beans.Objects.To_Object ("https://www.facebook.com/dialog/oauth?" & Params); end; elsif F /= null and Name = "isAuthenticated" then declare S : constant ASF.Sessions.Session := F.Get_Session (False); begin if S.Is_Valid and then not Util.Beans.Objects.Is_Null (S.Get_Attribute ("access_token")) then return Util.Beans.Objects.To_Object (True); else return Util.Beans.Objects.To_Object (False); end if; end; end if; return Util.Beans.Objects.Null_Object; end Get_Value; -- ------------------------------ -- Authenticate result from Facebook. -- ------------------------------ procedure Authenticate (From : in out Facebook_Auth; Outcome : in out Ada.Strings.Unbounded.Unbounded_String) is pragma Unreferenced (Outcome); use type Security.OAuth.Clients.Access_Token_Access; F : constant ASF.Contexts.Faces.Faces_Context_Access := ASF.Contexts.Faces.Current; Session : ASF.Sessions.Session := F.Get_Session; State : constant String := F.Get_Parameter (Security.OAuth.State); Code : constant String := F.Get_Parameter (Security.OAuth.Code); begin Log.Info ("Auth code {0} for state {1}", Code, State); if Session.Is_Valid then if From.Is_Valid_State (Session.Get_Id, State) then declare Acc : constant Security.OAuth.Clients.Access_Token_Access := From.Request_Access_Token (Code); begin if Acc /= null then Log.Info ("Access token is {0}", Acc.Get_Name); Session.Set_Attribute ("access_token", Util.Beans.Objects.To_Object (Acc.Get_Name)); end if; end; end if; end if; end Authenticate; package Authenticate_Binding is new ASF.Events.Faces.Actions.Action_Method.Bind (Bean => Facebook_Auth, Method => Authenticate, Name => "authenticate"); Binding_Array : aliased constant Util.Beans.Methods.Method_Binding_Array := (1 => Authenticate_Binding.Proxy'Unchecked_Access); -- ------------------------------ -- This bean provides some methods that can be used in a Method_Expression -- ------------------------------ overriding function Get_Method_Bindings (From : in Facebook_Auth) return Util.Beans.Methods.Method_Binding_Array_Access is pragma Unreferenced (From); begin return Binding_Array'Access; end Get_Method_Bindings; begin Friend_Map.Add_Default_Mapping; Feed_Map.Add_Mapping ("id", FIELD_ID); Feed_Map.Add_Mapping ("name", FIELD_NAME); Feed_Map.Add_Mapping ("message", FIELD_MESSAGE); Feed_Map.Add_Mapping ("description", FIELD_DESCRIPTION); Feed_Map.Add_Mapping ("from/name", FIELD_FROM); Feed_Map.Add_Mapping ("picture", FIELD_PICTURE); Feed_Map.Add_Mapping ("link", FIELD_LINK); Feed_Map.Add_Mapping ("icon", FIELD_ICON); end Facebook;
stcarrez/ada-util
Ada
10,716
adb
----------------------------------------------------------------------- -- util-encoders-ecc -- Error Correction Code -- Copyright (C) 2019, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Interfaces; package body Util.Encoders.ECC is use Interfaces; type Byte_Table is array (Interfaces.Unsigned_8 range 0 .. 255) of Interfaces.Unsigned_8; type Parity_Table is array (Ada.Streams.Stream_Element) of Interfaces.Unsigned_8; Parity : constant Parity_Table := (16#FF#, 16#D4#, 16#D2#, 16#F9#, 16#CC#, 16#E7#, 16#E1#, 16#CA#, 16#CA#, 16#E1#, 16#E7#, 16#CC#, 16#F9#, 16#D2#, 16#D4#, 16#FF#, 16#B4#, 16#9F#, 16#99#, 16#B2#, 16#87#, 16#AC#, 16#AA#, 16#81#, 16#81#, 16#AA#, 16#AC#, 16#87#, 16#B2#, 16#99#, 16#9F#, 16#B4#, 16#B2#, 16#99#, 16#9F#, 16#B4#, 16#81#, 16#AA#, 16#AC#, 16#87#, 16#87#, 16#AC#, 16#AA#, 16#81#, 16#B4#, 16#9F#, 16#99#, 16#B2#, 16#F9#, 16#D2#, 16#D4#, 16#FF#, 16#CA#, 16#E1#, 16#E7#, 16#CC#, 16#CC#, 16#E7#, 16#E1#, 16#CA#, 16#FF#, 16#D4#, 16#D2#, 16#F9#, 16#AC#, 16#87#, 16#81#, 16#AA#, 16#9F#, 16#B4#, 16#B2#, 16#99#, 16#99#, 16#B2#, 16#B4#, 16#9F#, 16#AA#, 16#81#, 16#87#, 16#AC#, 16#E7#, 16#CC#, 16#CA#, 16#E1#, 16#D4#, 16#FF#, 16#F9#, 16#D2#, 16#D2#, 16#F9#, 16#FF#, 16#D4#, 16#E1#, 16#CA#, 16#CC#, 16#E7#, 16#E1#, 16#CA#, 16#CC#, 16#E7#, 16#D2#, 16#F9#, 16#FF#, 16#D4#, 16#D4#, 16#FF#, 16#F9#, 16#D2#, 16#E7#, 16#CC#, 16#CA#, 16#E1#, 16#AA#, 16#81#, 16#87#, 16#AC#, 16#99#, 16#B2#, 16#B4#, 16#9F#, 16#9F#, 16#B4#, 16#B2#, 16#99#, 16#AC#, 16#87#, 16#81#, 16#AA#, 16#AA#, 16#81#, 16#87#, 16#AC#, 16#99#, 16#B2#, 16#B4#, 16#9F#, 16#9F#, 16#B4#, 16#B2#, 16#99#, 16#AC#, 16#87#, 16#81#, 16#AA#, 16#E1#, 16#CA#, 16#CC#, 16#E7#, 16#D2#, 16#F9#, 16#FF#, 16#D4#, 16#D4#, 16#FF#, 16#F9#, 16#D2#, 16#E7#, 16#CC#, 16#CA#, 16#E1#, 16#E7#, 16#CC#, 16#CA#, 16#E1#, 16#D4#, 16#FF#, 16#F9#, 16#D2#, 16#D2#, 16#F9#, 16#FF#, 16#D4#, 16#E1#, 16#CA#, 16#CC#, 16#E7#, 16#AC#, 16#87#, 16#81#, 16#AA#, 16#9F#, 16#B4#, 16#B2#, 16#99#, 16#99#, 16#B2#, 16#B4#, 16#9F#, 16#AA#, 16#81#, 16#87#, 16#AC#, 16#F9#, 16#D2#, 16#D4#, 16#FF#, 16#CA#, 16#E1#, 16#E7#, 16#CC#, 16#CC#, 16#E7#, 16#E1#, 16#CA#, 16#FF#, 16#D4#, 16#D2#, 16#F9#, 16#B2#, 16#99#, 16#9F#, 16#B4#, 16#81#, 16#AA#, 16#AC#, 16#87#, 16#87#, 16#AC#, 16#AA#, 16#81#, 16#B4#, 16#9F#, 16#99#, 16#B2#, 16#B4#, 16#9F#, 16#99#, 16#B2#, 16#87#, 16#AC#, 16#AA#, 16#81#, 16#81#, 16#AA#, 16#AC#, 16#87#, 16#B2#, 16#99#, 16#9F#, 16#B4#, 16#FF#, 16#D4#, 16#D2#, 16#F9#, 16#CC#, 16#E7#, 16#E1#, 16#CA#, 16#CA#, 16#E1#, 16#E7#, 16#CC#, 16#F9#, 16#D2#, 16#D4#, 16#FF#); Bit_Count_Table : constant Byte_Table := (0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7, 4, 5, 5, 6, 5, 6, 6, 7, 5, 6, 6, 7, 6, 7, 7, 8); function Count (Data : Ada.Streams.Stream_Element) return Natural; -- Make the 3 bytes ECC code that corresponds to the data array. procedure Make (Data : in Ada.Streams.Stream_Element_Array; Code : out ECC_Code) is LP0, LP1, LP2, LP3, LP4, LP5, LP6, LP7 : Ada.Streams.Stream_Element := 0; LP8, LP9, LP10, LP11, LP12, LP13, LP14, LP15 : Ada.Streams.Stream_Element := 0; LP16, LP17 : Ada.Streams.Stream_Element := 0; I : Unsigned_16 := 0; begin for D of Data loop if (I and 16#01#) /= 0 then LP1 := LP1 xor D; else LP0 := LP0 xor D; end if; if (I and 16#02#) /= 0 then LP3 := LP3 xor D; else LP2 := LP2 xor D; end if; if (I and 16#04#) /= 0 then LP5 := LP5 xor D; else LP4 := LP4 xor D; end if; if (I and 16#08#) /= 0 then LP7 := LP7 xor D; else LP6 := LP6 xor D; end if; if (I and 16#10#) /= 0 then LP9 := LP9 xor D; else LP8 := LP8 xor D; end if; if (I and 16#20#) /= 0 then LP11 := LP11 xor D; else LP10 := LP10 xor D; end if; if (I and 16#40#) /= 0 then LP13 := LP13 xor D; else LP12 := LP12 xor D; end if; if (I and 16#80#) /= 0 then LP15 := LP15 xor D; else LP14 := LP14 xor D; end if; if Data'Length = 512 then if (I and 16#100#) /= 0 then LP17 := LP17 xor D; else LP16 := LP16 xor D; end if; end if; I := I + 1; end loop; Code (0) := Stream_Element ((Parity (LP0) and 16#01#) or Shift_Left (Parity (LP1) and 16#01#, 1) or Shift_Left (Parity (LP2) and 16#01#, 2) or Shift_Left (Parity (LP3) and 16#01#, 3) or Shift_Left (Parity (LP4) and 16#01#, 4) or Shift_Left (Parity (LP5) and 16#01#, 5) or Shift_Left (Parity (LP6) and 16#01#, 6) or Shift_Left (Parity (LP7) and 16#01#, 7)); Code (1) := Stream_Element ((Parity (LP8) and 16#01#) or Shift_Left (Parity (LP9) and 16#01#, 1) or Shift_Left (Parity (LP10) and 16#01#, 2) or Shift_Left (Parity (LP11) and 16#01#, 3) or Shift_Left (Parity (LP12) and 16#01#, 4) or Shift_Left (Parity (LP13) and 16#01#, 5) or Shift_Left (Parity (LP14) and 16#01#, 6) or Shift_Left (Parity (LP15) and 16#01#, 7)); Code (2) := Stream_Element (Shift_Left (Parity (LP15 xor LP14) and 16#fe#, 1) or Shift_Left (Parity (LP17) and 16#01#, 1) or (Parity (LP16) and 16#01#)); end Make; function Count (Data : Ada.Streams.Stream_Element) return Natural is begin return Natural (Bit_Count_Table (Interfaces.Unsigned_8 (Data))); end Count; -- ------------------------------ -- Check and correct the data array according to the expected ECC codes and current codes. -- At most one bit can be fixed and two error bits can be detected. -- ------------------------------ function Correct (Data : in out Ada.Streams.Stream_Element_Array; Expect_Code : in ECC_Code; Current_Code : in ECC_Code) return ECC_Result is Check : ECC_Code; Bits : Natural; Bit_Pos : Natural; Pos : Unsigned_16; begin Check (0) := Expect_Code (0) xor Current_Code (0); Check (1) := Expect_Code (1) xor Current_Code (1); Check (2) := Expect_Code (2) xor Current_Code (2); if (Check (0) or Check (1) or Check (2)) = 0 then return NO_ERROR; end if; Bits := Count (Check (0)) + Count (Check (1)) + Count (Check (2)); if (Bits = 11 and then Data'Length = 256) or else (Bits = 12 and then Data'Length = 512) then Bit_Pos := Natural ((Shift_Right (Unsigned_8 (Check (2)), 3) and 16#01#) or (Shift_Right (Unsigned_8 (Check (2)), 4) and 16#02#) or (Shift_Right (Unsigned_8 (Check (2)), 5) and 16#04#)); Pos := ((Shift_Right (Unsigned_16 (Check (0)), 1) and 16#01#) or (Shift_Right (Unsigned_16 (Check (0)), 2) and 16#02#) or (Shift_Right (Unsigned_16 (Check (0)), 3) and 16#04#) or (Shift_Right (Unsigned_16 (Check (0)), 4) and 16#08#) or (Shift_Left (Unsigned_16 (Check (1)), 3) and 16#10#) or (Shift_Left (Unsigned_16 (Check (1)), 2) and 16#20#) or (Shift_Left (Unsigned_16 (Check (1)), 1) and 16#40#) or (Unsigned_16 (Check (1)) and 16#80#)); if Data'Length = 512 then Pos := Pos + (Shift_Left (Unsigned_16 (Check (2)), 7) and 16#100#); end if; Data (Stream_Element_Offset (Pos)) := Data (Stream_Element_Offset (Pos)) xor Stream_Element (Shift_Left (Unsigned_8 (1), Bit_Pos)); return CORRECTABLE_ERROR; elsif Bits = 1 then return ECC_ERROR; else return UNCORRECTABLE_ERROR; end if; end Correct; -- ------------------------------ -- Check and correct the data array according to the expected ECC codes and current codes. -- At most one bit can be fixed and two error bits can be detected. -- ------------------------------ function Correct (Data : in out Ada.Streams.Stream_Element_Array; Expect_Code : in ECC_Code) return ECC_Result is Current_Code : ECC_Code; begin Make (Data, Current_Code); return Correct (Data, Expect_Code, Current_Code); end Correct; end Util.Encoders.ECC;
msrLi/portingSources
Ada
1,199
adb
-- Copyright 2009-2014 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. procedure Foo is type Small is range -32 .. 31; type SomePackedArray is array (Integer range <>) of Small; pragma Pack (SomePackedArray); type SomePackedRecord is record Y: SomePackedArray (1 .. 10); end record; pragma Pack (SomePackedRecord); Suite : SomePackedArray := (-1, -2, -3, -4, -5, -6, -7, -8, -9, -10); XP: SomePackedRecord := (Y => Suite); Slice : SomePackedArray renames XP.Y (3 .. 5); begin Slice (4) := 4; -- START end Foo;
reznikmm/coroutines
Ada
479
adb
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Server_Test_Proc; with Coroutines.Timeouts; with TCP_Servers; procedure Server_Test is begin Coroutines.Initialize; Coroutines.Timeouts.Initialize; TCP_Servers.Listen_Port (Port => 12345, Run => Server_Test_Proc'Access, Stack => 40_960); end Server_Test;
onox/orka
Ada
2,327
ads
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2015 onox <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. with GL.Objects.Programs; private with GL.Low_Level; package GL.Objects.Pipelines is pragma Preelaborate; type Stage_Bits is record Vertex_Shader : Boolean := False; Fragment_Shader : Boolean := False; Geometry_Shader : Boolean := False; Tess_Control_Shader : Boolean := False; Tess_Evaluation_Shader : Boolean := False; Compute_Shader : Boolean := False; end record; type Pipeline is new GL_Object with private; procedure Use_Program_Stages (Object : Pipeline; Stages : Stage_Bits; Program : Programs.Program) with Pre => Program.Separable; -- Use the specified stages from the given program in the pipeline procedure Bind (Object : Pipeline); -- Bind the pipeline to the current context function Validate (Object : Pipeline) return Boolean; function Info_Log (Object : Pipeline) return String; overriding procedure Initialize_Id (Object : in out Pipeline); overriding procedure Delete_Id (Object : in out Pipeline); overriding function Identifier (Object : Pipeline) return Types.Debug.Identifier is (Types.Debug.Program_Pipeline); private type Pipeline is new GL_Object with null record; for Stage_Bits use record Vertex_Shader at 0 range 0 .. 0; Fragment_Shader at 0 range 1 .. 1; Geometry_Shader at 0 range 2 .. 2; Tess_Control_Shader at 0 range 3 .. 3; Tess_Evaluation_Shader at 0 range 4 .. 4; Compute_Shader at 0 range 5 .. 5; end record; for Stage_Bits'Size use Low_Level.Bitfield'Size; end GL.Objects.Pipelines;
Fabien-Chouteau/samd51-hal
Ada
6,526
adb
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2019, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with SAM.Main_Clock; with SAM.Clock_Generator; use SAM.Clock_Generator; with SAM.Clock_Generator.IDs; use SAM.Clock_Generator.IDs; with SAM.Oscillators_Controller; use SAM.Oscillators_Controller; package body SAM.Clock_Setup_120Mhz is ----------------------- -- Initialize_Clocks -- ----------------------- procedure Initialize_Clocks is begin -- Turn on the oscilator controller SAM.Main_Clock.OSCCTRL_On; -- OSCULP32K is enabled at reset -- 32.768 Khz from the Ultra Low Power Internal Oscilator (OSCULP32K) Configure_Generator (Id => Clk_32Khz, Source => OSCULP32K, DIV_Select => False, DIV => 1, Run_In_Standby => False, Output_Enable => True); -- Temporarly set the CPU clock generator to 32Khz while we change the -- other configurations. Configure_Generator (Id => Clk_CPU, Source => OSCULP32K, DIV_Select => False, DIV => 1, Run_In_Standby => False, Output_Enable => True); -- Set DFLL48 input to generator at 32.768 Khz Configure_Periph_Channel (IDs.OSCCTRL_DFLL48, Clk_32Khz); -- Configure DFLL to produce a 48Mhz Configure_DFLL (On_Demand_Control => False, Run_On_Standby => False, USB_Clock_Recovery => True, Wait_Lock => True, Bypass_Coarse_Lock => False, Quick_Lock_Disable => False, Chill_Cycle_Disable => True, Lose_Lock_After_Wake => False, Stable_DFLL_Frequency => False, Operating_Mode => Open_Loop_Mode, Coarse_Maximum_Step => 1, Fine_Maximum_Step => 1, Multiply_Factor => 0); -- 48 Mhz from DFLL Configure_Generator (Id => Clk_48Mhz, Source => DFLL, DIV_Select => False, DIV => 1, Run_In_Standby => False, Output_Enable => True); -- 2Mhz from 48Mhz DFLL devided by 24 Configure_Generator (Id => Clk_2Mhz, Source => DFLL, DIV_Select => False, DIV => 24, Run_In_Standby => False, Output_Enable => True); -- Set DPLL0 input to generator at 2Mhz Configure_Periph_Channel (IDs.OSCCTRL_FDPLL0, Clk_2Mhz); -- Configure DPLL0 to produce a 120Mhz clock Configure_DPLL (DPLL => 0, On_Demand_Control => False, Run_On_Standby => False, Loop_Divider_Fractional => 0, Loop_Divider_Integer => 59, Clock_Divider => 0, DCO_Filter_Enable => False, Sigma_Delta_DCO_Filter => 0, Lock_Bypass => False, Lock_Time => Default, Reference_Clock => GCLK_Ref, Wakeup_Fast => False, Prop_Integral_Filter => 0); -- Set CPU clock to 120Mhz from the DPLL0 Configure_Generator (Id => Clk_CPU, Source => DPLL0, DIV_Select => False, DIV => 1, Run_In_Standby => False, Output_Enable => True); end Initialize_Clocks; end SAM.Clock_Setup_120Mhz;
reznikmm/matreshka
Ada
20,188
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2010-2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Ada.Streams; with GNAT.Sockets; with Matreshka.Internals.Unicode.Characters.Latin; with Matreshka.FastCGI.Query_Items; with FastCGI.Requests.Internals; with FastCGI.Replies.Internals; with Matreshka.FastCGI.Protocol; package body Matreshka.FastCGI.Server is use Ada.Streams; use League.Stream_Element_Vectors; use Matreshka.Internals.Unicode.Characters.Latin; use Matreshka.FastCGI.Protocol; function FCGI_Listen_Socket return GNAT.Sockets.Socket_Type; type FCGI_End_Request_Body is record App_Status_Byte_3 : Ada.Streams.Stream_Element; App_Status_Byte_2 : Ada.Streams.Stream_Element; App_Status_Byte_1 : Ada.Streams.Stream_Element; App_Status_Byte_0 : Ada.Streams.Stream_Element; Protocol_Status : Ada.Streams.Stream_Element; Reserved_1 : Ada.Streams.Stream_Element; Reserved_2 : Ada.Streams.Stream_Element; Reserved_3 : Ada.Streams.Stream_Element; end record; FCGI_Request_Complete : constant := 0; FCGI_Cant_Mpx_Conn : constant := 1; FCGI_Overloaded : constant := 2; FCGI_Unknown_Role : constant := 3; subtype FCGI_End_Request_Body_Stream_Element_Array is Ada.Streams.Stream_Element_Array (1 .. 8); procedure Process_Connection (Socket : GNAT.Sockets.Socket_Type; Handler : Standard.FastCGI.Application.Callback); procedure Process_Begin_Request (Socket : GNAT.Sockets.Socket_Type; Request_Id : FCGI_Request_Identifier; Buffer : Stream_Element_Array); procedure Process_Params (Socket : GNAT.Sockets.Socket_Type; Request_Id : FCGI_Request_Identifier; Buffer : Stream_Element_Array); procedure Process_Stdin (Socket : GNAT.Sockets.Socket_Type; Request_Id : FCGI_Request_Identifier; Buffer : Stream_Element_Array); procedure Execute_Request (Socket : GNAT.Sockets.Socket_Type; Request_Id : FCGI_Request_Identifier; Handler : Standard.FastCGI.Application.Callback); procedure Send_Header (Socket : GNAT.Sockets.Socket_Type; Packet_Type : Matreshka.FastCGI.Protocol.FCGI_Packet_Type; Request_Id : FCGI_Request_Identifier; Content_Length : Ada.Streams.Stream_Element_Offset; Padding_Length : Ada.Streams.Stream_Element_Offset); procedure Send_End_Request (Socket : GNAT.Sockets.Socket_Type; Request_Id : FCGI_Request_Identifier; Application_Status : Integer; Protocol_Status : Ada.Streams.Stream_Element); ------------- -- Execute -- ------------- procedure Execute (Handler : Standard.FastCGI.Application.Callback) is Socket : GNAT.Sockets.Socket_Type; Address : GNAT.Sockets.Sock_Addr_Type; begin Dsc.Request_Id := 0; loop GNAT.Sockets.Accept_Socket (FCGI_Listen_Socket, Socket, Address); -- XXX Address mush be checked here in presence in the environment -- variable. Process_Connection (Socket, Handler); end loop; end Execute; --------------------- -- Execute_Request -- --------------------- procedure Execute_Request (Socket : GNAT.Sockets.Socket_Type; Request_Id : FCGI_Request_Identifier; Handler : Standard.FastCGI.Application.Callback) is procedure Send_Headers; ------------------ -- Send_Headers -- ------------------ procedure Send_Headers is Content_Length : Stream_Element_Offset := 2; Padding_Length : Stream_Element_Offset; procedure Compute_Length (Position : Maps.Cursor); procedure Send_Header (Position : Maps.Cursor); -------------------- -- Compute_Length -- -------------------- procedure Compute_Length (Position : Maps.Cursor) is Name : constant Stream_Element_Vector := Maps.Key (Position); Value : constant Stream_Element_Vector := Maps.Element (Position); begin Content_Length := Content_Length + Name.Length + Value.Length + 4; end Compute_Length; ----------------- -- Send_Header -- ----------------- procedure Send_Header (Position : Maps.Cursor) is Name : constant Stream_Element_Array := Maps.Key (Position).To_Stream_Element_Array; Value : constant Stream_Element_Array := Maps.Element (Position).To_Stream_Element_Array; Separator : constant Stream_Element_Array (1 .. 2) := (Colon, Space); End_Mark : constant Stream_Element_Array (1 .. 2) := (Carriage_Return, Line_Feed); Last : Stream_Element_Offset; begin GNAT.Sockets.Send_Socket (Socket, Name, Last); if Last /= Name'Last then raise Program_Error; end if; GNAT.Sockets.Send_Socket (Socket, Separator, Last); if Last /= Separator'Last then raise Program_Error; end if; GNAT.Sockets.Send_Socket (Socket, Value, Last); if Last /= Value'Last then raise Program_Error; end if; GNAT.Sockets.Send_Socket (Socket, End_Mark, Last); if Last /= End_Mark'Last then raise Program_Error; end if; end Send_Header; begin -- Compute length of all headers. Dsc.Reply_Headers.Iterate (Compute_Length'Access); -- Compute padding length. Padding_Length := 8 - Content_Length mod 8; if Padding_Length = 8 then Padding_Length := 0; end if; -- Send header. Send_Header (Socket, FCGI_Stdout, Dsc.Request_Id, Content_Length, Padding_Length); -- Send headers' content. Dsc.Reply_Headers.Iterate (Send_Header'Access); -- Send end of headers mark and padding elements. declare Buffer : constant Stream_Element_Array (1 .. Padding_Length + 2) := (Carriage_Return, Line_Feed, others => 0); Last : Stream_Element_Offset; begin GNAT.Sockets.Send_Socket (Socket, Buffer, Last); if Last /= Buffer'Last then raise Program_Error; end if; end; end Send_Headers; ------------------------ -- Send_Output_Stream -- ------------------------ procedure Send_Output_Stream (Packet_Type : Matreshka.FastCGI.Protocol.FCGI_Packet_Type; Data : League.Stream_Element_Vectors.Stream_Element_Vector) is Buffer : constant Stream_Element_Array := Data.To_Stream_Element_Array; Padding : constant Stream_Element_Array (1 .. 8 - (Buffer'Length) mod 8) := (others => 0); Length : Stream_Element_Offset := Padding'Length; Last : Stream_Element_Offset; begin if Buffer'Length /= 0 then if Length = 8 then Length := 0; end if; Send_Header (Socket, Packet_Type, Dsc.Request_Id, Buffer'Length, Length); GNAT.Sockets.Send_Socket (Socket, Buffer, Last); if Buffer'Last /= Last then raise Program_Error; end if; if Length /= 0 then GNAT.Sockets.Send_Socket (Socket, Padding, Last); if Padding'Last /= Last then raise Program_Error; end if; end if; end if; -- Send empty output packet to mark end of data. Send_Header (Socket, Packet_Type, Dsc.Request_Id, 0, 0); end Send_Output_Stream; Request : Standard.FastCGI.Requests.Request := Standard.FastCGI.Requests.Internals.Create (Dsc'Access); Reply : Standard.FastCGI.Replies.Reply := Standard.FastCGI.Replies.Internals.Create (Dsc'Access); Status : Integer; begin -- Prepare query parameters. Query_Items.Decode_Query_Items (Dsc); -- Execute callback. Handler (Request, Reply, Status); -- Send headers. Send_Headers; -- Send stdout. Send_Output_Stream (FCGI_Stdout, Dsc.Stdout); -- Send stderr if any. if not Dsc.Stderr.Is_Empty then Send_Output_Stream (FCGI_Stderr, Dsc.Stderr); end if; -- Send end request packet. Send_End_Request (Socket, Dsc.Request_Id, Status, FCGI_Request_Complete); -- Reset descriptor's state. Dsc.Request_Id := 0; Dsc.Request_Headers.Clear; Dsc.Query_Items.Clear; Dsc.Reply_Headers.Clear; Dsc.Stdin.Clear; Dsc.Stdout.Clear; Dsc.Stderr.Clear; end Execute_Request; ------------------------ -- FCGI_Listen_Socket -- ------------------------ function FCGI_Listen_Socket return GNAT.Sockets.Socket_Type is separate; --------------------------- -- Process_Begin_Request -- --------------------------- procedure Process_Begin_Request (Socket : GNAT.Sockets.Socket_Type; Request_Id : FCGI_Request_Identifier; Buffer : Stream_Element_Array) is Request : FCGI_Begin_Request_Record; for Request'Address use Buffer'Address; Role : constant FCGI_Role := Get_Role (Request); begin if Role /= FCGI_Responder then raise Program_Error; end if; -- if (Request.Flags and FCGI_Keep_Conn) /= 0 then -- raise Program_Error; -- end if; if Dsc.Request_Id /= 0 then raise Program_Error; end if; Dsc.Request_Id := Request_Id; end Process_Begin_Request; ------------------------ -- Process_Connection -- ------------------------ procedure Process_Connection (Socket : GNAT.Sockets.Socket_Type; Handler : Standard.FastCGI.Application.Callback) is Buffer : Raw_FCGI_Header; Header : FCGI_Header; for Header'Address use Buffer'Address; Last : Stream_Element_Offset; Request_Id : FCGI_Request_Identifier; Content_Length : Stream_Element_Offset; Padding_Length : Stream_Element_Offset; begin loop GNAT.Sockets.Receive_Socket (Socket, Buffer, Last); exit when Last < Buffer'First; if Last /= Buffer'Last then raise Program_Error; end if; if Get_Version (Header) /= Supported_FCGI_Version then raise Program_Error; end if; Request_Id := Get_Request_Id (Header); Content_Length := Get_Content_Length (Header); Padding_Length := Get_Padding_Length (Header); declare Buffer : Stream_Element_Array (1 .. Content_Length + Padding_Length); begin -- Receive packet's data when necessary. if Buffer'Length /= 0 then GNAT.Sockets.Receive_Socket (Socket, Buffer, Last); if Last /= Buffer'Last then raise Program_Error; end if; end if; case Get_Packet_Type (Header) is when FCGI_Begin_Request => Process_Begin_Request (Socket, Request_Id, Buffer (1 .. Content_Length)); when FCGI_Abort_Request => null; when FCGI_End_Request => null; when FCGI_Params => Process_Params (Socket, Request_Id, Buffer (1 .. Content_Length)); when FCGI_Stdin => Process_Stdin (Socket, Request_Id, Buffer (1 .. Content_Length)); if Content_Length = 0 then Execute_Request (Socket, Request_Id, Handler); end if; when FCGI_Stdout => null; when FCGI_Stderr => null; when FCGI_Data => null; when FCGI_Get_Values => null; when FCGI_Get_Values_Result => null; when others => null; end case; end; end loop; GNAT.Sockets.Close_Socket (Socket); end Process_Connection; -------------------- -- Process_Params -- -------------------- procedure Process_Params (Socket : GNAT.Sockets.Socket_Type; Request_Id : FCGI_Request_Identifier; Buffer : Stream_Element_Array) is procedure Decode_Length (First : in out Stream_Element_Offset; Length : out Stream_Element_Offset); ------------------- -- Decode_Length -- ------------------- procedure Decode_Length (First : in out Stream_Element_Offset; Length : out Stream_Element_Offset) is begin if (Buffer (First) and 16#80#) = 0 then Length := Stream_Element_Offset (Buffer (First)); First := First + 1; else Length := Stream_Element_Offset (Buffer (First) and 16#7F#) * 2 ** 24 + Stream_Element_Offset (Buffer (First + 1)) * 2 ** 16 + Stream_Element_Offset (Buffer (First + 2)) * 2 ** 8 + Stream_Element_Offset (Buffer (First + 3)); First := First + 4; end if; end Decode_Length; First : Stream_Element_Offset := Buffer'First; Name_Length : Stream_Element_Offset; Value_Length : Stream_Element_Offset; begin if Dsc.Request_Id /= Request_Id then raise Program_Error; end if; while First < Buffer'Last loop Decode_Length (First, Name_Length); Decode_Length (First, Value_Length); Dsc.Request_Headers.Insert (League.Stream_Element_Vectors.To_Stream_Element_Vector (Buffer (First .. First + Name_Length - 1)), League.Stream_Element_Vectors.To_Stream_Element_Vector (Buffer (First + Name_Length .. First + Name_Length + Value_Length - 1))); First := First + Name_Length + Value_Length; end loop; end Process_Params; ------------------- -- Process_Stdin -- ------------------- procedure Process_Stdin (Socket : GNAT.Sockets.Socket_Type; Request_Id : FCGI_Request_Identifier; Buffer : Stream_Element_Array) is begin if Dsc.Request_Id /= Request_Id then raise Program_Error; end if; Dsc.Stdin := League.Stream_Element_Vectors.To_Stream_Element_Vector (Dsc.Stdin.To_Stream_Element_Array & Buffer); end Process_Stdin; ---------------------- -- Send_End_Request -- ---------------------- procedure Send_End_Request (Socket : GNAT.Sockets.Socket_Type; Request_Id : FCGI_Request_Identifier; Application_Status : Integer; Protocol_Status : Ada.Streams.Stream_Element) is Buffer : FCGI_End_Request_Body_Stream_Element_Array := (others => 0); Header : FCGI_End_Request_Body; for Header'Address use Buffer'Address; Last : Ada.Streams.Stream_Element_Offset; begin Send_Header (Socket, FCGI_End_Request, Request_Id, 8, 0); Header.App_Status_Byte_3 := Stream_Element (Application_Status / 2 ** 24); Header.App_Status_Byte_2 := Stream_Element (Application_Status / 2 ** 16 mod 2 ** 8); Header.App_Status_Byte_1 := Stream_Element (Application_Status / 2 ** 8 mod 2 ** 8); Header.App_Status_Byte_0 := Stream_Element (Application_Status mod 2 ** 8); Header.Protocol_Status := Protocol_Status; GNAT.Sockets.Send_Socket (Socket, Buffer, Last); if Buffer'Last /= Last then raise Program_Error; end if; end Send_End_Request; ----------------- -- Send_Header -- ----------------- procedure Send_Header (Socket : GNAT.Sockets.Socket_Type; Packet_Type : Matreshka.FastCGI.Protocol.FCGI_Packet_Type; Request_Id : FCGI_Request_Identifier; Content_Length : Ada.Streams.Stream_Element_Offset; Padding_Length : Ada.Streams.Stream_Element_Offset) is Buffer : Raw_FCGI_Header; Header : FCGI_Header; for Header'Address use Buffer'Address; Last : Ada.Streams.Stream_Element_Offset; begin Initialize (Header, Packet_Type, Request_Id, Content_Length, Padding_Length); GNAT.Sockets.Send_Socket (Socket, Buffer, Last); if Buffer'Last /= Last then raise Program_Error; end if; end Send_Header; end Matreshka.FastCGI.Server;
reznikmm/matreshka
Ada
3,749
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Presentation_Preset_Id_Attributes is pragma Preelaborate; type ODF_Presentation_Preset_Id_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Presentation_Preset_Id_Attribute_Access is access all ODF_Presentation_Preset_Id_Attribute'Class with Storage_Size => 0; end ODF.DOM.Presentation_Preset_Id_Attributes;
MinimSecure/unum-sdk
Ada
829
adb
-- Copyright 2004-2016 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Bar is procedure Do_Nothing (E : Void_Star) is begin null; end Do_Nothing; end Bar;
seeduvax/AcrobatomaticBuildSystem
Ada
119
adb
package body Example is function Hello(i: in Integer) return Integer is begin return i+1; end Hello; end Example;
VitalijBondarenko/matreshka
Ada
22,260
adb
-- Copyright (c) 1990 Regents of the University of California. -- All rights reserved. -- -- This software was developed by John Self of the Arcadia project -- at the University of California, Irvine. -- -- Redistribution and use in source and binary forms are permitted -- provided that the above copyright notice and this paragraph are -- duplicated in all such forms and that any documentation, -- advertising materials, and other materials related to such -- distribution and use acknowledge that the software was developed -- by the University of California, Irvine. The name of the -- University may not be used to endorse or promote products derived -- from this software without specific prior written permission. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. -- TITLE scanner generation -- AUTHOR: John Self (UCI) -- DESCRIPTION -- NOTES does actual generation (writing) of output aflex scanners -- $Header: /dc/uc/self/arcadia/aflex/ada/src/RCS/genB.a,v 1.25 1992/10/02 23:08:41 self Exp self $ with Ada.Characters.Conversions; with Ada.Integer_Wide_Wide_Text_IO; with Ada.Strings.Unbounded; with Ada.Strings.Wide_Wide_Unbounded.Wide_Wide_Text_IO; with Ada.Strings.Wide_Wide_Fixed; with Ada.Wide_Wide_Text_IO; with MISC_DEFS, MISC; with Scanner, SKELETON_MANAGER, EXTERNAL_FILE_MANAGER; use MISC_DEFS, EXTERNAL_FILE_MANAGER; with Parser_Tokens; use Parser_Tokens; with Unicode; package body Gen is use Ada.Characters.Conversions; use Ada.Integer_Wide_Wide_Text_IO; use Ada.Strings; use Ada.Strings.Wide_Wide_Fixed; use Ada.Strings.Wide_Wide_Unbounded; use Ada.Strings.Wide_Wide_Unbounded.Wide_Wide_Text_IO; use Ada.Wide_Wide_Text_IO; use Unicode; INDENT_LEVEL : INTEGER := 0; -- each level is 3 spaces MAX_SHORT : constant INTEGER := 32767; procedure INDENT_UP is begin INDENT_LEVEL := INDENT_LEVEL + 1; end INDENT_UP; pragma INLINE(INDENT_UP); procedure INDENT_DOWN is begin INDENT_LEVEL := INDENT_LEVEL - 1; end INDENT_DOWN; pragma INLINE(INDENT_DOWN); procedure SET_INDENT(INDENT_VAL : in INTEGER) is begin INDENT_LEVEL := INDENT_VAL; end SET_INDENT; --------------- -- Do_Indent -- --------------- -- Indent to the current level. procedure Do_Indent is begin Set_Col (Ada.Wide_Wide_Text_IO.Count (INDENT_LEVEL) * 3 + 1); end Do_Indent; -- generate the code to keep backtracking information procedure GEN_BACKTRACKING is begin if (NUM_BACKTRACKING = 0) then return; end if; INDENT_PUTS("if (yy_accept(yy_current_state) /= 0 ) then"); INDENT_UP; INDENT_PUTS("yy_last_accepting_state := yy_current_state;"); INDENT_PUTS("yy_last_accepting_cpos := yy_cp;"); INDENT_DOWN; INDENT_PUTS("end if;"); end GEN_BACKTRACKING; -- generate the code to perform the backtrack procedure GEN_BT_ACTION is begin if (NUM_BACKTRACKING = 0) then return; end if; SET_INDENT(4); INDENT_PUTS ("when 0 => -- must backtrack"); INDENT_UP; if (FULLTBL) then INDENT_PUTS ("yy_cp := yy_last_accepting_cpos + 1;"); else -- backtracking info for compressed tables is taken \after/ -- yy_cp has been incremented for the next state INDENT_PUTS("yy_cp := yy_last_accepting_cpos;"); end if; INDENT_PUTS("yy_current_state := yy_last_accepting_state;"); NEW_LINE; INDENT_PUTS("goto next_action;"); INDENT_DOWN; NEW_LINE; SET_INDENT(0); end GEN_BT_ACTION; -- generate equivalence-class table procedure GENECS is I : INTEGER; NUMROWS : INTEGER; Most_Used : Primary_Stage_Index := 0; begin -- Handle case insensitive mapping, converts values to positive range for J in 1 .. CSIZE loop if CASEINS and then (J >= CHARACTER'POS('A') and J <= CHARACTER'POS('Z')) then ECGROUP (J) := ECGROUP (MISC.CLOWER (J)); end if; ECGROUP (J) := abs ECGROUP (J); end loop; -- Compact data using two stage table technique for J in ECGROUP_Use_Count'Range loop ECGROUP_Use_Count (J) := 0; end loop; for J in ECGROUP_Plane'Range loop for K in 0 .. J loop if ECGROUP (Integer (J) * 256 .. Integer (J) * 256 + 255) = ECGROUP (Integer (K) * 256 .. Integer (K) * 256 + 255) then ECGROUP_Plane (J) := K; ECGROUP_Use_Count (K) := ECGROUP_Use_Count (K) + 1; exit; end if; end loop; end loop; for J in ECGROUP_Use_Count'Range loop if ECGROUP_Use_Count (J) > ECGROUP_Use_Count (Most_Used) then Most_Used := J; end if; end loop; Put_Line ("type Secondary_Stage_Index is range 0 .. 16#FF#;"); Put_Line ("type Primary_Stage_Index is range 0 .. 16#10FF#;"); Put_Line ("type Secondary_Stage_Array is" & " array (Secondary_Stage_Index) of Short;"); Put_Line ("type Secondary_Stage_Array_Access is" & " access constant Secondary_Stage_Array;"); for J in ECGROUP_Plane'Range loop if ECGROUP_Plane (J) = J then Put_Line ("yy_ec_" & Trim (Primary_Stage_Index'Wide_Wide_Image (J), Both) & " : aliased constant Secondary_Stage_Array :="); Put_Line (" ("); for K in Secondary_Stage_Index'Range loop Misc.MKDATA (ECGROUP (Integer (J) * 256 + Integer (K))); end loop; Misc.DATAEND; end if; end loop; Put_Line ("yy_ec_base : constant"); Put_Line (" array (Primary_Stage_Index) of Secondary_Stage_Array_Access :="); for J in ECGROUP_Plane'Range loop if ECGROUP_Plane (J) /= Most_Used then if J = ECGROUP_Plane'First then Put (" ("); elsif J mod 3 = 0 then Put_Line (","); Put (" "); else Put (", "); end if; Put (Integer (J), 6); Put (" => yy_ec_" & Trim (Primary_Stage_Index'Wide_Wide_Image (ECGROUP_Plane (J)), Both) & "'Access"); end if; end loop; Put_Line (", others => yy_ec_" & Trim (Primary_Stage_Index'Wide_Wide_Image (Most_Used), Both) & "'Access);"); -- Generate function to replace yy_ec constant without modification of -- all code around. New_Line; Put_Line ("function yy_ec (Item : Wide_Wide_Character) return short is"); Put_Line (" Code : constant Integer := Wide_Wide_Character'Pos (Item);"); Put_Line (" Group : constant Primary_Stage_Index :="); Put_Line (" Primary_Stage_Index (Code / 256);"); Put_Line (" Offset : constant Secondary_Stage_Index :="); Put_Line (" Secondary_Stage_Index (Code mod 256);"); New_Line; Put_Line ("begin"); Put_Line (" return yy_ec_base (Group) (Offset);"); Put_Line ("end yy_ec;"); -- XXX It can be useful to output pack infomation if TRACE then NEW_LINE(STANDARD_ERROR); NEW_LINE(STANDARD_ERROR); PUT(STANDARD_ERROR, "Equivalence Classes:"); NEW_LINE(STANDARD_ERROR); NEW_LINE(STANDARD_ERROR); NUMROWS := (CSIZE + 1)/8; for J in 1 .. NUMROWS loop I := J; while (I <= CSIZE) loop PUT (STANDARD_ERROR, To_Wide_Wide_String (Ada.Strings.Unbounded.To_String (MISC.Readable_Form(Wide_Wide_Character'Val (I))))); PUT(STANDARD_ERROR, " = "); PUT(STANDARD_ERROR, ECGROUP(I), 1); PUT(STANDARD_ERROR, " "); I := I + NUMROWS; end loop; NEW_LINE(STANDARD_ERROR); end loop; end if; end GENECS; -- generate the code to find the action number procedure GEN_FIND_ACTION is begin INDENT_PUTS("yy_act := yy_accept(yy_current_state);"); end GEN_FIND_ACTION; -- genftbl - generates full transition table procedure GENFTBL is END_OF_BUFFER_ACTION : constant INTEGER := NUM_RULES + 1; -- *everything* is done in terms of arrays starting at 1, so provide -- a null entry for the zero element of all C arrays begin PUT("yy_accept : constant array(0.."); PUT(LASTDFA, 1); PUT_LINE(") of short :="); PUT_LINE(" ( 0,"); DFAACC(END_OF_BUFFER_STATE).DFAACC_STATE := END_OF_BUFFER_ACTION; for I in 1 .. LASTDFA loop declare ANUM : constant INTEGER := DFAACC(I).DFAACC_STATE; begin MISC.MKDATA(ANUM); if (TRACE and (ANUM /= 0)) then PUT(STANDARD_ERROR, "state # "); PUT(STANDARD_ERROR, I, 1); PUT(STANDARD_ERROR, " accepts: ["); PUT(STANDARD_ERROR, ANUM, 1); PUT(STANDARD_ERROR, "]"); NEW_LINE(STANDARD_ERROR); end if; end; end loop; MISC.DATAEND; if (USEECS) then GENECS; end if; -- don't have to dump the actual full table entries - they were created -- on-the-fly end GENFTBL; -- generate the code to find the next compressed-table state procedure GEN_NEXT_COMPRESSED_STATE is begin Indent_Puts ("Index := yy_cp;"); Indent_Puts ("Next (yy_ch_buf, Index, Code);"); if USEECS then INDENT_PUTS("yy_c := yy_ec(Code);"); else INDENT_PUTS("yy_c := Code;"); end if; -- if (USEECS) then -- INDENT_PUTS("yy_c := yy_ec(Current (yy_ch_buf, yy_cp));"); -- else -- INDENT_PUTS("yy_c := Current (yy_ch_buf, yy_cp);"); -- end if; -- save the backtracking info \before/ computing the next state -- because we always compute one more state than needed - we -- always proceed until we reach a jam state GEN_BACKTRACKING; INDENT_PUTS( "while ( yy_chk(yy_base(yy_current_state) + yy_c) /= yy_current_state ) loop" ); INDENT_UP; INDENT_PUTS("yy_current_state := yy_def(yy_current_state);"); if (USEMECS) then -- we've arrange it so that templates are never chained -- to one another. This means we can afford make a -- very simple test to see if we need to convert to -- yy_c's meta-equivalence class without worrying -- about erroneously looking up the meta-equivalence -- class twice Do_Indent; -- lastdfa + 2 is the beginning of the templates Put_Line ("if yy_current_state >= YY_FIRST_TEMPLATE then"); INDENT_UP; INDENT_PUTS("yy_c := yy_meta(yy_c);"); INDENT_DOWN; INDENT_PUTS("end if;"); end if; INDENT_DOWN; INDENT_PUTS("end loop;"); INDENT_PUTS("yy_current_state := yy_nxt(yy_base(yy_current_state) + yy_c);") ; INDENT_DOWN; end GEN_NEXT_COMPRESSED_STATE; -- generate the code to find the next match procedure GEN_NEXT_MATCH is -- note - changes in here should be reflected in get_next_state begin if (FULLTBL) then INDENT_PUTS( "yy_current_state := yy_nxt(yy_current_state, Current (yy_ch_buf, yy_cp)));"); INDENT_PUTS("while ( yy_current_state > 0 ) loop"); INDENT_UP; INDENT_PUTS("yy_cp := Index;"); INDENT_PUTS( "yy_current_state := yy_nxt(yy_current_state, Current (yy_ch_buf, yy_cp));"); INDENT_DOWN; INDENT_PUTS("end loop;"); INDENT_PUTS("yy_current_state := -yy_current_state;"); if (NUM_BACKTRACKING > 0) then GEN_BACKTRACKING; end if; NEW_LINE; else -- compressed INDENT_PUTS("loop"); INDENT_UP; GEN_NEXT_STATE; INDENT_PUTS("yy_cp := Index;"); if (INTERACTIVE) then Put_Line (" exit when yy_base (yy_current_state) = YY_JAMBASE;"); else Put_Line (" exit when yy_current_state = YY_JAMSTATE;"); end if; INDENT_DOWN; Do_Indent; PUT_LINE("end loop;"); if (not INTERACTIVE) then INDENT_PUTS("yy_cp := yy_last_accepting_cpos;"); INDENT_PUTS("yy_current_state := yy_last_accepting_state;"); end if; end if; end GEN_NEXT_MATCH; -- generate the code to find the next state procedure GEN_NEXT_STATE is -- note - changes in here should be reflected in get_next_match begin INDENT_UP; if (FULLTBL) then INDENT_PUTS("yy_current_state := yy_nxt(yy_current_state,"); INDENT_PUTS(" Current (yy_ch_buf, yy_cp));"); GEN_BACKTRACKING; else GEN_NEXT_COMPRESSED_STATE; end if; end GEN_NEXT_STATE; -- generate the code to find the start state procedure GEN_START_STATE is begin INDENT_PUTS("yy_current_state := yy_start;"); if (BOL_NEEDED) then INDENT_PUTS("if Previous (yy_ch_buf, yy_bp) = Ada.Characters.Wide_Wide_Latin_1.LF then"); INDENT_UP; INDENT_PUTS("yy_current_state := yy_current_state + 1;"); INDENT_DOWN; INDENT_PUTS("end if;"); end if; end GEN_START_STATE; -- gentabs - generate data statements for the transition tables procedure GENTABS is I, K, TOTAL_STATES : INTEGER; ACC_ARRAY : INT_PTR; END_OF_BUFFER_ACTION : constant INTEGER := NUM_RULES + 1; -- *everything* is done in terms of arrays starting at 1, so provide -- a null entry for the zero element of all C arrays begin ACC_ARRAY := ALLOCATE_INTEGER_ARRAY(CURRENT_MAX_DFAS); NUMMT := 0; -- the compressed table format jams by entering the "jam state", -- losing information about the previous state in the process. -- In order to recover the previous state, we effectively need -- to keep backtracking information. NUM_BACKTRACKING := NUM_BACKTRACKING + 1; DFAACC(END_OF_BUFFER_STATE).DFAACC_STATE := END_OF_BUFFER_ACTION; for CNT in 1 .. LASTDFA loop ACC_ARRAY(CNT) := DFAACC(CNT).DFAACC_STATE; end loop; ACC_ARRAY(LASTDFA + 1) := 0; -- add accepting number for the jam state -- spit out ALIST array, dumping the accepting numbers. -- "lastdfa + 2" is the size of ALIST; includes room for arrays -- beginning at 0 and for "jam" state K := LASTDFA + 2; PUT("yy_accept : constant array(0.."); PUT(K - 1, 1); PUT_LINE(") of short :="); PUT_LINE(" ( 0,"); for CNT in 1 .. LASTDFA loop MISC.MKDATA(ACC_ARRAY(CNT)); if (TRACE and (ACC_ARRAY(CNT) /= 0)) then PUT(STANDARD_ERROR, "state # "); PUT(STANDARD_ERROR, CNT, 1); PUT(STANDARD_ERROR, " accepts: ["); PUT(STANDARD_ERROR, ACC_ARRAY(CNT), 1); PUT(STANDARD_ERROR, ']'); NEW_LINE(STANDARD_ERROR); end if; end loop; -- add entry for "jam" state MISC.MKDATA(ACC_ARRAY(LASTDFA + 1)); MISC.DATAEND; if (USEECS) then GENECS; end if; if (USEMECS) then -- write out meta-equivalence classes (used to index templates with) if (TRACE) then NEW_LINE(STANDARD_ERROR); NEW_LINE(STANDARD_ERROR); PUT_LINE(STANDARD_ERROR, "Meta-Equivalence Classes:"); end if; PUT("yy_meta : constant array(0.."); PUT(NUMECS, 1); PUT_LINE(") of short :="); PUT_LINE(" ( 0,"); for CNT in 1 .. NUMECS loop if (TRACE) then PUT(STANDARD_ERROR, CNT, 1); PUT(STANDARD_ERROR, " = "); PUT(STANDARD_ERROR, abs(TECBCK(CNT)), 1); NEW_LINE(STANDARD_ERROR); end if; MISC.MKDATA(abs(TECBCK(CNT))); end loop; MISC.DATAEND; end if; TOTAL_STATES := LASTDFA + NUMTEMPS; PUT("yy_base : constant array(0.."); PUT(TOTAL_STATES, 1); if (TBLEND > MAX_SHORT) then PUT_LINE(") of integer :="); else PUT_LINE(") of short :="); end if; PUT_LINE(" ( 0,"); for CNT in 1 .. LASTDFA loop declare D : constant INTEGER := DEF(CNT); begin if (BASE(CNT) = JAMSTATE_CONST) then BASE(CNT) := JAMBASE; end if; if (D = JAMSTATE_CONST) then DEF(CNT) := JAMSTATE; else if (D < 0) then -- template reference TMPUSES := TMPUSES + 1; DEF(CNT) := LASTDFA - D + 1; end if; end if; MISC.MKDATA(BASE(CNT)); end; end loop; -- generate jam state's base index I := LASTDFA + 1; MISC.MKDATA(BASE(I)); -- skip jam state I := I + 1; for CNT in I .. TOTAL_STATES loop MISC.MKDATA(BASE(CNT)); DEF(CNT) := JAMSTATE; end loop; MISC.DATAEND; PUT("yy_def : constant array(0.."); PUT(TOTAL_STATES, 1); if (TBLEND > MAX_SHORT) then PUT_LINE(") of integer :="); else PUT_LINE(") of short :="); end if; PUT_LINE(" ( 0,"); for CNT in 1 .. TOTAL_STATES loop MISC.MKDATA(DEF(CNT)); end loop; MISC.DATAEND; PUT("yy_nxt : constant array(0.."); PUT(TBLEND, 1); if (LASTDFA > MAX_SHORT) then PUT_LINE(") of integer :="); else PUT_LINE(") of short :="); end if; PUT_LINE(" ( 0,"); for CNT in 1 .. TBLEND loop if ((NXT(CNT) = 0) or (CHK(CNT) = 0)) then NXT(CNT) := JAMSTATE; -- new state is the JAM state end if; MISC.MKDATA(NXT(CNT)); end loop; MISC.DATAEND; PUT("yy_chk : constant array(0.."); PUT(TBLEND, 1); if (LASTDFA > MAX_SHORT) then PUT_LINE(") of integer :="); else PUT_LINE(") of short :="); end if; PUT_LINE(" ( 0,"); for CNT in 1 .. TBLEND loop if (CHK(CNT) = 0) then NUMMT := NUMMT + 1; end if; MISC.MKDATA(CHK(CNT)); end loop; MISC.DATAEND; exception when STORAGE_ERROR => Misc.Aflex_Fatal ("dynamic memory failure in gentabs()"); end GENTABS; ----------------- -- INDENT_PUTS -- ----------------- -- write out a string at the current indentation level, adding a final -- newline procedure INDENT_PUTS(STR : Wide_Wide_String) is begin Do_Indent; PUT_LINE (STR); end INDENT_PUTS; -- do_sect3_out - dumps section 3. procedure DO_SECT3_OUT is GARBAGE : TOKEN; pragma Unreferenced (GARBAGE); begin Scanner.CALL_YYLEX := TRUE; GARBAGE := Scanner.YYLex; end DO_SECT3_OUT; -- make_tables - generate transition tables -- -- -- Generates transition tables and finishes generating output file ----------------- -- Body_Header -- ----------------- procedure Body_Header is Output_Body_File : File_Type; begin Put_Line ("package " & Misc.Basename & " is"); DO_SECT3_OUT; Put_Line ("end " & Misc.Basename & ";"); External_File_Manager.Get_Scanner_Body_File (Output_Body_File); Skeleton_Manager.Skel_Out; DO_SECT3_OUT; Put ("with " & Misc.Basename & ".DFA; "); Put_Line ("use " & Misc.Basename & ".DFA;"); Put ("with " & Misc.Basename & ".IO; "); Put_Line ("use " & Misc.Basename & ".IO;"); Put_Line ("package body " & Misc.Basename & " is"); DO_SECT3_OUT; end Body_Header; procedure MAKE_TABLES is DID_EOF_RULE : BOOLEAN := FALSE; BUF : Unbounded_Wide_Wide_String; begin if (not FULLTBL) then -- if we used full tables this is already output DO_SECT3_OUT; BODY_HEADER; -- intent of this call is to get everything up to ## SKELETON_MANAGER.SKEL_OUT; -- output YYLex code up to part about tables. end if; PUT(" YY_END_OF_BUFFER : constant := "); PUT(NUM_RULES + 1, 1); PUT_LINE(";"); if INTERACTIVE then Put (" YY_JAMBASE : constant := "); Put (JAMBASE, 1); Put_Line (";"); else Put (" YY_JAMSTATE : constant := "); Put (JAMSTATE, 1); Put_Line (";"); end if; -- lastdfa + 2 is the beginning of the templates Put (" YY_FIRST_TEMPLATE : constant := "); Put (LASTDFA + 2, 1); Put_Line (";"); INDENT_PUTS("YY_Current_State : YY_State_Type;"); -- now output the constants for the various start conditions RESET (DEF_FILE, IN_FILE); while not END_OF_FILE(DEF_FILE) loop GET_LINE (DEF_FILE, BUF); PUT_LINE (BUF); end loop; if (FULLTBL) then GENFTBL; else GENTABS; end if; RESET (TEMP_ACTION_FILE, IN_FILE); -- generate code for yy_get_previous_state SET_INDENT(1); SKELETON_MANAGER.SKEL_OUT; if (BOL_NEEDED) then INDENT_PUTS("yy_bp : integer := yytext_ptr;"); end if; SKELETON_MANAGER.SKEL_OUT; GEN_START_STATE; SKELETON_MANAGER.SKEL_OUT; GEN_NEXT_STATE; SKELETON_MANAGER.SKEL_OUT; SET_INDENT(2); INDENT_PUTS("yy_bp := yy_cp;"); GEN_START_STATE; GEN_NEXT_MATCH; SKELETON_MANAGER.SKEL_OUT; SET_INDENT(3); GEN_FIND_ACTION; SET_INDENT(1); SKELETON_MANAGER.SKEL_OUT; INDENT_UP; GEN_BT_ACTION; MISC.ACTION_OUT; MISC.ACTION_OUT; -- Generate cases for any missing EOF rules. SET_INDENT (4); for I in 1 .. LASTSC loop if not SCEOF (I) then Do_Indent; if not DID_EOF_RULE then PUT ("when "); else PUT (" | "); end if; PUT ("YY_END_OF_BUFFER + "); PUT (SCNAME (I)); PUT (" + 1 "); DID_EOF_RULE := TRUE; end if; end loop; if DID_EOF_RULE then Do_Indent; Put_Line ("=>"); end if; if DID_EOF_RULE then INDENT_UP; INDENT_PUTS("return End_Of_Input;"); INDENT_DOWN; end if; SKELETON_MANAGER.SKEL_OUT; -- copy remainder of input to output MISC.LINE_DIRECTIVE_OUT; DO_SECT3_OUT; -- copy remainder of input, after ##, to the scanner file. end MAKE_TABLES; end GEN;
zhmu/ananas
Ada
10,124
adb
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P U T _ S C O S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2009-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Namet; with Opt; with SCOs; use SCOs; procedure Put_SCOs is Current_SCO_Unit : SCO_Unit_Index := 0; -- Initial value must not be a valid unit index procedure Write_SCO_Initiate (SU : SCO_Unit_Index); -- Start SCO line for unit SU, also emitting SCO unit header if necessary procedure Write_Instance_Table; -- Output the SCO table of instances procedure Output_Range (T : SCO_Table_Entry); -- Outputs T.From and T.To in line:col-line:col format procedure Output_Source_Location (Loc : Source_Location); -- Output source location in line:col format procedure Output_String (S : String); -- Output S ------------------ -- Output_Range -- ------------------ procedure Output_Range (T : SCO_Table_Entry) is begin Output_Source_Location (T.From); Write_Info_Char ('-'); Output_Source_Location (T.To); end Output_Range; ---------------------------- -- Output_Source_Location -- ---------------------------- procedure Output_Source_Location (Loc : Source_Location) is begin Write_Info_Nat (Nat (Loc.Line)); Write_Info_Char (':'); Write_Info_Nat (Nat (Loc.Col)); end Output_Source_Location; ------------------- -- Output_String -- ------------------- procedure Output_String (S : String) is begin for J in S'Range loop Write_Info_Char (S (J)); end loop; end Output_String; -------------------------- -- Write_Instance_Table -- -------------------------- procedure Write_Instance_Table is begin for J in 1 .. SCO_Instance_Table.Last loop declare SIE : SCO_Instance_Table_Entry renames SCO_Instance_Table.Table (J); begin Output_String ("C i "); Write_Info_Nat (Nat (J)); Write_Info_Char (' '); Write_Info_Nat (SIE.Inst_Dep_Num); Write_Info_Char ('|'); Output_Source_Location (SIE.Inst_Loc); if SIE.Enclosing_Instance > 0 then Write_Info_Char (' '); Write_Info_Nat (Nat (SIE.Enclosing_Instance)); end if; Write_Info_Terminate; end; end loop; end Write_Instance_Table; ------------------------ -- Write_SCO_Initiate -- ------------------------ procedure Write_SCO_Initiate (SU : SCO_Unit_Index) is SUT : SCO_Unit_Table_Entry renames SCO_Unit_Table.Table (SU); begin if Current_SCO_Unit /= SU then Write_Info_Initiate ('C'); Write_Info_Char (' '); Write_Info_Nat (SUT.Dep_Num); Write_Info_Char (' '); Output_String (SUT.File_Name.all); Write_Info_Terminate; Current_SCO_Unit := SU; end if; Write_Info_Initiate ('C'); end Write_SCO_Initiate; -- Start of processing for Put_SCOs begin -- Loop through entries in SCO_Unit_Table. Note that entry 0 is by -- convention present but unused. for U in 1 .. SCO_Unit_Table.Last loop declare SUT : SCO_Unit_Table_Entry renames SCO_Unit_Table.Table (U); Start : Nat; Stop : Nat; begin Start := SUT.From; Stop := SUT.To; -- Loop through SCO entries for this unit loop exit when Start = Stop + 1; pragma Assert (Start <= Stop); Output_SCO_Line : declare T : SCO_Table_Entry renames SCO_Table.Table (Start); Continuation : Boolean; Ctr : Nat; -- Counter for statement entries begin case T.C1 is -- Statements (and dominance markers) when 'S' | '>' => Ctr := 0; Continuation := False; loop if Ctr = 0 then Write_SCO_Initiate (U); if not Continuation then Write_Info_Char ('S'); Continuation := True; else Write_Info_Char ('s'); end if; end if; Write_Info_Char (' '); declare Sent : SCO_Table_Entry renames SCO_Table.Table (Start); begin if Sent.C1 = '>' then Write_Info_Char (Sent.C1); end if; if Sent.C2 /= ' ' then Write_Info_Char (Sent.C2); if Sent.C1 = 'S' and then (Sent.C2 = 'P' or else Sent.C2 = 'p') and then Sent.Pragma_Aspect_Name /= No_Name then Write_Info_Name (Sent.Pragma_Aspect_Name); Write_Info_Char (':'); end if; end if; -- For dependence markers (except E), output sloc. -- For >E and all statement entries, output sloc -- range. if Sent.C1 = '>' and then Sent.C2 /= 'E' then Output_Source_Location (Sent.From); else Output_Range (Sent); end if; end; -- Increment entry counter (up to 6 entries per line, -- continuation lines are marked Cs). Ctr := Ctr + 1; if Ctr = 6 then Write_Info_Terminate; Ctr := 0; end if; exit when SCO_Table.Table (Start).Last; Start := Start + 1; end loop; if Ctr > 0 then Write_Info_Terminate; end if; -- Decision when 'E' | 'G' | 'I' | 'P' | 'W' | 'X' | 'A' => Start := Start + 1; Write_SCO_Initiate (U); Write_Info_Char (T.C1); if T.C1 = 'A' then Write_Info_Name (T.Pragma_Aspect_Name); end if; if T.C1 /= 'X' then Write_Info_Char (' '); Output_Source_Location (T.From); end if; -- Loop through table entries for this decision loop declare T : SCO_Table_Entry renames SCO_Table.Table (Start); begin Write_Info_Char (' '); if T.C1 = '!' or else T.C1 = '&' or else T.C1 = '|' then Write_Info_Char (T.C1); pragma Assert (T.C2 /= '?'); Output_Source_Location (T.From); else Write_Info_Char (T.C2); Output_Range (T); end if; exit when T.Last; Start := Start + 1; end; end loop; Write_Info_Terminate; when ASCII.NUL => -- Nullified entry: skip null; when others => raise Program_Error; end case; end Output_SCO_Line; Start := Start + 1; end loop; end; end loop; if Opt.Generate_SCO_Instance_Table then Write_Instance_Table; end if; end Put_SCOs;
charlie5/cBound
Ada
1,421
ads
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_xc_misc_get_xid_list_cookie_t is -- Item -- type Item is record sequence : aliased Interfaces.C.unsigned; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_xc_misc_get_xid_list_cookie_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_xc_misc_get_xid_list_cookie_t.Item, Element_Array => xcb.xcb_xc_misc_get_xid_list_cookie_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_xc_misc_get_xid_list_cookie_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_xc_misc_get_xid_list_cookie_t.Pointer, Element_Array => xcb.xcb_xc_misc_get_xid_list_cookie_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_xc_misc_get_xid_list_cookie_t;
damaki/libkeccak
Ada
3,072
ads
------------------------------------------------------------------------------- -- Copyright (c) 2019, Daniel King -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- * Redistributions of source code must retain the above copyright -- notice, this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * The name of the copyright holder may not be used to endorse or promote -- Products derived from this software without specific prior written -- permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY -- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- with Keccak.Generic_Duplex; with Keccak.Generic_Sponge; with Keccak.Padding; pragma Elaborate_All (Keccak.Generic_Duplex); pragma Elaborate_All (Keccak.Generic_Sponge); -- @summary -- Instantiation of Keccak-p[200,18], with a Sponge and Duplex built on top of it. package Keccak.Keccak_200.Rounds_18 with SPARK_Mode => On is procedure Permute is new KeccakF_200_Permutation.Permute (Num_Rounds => 18); package Sponge is new Keccak.Generic_Sponge (State_Size_Bits => KeccakF_200.State_Size_Bits, State_Type => State, Init_State => KeccakF_200.Init, Permute => Permute, XOR_Bits_Into_State => KeccakF_200_Lanes.XOR_Bits_Into_State, Extract_Data => KeccakF_200_Lanes.Extract_Bytes, Pad => Keccak.Padding.Pad101_Multi_Blocks); package Duplex is new Keccak.Generic_Duplex (State_Size_Bits => KeccakF_200.State_Size_Bits, State_Type => State, Init_State => KeccakF_200.Init, Permute => Permute, XOR_Bits_Into_State => KeccakF_200_Lanes.XOR_Bits_Into_State, Extract_Bits => KeccakF_200_Lanes.Extract_Bits, Pad => Keccak.Padding.Pad101_Single_Block, Min_Padding_Bits => Keccak.Padding.Pad101_Min_Bits); end Keccak.Keccak_200.Rounds_18;
damaki/libkeccak
Ada
3,931
adb
------------------------------------------------------------------------------- -- Copyright (c) 2019, Daniel King -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- * Redistributions of source code must retain the above copyright -- notice, this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * The name of the copyright holder may not be used to endorse or promote -- Products derived from this software without specific prior written -- permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY -- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- package body Keccak.Generic_Parallel_XOF is ------------ -- Init -- ------------ procedure Init (Ctx : out Context) is begin XOF_Sponge.Init (Ctx.Sponge_Ctx); end Init; ----------------------- -- Update_Separate -- ----------------------- procedure Update_Separate (Ctx : in out Context; Data : in Types.Byte_Array) is Block_Size : constant Natural := (Data'Length / Num_Parallel_Instances); begin pragma Assume (Rate = XOF_Sponge.Rate_Of (Ctx.Sponge_Ctx)); if Block_Size mod (Rate / 8) = 0 then XOF_Sponge.Absorb_Bytes_Separate (Ctx.Sponge_Ctx, Data); else XOF_Sponge.Absorb_Bytes_Separate_With_Suffix (Ctx => Ctx.Sponge_Ctx, Data => Data, Suffix => Suffix, Suffix_Len => Suffix_Size); end if; end Update_Separate; ------------------ -- Update_All -- ------------------ procedure Update_All (Ctx : in out Context; Data : in Types.Byte_Array) is begin pragma Assume (Rate = XOF_Sponge.Rate_Of (Ctx.Sponge_Ctx)); if Data'Length mod (Rate / 8) = 0 then XOF_Sponge.Absorb_Bytes_All (Ctx.Sponge_Ctx, Data); else XOF_Sponge.Absorb_Bytes_All_With_Suffix (Ctx => Ctx.Sponge_Ctx, Data => Data, Suffix => Suffix, Suffix_Len => Suffix_Size); end if; end Update_All; ------------------------ -- Extract_Separate -- ------------------------ procedure Extract_Separate (Ctx : in out Context; Data : out Types.Byte_Array) is Empty_Array : constant Types.Byte_Array (1 .. 0) := (others => 0); begin if State_Of (Ctx) = Updating then XOF_Sponge.Absorb_Bytes_Separate_With_Suffix (Ctx => Ctx.Sponge_Ctx, Data => Empty_Array, Suffix => Suffix, Suffix_Len => Suffix_Size); end if; XOF_Sponge.Squeeze_Bytes_Separate (Ctx.Sponge_Ctx, Data); end Extract_Separate; end Keccak.Generic_Parallel_XOF;
AdaCore/libadalang
Ada
116
adb
procedure Pkg.Foo (X : Sub) is begin null; end Pkg.Foo; --% node.p_enclosing_compilation_unit.p_imported_units()
KLOC-Karsten/adaoled
Ada
1,361
ads
with Interfaces; use Interfaces; with Interfaces.C; use Interfaces.C; with Bitmap_Graphics; use Bitmap_Graphics; package OLED_SH1106 is function Start_Driver return Boolean; procedure Stop_Driver ; procedure Init_Display; procedure Show; -- Graphics Routine. procedure Clear (Clr: Color:= Black); procedure Dot (P: Point; Size: Positive:= 1; Clr: Color:= White); procedure Line (P,Q: Point; Size: Positive:= 1; Clr: Color:= White); procedure Rectangle (P, Q: Point; Size: Positive:= 1; Clr: Color:= White); procedure Fill_Rectangle (P, Q: Point; Clr: Color := White); procedure Circle (Center: Point; R:Natural; Size: Positive := 1; Clr: Color:= White); procedure Fill_Circle (Center: Point; R: Natural; Clr: Color:= White); procedure Put (P : Point; Ch : Character; Size : Positive:= 12; Fgnd : Color := White; Bgnd : Color := Black); procedure Put (P : Point; Text : String; Size : Positive:= 12; Fgnd : Color := White; Bgnd : Color := Black); procedure Put (P : Point; Num : Natural; Size : Positive := 12; Fgnd : Color:= White; Bgnd : Color:= Black); procedure Bitmap (P: Point; Bytes : Byte_Array_Access; S: Size); procedure Bitmap (P: Point; Icon: Bitmap_Icon); end OLED_SH1106;
reznikmm/matreshka
Ada
4,743
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Number_Time_Style_Elements; package Matreshka.ODF_Number.Time_Style_Elements is type Number_Time_Style_Element_Node is new Matreshka.ODF_Number.Abstract_Number_Element_Node and ODF.DOM.Number_Time_Style_Elements.ODF_Number_Time_Style with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Number_Time_Style_Element_Node; overriding function Get_Local_Name (Self : not null access constant Number_Time_Style_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Number_Time_Style_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Number_Time_Style_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Number_Time_Style_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Number.Time_Style_Elements;
jwarwick/aoc_2020
Ada
180
ads
-- AOC 2020, Day 15 package Day is type Input_Array is array(Natural range <>) of Natural; function sequence(s : in Input_Array; step : in Natural) return Natural; end Day;
Owen864720655/userIntentDataset
Ada
1,080,764
ads
0 24 0.073729 20 0.071803 18 0.061656 19 0.058444 23 0.058124 22 0.05725 21 0.054979 3 0.050712 4 0.049857 5 0.049602 9 0.049094 8 0.045431 1 0.045059 7 0.045013 2 0.044846 6 0.043185 12 0.028974 17 0.027317 10 0.025672 11 0.023767 16 0.01151 0 0.010307 14 0.009419 15 0.004253 24 0.073729 20 0.071803 18 0.061656 19 0.058444 23 0.058124 22 0.05725 21 0.054979 3 0.050712 4 0.049857 5 0.049602 9 0.049094 8 0.045431 1 0.045059 7 0.045013 2 0.044846 6 0.043185 12 0.028974 17 0.027317 10 0.025672 11 0.023767 16 0.01151 0 0.010307 14 0.009419 15 0.004253 21 0.06614121090676649 18 0.06605987146804916 19 0.06516452367147936 22 0.06316612156140836 20 0.06251339595350332 24 0.05986614315712183 23 0.04979182938783873 12 0.0444057747379647 11 0.043667007219438905 9 0.04360485970402092 10 0.039479390637559994 17 0.03700308849216026 4 0.034146742436216834 5 0.03376179936967337 3 0.03205966023315631 6 0.02918302123533381 8 0.029074750982407666 7 0.028913018463502266 1 0.028790208830328543 2 0.028500515897348904 14 0.02595847294035362 16 0.025536706062622188 0 0.02488663982095908 13 0.020858668897395186 15 0.012872645100832204 __DUMMY__ 0.004593932832557941 false 1.0 1 18 0.06617 22 0.062982 19 0.060374 9 0.054082 20 0.053323 24 0.053025 21 0.05177 17 0.047049 23 0.046203 4 0.043104 5 0.042457 3 0.041516 8 0.03914 1 0.038936 7 0.038904 6 0.038657 10 0.038515 2 0.038367 11 0.03417 0 0.033831 16 0.028536 12 0.025227 14 0.012237 15 0.011424 18 0.06617 22 0.062982 19 0.060374 9 0.054082 20 0.053323 24 0.053025 21 0.05177 17 0.047049 23 0.046203 4 0.043104 5 0.042457 3 0.041516 8 0.03914 1 0.038936 7 0.038904 6 0.038657 10 0.038515 2 0.038367 11 0.03417 0 0.033831 16 0.028536 12 0.025227 14 0.012237 15 0.011424 18 0.06756762464970162 22 0.0657421015998354 19 0.06423277838156093 21 0.06266689719288214 20 0.05156431820312115 24 0.048618386030530446 11 0.047787582660753614 9 0.0474871568477514 17 0.04674757421306993 10 0.045865774646764834 23 0.04333883718447246 12 0.040188830689105004 0 0.03707026717767294 16 0.032900152306912664 4 0.03225326607637938 5 0.031670344760850754 3 0.029127023032518948 6 0.028461162427376136 8 0.027612433145997515 7 0.027514018957949502 1 0.02738972392816588 2 0.026920752128976308 14 0.026756995463385433 13 0.019411677206843326 15 0.016792812869179722 __DUMMY__ 0.004311508218242681 false 1.0 2 20 0.083445 24 0.080885 23 0.065318 19 0.057714 21 0.054338 18 0.053083 12 0.047492 3 0.04434 4 0.043733 5 0.043702 22 0.041201 8 0.03962 1 0.039618 7 0.039421 2 0.039381 6 0.038167 9 0.031832 14 0.027757 13 0.025485 15 0.023023 11 0.021505 10 0.019901 17 0.019564 16 0.019475 20 0.083445 24 0.080885 23 0.065318 19 0.057714 21 0.054338 18 0.053083 12 0.047492 3 0.04434 4 0.043733 5 0.043702 22 0.041201 8 0.03962 1 0.039618 7 0.039421 2 0.039381 6 0.038167 9 0.031832 14 0.027757 13 0.025485 15 0.023023 11 0.021505 10 0.019901 17 0.019564 16 0.019475 20 0.07125121809441111 21 0.06568196731155926 19 0.06540389265183259 24 0.06524170432276581 18 0.061564191674801004 12 0.05570000052283578 23 0.05523735666777749 22 0.05303019240043694 11 0.04059353359346759 14 0.03577675137326673 13 0.03567420933382982 10 0.035004568628797604 9 0.03282555654113947 17 0.031982143126604835 4 0.03090194603347665 5 0.030620618431155114 16 0.029846858560264148 3 0.028641570253132447 6 0.02650709875333022 8 0.025965135230164416 7 0.025891842852908208 1 0.025851225963952035 2 0.025585430280069515 15 0.023058699252700224 0 0.017444194708362278 __DUMMY__ 0.004718093436958561 false 1.0 3 20 0.115717 19 0.101955 24 0.083132 18 0.081487 21 0.079234 12 0.077526 23 0.066153 16 0.059682 13 0.051246 14 0.05027 22 0.046589 15 0.040739 11 0.038839 17 0.038294 10 0.036236 9 0.007216 4 0.006471 0 0.005762 5 0.005158 3 0.003472 6 0.001461 7 0.001208 1 0.001156 8 9.97E-4 20 0.115717 19 0.101955 24 0.083132 18 0.081487 21 0.079234 12 0.077526 23 0.066153 16 0.059682 13 0.051246 14 0.05027 22 0.046589 15 0.040739 11 0.038839 17 0.038294 10 0.036236 9 0.007216 4 0.006471 0 0.005762 5 0.005158 3 0.003472 6 0.001461 7 0.001208 1 0.001156 8 9.97E-4 19 0.0853109335484355 20 0.08409532288193643 21 0.07667511014467619 18 0.07524974924592516 12 0.06756804588471921 24 0.06450948908447293 22 0.056659964339707 23 0.05419223540915302 11 0.049408763096441335 16 0.048139424498212666 14 0.04707032864597259 13 0.046622489544921465 10 0.044315226801300234 17 0.04133842592632703 15 0.03244137192462532 9 0.022945792141937513 0 0.021529320246919195 4 0.013632899648571454 5 0.012757032728642936 3 0.009738154479584283 6 0.009489382564232334 7 0.008221637022972041 8 0.00810432950399085 1 0.00806248688274588 2 0.007345373586937143 __DUMMY__ 0.004576710216640338 false 1.0 4 13 0.117399 14 0.103927 12 0.090517 10 0.083109 21 0.075291 18 0.074776 11 0.073892 15 0.05679 22 0.050022 19 0.046275 20 0.041179 0 0.037456 9 0.030547 23 0.027528 17 0.024574 24 0.017129 16 0.014102 5 0.009197 4 0.009003 6 0.008174 1 0.002326 2 0.002301 7 0.002261 8 0.002226 13 0.117399 14 0.103927 12 0.090517 10 0.083109 21 0.075291 18 0.074776 11 0.073892 15 0.05679 22 0.050022 19 0.046275 20 0.041179 0 0.037456 9 0.030547 23 0.027528 17 0.024574 24 0.017129 16 0.014102 5 0.009197 4 0.009003 6 0.008174 1 0.002326 2 0.002301 7 0.002261 8 0.002226 13 0.08223673233104203 12 0.07646308152778211 21 0.07561525895884978 14 0.07401760389090613 18 0.07064027175047731 11 0.0675847830479634 10 0.06701241376930701 22 0.058141424007574466 19 0.05573958632136152 20 0.04524920515033148 15 0.0388204075689156 0 0.03774618830483798 23 0.03491199849584784 9 0.034502409174306484 17 0.03398422187595411 24 0.030811583454288614 16 0.024142438541712403 4 0.015327024867091907 5 0.015160850461536698 6 0.013462466814310936 7 0.009115478385198154 8 0.009095807076329758 1 0.009035945679052783 2 0.008852535859388277 3 0.008070214232807823 __DUMMY__ 0.00426006845282533 false 1.0 5 22 0.060025 18 0.057786 9 0.057498 24 0.054133 4 0.050446 19 0.05025 3 0.049342 21 0.049058 5 0.048918 20 0.04842 23 0.047572 8 0.04677 7 0.046715 1 0.046554 6 0.045829 2 0.045722 17 0.039225 10 0.035447 11 0.033038 0 0.03036 12 0.022246 16 0.018235 14 0.010446 15 0.005963 22 0.060025 18 0.057786 9 0.057498 24 0.054133 4 0.050446 19 0.05025 3 0.049342 21 0.049058 5 0.048918 20 0.04842 23 0.047572 8 0.04677 7 0.046715 1 0.046554 6 0.045829 2 0.045722 17 0.039225 10 0.035447 11 0.033038 0 0.03036 12 0.022246 16 0.018235 14 0.010446 15 0.005963 22 0.06582787424473703 18 0.06356544557923013 21 0.06252198517655554 19 0.05945375689683389 9 0.04989684431393109 24 0.0489708603722324 11 0.0485094039668106 20 0.04811729046241334 10 0.04443541083565495 23 0.04354700087494779 17 0.04340233788280085 12 0.03875794381396024 0 0.03617619124533654 4 0.035818268892785776 5 0.03482630566629148 3 0.032839889131822314 6 0.03187613971793089 8 0.031201810457783346 7 0.031194020528673875 1 0.030976219690811817 2 0.03037315183363138 16 0.027556220696286146 14 0.024985918164720396 13 0.018538697879041204 15 0.012502687085586169 __DUMMY__ 0.004128324589190719 false 1.0 6 20 0.119602 19 0.111406 24 0.090112 18 0.081864 21 0.074139 23 0.072107 16 0.062797 12 0.0583 22 0.052678 15 0.047726 14 0.047234 11 0.037891 10 0.0367 17 0.035319 13 0.02956 4 0.00876 3 0.008074 9 0.007686 5 0.007562 8 0.002873 7 0.00249 1 0.002243 2 0.001701 6 0.001174 20 0.119602 19 0.111406 24 0.090112 18 0.081864 21 0.074139 23 0.072107 16 0.062797 12 0.0583 22 0.052678 15 0.047726 14 0.047234 11 0.037891 10 0.0367 17 0.035319 13 0.02956 4 0.00876 3 0.008074 9 0.007686 5 0.007562 8 0.002873 7 0.00249 1 0.002243 2 0.001701 6 0.001174 19 0.0901441840126216 20 0.08648176768170648 18 0.07551900967472241 21 0.0733882411532465 24 0.06853884331181868 22 0.05961203251019243 23 0.05741352019870584 12 0.05647790879230688 16 0.04994606570848923 11 0.04807932489782244 14 0.044956343909472535 10 0.0442120484669982 17 0.04004965746775802 15 0.036426927770843776 13 0.0341056829365157 9 0.023426793091929382 0 0.01833300375855478 4 0.015174114137355378 5 0.014342540704805775 3 0.0126100114004607 6 0.00969483999137959 8 0.009516797650686233 7 0.00936008035515306 1 0.009093949450807845 2 0.008659237318826379 __DUMMY__ 0.004437073646820264 false 1.0 7 19 0.098244 18 0.088139 22 0.086974 17 0.07664 21 0.071896 11 0.067844 16 0.067059 0 0.064538 10 0.062019 9 0.05206 20 0.051731 24 0.03822 12 0.03656 23 0.035768 4 0.01461 5 0.013411 6 0.011214 3 0.010522 14 0.00985 8 0.009849 7 0.009678 1 0.009135 2 0.008791 15 0.005246 19 0.098244 18 0.088139 22 0.086974 17 0.07664 21 0.071896 11 0.067844 16 0.067059 0 0.064538 10 0.062019 9 0.05206 20 0.051731 24 0.03822 12 0.03656 23 0.035768 4 0.01461 5 0.013411 6 0.011214 3 0.010522 14 0.00985 8 0.009849 7 0.009678 1 0.009135 2 0.008791 15 0.005246 19 0.08083609634137853 22 0.07671398178747602 18 0.07643249607066743 21 0.07134262673705928 11 0.06381430900254878 17 0.06155974893227833 10 0.05607279332778367 0 0.05296560865963977 16 0.05169555341581625 20 0.04872463686110331 9 0.046899886612565014 12 0.0455679486264908 24 0.040506058406945517 23 0.03841663458230839 14 0.023873991398355957 4 0.019708070247212668 13 0.01909895640800118 5 0.018867531174069953 6 0.016691290829591397 3 0.015283123451813235 8 0.014859313964610566 7 0.01479338554007332 1 0.01440488896928909 2 0.014034415880994675 15 0.012542205433564341 __DUMMY__ 0.004294447338362616 false 1.0 8 19 0.092637 18 0.090191 10 0.077732 11 0.069701 22 0.068824 21 0.067846 16 0.063436 17 0.062254 20 0.060897 0 0.055291 12 0.053078 14 0.047127 13 0.039442 9 0.039098 15 0.034727 24 0.032039 23 0.030924 4 0.0053 5 0.004765 6 0.002601 3 9.37E-4 7 4.96E-4 8 3.68E-4 1 2.88E-4 19 0.092637 18 0.090191 10 0.077732 11 0.069701 22 0.068824 21 0.067846 16 0.063436 17 0.062254 20 0.060897 0 0.055291 12 0.053078 14 0.047127 13 0.039442 9 0.039098 15 0.034727 24 0.032039 23 0.030924 4 0.0053 5 0.004765 6 0.002601 3 9.37E-4 7 4.96E-4 8 3.68E-4 1 2.88E-4 19 0.0799479641565095 18 0.0791881328577603 21 0.07053742777230214 22 0.06799266298041712 11 0.0650094993344508 10 0.06483041932004839 20 0.05552377333585597 12 0.05473693365628271 17 0.05395491771605327 16 0.050007624263087636 0 0.04731254616711354 14 0.043871964837744595 13 0.03961646159227835 9 0.039605443362707375 24 0.03832354518737216 23 0.036357904684970056 15 0.02801650090522415 4 0.013717673711391322 5 0.013202765177896668 6 0.010842907201532302 3 0.009144263577892333 7 0.008669690995979603 8 0.008589101470170413 1 0.008439924944543393 2 0.008114798377191824 __DUMMY__ 0.004445152413224109 false 1.0 800 18 0.077765075145682 10 0.06750681584574159 22 0.066515610441631 19 0.06594385606611362 21 0.06588438062627468 11 0.06087454485422261 12 0.04824548876009579 17 0.048138089413037995 14 0.04795469738389003 20 0.04657176341537662 9 0.04580088168412761 0 0.04578539731533131 13 0.04073635332539198 16 0.03476100366089794 23 0.03305816242040663 24 0.032654086346622695 15 0.029929185129627396 4 0.01942232815888696 5 0.018951536511578153 6 0.01669317567418931 3 0.015030240370391476 7 0.014655322190605008 8 0.014641710021808188 1 0.014444206384262645 2 0.014076755477398895 __DUMMY__ 0.013959333376407803 false 0.0 9 10 0.118606 18 0.110392 22 0.087542 11 0.07996 19 0.078676 14 0.075691 21 0.067482 9 0.063175 0 0.055798 15 0.048201 17 0.045093 20 0.0416 13 0.032123 12 0.023343 16 0.02078 23 0.016224 24 0.011905 4 0.008594 5 0.007433 3 0.004763 6 0.001478 8 6.22E-4 7 4.32E-4 1 8.8E-5 10 0.118606 18 0.110392 22 0.087542 11 0.07996 19 0.078676 14 0.075691 21 0.067482 9 0.063175 0 0.055798 15 0.048201 17 0.045093 20 0.0416 13 0.032123 12 0.023343 16 0.02078 23 0.016224 24 0.011905 4 0.008594 5 0.007433 3 0.004763 6 0.001478 8 6.22E-4 7 4.32E-4 1 8.8E-5 18 0.08863246100419375 10 0.08525163690673393 22 0.07694948746578203 19 0.07144484087586733 11 0.069178549489692 21 0.06851049963567515 14 0.05738663762414735 9 0.052831363276447364 0 0.04831249359050422 17 0.045787733052773054 20 0.044328205144753864 12 0.03772147971008035 15 0.03523688494850266 13 0.03447716389785048 23 0.028502196200685122 16 0.028420761692184767 24 0.027289632364445805 4 0.01655492700145396 5 0.015740091661492983 3 0.012412602583610027 6 0.01160432865540392 8 0.010139162637256517 7 0.010067372809197636 1 0.009769764117485194 2 0.009523594232768209 __DUMMY__ 0.003926129421012431 false 1.0 801 22 0.06585110028229932 18 0.058966928750644035 17 0.056389167272732396 11 0.05571500854108887 21 0.055336861799186454 0 0.0552624889156357 9 0.05305168552305807 19 0.051875767689438856 10 0.049889691055917285 16 0.03898857700975354 12 0.03717409752433851 23 0.03420505618592441 4 0.03400810572742188 5 0.03345180625907305 6 0.033123325334464535 8 0.031251363119721993 7 0.031215729256776785 1 0.03100469651891136 2 0.030492812397883887 24 0.02996542583028653 3 0.029943695144133368 20 0.027622357602421214 14 0.023516729691133817 13 0.022186933028166354 15 0.016309592448986367 __DUMMY__ 0.013200997090601414 false 0.0 802 22 0.06705269057372525 18 0.06011640489019728 11 0.05673522396808277 21 0.05672128751244488 17 0.056096568752124466 0 0.05500557582011525 9 0.05321847483148444 19 0.05294588325085256 10 0.05087949118787053 16 0.0384429741045832 12 0.03740673163130713 23 0.03379321768615917 4 0.03315563389799397 5 0.032586574441446234 6 0.032050108703936826 24 0.030331540454010267 8 0.030194334536472012 7 0.030152509014994902 1 0.029925418135566376 2 0.029420677126083362 3 0.02906806830978817 20 0.028241633757934606 14 0.02453031625464576 13 0.022331667723828386 15 0.0163594803108166 __DUMMY__ 0.01323751312353559 false 0.0 803 21 0.07487832814809985 19 0.06930329703015504 18 0.0685843447769183 22 0.06597967091240176 11 0.05980813500393896 12 0.059338729109281174 20 0.05389757749231046 10 0.051105809572601094 24 0.04688238102360652 17 0.043815850228924924 14 0.04303800610712875 23 0.04289674445569556 13 0.04269642455354613 9 0.0371838308335538 16 0.03693620229531787 0 0.03631280822807494 15 0.0226418325605323 4 0.02011675784103455 5 0.019624378359522132 6 0.016830662262324957 __DUMMY__ 0.015615710002681516 3 0.015249320835560944 7 0.014534303385739656 8 0.014495165972623267 1 0.014284591429639023 2 0.01394913757878655 false 0.0 804 22 0.06373508574912184 18 0.06083072835713669 17 0.05909831183701779 19 0.058874573699688466 21 0.05632700067474386 11 0.05550203356026055 0 0.05329869630050926 10 0.04767804896665491 16 0.04764787990287595 9 0.04698188544323214 12 0.04155189814001527 23 0.036783894354982874 20 0.03561417677693078 24 0.03410168991051182 4 0.029612269881769803 5 0.02907878201787227 6 0.028908815808428502 8 0.0269124109435452 7 0.026866497560647084 1 0.02665001393801447 2 0.02617963329235159 3 0.02543147880533428 14 0.02424093561463772 13 0.02415321616656491 15 0.02022285665662366 __DUMMY__ 0.0137171856405283 false 0.0 805 19 0.07203192029007428 18 0.07093040649252177 21 0.07065383853617392 22 0.06320598916155747 20 0.06001267262170474 11 0.054388479969722625 12 0.05412361055395404 10 0.051216155321405304 24 0.04973128211886045 14 0.04517905910216907 23 0.04457052118190816 17 0.043488772162987445 16 0.03927636467439594 13 0.03912619570626872 9 0.03574863583985694 0 0.03259382475012586 15 0.030345579382468697 4 0.019760937999608322 5 0.01926449624833879 6 0.01614723760511757 3 0.01578005315330055 __DUMMY__ 0.015339880097242947 7 0.0144923021264617 8 0.014469376147373637 1 0.014221167755883458 2 0.013901241000517532 false 0.0 806 19 0.07219997836030283 18 0.07021218888097652 21 0.06774555580369676 22 0.062453647553874024 20 0.05838226928390833 11 0.054080198543095113 12 0.052366593068551626 10 0.05068294187963333 24 0.047818807029464935 17 0.047003865279905986 23 0.04377127210244499 16 0.04335325695667493 14 0.04160949425892571 13 0.03649559932322256 9 0.03625834319870913 0 0.03581223208072923 15 0.029880818165669374 4 0.02021712091923011 5 0.019732162593957683 6 0.017123668777333265 3 0.016319859552353374 __DUMMY__ 0.015501711046298532 7 0.015456063677546908 8 0.015450117815786 1 0.015197976755555412 2 0.01487425709215342 false 0.0 807 22 0.0638347754186061 19 0.06338845629854507 18 0.06310631940062875 21 0.06013992862980579 17 0.05765284780189402 11 0.05696837170924803 0 0.05041269436147378 16 0.048905135350331745 10 0.04810556039511807 12 0.04637344894636774 9 0.04341672946119324 20 0.04112542726822528 23 0.03845240813795597 24 0.037096818084743306 13 0.028013033961040785 14 0.027291773023261707 4 0.026281844024625602 5 0.025773599356297056 6 0.025210250450327033 8 0.023066004552159503 7 0.023039988670422666 1 0.02281564828631217 2 0.02239314466604704 3 0.021900653705221262 15 0.021075543397259585 __DUMMY__ 0.014159594642888603 false 0.0 808 18 0.071872974012267 19 0.06623089993459957 22 0.06326523143400012 21 0.06265082968520136 10 0.05637582653075704 11 0.05350236702027855 20 0.05084124363931563 17 0.04850051945477807 12 0.04505247923680155 9 0.04271227036311122 14 0.0423553263705556 0 0.04070587622189564 24 0.040579876290449644 16 0.03900030394066991 23 0.038728073045248154 13 0.033848014626646473 15 0.03181570233242909 4 0.02285653290993404 5 0.02234980655009317 6 0.020107999427259066 3 0.019164855874920613 8 0.01858875304473674 7 0.018568278906874777 1 0.018328152494008428 2 0.01796326920920621 __DUMMY__ 0.014034537443962384 false 0.0 809 18 0.06406166410671113 22 0.0625911637643034 19 0.060424092640308555 17 0.05737690849959868 21 0.055337491322547214 11 0.05277272806569551 0 0.050310344380295656 10 0.04983810122851602 9 0.04652669576048612 16 0.046329823344740874 20 0.03989886106398738 12 0.03978072999064241 23 0.03699770740096854 24 0.03538896062316065 4 0.02857757988327659 14 0.028287010027065487 5 0.02804078265134963 6 0.027465111794536742 8 0.0257863841705861 7 0.02572692998231359 1 0.02550406848729055 15 0.02518228909683743 2 0.025055195532727313 3 0.024792203811670507 13 0.024645827645530343 __DUMMY__ 0.013301344724853564 false 0.0 1000 22 0.06318186081816206 17 0.06238440086544116 18 0.058963257988261526 0 0.057986399434931966 19 0.05419495899412504 11 0.0540286030651539 21 0.05109461501490529 9 0.05082872778280126 16 0.04815184128164116 10 0.04778829835013386 12 0.036384251696598265 23 0.03426759263605258 4 0.032800157778260675 6 0.032796108263708455 5 0.03224912534117236 8 0.030856724808637357 7 0.030787523502443154 1 0.030580879297268857 2 0.030063107435252243 24 0.029442139570947136 20 0.02935484733801974 3 0.028739636778005596 14 0.02033278053273423 13 0.020125030268766816 15 0.019732429618087338 __DUMMY__ 0.012884701538488013 false 0.0 810 21 0.07198193816608935 18 0.06870872512067658 22 0.06749179889514793 19 0.0664388077551066 11 0.06077265195276232 12 0.05449154412437795 10 0.05389407601671321 20 0.04797035623481288 17 0.04619021275956301 24 0.04207626235524923 9 0.04155137939955353 0 0.04107496381813018 14 0.040162982084969864 23 0.03994443016901855 13 0.038674030421672535 16 0.036054538704324936 4 0.022057527541379962 5 0.021554943499717222 15 0.020838151021457176 6 0.019070195366074717 3 0.017315126171944365 7 0.016857863255386286 8 0.016814764434957864 1 0.016609130379374684 2 0.016233538034888372 __DUMMY__ 0.015170062316650383 false 0.0 811 21 0.07295424912499485 22 0.06836873626164051 18 0.06556412410897779 19 0.06528508837005378 11 0.0611942950129857 12 0.05496957215501315 10 0.05020859038598017 17 0.04637333027635497 20 0.04617439368524279 24 0.04353670355857252 9 0.0415984476911864 0 0.04114421124476675 23 0.0409964899894099 14 0.036992664287190745 13 0.0369364334738674 16 0.036121142621780664 4 0.023617483999510844 5 0.023096257541303258 6 0.020672781274783593 3 0.01876154030570362 7 0.01839786054007458 8 0.01835654373196806 1 0.01813825606112265 2 0.017747210673242454 15 0.017627464117202358 __DUMMY__ 0.015166129507070485 false 0.0 812 22 0.06847807702446541 21 0.06719766995419188 18 0.06427169637618683 19 0.06087329964051408 11 0.060009797189931983 10 0.05145592515722778 17 0.050187147555789804 12 0.04812112769073629 0 0.046836197502613745 9 0.04656649597679069 20 0.039226361442919855 24 0.038031351984584384 23 0.03750241045637295 16 0.03663283310311806 14 0.032646961813061925 13 0.03139164855909143 4 0.026870133138938494 5 0.026329617198352657 6 0.024563895346735427 7 0.02244848675046496 8 0.022440148166232285 3 0.02232225358505828 1 0.022204288307717916 2 0.021767499931377988 15 0.017021667950980125 __DUMMY__ 0.01460300819654504 false 0.0 813 21 0.07685738601468711 19 0.06775999397353098 22 0.06765923833441369 18 0.06644060558250538 11 0.06225309855284898 12 0.06102491453036398 20 0.05029047053121014 10 0.049905129067083345 24 0.046029851375647066 17 0.04400188838251714 13 0.04288405277034906 23 0.042736144216839585 14 0.040723615786106816 9 0.03807425047460389 0 0.03804665667230596 16 0.035861725817326696 4 0.02101810309701454 5 0.020522247530195284 15 0.018120905419301794 6 0.017851973461643664 __DUMMY__ 0.01580292456708078 3 0.01579434176177164 7 0.015311518408142865 8 0.015254937799690728 1 0.015060649019280373 2 0.014713376853538676 false 0.0 814 21 0.0746950321142674 19 0.06916346998948492 18 0.06796427002403675 22 0.06692824220765067 11 0.059673858347146676 12 0.05737177581382478 20 0.052992745923412056 10 0.050526497304602284 24 0.04726450825814986 17 0.043907584099752525 23 0.04313261632758174 14 0.04137024272289783 13 0.03991217575921903 9 0.03817761684711441 16 0.03660017990370611 0 0.03650086998986865 15 0.021503964979860013 4 0.021065797741162424 5 0.020562631025482614 6 0.017638783986577613 3 0.0163841083196963 __DUMMY__ 0.015566088737422174 7 0.015506411964956337 8 0.015457447863720889 1 0.015241291847079867 2 0.014891787901325941 false 0.0 815 21 0.0755137368754187 19 0.0684788141722687 22 0.06710455865429367 18 0.06705101380993987 11 0.06057315495032582 12 0.05895069820787425 20 0.051925992652518876 10 0.04984717548777122 24 0.04699271725584451 17 0.043926308809618744 23 0.04316668434866753 13 0.04103900280610257 14 0.04082199719537786 9 0.03801460968243988 0 0.037007114411725904 16 0.03636834729777842 4 0.02121530021716797 5 0.020712366950788673 15 0.019948732512098048 6 0.017909086064172977 3 0.01630580933353717 __DUMMY__ 0.015624035811950258 7 0.015604961237637873 8 0.015556038794413488 1 0.015345660001568619 2 0.014996082458698427 false 0.0 816 21 0.07389980854777115 19 0.07017469301696894 18 0.06927232966618911 22 0.06505497350522008 12 0.05839565279756766 11 0.05829049022856506 20 0.05588828891749076 10 0.05105798550269378 24 0.047792244162905353 14 0.04394423403458961 17 0.04370548120852372 23 0.04336519354610508 13 0.04225616972691274 16 0.03772025611015801 9 0.03652019252316297 0 0.035146481601461395 15 0.024966594795566167 4 0.019790967735213095 5 0.019303008890057993 6 0.01643333714774223 __DUMMY__ 0.01559322234184834 3 0.015141469303506416 7 0.014288394009607297 8 0.014253731765022502 1 0.014036796157294529 2 0.01370800275785611 false 0.0 817 21 0.07488881051772073 18 0.06770882886231477 19 0.0675442634704951 22 0.06641433863028963 11 0.060550117023760286 12 0.05937734994974549 20 0.051468835208971324 10 0.05130135578473357 24 0.045519365585001394 17 0.04381415630486648 13 0.043269768409216675 14 0.04300168428332941 23 0.04204682663795644 9 0.03817890788458347 0 0.0373983727589844 16 0.035783172598133725 15 0.021790976060501645 4 0.020781633928405867 5 0.020285144487391063 6 0.017616352741373752 3 0.015772705288475748 __DUMMY__ 0.015506066675490553 7 0.015210594678037906 8 0.015178191871532708 1 0.014966933181166818 2 0.014625247177521207 false 0.0 818 21 0.07572214212446612 19 0.06786297788607933 22 0.06767162068105372 18 0.06662032691553953 11 0.06134055620413623 12 0.059005779357892314 20 0.05054423205774313 10 0.04979765467416541 24 0.046327896558525865 17 0.04433332041827877 23 0.042773127876834495 13 0.04080343261676609 14 0.040046520957139946 9 0.03857618229671248 0 0.03792302688763541 16 0.03615367693103212 4 0.02152362523640259 5 0.02101625148360317 15 0.018808193727838356 6 0.01829220650534732 3 0.01651060154703 7 0.01591626863432304 8 0.01586599785354906 1 0.015657327472171016 __DUMMY__ 0.015606930938473106 2 0.015300122157261628 false 0.0 819 21 0.07579281086927706 22 0.06790251313291994 19 0.06763065108204973 18 0.06655550214910994 11 0.06163485226337578 12 0.05896020600891887 20 0.05002052319234107 10 0.04994530002181218 24 0.04600030206750605 17 0.044437190873838156 23 0.04254817531571321 13 0.0407765827542602 14 0.039951051929624865 9 0.03883351760254047 0 0.03825484020995731 16 0.03599261156037181 4 0.02159254544003363 5 0.021084983389342008 15 0.018542565696544215 6 0.01837863043202175 3 0.016546988646344643 7 0.01598042744750134 8 0.01593049175532107 1 0.01572155695965903 __DUMMY__ 0.015623289306978302 2 0.015361889892637301 false 0.0 1011 21 0.07266062126086695 22 0.06832718384818746 18 0.06606418213049145 19 0.06591778566618407 11 0.06090939892082817 12 0.0543527447014053 10 0.050382676526674317 20 0.04699455362249314 17 0.046516684294950796 24 0.04392438273580838 9 0.04141057683139864 23 0.04106306961318595 0 0.040833407078921635 14 0.03723592782825134 16 0.03660897718899227 13 0.03636582929027865 4 0.0233551620909029 5 0.022833096378697373 6 0.020352021467854815 3 0.01860143432151483 15 0.018506159449395956 7 0.018153460178307313 8 0.018114578583509563 1 0.017890202425579933 2 0.01750109950792549 __DUMMY__ 0.01512478405739327 false 0.0 1010 21 0.07295424912499485 22 0.06836873626164053 18 0.06556412410897779 19 0.06528508837005378 11 0.061194295012985685 12 0.05496957215501315 10 0.05020859038598017 17 0.04637333027635497 20 0.04617439368524279 24 0.04353670355857252 9 0.0415984476911864 0 0.04114421124476675 23 0.04099648998940989 14 0.036992664287190745 13 0.036936433473867415 16 0.036121142621780664 4 0.023617483999510844 5 0.023096257541303258 6 0.020672781274783593 3 0.01876154030570362 7 0.01839786054007458 8 0.018356543731968055 1 0.01813825606112265 2 0.01774721067324246 15 0.01762746411720236 __DUMMY__ 0.015166129507070485 false 0.0 1008 21 0.07295424912499485 22 0.06836873626164053 18 0.06556412410897779 19 0.06528508837005378 11 0.0611942950129857 12 0.05496957215501315 10 0.05020859038598017 17 0.04637333027635497 20 0.04617439368524279 24 0.04353670355857252 9 0.0415984476911864 0 0.04114421124476675 23 0.0409964899894099 14 0.036992664287190745 13 0.0369364334738674 16 0.036121142621780664 4 0.023617483999510847 5 0.023096257541303258 6 0.020672781274783593 3 0.01876154030570362 7 0.01839786054007458 8 0.018356543731968055 1 0.01813825606112265 2 0.01774721067324246 15 0.01762746411720236 __DUMMY__ 0.015166129507070485 false 0.0 1007 21 0.07200738852217635 22 0.06672935910842348 18 0.06619278690117757 19 0.06419641977788343 11 0.060297935428732415 12 0.05595290017350347 10 0.051497941663471034 20 0.04646742893226943 17 0.0456924399734426 24 0.04228487868438748 9 0.041147335003879335 0 0.04074442349126505 13 0.04047848227841489 14 0.04028008150749414 23 0.04023047993457072 16 0.035378158750270366 4 0.023080775200133782 5 0.022570777097527008 15 0.020593732472605566 6 0.02030847666620948 3 0.01812134181893668 7 0.01791139399050173 8 0.017896130542291302 1 0.0176754277369427 2 0.017302220081530394 __DUMMY__ 0.014961284261959747 false 0.0 1006 21 0.07430881714907946 19 0.06888733542929212 18 0.06751995861099393 22 0.06576331489249644 11 0.058831474596261306 12 0.05834343804591638 20 0.05365397477002265 10 0.04958297208334703 24 0.04765898791220809 23 0.04380427993486506 17 0.043725632218914436 14 0.04179615235951414 13 0.04121736575134924 9 0.03721473602769809 16 0.03694168279623365 0 0.03585095488461395 15 0.022265000522937464 4 0.02106135448839362 5 0.020556863380495376 6 0.0177662635526333 3 0.016296496795519217 __DUMMY__ 0.015635781850661643 7 0.015556842115035103 8 0.015511942092011871 1 0.015295986914558234 2 0.014952390824948395 false 0.0 1005 21 0.07409511434470782 22 0.06799271604125183 19 0.06785973666387676 18 0.06737199566552617 11 0.060642055293401116 12 0.05584333250577504 10 0.05079474101088128 20 0.050270222271857845 24 0.04582783795043658 17 0.044965439224315694 23 0.0421180159716658 9 0.03979747334743199 14 0.03955198204455985 0 0.03843987182474557 13 0.03802016453521842 16 0.036319336843302956 4 0.0220115226419062 5 0.021498252606187346 15 0.01996480277392012 6 0.018700268176117033 3 0.017309805876602604 7 0.01655728259539647 8 0.016508431089531764 1 0.016289534764311282 2 0.01592426422673925 __DUMMY__ 0.015325799710333144 false 0.0 1004 21 0.07709232456046439 19 0.06859360770825791 22 0.06810481877020998 18 0.06706871409762336 11 0.06242518759353676 12 0.06070672880435673 20 0.05085772809621369 10 0.05023373844085579 24 0.046274572659412865 17 0.044393916829603024 23 0.042510194020003854 13 0.04211226869219595 14 0.040406025883253385 9 0.03820803407311528 0 0.03819091866651554 16 0.03631774044441136 4 0.02066233987038536 5 0.020164603075850683 15 0.01797109810390208 6 0.017424744277514826 __DUMMY__ 0.015928538153029744 3 0.015504862838618733 7 0.014939103924607497 8 0.014884156253362514 1 0.014686681142438592 2 0.014337353020259897 false 0.0 1003 21 0.0766014849341682 22 0.06754219359639371 19 0.06734365558604527 18 0.06559120667338228 11 0.06164403448740531 12 0.06051575926734107 20 0.05004129717750904 10 0.048784977888427256 24 0.04655055101373113 17 0.04376336237526543 23 0.04342451120160202 13 0.04205580264056333 14 0.039990300305683596 9 0.038067689822522295 0 0.03759643474532874 16 0.035672970709116486 4 0.021712972991199925 5 0.021211835646721498 6 0.0185279065530303 15 0.017831130157310207 3 0.016529675690328174 7 0.0160290839753649 8 0.01596781015658469 __DUMMY__ 0.015814709193629522 1 0.01577096069798404 2 0.015417682513361727 false 0.0 1002 21 0.06969219851386216 22 0.06704960156468687 18 0.06472590541813744 19 0.06369550697831831 11 0.0595132811445216 12 0.052546656794406295 10 0.04984412258300936 17 0.048069262214359226 20 0.04443233203234267 0 0.04283852610221216 9 0.04257494014188794 24 0.041806536435861165 23 0.04039782680367411 16 0.037467115006148195 14 0.03525121246393157 13 0.03517638107628562 4 0.02492549941306389 5 0.02440766324931233 6 0.02236989468591761 3 0.020217459077033248 7 0.0201519671657519 8 0.0201255186330652 1 0.019908976799482857 2 0.01950526413404566 15 0.018461095692384865 __DUMMY__ 0.0148452558762979 false 0.0 820 21 0.07528740705037107 22 0.06830149834681686 19 0.06740597834021379 18 0.06656826087719377 11 0.061556960903037736 12 0.05765806574324106 10 0.05011747399511283 20 0.049442789560566455 24 0.045757807041868284 17 0.044777860511227306 23 0.04221682292400493 9 0.03956193890877728 13 0.039365089491125216 14 0.03928270946409333 0 0.038696078727976854 16 0.035921957784199376 4 0.022009687087312876 5 0.021496978937630525 6 0.018769934252865828 15 0.01839421748800004 3 0.017065770549479446 7 0.016453058636205484 8 0.01640314112107699 1 0.016188722803872617 2 0.015821160023073426 __DUMMY__ 0.015478629430656397 false 0.0 821 21 0.07487832814809983 19 0.06930329703015504 18 0.0685843447769183 22 0.06597967091240176 11 0.05980813500393896 12 0.059338729109281174 20 0.05389757749231045 10 0.051105809572601094 24 0.04688238102360652 17 0.04381585022892491 14 0.043038006107128754 23 0.04289674445569556 13 0.04269642455354613 9 0.0371838308335538 16 0.03693620229531786 0 0.03631280822807494 15 0.0226418325605323 4 0.02011675784103455 5 0.019624378359522132 6 0.016830662262324957 __DUMMY__ 0.015615710002681516 3 0.015249320835560944 7 0.014534303385739656 8 0.014495165972623267 1 0.014284591429639023 2 0.01394913757878655 false 0.0 1001 21 0.07339555547866111 19 0.0678921149747237 22 0.06775788054554646 18 0.06749747052297882 11 0.05997861069588882 12 0.054986365103235874 10 0.05065255653368193 20 0.050585791239601594 24 0.045977424916573084 17 0.04522511234315908 23 0.04204654115355647 9 0.03988647750700404 14 0.03957075361019571 0 0.03830714382280159 13 0.037377216043179534 16 0.036645610870252476 4 0.02213123132905999 5 0.021611915590737014 15 0.02081305802486266 6 0.01882707728923527 3 0.01752341474301656 7 0.01675267558152345 8 0.016711809670307193 1 0.01648331933114656 2 0.016111087991865326 __DUMMY__ 0.015251785087205982 false 0.0 822 21 0.07528740705037107 22 0.06830149834681686 19 0.06740597834021379 18 0.06656826087719377 11 0.061556960903037736 12 0.05765806574324106 10 0.05011747399511283 20 0.049442789560566455 24 0.045757807041868284 17 0.044777860511227306 23 0.04221682292400493 9 0.03956193890877728 13 0.039365089491125216 14 0.03928270946409333 0 0.038696078727976854 16 0.035921957784199376 4 0.022009687087312876 5 0.021496978937630525 6 0.018769934252865828 15 0.01839421748800004 3 0.017065770549479446 7 0.016453058636205484 8 0.01640314112107699 1 0.016188722803872617 2 0.015821160023073426 __DUMMY__ 0.015478629430656397 false 0.0 823 21 0.07527751951451843 22 0.06799904379912285 19 0.06698453961410446 18 0.06551976991284876 11 0.06095164667898754 12 0.05767883206298857 20 0.0493925347317764 10 0.04876529793612273 24 0.04651607589025035 17 0.04432541525997218 23 0.043044752955813344 9 0.039254241722047854 13 0.03908750407246591 14 0.038793683953915525 0 0.03800882026017472 16 0.035705589924679614 4 0.022606864303480752 5 0.0220939500542407 6 0.01935375943767553 15 0.018121940287131693 3 0.017683544095944605 7 0.01705454671857939 8 0.017000258674384875 1 0.016787582349416918 2 0.016421308517813 __DUMMY__ 0.015570977271543298 false 0.0 824 21 0.07028445395314659 22 0.06671427282146314 18 0.06528282410125656 19 0.06250887367604584 11 0.05967463869560863 12 0.053848332066679626 10 0.05121133519846393 17 0.04658691616549681 20 0.04425024626571069 9 0.042596470602079134 0 0.042121224235969666 24 0.04103724795720778 23 0.039532683035818486 14 0.038707375909413755 13 0.038609194395860295 16 0.03524725891487566 4 0.024445457801467098 5 0.023925632766045615 6 0.021851406209735646 15 0.020186733173360945 3 0.019576512887776155 7 0.01950606483707122 8 0.019501391289278622 1 0.019270907498048363 2 0.018883769378199133 __DUMMY__ 0.014638776163920533 false 0.0 825 21 0.07496130915697803 22 0.06856669270003414 19 0.06668103437227431 18 0.06580277039072044 11 0.06150593033773559 12 0.05688497909625481 10 0.04952685654750135 20 0.048321847647986936 24 0.04556721885177244 17 0.04500175512874496 23 0.04219442772909966 9 0.040114442739722776 0 0.03911241854761764 13 0.03838020836318035 14 0.03837242999251304 16 0.035719868032699324 4 0.022707823424262825 5 0.022187371676597692 6 0.01950578661961873 15 0.01779888969939805 3 0.01778292203218693 7 0.017209122528680204 8 0.01715892571213271 1 0.016940953292703908 2 0.016562486289512984 __DUMMY__ 0.015431529090070393 false 0.0 826 21 0.07568142358658611 19 0.07008345565209152 18 0.06856119072065425 22 0.06634306623682192 11 0.05997621277929281 12 0.059727753623098775 20 0.05477708587051603 10 0.05044224343352948 24 0.04789510340081358 17 0.043752983869637815 23 0.04322704255145716 14 0.04278950709213797 13 0.04235904378918379 16 0.037257983886226635 9 0.036761001052825565 0 0.03576446017728529 15 0.022315826931448755 4 0.019823355894378083 5 0.01933250569891779 6 0.016437692897673824 __DUMMY__ 0.0158869422446817 3 0.014989794197920903 7 0.01417559898535952 8 0.014131964631044954 1 0.013919661035119128 2 0.013587099761296642 false 0.0 827 21 0.07411782636841194 22 0.06884108632783895 19 0.06582724840531924 18 0.06537703923531597 11 0.06148887644337076 12 0.05554937260968125 10 0.049559934260455005 20 0.04684081827679552 17 0.04563186681321731 24 0.04472908048465847 23 0.0416988915125971 9 0.04107648815130001 0 0.040115827420690434 14 0.037338410256233454 13 0.03705579874747811 16 0.03567630081003526 4 0.023422979652251635 5 0.022897399256275094 6 0.02030580151362424 3 0.01854841383618979 7 0.018042790538099786 8 0.017994482930122176 1 0.01777507781840887 2 0.017385566669263317 15 0.01737269986575317 __DUMMY__ 0.01532992179661298 false 0.0 828 21 0.07675100095154024 22 0.06773968683612885 19 0.0675066410658525 18 0.06617039550086778 11 0.06216682272250701 12 0.06069954496892172 20 0.04994229127732177 10 0.049679740668932354 24 0.0460259328290282 17 0.0439898334128156 23 0.04280027959557887 13 0.04251286394990775 14 0.04045549601715147 9 0.03825900463829818 0 0.03809103886886367 16 0.03570742105733695 4 0.021289706026804342 5 0.02079089084934407 6 0.01812386307110623 15 0.017957989816081703 3 0.01608230603032984 __DUMMY__ 0.01577752775644359 7 0.015599216038109823 8 0.015540483476316562 1 0.015345192764077496 2 0.014994829810333449 false 0.0 1009 21 0.07139271237275183 22 0.06715725235737817 18 0.06532344131945628 19 0.06418840007518754 11 0.06054715150547491 12 0.055003126432246405 10 0.050579325891541155 17 0.047133025392324855 20 0.04518108130869489 0 0.04232568301006944 24 0.04192161503211671 9 0.04186126965088629 23 0.04042601385067969 13 0.03775245568661145 14 0.03666663149727558 16 0.03665375188498806 4 0.023984481678504647 5 0.023476800145342435 6 0.021356334680592726 3 0.019074154909304492 7 0.018995863786012368 8 0.018961271106902586 1 0.018760714473091068 2 0.01836718242026285 15 0.017885223535761583 __DUMMY__ 0.015025035996541933 false 0.0 829 21 0.07148141852841199 19 0.06899420733109682 18 0.06824051142626857 22 0.06615138310665293 11 0.057563331940832775 12 0.05335033702976323 20 0.05314624903992229 10 0.05050841070664705 24 0.04693005173240764 17 0.045445707498646015 23 0.04240106478674949 14 0.041335393447822874 9 0.038867840075852506 16 0.03839256601598521 13 0.03692140432881675 0 0.03687886991074571 15 0.025198355100404052 4 0.021581041587073482 5 0.021075607877124782 6 0.018254910780080603 3 0.017302687069571308 7 0.01638215607074061 8 0.016359858847980125 1 0.01611808583331458 2 0.015768308570718967 __DUMMY__ 0.015350241356369611 false 0.0 1022 21 0.07646536546946212 22 0.07130643889899849 19 0.06822964322385407 18 0.06692249283373218 11 0.06300306442320489 12 0.054501830339059094 10 0.0503892461913426 20 0.04911492389826774 24 0.04712859959086461 17 0.04445407643400931 23 0.041886528640807656 9 0.04098312742132083 14 0.03864122741552391 0 0.038207912812852934 13 0.03503159649836285 16 0.03491741292940121 4 0.02236036459889251 5 0.021829440370020613 6 0.0185985020298553 15 0.017979756186536053 3 0.017729128779472088 7 0.01659778639727444 8 0.016524577685920225 1 0.01629206464746342 2 0.01590092685824132 __DUMMY__ 0.015003965425259507 false 0.0 1021 21 0.07547753831154398 19 0.06793201379844278 22 0.0675287328486797 18 0.06715386944485924 11 0.06130836097673772 12 0.05891121398214658 20 0.05072511797899743 10 0.05046878395951365 24 0.04594550467409207 17 0.04441998320592719 23 0.04241806971876743 13 0.041092624719771154 14 0.040495729404800236 9 0.03867600591554135 0 0.038081672768626985 16 0.036153025349617035 4 0.02129516369938853 5 0.020791645195996165 15 0.019285132129477682 6 0.018078853588459332 3 0.016297740918761284 7 0.015705833769113147 8 0.015658371545335663 __DUMMY__ 0.015549937032632969 1 0.015451225458957085 2 0.015097849603813551 false 0.0 1020 21 0.07209419434635939 22 0.06864988781157395 18 0.06513293534621241 19 0.06474262959815526 11 0.06113527888359235 12 0.053600390138624936 10 0.050015151177940434 17 0.04719506295243327 20 0.04500138375864772 24 0.04295856642806998 9 0.04239998599952875 0 0.04210281509267703 23 0.040603645917808275 16 0.03651405454584225 14 0.035713909342522256 13 0.035326194992103814 4 0.02425201012126079 5 0.02372579589562327 6 0.0213914151988717 3 0.01946780762863711 7 0.0191662605049341 8 0.01912758697543603 1 0.01890471267975731 2 0.01850140581367298 15 0.01721571895485704 __DUMMY__ 0.01506119989485749 false 0.0 1019 21 0.07295424912499485 22 0.06836873626164053 18 0.06556412410897779 19 0.06528508837005378 11 0.0611942950129857 12 0.05496957215501315 10 0.05020859038598017 17 0.04637333027635497 20 0.04617439368524279 24 0.04353670355857252 9 0.0415984476911864 0 0.04114421124476675 23 0.0409964899894099 14 0.036992664287190745 13 0.0369364334738674 16 0.036121142621780664 4 0.023617483999510844 5 0.023096257541303258 6 0.020672781274783593 3 0.01876154030570362 7 0.01839786054007458 8 0.018356543731968055 1 0.01813825606112265 2 0.01774721067324246 15 0.01762746411720236 __DUMMY__ 0.015166129507070485 false 0.0 1018 21 0.07685738601468711 19 0.06775999397353098 22 0.06765923833441369 18 0.06644060558250538 11 0.06225309855284898 12 0.06102491453036398 20 0.05029047053121014 10 0.049905129067083345 24 0.046029851375647066 17 0.04400188838251714 13 0.04288405277034906 23 0.042736144216839585 14 0.040723615786106816 9 0.03807425047460389 0 0.03804665667230596 16 0.035861725817326696 4 0.02101810309701454 5 0.020522247530195284 15 0.018120905419301794 6 0.017851973461643664 __DUMMY__ 0.01580292456708078 3 0.01579434176177164 7 0.015311518408142865 8 0.015254937799690728 1 0.015060649019280373 2 0.014713376853538676 false 0.0 1017 21 0.07227330096986566 19 0.06855442548625564 22 0.06722325538965523 18 0.06667495955756741 11 0.05869269149923543 12 0.053938568090259605 20 0.05124789875816862 10 0.0488163616621514 24 0.04692949159866751 17 0.046526596929914656 23 0.042491579034061394 9 0.03953132578812705 16 0.03889000770174222 0 0.038433792518425366 14 0.03771269691338558 13 0.0353400652956884 4 0.02250882706155161 5 0.021985869993241355 15 0.02105416933660273 6 0.01931646285737498 3 0.018080330248123635 7 0.01734575667560551 8 0.01731955070990966 1 0.017079832241821344 2 0.016708233826210353 __DUMMY__ 0.015323949856387317 false 0.0 1016 21 0.07091274699895886 22 0.06774747002480669 18 0.0628349485748796 19 0.0605403580337374 11 0.060369812115706425 12 0.0533011934340899 10 0.04948097955517398 17 0.04571303713552961 9 0.043659059538315385 0 0.04231907264978054 20 0.041488022301820165 24 0.04126400058601328 23 0.0404943653185069 13 0.03662859588083885 14 0.03592226978172229 16 0.03334221583727127 4 0.026484780163370577 5 0.025963529706356778 6 0.023815392139990822 3 0.021566990205597863 7 0.021488523016538568 8 0.02144304201112578 1 0.02124562334372703 2 0.020822049081303848 15 0.016510464592721458 __DUMMY__ 0.01464145797211608 false 0.0 1015 21 0.07646536546946212 22 0.07130643889899849 19 0.06822964322385407 18 0.06692249283373218 11 0.06300306442320489 12 0.054501830339059094 10 0.0503892461913426 20 0.04911492389826774 24 0.04712859959086461 17 0.04445407643400931 23 0.041886528640807656 9 0.04098312742132083 14 0.03864122741552391 0 0.038207912812852934 13 0.03503159649836285 16 0.03491741292940121 4 0.02236036459889251 5 0.021829440370020613 6 0.0185985020298553 15 0.017979756186536053 3 0.017729128779472088 7 0.01659778639727444 8 0.016524577685920225 1 0.01629206464746342 2 0.01590092685824132 __DUMMY__ 0.015003965425259507 false 0.0 1014 21 0.07339555547866111 19 0.0678921149747237 22 0.06775788054554646 18 0.06749747052297882 11 0.05997861069588882 12 0.054986365103235874 10 0.05065255653368193 20 0.050585791239601594 24 0.045977424916573084 17 0.04522511234315908 23 0.04204654115355647 9 0.03988647750700404 14 0.03957075361019571 0 0.03830714382280159 13 0.037377216043179534 16 0.036645610870252476 4 0.02213123132905999 5 0.021611915590737014 15 0.02081305802486266 6 0.01882707728923527 3 0.01752341474301656 7 0.01675267558152345 8 0.016711809670307193 1 0.01648331933114656 2 0.016111087991865326 __DUMMY__ 0.015251785087205982 false 0.0 830 21 0.07675100095154024 22 0.06773968683612885 19 0.0675066410658525 18 0.06617039550086778 11 0.06216682272250701 12 0.06069954496892172 20 0.04994229127732177 10 0.049679740668932354 24 0.0460259328290282 17 0.0439898334128156 23 0.04280027959557887 13 0.04251286394990775 14 0.04045549601715147 9 0.03825900463829818 0 0.03809103886886367 16 0.03570742105733695 4 0.021289706026804342 5 0.02079089084934407 6 0.01812386307110623 15 0.017957989816081703 3 0.01608230603032984 __DUMMY__ 0.01577752775644359 7 0.015599216038109823 8 0.015540483476316562 1 0.015345192764077496 2 0.014994829810333449 false 0.0 1013 21 0.07487832814809983 19 0.06930329703015503 18 0.06858434477691827 22 0.06597967091240174 11 0.05980813500393895 12 0.05933872910928116 20 0.053897577492310444 10 0.051105809572601094 24 0.04688238102360651 17 0.0438158502289249 14 0.04303800610712874 23 0.04289674445569555 13 0.04269642455354612 9 0.037183830833553796 16 0.03693620229531786 0 0.03631280822807493 15 0.02264183256053229 4 0.020116757841034547 5 0.01962437835952213 6 0.016830662262324957 __DUMMY__ 0.015615710002681513 3 0.01524932083556094 7 0.014534303385739652 8 0.014495165972623264 1 0.014284591429639023 2 0.013949137578786547 false 0.0 831 21 0.07675100095154024 22 0.06773968683612885 19 0.0675066410658525 18 0.06617039550086778 11 0.06216682272250701 12 0.06069954496892172 20 0.04994229127732177 10 0.049679740668932354 24 0.0460259328290282 17 0.0439898334128156 23 0.04280027959557887 13 0.04251286394990775 14 0.04045549601715147 9 0.03825900463829818 0 0.03809103886886367 16 0.03570742105733695 4 0.021289706026804342 5 0.02079089084934407 6 0.01812386307110623 15 0.017957989816081703 3 0.01608230603032984 __DUMMY__ 0.01577752775644359 7 0.015599216038109823 8 0.015540483476316562 1 0.015345192764077496 2 0.014994829810333449 false 0.0 1012 21 0.07295424912499485 22 0.06836873626164053 18 0.06556412410897779 19 0.06528508837005378 11 0.061194295012985685 12 0.05496957215501315 10 0.05020859038598017 17 0.04637333027635497 20 0.04617439368524279 24 0.04353670355857252 9 0.0415984476911864 0 0.04114421124476675 23 0.04099648998940989 14 0.036992664287190745 13 0.036936433473867415 16 0.036121142621780664 4 0.023617483999510844 5 0.023096257541303258 6 0.020672781274783593 3 0.01876154030570362 7 0.01839786054007458 8 0.018356543731968055 1 0.01813825606112265 2 0.01774721067324246 15 0.01762746411720236 __DUMMY__ 0.015166129507070485 false 0.0 832 21 0.07675100095154024 22 0.06773968683612885 19 0.0675066410658525 18 0.06617039550086778 11 0.06216682272250701 12 0.06069954496892172 20 0.04994229127732177 10 0.049679740668932354 24 0.0460259328290282 17 0.0439898334128156 23 0.04280027959557887 13 0.04251286394990775 14 0.04045549601715147 9 0.03825900463829818 0 0.03809103886886367 16 0.03570742105733695 4 0.021289706026804342 5 0.02079089084934407 6 0.01812386307110623 15 0.017957989816081703 3 0.01608230603032984 __DUMMY__ 0.01577752775644359 7 0.015599216038109823 8 0.015540483476316562 1 0.015345192764077496 2 0.014994829810333449 false 0.0 833 21 0.06930677229385311 22 0.06678675172392663 18 0.06468823303566823 19 0.062162313194995954 11 0.059267471257428296 12 0.052384011644255615 10 0.050698767870678084 17 0.04735482091667911 20 0.04336729696539926 9 0.043279663792852155 0 0.04288664310909019 24 0.040730768411538595 23 0.039463921566495974 14 0.037005837909548006 13 0.03665159262853861 16 0.03582994219449769 4 0.02521310091541579 5 0.024687937453836552 6 0.022689555182221266 3 0.020466672601534116 7 0.020430179443898973 8 0.02042398074952644 1 0.020193465423407272 2 0.019794347674846974 15 0.019547141468303074 __DUMMY__ 0.014688810571563968 false 0.0 834 22 0.06782889792083723 21 0.06400659076490132 18 0.06232990448688378 19 0.05978976156620908 11 0.05727719654139232 17 0.0515676899467154 10 0.0488683036557573 9 0.04761737703882284 0 0.04715708961441942 12 0.04379096002230455 24 0.038663157802816935 20 0.03818893415865201 23 0.03810534683907281 16 0.03808787274823869 14 0.029329845468607004 4 0.029139620408233577 5 0.02858316373174113 6 0.026950583102702975 13 0.0263718939413262 8 0.025135419665377596 7 0.02512767970591668 3 0.025012907502235504 1 0.02487761042433896 2 0.024422029705884325 15 0.01754709251939873 __DUMMY__ 0.014223070717213607 false 0.0 835 22 0.06787544961968463 21 0.06160065849658537 18 0.061375060635705525 19 0.05703660337948444 11 0.05696695558305542 17 0.05282301159327941 9 0.049947419585864544 0 0.04964617472525613 10 0.04938033506402145 12 0.041110978409676396 16 0.037497808911535 23 0.036599121620434764 24 0.035993878749644034 20 0.034443230329775254 4 0.03089306334220411 5 0.03032312879469265 6 0.029007492979792576 14 0.02759794026125955 8 0.027218680939371465 7 0.02719711669318099 1 0.026951010730499842 3 0.0268096379071549 2 0.0264681920658895 13 0.024502446183306707 15 0.01692332191340041 __DUMMY__ 0.013811281485244865 false 0.0 836 21 0.07032709510782986 22 0.06826481729321691 18 0.06301703587752451 19 0.06098072877016484 11 0.06042097998610251 12 0.05188092001790279 10 0.0494883353696722 17 0.04677294893411753 9 0.04422619708341444 0 0.043139335140816054 20 0.041201208075334415 24 0.04112228047607984 23 0.0401337750646739 14 0.03465395378903981 13 0.03462624835815984 16 0.034307872954763244 4 0.026633544807188367 5 0.026105448473503184 6 0.02397654091892216 3 0.021838689856608737 7 0.021737801618172636 8 0.021697667320547374 1 0.02148772960388987 2 0.021060808976656555 15 0.016300341976416527 __DUMMY__ 0.014597694149281795 false 0.0 837 18 0.06635501533547539 22 0.06421908983919636 19 0.06255705313358668 21 0.061464215021188776 11 0.05330233758555098 10 0.051074335405671176 17 0.05038411778553401 20 0.045375026083397524 9 0.04469819164980996 0 0.0431511887219458 12 0.04303793364297547 24 0.04041354726024982 16 0.03955042022236927 23 0.038875832006524835 14 0.0356561733046295 13 0.029109085435259228 15 0.026790340759363335 4 0.026640258551198812 5 0.02609728119873751 6 0.0242767285583559 3 0.022916343653277316 8 0.022746686556035053 7 0.022709765472733838 1 0.022461208470729577 2 0.02205014436923418 __DUMMY__ 0.014087679976969622 false 0.0 838 21 0.07436523964453375 19 0.06919940883380628 18 0.06840891480482222 22 0.06601510540526825 11 0.05930763661405427 12 0.05822233593758503 20 0.053817015738169674 10 0.050849433800402605 24 0.047125536239413186 17 0.04378505990987038 23 0.04317564284605942 14 0.04257493854675548 13 0.041495535990775455 9 0.03744576389562017 16 0.036874158702857616 0 0.03612744281925995 15 0.022818141776749325 4 0.020560144071014006 5 0.020063904241603595 6 0.017224020325654663 3 0.015809681669868923 __DUMMY__ 0.015544784685775031 7 0.015021654625144392 8 0.014978860952266939 1 0.014763940876930346 2 0.014425697045739207 false 0.0 839 21 0.07221108949299523 22 0.06654433150561061 18 0.06587279956171078 19 0.0637825265933843 11 0.06028673783705363 12 0.05646313435764417 10 0.05129551553199203 20 0.046320437770426055 17 0.0452431934921334 24 0.04232906328949493 13 0.04128937175068123 9 0.04093866442391925 14 0.04083623013296067 0 0.0404074356262823 23 0.04038947270327954 16 0.0349140614666423 4 0.02314212441491338 5 0.022632930098019404 15 0.020778574373291985 6 0.02037535145889303 3 0.01811889904286231 7 0.01793165199884534 8 0.017917352862725437 1 0.017697341356440913 2 0.017326931504397305 __DUMMY__ 0.014954777353400507 false 0.0 1033 21 0.07209419434635939 22 0.06864988781157395 18 0.06513293534621241 19 0.06474262959815526 11 0.06113527888359235 12 0.053600390138624936 10 0.05001515117794044 17 0.04719506295243327 20 0.04500138375864772 24 0.04295856642806998 9 0.04239998599952875 0 0.04210281509267703 23 0.040603645917808275 16 0.03651405454584225 14 0.035713909342522256 13 0.035326194992103814 4 0.02425201012126079 5 0.02372579589562327 6 0.0213914151988717 3 0.01946780762863711 7 0.0191662605049341 8 0.01912758697543603 1 0.01890471267975731 2 0.01850140581367298 15 0.01721571895485704 __DUMMY__ 0.01506119989485749 false 0.0 1032 21 0.07487832814809983 19 0.06930329703015503 18 0.06858434477691827 22 0.06597967091240174 11 0.05980813500393895 12 0.05933872910928116 20 0.053897577492310444 10 0.051105809572601094 24 0.04688238102360651 17 0.0438158502289249 14 0.04303800610712874 23 0.04289674445569555 13 0.04269642455354612 9 0.037183830833553796 16 0.03693620229531786 0 0.03631280822807493 15 0.02264183256053229 4 0.020116757841034547 5 0.01962437835952213 6 0.016830662262324953 __DUMMY__ 0.015615710002681513 3 0.01524932083556094 7 0.014534303385739652 8 0.014495165972623264 1 0.014284591429639022 2 0.013949137578786547 false 0.0 1031 21 0.07487832814809985 19 0.06930329703015504 18 0.0685843447769183 22 0.06597967091240176 11 0.05980813500393896 12 0.059338729109281174 20 0.05389757749231046 10 0.051105809572601094 24 0.04688238102360652 17 0.04381585022892491 14 0.04303800610712875 23 0.04289674445569556 13 0.04269642455354613 9 0.0371838308335538 16 0.03693620229531786 0 0.03631280822807494 15 0.0226418325605323 4 0.02011675784103455 5 0.019624378359522132 6 0.016830662262324957 __DUMMY__ 0.015615710002681516 3 0.015249320835560944 7 0.014534303385739657 8 0.014495165972623267 1 0.014284591429639025 2 0.013949137578786552 false 0.0 1030 21 0.07295424912499485 22 0.06836873626164053 18 0.06556412410897779 19 0.06528508837005378 11 0.061194295012985685 12 0.05496957215501315 10 0.05020859038598017 17 0.04637333027635497 20 0.04617439368524278 24 0.04353670355857252 9 0.0415984476911864 0 0.04114421124476675 23 0.04099648998940989 14 0.036992664287190745 13 0.036936433473867415 16 0.036121142621780664 4 0.023617483999510847 5 0.023096257541303258 6 0.020672781274783593 3 0.01876154030570362 7 0.01839786054007458 8 0.018356543731968055 1 0.01813825606112265 2 0.01774721067324246 15 0.01762746411720236 __DUMMY__ 0.015166129507070485 false 0.0 1029 21 0.07028445395314659 22 0.06671427282146312 18 0.06528282410125655 19 0.06250887367604584 11 0.05967463869560863 12 0.053848332066679626 10 0.05121133519846393 17 0.04658691616549681 20 0.04425024626571069 9 0.042596470602079134 0 0.042121224235969666 24 0.04103724795720778 23 0.039532683035818486 14 0.038707375909413755 13 0.038609194395860295 16 0.03524725891487566 4 0.024445457801467098 5 0.023925632766045615 6 0.021851406209735646 15 0.020186733173360945 3 0.019576512887776155 7 0.01950606483707122 8 0.019501391289278622 1 0.019270907498048363 2 0.018883769378199133 __DUMMY__ 0.014638776163920533 false 0.0 1028 21 0.07083271769545896 22 0.06847673828984213 18 0.06525518957128938 19 0.06487224775382326 11 0.06065557414298729 12 0.052143204238503806 10 0.05016334088591491 17 0.04818311848668654 20 0.04475221857868062 0 0.04282414283761906 9 0.04277433481950149 24 0.04246372034973892 23 0.04029295104557567 16 0.037626677810609056 14 0.035004319536232335 13 0.03391922425897688 4 0.024435247820140886 5 0.023909136914385842 6 0.021666163199200592 3 0.01977452399457482 7 0.019518411478693872 8 0.0194842689014198 1 0.019255110799619796 2 0.018846639962050646 15 0.017891204977727407 __DUMMY__ 0.014979571650745845 false 0.0 1027 21 0.07487832814809983 19 0.06930329703015503 18 0.06858434477691827 22 0.06597967091240174 11 0.05980813500393895 12 0.05933872910928116 20 0.053897577492310444 10 0.051105809572601094 24 0.04688238102360651 17 0.0438158502289249 14 0.04303800610712874 23 0.04289674445569555 13 0.04269642455354612 9 0.037183830833553796 16 0.03693620229531786 0 0.03631280822807493 15 0.02264183256053229 4 0.020116757841034547 5 0.01962437835952213 6 0.016830662262324957 __DUMMY__ 0.015615710002681513 3 0.01524932083556094 7 0.014534303385739652 8 0.014495165972623264 1 0.014284591429639023 2 0.013949137578786547 false 0.0 840 21 0.06941867540336139 22 0.06791439436814009 18 0.06418761296510107 19 0.062466073710975914 11 0.059874757676555986 12 0.051100368238678744 10 0.05008343692868125 17 0.048116343761448105 9 0.0440576366507363 0 0.04372975958715608 20 0.042463031888992364 24 0.04098206079702658 23 0.03969462914620683 16 0.036297612935832196 14 0.03430106107175636 13 0.033723674668859095 4 0.025894376784209774 5 0.025368066748381542 6 0.023311918561510058 3 0.021244145405013348 7 0.02114978168254802 8 0.021123261870771782 1 0.02090238693440402 2 0.02048389608385014 15 0.01732406569348638 __DUMMY__ 0.014786970436316414 false 0.0 1026 21 0.07550068145189316 22 0.06816883908234418 19 0.06745427487996715 18 0.06657698887351188 11 0.061643377805469524 12 0.058208188493289056 10 0.05011173237256464 20 0.04957436176310657 24 0.04574906825253339 17 0.04468946137930935 23 0.04227350613349777 13 0.03995820189793379 14 0.03951088516578287 9 0.039333996015619724 0 0.038626820708209254 16 0.0359345554942468 4 0.021841340634088366 5 0.021331611040751906 6 0.018621144113170084 15 0.01836458830249861 3 0.01684928287051992 7 0.016264481931234566 8 0.01621487343378414 1 0.01600392610807912 2 0.015639872533415384 __DUMMY__ 0.015553939263178745 false 0.0 1025 21 0.07556340850220417 22 0.06800548966063716 19 0.0670379237977609 18 0.06597271055197663 11 0.06152087674859366 12 0.058465103723112165 10 0.04951993708926811 20 0.04927676606996701 24 0.045909705582885214 17 0.04442877769351551 23 0.042591550660675374 13 0.040202005476832836 14 0.03941304618957075 9 0.03919338546606595 0 0.03841836207396785 16 0.03569394605273816 4 0.022131833218720757 5 0.021621668229128865 6 0.01893510860395401 15 0.018152746454221415 3 0.017106235473406957 7 0.016553522324611637 8 0.01650245200978977 1 0.01629212892064706 2 0.015928296471673407 __DUMMY__ 0.015563012954074957 false 0.0 841 22 0.06318186081816206 17 0.06238440086544116 18 0.05896325798826155 0 0.057986399434931966 19 0.05419495899412504 11 0.054028603065153905 21 0.05109461501490529 9 0.05082872778280126 16 0.04815184128164117 10 0.04778829835013386 12 0.036384251696598265 23 0.03426759263605258 4 0.032800157778260675 6 0.03279610826370845 5 0.03224912534117238 8 0.030856724808637357 7 0.030787523502443157 1 0.030580879297268857 2 0.03006310743525225 24 0.02944213957094714 20 0.02935484733801974 3 0.028739636778005596 14 0.02033278053273423 13 0.020125030268766823 15 0.019732429618087338 __DUMMY__ 0.012884701538488013 false 0.0 600 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.08749611857676264 22 0.08040316269064869 11 0.07407419944215712 19 0.07121301836366839 18 0.06694920415338501 12 0.06131879283424237 10 0.05176226328268395 24 0.047747644897099706 17 0.0465283555924615 20 0.0453445239800186 9 0.04314768737804838 0 0.04258489145839751 23 0.03830912334412448 14 0.03815893371913605 13 0.03677700323515735 16 0.035263594453837484 4 0.019610402703185315 5 0.01911967219879274 6 0.015434811328174704 3 0.014248657017472853 7 0.013012852346077044 8 0.012785306294369596 1 0.01268875348816466 2 0.012276545801505846 15 0.009425763860284568 __DUMMY__ 0.004318717560143468 false 1.0 842 21 0.07487832814809983 19 0.06930329703015503 18 0.06858434477691827 22 0.06597967091240174 11 0.05980813500393895 12 0.05933872910928116 20 0.053897577492310444 10 0.051105809572601094 24 0.04688238102360651 17 0.04381585022892492 14 0.04303800610712874 23 0.04289674445569555 13 0.04269642455354612 9 0.037183830833553796 16 0.03693620229531786 0 0.03631280822807493 15 0.02264183256053229 4 0.020116757841034547 5 0.01962437835952213 6 0.016830662262324953 __DUMMY__ 0.015615710002681513 3 0.01524932083556094 7 0.014534303385739652 8 0.014495165972623264 1 0.014284591429639023 2 0.013949137578786547 false 0.0 1024 21 0.07347565708467306 19 0.07078860632800767 18 0.06982463425286564 22 0.06457339092249677 12 0.05805839432235712 11 0.05760761613894724 20 0.057110726622612386 10 0.05121998253906054 24 0.04825232732023154 14 0.04458294859317267 17 0.04364295168549518 23 0.043536258233576895 13 0.0422200233269908 16 0.0381766562435306 9 0.0360950155985143 0 0.03453285989512026 15 0.026248882046572143 4 0.01945249293277651 5 0.018966220023089186 6 0.016052708783489522 __DUMMY__ 0.015618077223181853 3 0.014908011612206826 7 0.013979126798543675 8 0.01394807496103468 1 0.013725240502261277 2 0.013403116009191493 false 0.0 843 22 0.06848096989413284 18 0.061799874112886954 21 0.06084828320577919 11 0.05788316602962816 19 0.05581726664700995 17 0.05312229945529731 9 0.05152840276874452 10 0.05133348630672432 0 0.05128368373303737 12 0.03981960339847758 16 0.036485452718306964 23 0.035165486073447334 24 0.03378565169910431 20 0.03223909947372502 4 0.031287724485871964 5 0.03071797223021073 6 0.02946951471102813 14 0.02771623461898881 8 0.0276745543634814 7 0.027656300055060683 1 0.027411650855710658 3 0.027203035686645935 2 0.026920163543340637 13 0.024143715250423622 15 0.016651209723197682 __DUMMY__ 0.013555198959737924 false 0.0 1023 22 0.06880627237555416 21 0.06859256810864965 18 0.06340529301769689 19 0.0605428532323539 11 0.06024219413085454 10 0.05026773440352662 12 0.049287713102485545 17 0.048906358132671086 9 0.046012795083370965 0 0.045615398003383746 20 0.03916800063444872 24 0.0391173137168178 23 0.038595856711530034 16 0.035322591429831664 14 0.033037090110325254 13 0.03226776080925426 4 0.02713057626266772 5 0.026579122346409086 6 0.024694441007291065 7 0.022511519248405883 8 0.02249047341225856 3 0.022444474501679093 1 0.022254162198743994 2 0.021818254411433598 15 0.016212085779329775 __DUMMY__ 0.014677097829026578 false 0.0 601 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.07134099615218525 17 0.06779812322239637 22 0.06501270643335653 9 0.05940360478295135 11 0.0579287498285556 18 0.05789313106832704 10 0.05416618843632741 16 0.045978962100592984 19 0.04542091487735726 21 0.04501058382150193 6 0.03887229730297587 4 0.037522754822618916 5 0.03679914192831552 8 0.03655681929719202 7 0.036549295373276766 1 0.036212182045433985 2 0.03575468336658513 3 0.033152131156026624 12 0.0308306049995397 23 0.028140625317519624 13 0.01717065326831194 24 0.016843245227685783 20 0.014859393691156597 14 0.01390799961225038 15 0.013529631080558447 __DUMMY__ 0.0033445807870008575 false 1.0 602 21 0.099875 19 0.092342 22 0.07967 18 0.076686 20 0.076086 12 0.073312 11 0.07158 24 0.068452 23 0.048544 10 0.046801 16 0.044251 14 0.043335 17 0.043259 13 0.04056 9 0.028872 0 0.026674 15 0.014146 4 0.008852 5 0.007953 3 0.003816 6 0.002715 7 9.09E-4 8 6.71E-4 1 6.39E-4 21 0.099875 19 0.092342 22 0.07967 18 0.076686 20 0.076086 12 0.073312 11 0.07158 24 0.068452 23 0.048544 10 0.046801 16 0.044251 14 0.043335 17 0.043259 13 0.04056 9 0.028872 0 0.026674 15 0.014146 4 0.008852 5 0.007953 3 0.003816 6 0.002715 7 9.09E-4 8 6.71E-4 1 6.39E-4 21 0.08638097533239462 19 0.0792898867708553 22 0.07332162042332313 18 0.07185330843762491 11 0.06590392565907548 12 0.06483167330954234 20 0.062496962611623956 24 0.05637950841855653 10 0.04906222762311488 23 0.04526917335098302 17 0.04425850452565076 14 0.04185749927518927 13 0.04026384994706544 16 0.040144457999339384 9 0.034599767024473004 0 0.03306349114120339 15 0.017524417500987034 4 0.01587356382649433 5 0.01517980151115729 6 0.011300391053651751 3 0.010925988692796009 7 0.009245018060809932 8 0.009111176411131747 1 0.008981133432344258 2 0.008487543886412 __DUMMY__ 0.004394133774200308 false 1.0 844 21 0.06561263407488527 22 0.0630388478316503 11 0.060559779130080524 18 0.06039998247897938 12 0.057804524295502105 19 0.05704485734823085 17 0.05188304353227448 0 0.04982106301078852 10 0.04873040577076575 9 0.04281812414201167 13 0.04158122990429084 16 0.03989792846896976 23 0.03858270543367114 20 0.03654562722820664 24 0.03434574025101873 14 0.03141842787220426 4 0.027002996989701857 5 0.026502829412414934 6 0.026206605399143965 8 0.023026064122037802 7 0.022990436363726028 1 0.022798512570528513 2 0.022422496848388346 3 0.02120163712879241 15 0.014432238295769634 __DUMMY__ 0.013331262095966365 false 0.0 845 21 0.07644961964811414 19 0.06784037078252766 22 0.06767096215807347 18 0.06644072813844519 11 0.061796657403942475 12 0.06021202598505704 20 0.05050992081938955 10 0.04966581710536431 24 0.04635281741404567 17 0.04405360021812506 23 0.04288907447802069 13 0.041953871352113994 14 0.040384170921970344 9 0.038214922678676495 0 0.03782438896793341 16 0.0359398711200461 4 0.021275403585217005 5 0.02077433662803499 15 0.018353504982044827 6 0.018063419914268106 3 0.01614204637330877 __DUMMY__ 0.01572141941976826 7 0.015595781555297342 8 0.015544214427248555 1 0.015341243990540588 2 0.014989809932426088 false 0.0 603 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.07134099615218525 17 0.06779812322239637 22 0.06501270643335653 9 0.05940360478295135 11 0.0579287498285556 18 0.05789313106832704 10 0.05416618843632741 16 0.045978962100592984 19 0.04542091487735726 21 0.04501058382150193 6 0.03887229730297587 4 0.037522754822618916 5 0.03679914192831552 8 0.03655681929719202 7 0.036549295373276766 1 0.036212182045433985 2 0.03575468336658513 3 0.033152131156026624 12 0.0308306049995397 23 0.028140625317519624 13 0.01717065326831194 24 0.016843245227685783 20 0.014859393691156597 14 0.01390799961225038 15 0.013529631080558447 __DUMMY__ 0.0033445807870008575 false 1.0 846 21 0.07630670795709624 19 0.06834102939145524 22 0.0673982392244858 18 0.06671534138677278 11 0.061262039927211756 12 0.06001887603866154 20 0.05150514754836943 10 0.049552716287071225 24 0.04696807973895833 17 0.04389449450806387 23 0.04318955658742086 13 0.04173907848442096 14 0.040621035045527734 9 0.037874624056247884 0 0.03721183656831129 16 0.036206564747963486 4 0.02111893375794245 5 0.0206156148193227 15 0.018982383029932246 6 0.017845224446243806 3 0.01606931840287981 __DUMMY__ 0.01571213445980846 7 0.015441851735605812 8 0.01539023649073096 1 0.015184394852964456 2 0.014834540506530951 false 0.0 604 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.07134099615218525 17 0.06779812322239637 22 0.06501270643335653 9 0.05940360478295135 11 0.0579287498285556 18 0.05789313106832704 10 0.05416618843632741 16 0.045978962100592984 19 0.04542091487735726 21 0.04501058382150193 6 0.03887229730297587 4 0.037522754822618916 5 0.03679914192831552 8 0.03655681929719202 7 0.036549295373276766 1 0.036212182045433985 2 0.03575468336658513 3 0.033152131156026624 12 0.0308306049995397 23 0.028140625317519624 13 0.01717065326831194 24 0.016843245227685783 20 0.014859393691156597 14 0.01390799961225038 15 0.013529631080558447 __DUMMY__ 0.0033445807870008575 false 1.0 605 22 0.094452 21 0.077836 9 0.069628 11 0.058343 24 0.052235 18 0.049537 19 0.046006 4 0.044672 5 0.043504 3 0.042328 0 0.041025 17 0.040729 8 0.038313 6 0.037917 7 0.037654 1 0.037508 2 0.037239 10 0.03699 23 0.033076 14 0.029236 12 0.01859 20 0.017038 15 0.009282 16 0.00686 22 0.094452 21 0.077836 9 0.069628 11 0.058343 24 0.052235 18 0.049537 19 0.046006 4 0.044672 5 0.043504 3 0.042328 0 0.041025 17 0.040729 8 0.038313 6 0.037917 7 0.037654 1 0.037508 2 0.037239 10 0.03699 23 0.033076 14 0.029236 12 0.01859 20 0.017038 15 0.009282 16 0.00686 22 0.0799622764531795 21 0.07408854066913226 11 0.059276691006463725 18 0.058152915328658954 9 0.05542229899772127 19 0.05501377669283622 24 0.04643888470501189 10 0.044742388057470495 17 0.04401880831046584 0 0.04176711030486514 12 0.03753331885237415 23 0.03665733814029084 14 0.03441649152041727 4 0.0340143564814855 5 0.03318888663364013 20 0.03166856725585054 3 0.030309939635868074 6 0.029461036063831936 8 0.02838865990848093 7 0.028082413242458536 1 0.027888136689723664 2 0.02755488172492265 16 0.02208098743834721 13 0.020666569503645003 15 0.015154183663885903 __DUMMY__ 0.004050542718972438 false 1.0 847 21 0.07566378561066729 19 0.06884256437144118 18 0.06790362337034996 22 0.06659249008676732 11 0.06068926178257366 12 0.0600570406502777 20 0.052723098512820435 10 0.0506956044885173 24 0.0466200506772354 17 0.04387503616854314 23 0.04286373452629596 13 0.04279407153260278 14 0.04212703046076876 9 0.0374848321722271 0 0.03692177098686367 16 0.03654052976778677 15 0.020846015132640904 4 0.02040870795997009 5 0.019913210762905566 6 0.017161409744404665 __DUMMY__ 0.015664305319157405 3 0.015404801430448915 7 0.014774139964115323 8 0.014728190296990783 1 0.014523263432604896 2 0.014181430791023054 false 0.0 606 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.08735959478383988 22 0.07878789798124507 11 0.07379949692007703 12 0.06214654245128376 19 0.06151415978619417 18 0.05735094515346175 24 0.048592304520886254 23 0.04317233582448579 10 0.0426407811332569 17 0.042343715101910075 9 0.04164755108173409 0 0.039862973716245274 13 0.03979507011717888 14 0.038330958505781505 20 0.03702296793600467 16 0.02939437592653899 4 0.02511670818508459 5 0.02444562057637331 6 0.02140469612036843 3 0.01887645519157555 7 0.01852002789971721 8 0.018462314147963902 1 0.018162176804071613 2 0.017524598284669055 15 0.009301481725566099 __DUMMY__ 0.004424250124486115 false 1.0 848 21 0.07564788449697339 19 0.06899190731026673 18 0.06711872495512088 22 0.06698162793752223 11 0.0611768135532693 12 0.05991633661749034 20 0.05185555556766538 10 0.04990862566459705 24 0.046490118663307156 17 0.04478690382648344 23 0.04296839438272896 13 0.04163314100240151 14 0.040351463558639056 0 0.03787043090606493 9 0.03763666129243663 16 0.03760814402612216 4 0.02069706469005912 5 0.020204441830811184 15 0.01948273662395121 6 0.017546638388420972 __DUMMY__ 0.01578725163933975 3 0.015678490794313306 7 0.015139826688930092 8 0.01508930217017877 1 0.014887126706756506 2 0.01454438670614984 false 0.0 607 21 0.099806 19 0.093055 22 0.083743 20 0.080939 18 0.079676 24 0.073743 11 0.070622 12 0.066484 23 0.05058 10 0.043837 16 0.043068 14 0.042804 17 0.042367 13 0.031317 9 0.028971 0 0.021954 15 0.016259 4 0.009538 5 0.008475 3 0.004767 6 0.002802 7 0.002089 1 0.001628 8 0.001479 21 0.099806 19 0.093055 22 0.083743 20 0.080939 18 0.079676 24 0.073743 11 0.070622 12 0.066484 23 0.05058 10 0.043837 16 0.043068 14 0.042804 17 0.042367 13 0.031317 9 0.028971 0 0.021954 15 0.016259 4 0.009538 5 0.008475 3 0.004767 6 0.002802 7 0.002089 1 0.001628 8 0.001479 21 0.08605140808708074 19 0.0799424300020925 22 0.07550626013631248 18 0.07346079503758945 11 0.0651939854906652 20 0.06500319221023482 12 0.06058320958000063 24 0.05916461165771692 10 0.04764998513150706 23 0.04620515633656927 17 0.04405676770534351 14 0.041235898026327995 16 0.03979436727849684 9 0.034921605244298534 13 0.034678405127343236 0 0.030787772430347905 15 0.018757450776766937 4 0.016312820969072564 5 0.015536725963039693 3 0.011611081508522537 6 0.011387724913187092 7 0.009943531450083493 8 0.009635769569398595 1 0.00958333616271784 2 0.008621143215452341 __DUMMY__ 0.0043745659898317656 false 1.0 849 22 0.0677825850436738 21 0.06591200255828425 18 0.06571306377428694 19 0.062194519038214234 11 0.0580335500607974 10 0.05174640375993255 17 0.04997300308279983 9 0.0461533229610589 12 0.04605018037959771 0 0.04519686243550209 20 0.042028264972750085 24 0.0394863523243153 23 0.03787077021937633 16 0.037173430311859254 14 0.03372533654278032 13 0.029926394117893346 4 0.026549354705793917 5 0.025999836982805825 6 0.024039834347113678 3 0.02234977603205945 8 0.022192213633965282 7 0.022187376609897256 1 0.021930813193783184 2 0.02149684920953938 15 0.019960377545292785 __DUMMY__ 0.014327526156627095 false 0.0 608 22 0.082315 9 0.07124 21 0.059648 11 0.053954 0 0.053696 18 0.051644 17 0.049894 4 0.046894 5 0.045875 10 0.044877 3 0.044758 8 0.043106 6 0.043025 7 0.042551 1 0.042392 2 0.042122 19 0.041581 24 0.036863 23 0.029211 14 0.020165 16 0.017103 12 0.014627 20 0.012832 15 0.009629 22 0.082315 9 0.07124 21 0.059648 11 0.053954 0 0.053696 18 0.051644 17 0.049894 4 0.046894 5 0.045875 10 0.044877 3 0.044758 8 0.043106 6 0.043025 7 0.042551 1 0.042392 2 0.042122 19 0.041581 24 0.036863 23 0.029211 14 0.020165 16 0.017103 12 0.014627 20 0.012832 15 0.009629 22 0.07444721953587903 21 0.06404101511692621 18 0.05838976531245707 9 0.057602139914442754 11 0.056826924269630014 19 0.05167354637516926 17 0.049324706606086025 0 0.04917227516577602 10 0.048263941484179125 24 0.03805598634631296 4 0.036267313450877615 5 0.03550269164088622 23 0.034202802381349776 12 0.033578390637705346 6 0.03321607117178234 3 0.032765770480135264 8 0.032068961829917815 7 0.03180684107732416 1 0.03160700427071051 2 0.03125566891979497 14 0.028308213795586998 20 0.02764070155011355 16 0.02699814420782606 13 0.018500392068607013 15 0.014593002011021292 __DUMMY__ 0.0038905103795025893 false 1.0 609 21 0.099214 22 0.096057 11 0.089446 19 0.068519 18 0.062644 12 0.057866 10 0.05292 9 0.050978 0 0.047574 24 0.047109 17 0.046385 14 0.036424 20 0.032856 23 0.032081 16 0.029452 13 0.029321 4 0.020464 5 0.02006 6 0.015384 3 0.014883 7 0.013268 8 0.012725 1 0.012546 2 0.011825 21 0.099214 22 0.096057 11 0.089446 19 0.068519 18 0.062644 12 0.057866 10 0.05292 9 0.050978 0 0.047574 24 0.047109 17 0.046385 14 0.036424 20 0.032856 23 0.032081 16 0.029452 13 0.029321 4 0.020464 5 0.02006 6 0.015384 3 0.014883 7 0.013268 8 0.012725 1 0.012546 2 0.011825 21 0.08484435418485449 22 0.08185942777473032 11 0.07462044476646278 19 0.06664997766511734 18 0.06418529707859082 12 0.055377092284456336 10 0.051618385247651395 17 0.04721099465628878 9 0.04683186967169036 0 0.04508250567546722 24 0.044885090014665695 20 0.03919678128647741 23 0.03660720701233255 14 0.035925710477414 16 0.03342711606486887 13 0.03220392374881043 4 0.022701004414699393 5 0.02222759859638305 6 0.018803602245293097 3 0.017550196566539965 7 0.016640556024307813 8 0.016366148515590498 1 0.016160881489885006 2 0.015602758193067669 15 0.009183494725358118 __DUMMY__ 0.004237581618996779 false 1.0 1044 22 0.06912771801668202 21 0.06625709155498323 18 0.06281593952124655 11 0.05994940173242933 19 0.059472471261908175 17 0.0507696012711758 10 0.050303531032920054 9 0.047692654052778644 0 0.04762341664151539 12 0.04609757468878676 24 0.03780242188676619 23 0.037511409089625435 20 0.03710235632962363 16 0.03647287760052404 14 0.03063642517515658 13 0.028801029389695226 4 0.028357109953159966 5 0.027800739790027243 6 0.026107137555072088 7 0.024061375888764978 8 0.024049912460251826 3 0.023871882664109483 1 0.023799996464716644 2 0.023336045166223347 15 0.01605601367639733 __DUMMY__ 0.014123867135459768 false 0.0 1043 21 0.07507195206519651 22 0.06870754828632783 19 0.06734031181483878 18 0.06638282182294093 11 0.06145992879361404 12 0.056627585062234406 10 0.049847743865894266 20 0.0491547775053364 24 0.04597828999735044 17 0.044941297187463564 23 0.042202433553561194 9 0.03997563618437791 0 0.03875451415524318 14 0.03869202641740783 13 0.03806662989691895 16 0.03589767906177041 4 0.022369883668684316 5 0.021847868904353553 6 0.019074585492816785 15 0.01827594514947823 3 0.017518052198324235 7 0.016839104511351028 8 0.016788159663431633 1 0.016568061536787002 2 0.01619060517359952 __DUMMY__ 0.015426558030696797 false 0.0 1042 21 0.07529076687544074 19 0.06914812607681259 18 0.06833158946534461 22 0.06633112981756656 11 0.0602920020782269 12 0.05968215032004689 20 0.053365453860943 10 0.0509974784486746 24 0.046741740472686616 17 0.043864592104737796 23 0.04281335498938585 13 0.04270974697085158 14 0.042583442440423336 9 0.03736686994512649 16 0.03675506256093018 0 0.03664455892260868 15 0.0217146658962358 4 0.020220124791719668 5 0.01972702374340323 6 0.016944151007140758 __DUMMY__ 0.01563257720599199 3 0.015292574783612418 7 0.014607236080646048 8 0.014565254755595433 1 0.014357909284155302 2 0.014020417101693047 false 0.0 1041 21 0.0740136934137221 18 0.06818837001051806 19 0.06683031059115846 22 0.06480193825444551 12 0.06016225844893181 11 0.05955867542845932 20 0.05226009663161403 10 0.05209143157573217 13 0.04627036126529286 14 0.04618467449136443 24 0.04496871043409487 17 0.04305269515138322 23 0.041899055189598786 9 0.037302299983639965 0 0.03645363725454866 16 0.03543254830864363 15 0.02511330828040654 4 0.020222178934932063 5 0.01973406344545352 6 0.0171742845181752 __DUMMY__ 0.015249439709769002 3 0.01512647077726141 7 0.014682106857318926 8 0.014663068227675352 1 0.014449326924766187 2 0.014114995891094002 false 0.0 1040 21 0.07413181298631857 22 0.06758662642680086 19 0.06696506138986175 18 0.06439414133657423 11 0.05994501165477407 12 0.05624464654104204 20 0.04910405397538946 24 0.04718041597216691 10 0.0471664416720267 23 0.04483439276232648 17 0.044704957753408686 9 0.03900459776360851 0 0.037817933424427345 16 0.036720814396412504 13 0.03665098180372827 14 0.036533697698835195 4 0.023717891812644946 5 0.023204151457932528 6 0.02051712349655484 3 0.018884787447061187 7 0.018307466125532513 8 0.018225075240802465 1 0.018018021919227703 2 0.017638473022604077 15 0.01758029933703291 __DUMMY__ 0.014921122582905014 false 0.0 1039 21 0.07391997571223471 19 0.06726721735881164 22 0.06722728579120006 18 0.06710019106590627 11 0.06045252834353256 12 0.056925710400402244 10 0.050699425077253606 20 0.0501220449870557 24 0.04537955612117082 17 0.04482198226670087 23 0.04207255191108965 14 0.04026316939785279 13 0.03971807367834835 9 0.039383277664429624 0 0.038438908351224446 16 0.03625394813450676 4 0.021925947003103276 5 0.021417310057388384 15 0.020366347816313097 6 0.018758293600503476 3 0.01709112310720641 7 0.016498554363282528 8 0.01645711517028679 1 0.016241911908526262 2 0.015879497908115787 __DUMMY__ 0.01531805280355362 false 0.0 1038 21 0.07548123937138863 19 0.06900355714729335 18 0.06807671638101141 22 0.06639260340201729 11 0.060418369386711905 12 0.059913626974036356 20 0.053147331260784074 10 0.05076473233661376 24 0.04678155954993925 17 0.043785991792695454 23 0.04293235740003655 13 0.04281597322473893 14 0.04242920792164192 9 0.03733521528870479 0 0.03665258479369285 16 0.03663408445721441 15 0.021368561262493348 4 0.02031650024344574 5 0.01982231906152482 6 0.01704890187056584 __DUMMY__ 0.015651868056088248 3 0.015353805694553089 7 0.014689178724883685 8 0.014644503122618864 1 0.01443901768989271 2 0.014100193585412724 false 0.0 850 21 0.06831733913471369 22 0.06775670451106933 18 0.06458934987920059 19 0.06281648070998966 11 0.05960077376326501 10 0.050509234821689786 12 0.04996936410875618 17 0.04920117012336063 0 0.044604371842510614 9 0.04435283186164376 20 0.04233840022262922 24 0.040321840782182886 23 0.039259702686350685 16 0.037516201153755424 14 0.033759601410665016 13 0.03268957113433219 4 0.02580855681994099 5 0.025277345294410575 6 0.023330233242567246 3 0.021248244058863563 7 0.02121512692711989 8 0.021197502415944373 1 0.020964346704397337 2 0.020549181877831373 15 0.017991153049966242 __DUMMY__ 0.014815371462843814 false 0.0 851 21 0.07227330096986566 19 0.06855442548625565 22 0.06722325538965525 18 0.06667495955756741 11 0.05869269149923543 12 0.053938568090259605 20 0.05124789875816862 10 0.0488163616621514 24 0.04692949159866751 17 0.046526596929914656 23 0.042491579034061394 9 0.03953132578812705 16 0.03889000770174222 0 0.038433792518425366 14 0.03771269691338558 13 0.0353400652956884 4 0.02250882706155161 5 0.021985869993241352 15 0.021054169336602726 6 0.01931646285737498 3 0.018080330248123635 7 0.01734575667560551 8 0.01731955070990966 1 0.017079832241821344 2 0.01670823382621035 __DUMMY__ 0.015323949856387317 false 0.0 1037 21 0.07503046452024535 19 0.06964521803835154 18 0.06737347656350731 22 0.06659903674502408 11 0.060672161205101056 12 0.059373999931248325 20 0.05265345689377397 10 0.04979822636207146 24 0.046778691534996045 17 0.04517120093387706 23 0.043218763709576884 13 0.04098815222346791 14 0.04015259185259858 16 0.03858438438952924 0 0.03772352713881459 9 0.03729111957140339 4 0.02053105633325999 15 0.020235134883283663 5 0.020042096412910056 6 0.017392850919180546 __DUMMY__ 0.015829377834958323 3 0.015611710340767289 7 0.015051575624477549 8 0.0149999084068868 1 0.014796001412447411 2 0.014455816218241428 false 0.0 852 21 0.07513732092212563 22 0.0684545114166919 19 0.06703190636416387 18 0.06642562627135273 11 0.0617935181267119 12 0.05752889991412491 10 0.050236573913543546 20 0.04868030304342831 24 0.045195063019542216 17 0.045131159758680005 23 0.04187128702063325 9 0.039974653458491195 0 0.03934622968197532 13 0.039180410047535405 14 0.03880266206049846 16 0.03590515044129216 4 0.022202507157627612 5 0.02169215560887062 6 0.019030136130604575 15 0.017878538612436903 3 0.01723031242348745 7 0.01668490893834785 8 0.0166363688481205 1 0.016425522774487337 2 0.016056449562516357 __DUMMY__ 0.015467824482709842 false 0.0 610 21 0.098095 22 0.095024 11 0.086211 19 0.059863 12 0.055586 18 0.054527 24 0.050949 9 0.050218 10 0.043499 0 0.042497 17 0.041344 23 0.038312 14 0.035394 13 0.027849 4 0.027252 5 0.026681 20 0.026224 6 0.022015 16 0.021783 3 0.020928 7 0.019575 8 0.019234 1 0.01897 2 0.017972 21 0.098095 22 0.095024 11 0.086211 19 0.059863 12 0.055586 18 0.054527 24 0.050949 9 0.050218 10 0.043499 0 0.042497 17 0.041344 23 0.038312 14 0.035394 13 0.027849 4 0.027252 5 0.026681 20 0.026224 6 0.022015 16 0.021783 3 0.020928 7 0.019575 8 0.019234 1 0.01897 2 0.017972 21 0.08485410301915057 22 0.08136092393623205 11 0.07310874736869938 19 0.06297791233624919 18 0.060555945942159045 12 0.054838550732227424 24 0.047261679305716266 10 0.047123423960729806 9 0.046026555696421806 17 0.04435798125663975 0 0.04201797378351931 23 0.03983962468055549 20 0.036809557828083185 14 0.036091730603705054 13 0.03207414328033245 16 0.02960873905810802 4 0.025576908101880905 5 0.025026434556292946 6 0.02152293599378755 3 0.020066921460324145 7 0.019205204227531997 8 0.019024696940658836 1 0.018778962400533745 2 0.018098507258022502 15 0.009471812274058973 __DUMMY__ 0.00432002399837965 false 1.0 1036 21 0.06940884669347498 22 0.06806817537267906 18 0.06406494250157851 19 0.06371238309035311 11 0.05924254623747668 12 0.05028604724551097 10 0.048913301578732554 17 0.048392962584236004 20 0.04387528515137546 9 0.04349797933039081 0 0.04287969567545502 24 0.04259944370855438 23 0.040473448975062026 16 0.03749460329506578 14 0.03362223431173113 13 0.03199601682562685 4 0.025792775938238265 5 0.02525525710562457 6 0.02307690126416294 3 0.02131725830286667 7 0.021054666538268426 8 0.021031174376495935 1 0.020791958430896856 2 0.020376700137620166 15 0.017855518879073884 __DUMMY__ 0.014919876449448857 false 0.0 853 21 0.07028445395314659 22 0.06671427282146314 18 0.06528282410125656 19 0.06250887367604584 11 0.05967463869560863 12 0.053848332066679626 10 0.05121133519846393 17 0.04658691616549681 20 0.04425024626571069 9 0.042596470602079134 0 0.042121224235969666 24 0.04103724795720778 23 0.039532683035818486 14 0.038707375909413755 13 0.038609194395860295 16 0.03524725891487566 4 0.024445457801467098 5 0.023925632766045615 6 0.021851406209735646 15 0.020186733173360945 3 0.019576512887776155 7 0.01950606483707122 8 0.019501391289278622 1 0.019270907498048363 2 0.018883769378199133 __DUMMY__ 0.014638776163920533 false 0.0 1035 22 0.06842986562242474 18 0.0630545235777246 21 0.06215499150197897 11 0.05814070225720761 19 0.057536847974842105 17 0.05209463133009069 10 0.051941845971502386 9 0.050240128403798406 0 0.04966857642754892 12 0.04119141549813837 16 0.03644342612558102 23 0.03590925851159626 24 0.035089880093932005 20 0.03473359428157566 4 0.030041055605530755 5 0.029481208950362596 14 0.02944737424920109 6 0.027994204417495176 8 0.02620066188192073 7 0.026195194662361337 3 0.025950053167777383 1 0.025943107622747156 13 0.02550661953063589 2 0.025468549131464464 15 0.01757209960239966 __DUMMY__ 0.013570183600161954 false 0.0 611 16 0.105394 17 0.090379 19 0.074535 0 0.061026 20 0.057181 18 0.054585 23 0.047018 24 0.04614 22 0.041872 15 0.040837 11 0.038888 12 0.037409 6 0.030066 21 0.029224 8 0.028375 7 0.028318 1 0.028124 2 0.02778 9 0.026384 4 0.026066 5 0.025571 10 0.024456 3 0.023341 13 0.007032 16 0.105394 17 0.090379 19 0.074535 0 0.061026 20 0.057181 18 0.054585 23 0.047018 24 0.04614 22 0.041872 15 0.040837 11 0.038888 12 0.037409 6 0.030066 21 0.029224 8 0.028375 7 0.028318 1 0.028124 2 0.02778 9 0.026384 4 0.026066 5 0.025571 10 0.024456 3 0.023341 13 0.007032 16 0.07884447302525807 17 0.07652001586275017 19 0.06675886330892447 18 0.0582610297233866 0 0.058076561370330106 22 0.05145785222060258 20 0.04677149561110199 11 0.04632637139879651 23 0.041692256902208964 21 0.041058830382313755 12 0.03961102458028544 24 0.03910453735002624 10 0.036262842323176094 9 0.03615688078204838 15 0.03309604717413168 6 0.029503501966191923 8 0.02757016376082495 4 0.02748663121691208 7 0.027485414830080886 1 0.027296395423739087 5 0.026979143544958683 2 0.026899926449743868 3 0.02393443752804749 13 0.016585902311729 14 0.012688908201607424 __DUMMY__ 0.003570492750823585 false 1.0 854 21 0.07295424912499485 22 0.06836873626164053 18 0.06556412410897779 19 0.06528508837005378 11 0.061194295012985685 12 0.05496957215501315 10 0.05020859038598017 17 0.04637333027635497 20 0.04617439368524279 24 0.04353670355857252 9 0.0415984476911864 0 0.04114421124476675 23 0.04099648998940989 14 0.036992664287190745 13 0.0369364334738674 16 0.036121142621780664 4 0.023617483999510847 5 0.023096257541303258 6 0.020672781274783593 3 0.01876154030570362 7 0.01839786054007458 8 0.018356543731968055 1 0.01813825606112265 2 0.01774721067324246 15 0.01762746411720236 __DUMMY__ 0.015166129507070485 false 0.0 612 22 0.077655 9 0.071672 0 0.057243 18 0.053554 17 0.053148 21 0.052965 11 0.051135 4 0.047475 10 0.047125 5 0.046658 3 0.045503 8 0.045009 6 0.044883 7 0.044796 1 0.044653 2 0.043784 19 0.039784 24 0.030721 23 0.028741 16 0.020966 14 0.017071 12 0.013239 20 0.011817 15 0.0104 22 0.077655 9 0.071672 0 0.057243 18 0.053554 17 0.053148 21 0.052965 11 0.051135 4 0.047475 10 0.047125 5 0.046658 3 0.045503 8 0.045009 6 0.044883 7 0.044796 1 0.044653 2 0.043784 19 0.039784 24 0.030721 23 0.028741 16 0.020966 14 0.017071 12 0.013239 20 0.011817 15 0.0104 22 0.07264650857454302 21 0.0596140449146152 9 0.05914444640449737 18 0.05877546222176398 11 0.05526505374782042 0 0.0521923944246137 17 0.051888647506774285 19 0.049913744456412015 10 0.04922674934796785 4 0.03753151486266588 5 0.03685258604038841 6 0.0351860663766741 3 0.03422150471212686 24 0.034181473275797826 8 0.03414300715956611 7 0.03403746979153565 1 0.03384214022651575 23 0.03332135262165936 2 0.03319560833428699 12 0.03084344755609762 16 0.02903540929968978 20 0.02540601673362838 14 0.025179677042417758 13 0.016265752075233997 15 0.014395016128028232 __DUMMY__ 0.00369490616467945 false 1.0 1034 21 0.07431549541473839 22 0.06843202118718533 19 0.06760201686154318 18 0.06689871666813808 11 0.0609547848784798 12 0.05570074251342708 10 0.05039415273477383 20 0.04959363019162627 24 0.045820514791077044 17 0.04511995326453689 23 0.04203407025796638 9 0.04011766498591133 14 0.03890357102185171 0 0.03875920925209872 13 0.03750220517772103 16 0.03621665487443216 4 0.02230652337898015 5 0.02178595663661743 15 0.01918551563108312 6 0.018997972443080532 3 0.017583531365302864 7 0.016850003970943328 8 0.016800194763213806 1 0.016578179890740976 2 0.01620207567516167 __DUMMY__ 0.015344642169368783 false 0.0 613 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.08735959478383988 22 0.07878789798124507 11 0.07379949692007703 12 0.06214654245128376 19 0.06151415978619417 18 0.05735094515346175 24 0.048592304520886254 23 0.04317233582448579 10 0.0426407811332569 17 0.042343715101910075 9 0.04164755108173409 0 0.039862973716245274 13 0.03979507011717888 14 0.038330958505781505 20 0.03702296793600467 16 0.02939437592653899 4 0.02511670818508459 5 0.02444562057637331 6 0.02140469612036843 3 0.01887645519157555 7 0.01852002789971721 8 0.018462314147963902 1 0.018162176804071613 2 0.017524598284669055 15 0.009301481725566099 __DUMMY__ 0.004424250124486115 false 1.0 855 21 0.0717527362436772 19 0.06783986848759258 22 0.06663456919832782 18 0.06610010734482542 11 0.05834627714940662 12 0.05406317261345368 20 0.05072558942842188 10 0.04845149221589044 24 0.04665067211354044 17 0.04640072817751218 23 0.04296817043807234 9 0.039408412022896216 16 0.03874290831722138 0 0.03849178206833756 14 0.03736285374953891 13 0.03560807334961294 4 0.022975587010250417 5 0.022454482576288005 15 0.02087807231240155 6 0.019887730114557127 3 0.018495559201696155 7 0.01787582299821386 8 0.017842332022654558 1 0.017609028257031478 2 0.01723471426507521 __DUMMY__ 0.015199258323504213 false 0.0 614 19 0.10396 22 0.098417 21 0.089719 11 0.088225 18 0.079995 17 0.069087 16 0.068187 10 0.05667 0 0.054367 20 0.051761 24 0.050024 12 0.046791 9 0.04357 23 0.034337 14 0.023645 15 0.009453 5 0.008569 4 0.008452 13 0.005866 3 0.003484 6 0.002915 7 8.53E-4 1 8.31E-4 8 8.23E-4 19 0.10396 22 0.098417 21 0.089719 11 0.088225 18 0.079995 17 0.069087 16 0.068187 10 0.05667 0 0.054367 20 0.051761 24 0.050024 12 0.046791 9 0.04357 23 0.034337 14 0.023645 15 0.009453 5 0.008569 4 0.008452 13 0.005866 3 0.003484 6 0.002915 7 8.53E-4 1 8.31E-4 8 8.23E-4 19 0.08424614009047908 22 0.08249430416947619 21 0.08028313547212733 11 0.07371866285100295 18 0.0727786769535922 17 0.057951927534012626 10 0.053359317207857325 16 0.05253255941906438 12 0.05046963835455205 20 0.049408460051764004 0 0.04775605508714206 24 0.04679683738086741 9 0.042552628138618966 23 0.03802406260888221 14 0.030425655172979134 13 0.02149862164868906 4 0.016476256262973988 5 0.016253784382879076 15 0.014604136509203235 6 0.012351251055997775 3 0.01166107724029052 7 0.010237479837782809 8 0.010204501196458748 1 0.010085921890610092 2 0.009488451079628224 __DUMMY__ 0.004340458403068629 false 1.0 856 22 0.06458257816057851 18 0.05735380048105737 9 0.05665716148020998 17 0.05465293821808966 0 0.054343465893080374 11 0.05068492180198543 21 0.05053909974101919 10 0.04965620256206988 19 0.048060983142328276 4 0.03818527802262509 5 0.03759828494288594 6 0.0370800023906645 8 0.035843691422025176 7 0.03579145909637692 1 0.03557011141241177 16 0.03527444302718456 2 0.03504925465266955 3 0.03497723885824635 23 0.034184166972970005 12 0.029496013096485727 24 0.029218942617200303 20 0.025322940310512614 14 0.02233552243484192 15 0.017959488224216842 13 0.01677958629376735 __DUMMY__ 0.012802424744496853 false 0.0 857 22 0.0667025594159668 18 0.05965547933048637 21 0.05603730183913989 11 0.05413119424055782 9 0.05405846301333132 17 0.05396743757003998 0 0.052735304796011254 19 0.051956387692578106 10 0.05008137344692819 16 0.035647169362163125 12 0.03500021229697324 23 0.03473561702459719 4 0.03468621253587797 5 0.03409799938475426 6 0.03322604856640889 24 0.03170014039054648 8 0.03167411689066271 7 0.031620012525296226 1 0.031395340712103856 3 0.030974253304764013 2 0.030900768331192315 20 0.028797884588762097 14 0.02514595636435242 13 0.020793735272124615 15 0.01726602469420722 __DUMMY__ 0.013013006410173531 false 0.0 615 0 0.086795 17 0.079885 9 0.066272 22 0.062948 11 0.058859 18 0.056162 10 0.056149 16 0.053129 6 0.04556 7 0.042878 8 0.04284 1 0.042811 4 0.041805 2 0.041387 5 0.040979 19 0.037736 3 0.036592 21 0.033028 12 0.02366 23 0.021496 13 0.011821 15 0.011284 14 0.00349 24 0.002431 0 0.086795 17 0.079885 9 0.066272 22 0.062948 11 0.058859 18 0.056162 10 0.056149 16 0.053129 6 0.04556 7 0.042878 8 0.04284 1 0.042811 4 0.041805 2 0.041387 5 0.040979 19 0.037736 3 0.036592 21 0.033028 12 0.02366 23 0.021496 13 0.011821 15 0.011284 14 0.00349 24 0.002431 0 0.07015833789925338 17 0.06754568580600573 22 0.06474629342074019 9 0.059409222173242356 18 0.05788197859652336 11 0.057388903070603875 10 0.052992838382366285 16 0.045721856421036204 19 0.04548428618920882 21 0.045153142635138546 6 0.03904093861500572 4 0.037767788339189624 5 0.03708376895428081 8 0.03676691661694328 7 0.036765448218982 1 0.03662071424691151 2 0.03568203366796841 3 0.033153078218536185 12 0.031018806583920342 23 0.02841360306130263 13 0.017441762662339277 24 0.01725223421687802 20 0.014859400612810159 14 0.01427646176779858 15 0.014029917278074955 __DUMMY__ 0.0033445823449398957 false 1.0 616 21 0.103382 22 0.092022 11 0.087656 19 0.071188 12 0.068056 18 0.062062 24 0.052607 10 0.047663 9 0.043845 17 0.043772 0 0.042493 14 0.038939 20 0.038734 13 0.038314 23 0.038012 16 0.029858 4 0.018386 5 0.017966 6 0.013414 3 0.011731 7 0.010543 8 0.010184 1 0.010024 2 0.009146 21 0.103382 22 0.092022 11 0.087656 19 0.071188 12 0.068056 18 0.062062 24 0.052607 10 0.047663 9 0.043845 17 0.043772 0 0.042493 14 0.038939 20 0.038734 13 0.038314 23 0.038012 16 0.029858 4 0.018386 5 0.017966 6 0.013414 3 0.011731 7 0.010543 8 0.010184 1 0.010024 2 0.009146 21 0.08785956585120484 22 0.07980919840150764 11 0.0740212867997536 19 0.06861841007266689 18 0.06426135693205222 12 0.06168883456396356 10 0.0491419763679426 24 0.04822836358238944 17 0.04524408405538609 20 0.04319133615037792 9 0.042548484874360484 0 0.041734591744998446 23 0.03987983177989105 14 0.03822133081054672 13 0.037963127117798444 16 0.033416214603570804 4 0.02102084726399635 5 0.02054695664430487 6 0.017085459211166023 3 0.015281251369956174 7 0.014508552837640397 8 0.014317499317081707 1 0.014125309567396615 2 0.013508006966215236 15 0.00942213735306126 __DUMMY__ 0.004355985760770636 false 1.0 858 21 0.07345718986951491 22 0.06664666530120825 19 0.06659631800657184 18 0.06375873705367428 11 0.05846926797338277 12 0.056017950017413734 20 0.05018906565701209 24 0.04846369041494471 23 0.045755971162497015 10 0.04574176858409487 17 0.04422761595935551 9 0.0384910577108427 16 0.03664613059627842 0 0.0366134553461549 13 0.036188609006762 14 0.03604814770654867 4 0.024384831168058032 5 0.023856902098091732 6 0.02117580904166358 3 0.019658526997034815 7 0.019045060949369093 8 0.018969052035045 1 0.018747119415366192 2 0.01836805938419511 15 0.017934505749623436 __DUMMY__ 0.014548492795296237 false 0.0 617 21 0.104054 22 0.093227 11 0.088358 19 0.077632 18 0.068026 12 0.067941 10 0.053601 24 0.052486 17 0.046433 9 0.045089 20 0.044275 0 0.044041 14 0.03898 13 0.036325 23 0.034891 16 0.033847 4 0.014567 5 0.013926 6 0.00908 3 0.008744 7 0.006494 8 0.006332 1 0.00597 2 0.005682 21 0.104054 22 0.093227 11 0.088358 19 0.077632 18 0.068026 12 0.067941 10 0.053601 24 0.052486 17 0.046433 9 0.045089 20 0.044275 0 0.044041 14 0.03898 13 0.036325 23 0.034891 16 0.033847 4 0.014567 5 0.013926 6 0.00908 3 0.008744 7 0.006494 8 0.006332 1 0.00597 2 0.005682 21 0.08781875706253416 22 0.08028816496531066 11 0.07416794406913563 19 0.07132412128686041 18 0.06696743509879098 12 0.06126244683713537 10 0.05199018303163051 24 0.04789957897590584 17 0.04657709528419339 20 0.04545846559508182 9 0.0433934398913003 0 0.04265896466179531 23 0.038287979227974764 14 0.0380650838016324 13 0.036789633639205635 16 0.03519132449994916 4 0.019461688927186475 5 0.01888230454067923 6 0.01531330756399061 3 0.01413372135440151 7 0.012883845724509542 8 0.012785763370542309 1 0.012499237063869328 2 0.012155045000220733 15 0.00942575501758724 __DUMMY__ 0.004318713508576637 false 1.0 859 21 0.06915443025685958 22 0.06829396039662548 18 0.06567674607615444 19 0.06387477133237915 11 0.05804505324408361 10 0.05088270890353801 12 0.04784176882072854 17 0.046003718373283556 20 0.04532978187976672 9 0.04421113169380257 24 0.043365853197071834 23 0.040833020526765504 0 0.04058600266124709 14 0.03616343254793615 16 0.03468503983152536 13 0.031091126966147842 4 0.026012818748293632 5 0.025470367970402513 6 0.022792513675242015 3 0.021888485841887285 7 0.021079007480712966 8 0.021040407378494844 1 0.020798797803191115 2 0.02038693182363288 15 0.020084910047630893 __DUMMY__ 0.014407212522596477 false 0.0 618 21 0.10289 22 0.092724 11 0.088015 19 0.077191 12 0.06792 18 0.067673 10 0.053827 24 0.052062 17 0.046264 20 0.044638 9 0.044231 0 0.043892 14 0.039038 13 0.036604 23 0.034997 16 0.033815 4 0.014971 5 0.014354 6 0.009492 3 0.009091 7 0.00688 8 0.006723 1 0.00664 2 0.006069 21 0.10289 22 0.092724 11 0.088015 19 0.077191 12 0.06792 18 0.067673 10 0.053827 24 0.052062 17 0.046264 20 0.044638 9 0.044231 0 0.043892 14 0.039038 13 0.036604 23 0.034997 16 0.033815 4 0.014971 5 0.014354 6 0.009492 3 0.009091 7 0.00688 8 0.006723 1 0.00664 2 0.006069 21 0.08727275888974376 22 0.08005222245593473 11 0.07400705285498863 19 0.07111726115438567 18 0.06680185317869217 12 0.061252596354636576 10 0.05209619298614136 24 0.04770069304354921 17 0.046497822353607846 20 0.045628738221132434 9 0.04299097732063521 0 0.04258907314311338 23 0.038337700711063925 14 0.038092289896152876 13 0.036920504335261076 16 0.03517631424090338 4 0.019651193447639506 5 0.019083066755416603 6 0.015506564649205088 3 0.01429648885092924 7 0.01306490697424932 8 0.01296916997325799 1 0.012813514362640445 2 0.01233657532055569 15 0.00942575501758724 __DUMMY__ 0.004318713508576637 false 1.0 619 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.07945984724739542 21 0.07381382070676769 11 0.05865577742339476 18 0.05837906905901612 9 0.05542685426069099 19 0.05487356356189926 24 0.046096295675446125 10 0.04448132360738134 17 0.0441283363533024 0 0.04140251228551605 12 0.03756227850086633 23 0.037055953620262656 14 0.03439532798302021 4 0.03405410008551146 5 0.0332028641639275 20 0.031842309993682864 3 0.03028831720903207 6 0.029642280120526773 8 0.02860926125226532 7 0.028470273097385413 1 0.028297548424156514 2 0.02756699841622171 16 0.022201811092969443 13 0.020666521091252575 15 0.015376221537719947 __DUMMY__ 0.0040505332303892635 false 1.0 1055 21 0.07503046452024538 19 0.06964521803835155 18 0.06737347656350731 22 0.0665990367450241 11 0.060672161205101056 12 0.05937399993124834 20 0.052653456893773966 10 0.04979822636207146 24 0.04677869153499606 17 0.04517120093387706 23 0.04321876370957689 13 0.04098815222346792 14 0.04015259185259858 16 0.03858438438952923 0 0.0377235271388146 9 0.03729111957140339 4 0.02053105633325999 15 0.020235134883283663 5 0.020042096412910063 6 0.01739285091918055 __DUMMY__ 0.015829377834958327 3 0.015611710340767292 7 0.01505157562447755 8 0.014999908406886801 1 0.014796001412447414 2 0.014455816218241428 false 0.0 1054 21 0.07175719872159766 22 0.06666585915336617 18 0.06567843216129668 19 0.06554703504834411 11 0.06029835873184972 12 0.055928838087655114 10 0.050149669987166946 17 0.04706566418613929 20 0.047021600303670585 24 0.04298196887166921 0 0.04141152715455657 23 0.04118653816793537 9 0.0405718609872755 13 0.038411099733872 16 0.037798011400019725 14 0.037236229899118435 4 0.023174279720209044 5 0.022670476980370273 6 0.020507987362203557 15 0.01875709745156342 3 0.018268440685072912 7 0.01814635062355854 8 0.01811191735087743 1 0.017908141366130215 2 0.017527041092711394 __DUMMY__ 0.015218374771770182 false 0.0 1053 21 0.07487832814809985 19 0.06930329703015506 18 0.06858434477691831 22 0.06597967091240178 11 0.05980813500393897 12 0.059338729109281174 20 0.053897577492310465 10 0.051105809572601094 24 0.04688238102360653 17 0.04381585022892491 14 0.04303800610712876 23 0.04289674445569557 13 0.04269642455354613 9 0.037183830833553796 16 0.03693620229531786 0 0.036312808228074936 15 0.022641832560532295 4 0.020116757841034557 5 0.019624378359522132 6 0.016830662262324957 __DUMMY__ 0.01561571000268152 3 0.015249320835560944 7 0.014534303385739652 8 0.014495165972623267 1 0.014284591429639023 2 0.013949137578786552 false 0.0 1052 21 0.07108194098248728 22 0.06787065197686357 18 0.06484710315393026 19 0.06379664604145956 11 0.06027212154903229 12 0.05318625282540802 10 0.0500814114934175 17 0.04711940366689975 20 0.044468587774417555 9 0.042726088524231064 0 0.042291200835160886 24 0.04227757475727615 23 0.040446855626878414 16 0.03613399988150108 14 0.03573821090022458 13 0.03559250845241351 4 0.024798484395650775 5 0.02427931904319335 6 0.02204983702099067 3 0.020049183559751976 7 0.01982746650142419 8 0.01979354595119268 1 0.019579803857679053 2 0.019177437303610954 15 0.017553895560378226 __DUMMY__ 0.014960468364526589 false 0.0 1051 22 0.06355292452886784 17 0.06007263082326076 18 0.059389040612785264 0 0.05616914413127113 11 0.054305355678643 19 0.054252268713514816 21 0.05295133893646647 9 0.050475364970659096 10 0.04832767797823779 16 0.04555291645271182 12 0.037805331974705925 23 0.03475261867750076 4 0.03243162656878382 6 0.03210094138654835 5 0.03187804230533869 24 0.03037076811278291 20 0.030268986262605487 8 0.03014365547978172 7 0.030070293345921068 1 0.02986577147613873 2 0.029373803952825902 3 0.02831272622627578 14 0.022591568495111628 13 0.022173226263804212 15 0.01974914422694321 __DUMMY__ 0.013062832418513649 false 0.0 1050 21 0.06801678907823128 22 0.06621386072219648 19 0.06592291174917851 18 0.06581086767304352 11 0.05874626157737705 12 0.05134654850255986 17 0.050097658997207264 10 0.04990494654127963 20 0.04657182940134546 0 0.04326577207301909 24 0.04220426055143813 9 0.04154185739600067 16 0.04125437443075227 23 0.04053323848528602 14 0.034616402645885815 13 0.033535510237322805 4 0.023900177118361742 5 0.023385072429060367 6 0.021482445547750986 15 0.02073608114293603 3 0.019400031460732707 7 0.01938585579247532 8 0.01936588602477144 1 0.019132142937935345 2 0.01873690081216256 __DUMMY__ 0.014892316671689762 false 0.0 860 21 0.07033197019492954 18 0.07030549949752807 22 0.06706167245692958 19 0.06574327320387921 11 0.06063428660022597 10 0.05698317560198948 12 0.052874462972684874 20 0.04721805867897209 17 0.04629135766103608 9 0.04260441671206406 14 0.04251583142407184 0 0.04200016388581603 24 0.03967947661894622 13 0.03945764836183626 23 0.03831231484192669 16 0.03543309239176832 15 0.02354597312640949 4 0.02167594215367413 5 0.021187487764342067 6 0.01874905383832239 3 0.01702781883722356 7 0.016580547676380827 8 0.016547806855535783 1 0.016344805886243954 2 0.01597308039455209 __DUMMY__ 0.01492078236271155 false 0.0 1049 21 0.0740136934137221 18 0.06818837001051806 19 0.06683031059115846 22 0.06480193825444551 12 0.06016225844893181 11 0.05955867542845933 20 0.05226009663161403 10 0.05209143157573217 13 0.04627036126529286 14 0.04618467449136442 24 0.04496871043409486 17 0.04305269515138322 23 0.041899055189598786 9 0.037302299983639965 0 0.03645363725454866 16 0.03543254830864364 15 0.02511330828040654 4 0.020222178934932063 5 0.01973406344545352 6 0.017174284518175195 __DUMMY__ 0.015249439709769002 3 0.01512647077726141 7 0.014682106857318926 8 0.014663068227675352 1 0.014449326924766187 2 0.014114995891094002 false 0.0 861 22 0.06056485586733762 18 0.05386502531657429 9 0.05385253274092134 21 0.05028764690919878 17 0.0476880883425343 0 0.045887724326793056 19 0.045864048507153934 10 0.04456270622716166 11 0.044339409768925205 4 0.041325081780150416 5 0.0407759468879967 23 0.04055018422518826 6 0.03963656607180896 7 0.03866282622387383 8 0.03865584065655954 1 0.03847638149488044 3 0.03846433060741884 2 0.03795376876951141 24 0.034954630313202784 12 0.030256080645880097 16 0.030153878334629874 20 0.029320787958379224 14 0.024018005303121964 15 0.01914992038393386 13 0.01816969225311903 __DUMMY__ 0.012564040083744702 false 0.0 620 21 0.106568 22 0.091954 11 0.087495 19 0.082235 12 0.072622 18 0.071093 24 0.05422 10 0.054059 20 0.050289 17 0.046299 0 0.0423 9 0.04214 14 0.040173 13 0.039855 23 0.036769 16 0.036057 4 0.011616 5 0.010941 6 0.006129 3 0.005445 7 0.003412 8 0.003173 1 0.002767 2 0.00239 21 0.106568 22 0.091954 11 0.087495 19 0.082235 12 0.072622 18 0.071093 24 0.05422 10 0.054059 20 0.050289 17 0.046299 0 0.0423 9 0.04214 14 0.040173 13 0.039855 23 0.036769 16 0.036057 4 0.011616 5 0.010941 6 0.006129 3 0.005445 7 0.003412 8 0.003173 1 0.002767 2 0.00239 21 0.08958919633454088 22 0.07971032512329135 11 0.07398733875737486 19 0.07398440712890735 18 0.06865888352719372 12 0.0642096994365182 10 0.052241822254948625 24 0.04911344843565667 20 0.048945873408629416 17 0.04623988515505066 9 0.041542403668144046 0 0.04142680104669674 23 0.03937768526390436 14 0.03910417528665193 13 0.03910342687958385 16 0.03624920641194445 4 0.017650097720368213 5 0.01705879589124247 6 0.013451261023828919 3 0.012120184896956848 7 0.010933388324329055 8 0.010797680435744 1 0.010492888115441955 2 0.010114439430920327 15 0.009487904145838192 __DUMMY__ 0.00440878189629283 false 1.0 1048 21 0.07295424912499485 22 0.06836873626164053 18 0.06556412410897779 19 0.06528508837005378 11 0.0611942950129857 12 0.05496957215501315 10 0.05020859038598017 17 0.04637333027635497 20 0.04617439368524279 24 0.04353670355857252 9 0.0415984476911864 0 0.041144211244766755 23 0.0409964899894099 14 0.036992664287190745 13 0.0369364334738674 16 0.03612114262178066 4 0.023617483999510844 5 0.023096257541303258 6 0.020672781274783593 3 0.01876154030570362 7 0.01839786054007458 8 0.018356543731968055 1 0.01813825606112265 2 0.01774721067324246 15 0.01762746411720236 __DUMMY__ 0.015166129507070485 false 0.0 862 18 0.07186740662791645 22 0.06576894879338965 21 0.06191980590791553 10 0.06186172712134446 19 0.061047966079033664 11 0.05720381647258653 17 0.04889389637230386 9 0.0485660904756497 0 0.046787113641988315 12 0.042939976538391295 20 0.041597799444842834 14 0.04105659175823178 23 0.03422350289268927 16 0.03404761113998047 13 0.03385958492061005 24 0.03287217313613674 15 0.026680726599389786 4 0.024960858534107736 5 0.024454074295945177 6 0.02251103826648115 3 0.02100246883818618 7 0.020780327425456054 8 0.02077417014700012 1 0.020565057926877264 2 0.020148976233845685 __DUMMY__ 0.01360829040970043 false 0.0 1047 21 0.07472010455487112 22 0.0697136443652114 19 0.06780180467062881 18 0.06698537802194852 11 0.06089516585471512 12 0.05339099671699218 10 0.050411457527063226 20 0.049948651349110904 24 0.04715714133575548 17 0.043921665445868514 23 0.042489231190842275 9 0.0407306269620466 14 0.0393805885896101 0 0.03730813519486356 13 0.03506669715380593 16 0.03482023775041894 4 0.022822486958266337 5 0.02230061083924512 15 0.01993788028311193 6 0.01909713878795566 3 0.018383476338357164 7 0.01720862712128444 8 0.017142543691290466 1 0.016907041497349326 2 0.01653258479535997 __DUMMY__ 0.014926083004026845 false 0.0 621 0 0.087379 17 0.079507 9 0.065784 22 0.062688 11 0.059408 10 0.056889 18 0.054477 16 0.053411 6 0.045299 8 0.042699 7 0.0425 1 0.04229 2 0.04202 4 0.041647 5 0.040993 19 0.037611 3 0.037229 21 0.032733 12 0.024139 23 0.021116 13 0.012134 15 0.011498 14 0.00367 24 0.002877 0 0.087379 17 0.079507 9 0.065784 22 0.062688 11 0.059408 10 0.056889 18 0.054477 16 0.053411 6 0.045299 8 0.042699 7 0.0425 1 0.04229 2 0.04202 4 0.041647 5 0.040993 19 0.037611 3 0.037229 21 0.032733 12 0.024139 23 0.021116 13 0.012134 15 0.011498 14 0.00367 24 0.002877 0 0.07043033810778328 17 0.06736957826032484 22 0.06462515272852665 9 0.05918187934605347 11 0.05764460588631254 18 0.05709706222030504 10 0.05333751290640868 16 0.045853193470419835 19 0.04542603878451247 21 0.04501570772865714 6 0.038919344086855455 4 0.03769417280744753 5 0.03709027301667933 8 0.03670122031702047 7 0.036589355011035635 1 0.03637801031336601 2 0.035976874613224394 3 0.03344978358076978 12 0.03124191500118009 23 0.02823658212424433 13 0.01758755298684891 24 0.017459977325275673 20 0.0148593936911566 14 0.014360300871132391 15 0.014129594027458583 __DUMMY__ 0.0033445807870008575 false 1.0 863 18 0.06736168824814824 22 0.06527909282631685 10 0.059257648072377156 21 0.057669579957033555 19 0.05564016034247084 11 0.05471277987612938 9 0.052076390414686306 17 0.04960119239055696 0 0.048870107194104284 12 0.03735883944703909 14 0.036463937211206374 20 0.03542970830545027 23 0.03379973947292539 16 0.032538484498143214 24 0.030793895453793078 4 0.0297460448212704 5 0.02920935399971756 13 0.02856854024876976 6 0.027616130201601613 8 0.026108782408682422 7 0.02610244361261559 3 0.026101530316897138 1 0.025886639355777993 2 0.025423089297305256 15 0.02487750874497921 __DUMMY__ 0.01350669328200208 false 0.0 622 21 0.10811 22 0.089779 11 0.085399 19 0.084989 12 0.074436 18 0.073671 24 0.055046 20 0.055038 10 0.053649 17 0.045892 13 0.042014 0 0.040571 14 0.040168 23 0.039641 9 0.039195 16 0.036852 4 0.010403 5 0.009719 6 0.005182 3 0.003749 7 0.002386 1 0.0017 8 0.00163 2 7.82E-4 21 0.10811 22 0.089779 11 0.085399 19 0.084989 12 0.074436 18 0.073671 24 0.055046 20 0.055038 10 0.053649 17 0.045892 13 0.042014 0 0.040571 14 0.040168 23 0.039641 9 0.039195 16 0.036852 4 0.010403 5 0.009719 6 0.005182 3 0.003749 7 0.002386 1 0.0017 8 0.00163 2 7.82E-4 21 0.0908742236789744 22 0.07870725884067542 19 0.07570115834502396 11 0.07309002280506591 18 0.07007259854232376 12 0.06567010263363954 10 0.052025970199282484 20 0.05184409154175855 24 0.04998274366280602 17 0.045658578145920524 23 0.04098459017301576 13 0.04065668236305306 0 0.04006916589590168 9 0.039760607319641685 14 0.039589416654187866 16 0.03648481367679287 4 0.016756790619648337 5 0.01616312768517791 6 0.012612331892775153 3 0.010977604282404546 7 0.010046974243958725 8 0.009666703470536218 1 0.009586676046734048 15 0.009567550318380367 2 0.008958954309150304 __DUMMY__ 0.004491262653171007 false 1.0 1046 21 0.07363573666089462 18 0.06808926518873344 19 0.06746971920760238 22 0.06521520365120592 11 0.059030223035547946 12 0.05867346488796548 20 0.05265516438119729 10 0.05135270063168557 24 0.04577693425232465 14 0.044680883937294254 13 0.043846545476839124 17 0.043630343059615086 23 0.04214738733813587 9 0.03762815013008372 0 0.03643956153720036 16 0.03615979182271028 15 0.024739852769539595 4 0.02059377705364185 5 0.02009745414062581 6 0.017461293078911602 3 0.015696718061273932 __DUMMY__ 0.015329359993018377 7 0.015123257251283783 8 0.01510407908740381 1 0.014881144011303317 2 0.014541989353962224 false 0.0 864 21 0.07363663123222838 19 0.06682820476709268 18 0.06667658662569294 22 0.06477400835385531 12 0.05969865229990854 11 0.05858380324457454 20 0.051097107738242394 10 0.04983740928720975 24 0.04558815657631774 23 0.04527341741846864 17 0.04316852985115677 13 0.042381584912375876 14 0.039774277541020184 9 0.037687088771710266 0 0.036936342377721164 16 0.035289716563462574 4 0.022580824666227187 5 0.022099155274392147 6 0.019552234961537376 15 0.019000711887475052 3 0.01746596314510087 7 0.017048734693182816 8 0.01699220794314339 1 0.016803982057755004 2 0.016510571514604284 __DUMMY__ 0.01471409629554429 false 0.0 623 21 0.108359 22 0.090462 11 0.086134 19 0.085327 12 0.075408 18 0.073583 24 0.055187 20 0.054974 10 0.054086 17 0.045999 13 0.042315 0 0.040946 14 0.040854 9 0.039508 23 0.038981 16 0.037598 4 0.009651 5 0.009095 6 0.004271 3 0.003333 7 0.001636 8 0.001055 1 9.21E-4 2 3.19E-4 21 0.108359 22 0.090462 11 0.086134 19 0.085327 12 0.075408 18 0.073583 24 0.055187 20 0.054974 10 0.054086 17 0.045999 13 0.042315 0 0.040946 14 0.040854 9 0.039508 23 0.038981 16 0.037598 4 0.009651 5 0.009095 6 0.004271 3 0.003333 7 0.001636 8 0.001055 1 9.21E-4 2 3.19E-4 21 0.09099087342107931 22 0.07902730573500988 19 0.0758595245045126 11 0.07343444181440285 18 0.07003132504050359 12 0.06612559372329663 10 0.05223074319956873 20 0.05181407403608727 24 0.05004879902783675 17 0.045708701645028674 13 0.04079772512182125 23 0.0406752659954028 0 0.040244888578206156 14 0.03991088781254402 9 0.039907274225085144 16 0.036834404923778166 4 0.016404362557942646 5 0.015870686320197336 6 0.012185391394103578 3 0.010782643277664343 7 0.00969548661455671 15 0.009567545834606322 8 0.009397228700900517 1 0.009221597960104614 2 0.008741967987391956 __DUMMY__ 0.004491260548368185 false 1.0 865 22 0.06828141842230542 21 0.06607086697988435 18 0.0651078033224175 19 0.06139599777967234 11 0.05833986091506694 10 0.05199444687325374 17 0.04900282829525037 9 0.046809323653618486 12 0.04526031575542784 0 0.04497096071847596 20 0.04084110841310093 24 0.03928970241302695 23 0.03836126616094002 16 0.03577175740361742 14 0.03340373997478182 13 0.02910697633595889 4 0.027371692797686167 5 0.02682877745153549 6 0.02471928274755153 3 0.023215934241309022 7 0.022926991513330695 8 0.02290986434594064 1 0.022664411546008685 2 0.02222504156991411 15 0.01905814474287613 __DUMMY__ 0.014071485627048594 false 0.0 1045 22 0.06476267538790577 21 0.06449269271501257 18 0.06319981453208431 19 0.06279722088551393 11 0.057175226748740406 17 0.05231735042398638 12 0.04922823786578324 10 0.04808848502134776 0 0.045839585474343525 20 0.04295100719432106 9 0.0428474769944974 16 0.04271261931466967 24 0.0400736767501913 23 0.03998991062172606 13 0.031496799969838986 14 0.031193635983641083 4 0.026230545769768385 5 0.02571872799624878 6 0.02442467328187963 7 0.022285194085530688 8 0.02227693529973774 1 0.022054166312476257 3 0.02175273631919714 2 0.02162818279736693 15 0.02003495020459758 __DUMMY__ 0.014427472049593455 false 0.0 624 21 0.107681 22 0.088479 11 0.086723 12 0.078095 19 0.071932 18 0.059113 24 0.056848 13 0.047784 23 0.044934 20 0.041893 14 0.041496 10 0.040917 17 0.040339 9 0.037252 0 0.037172 16 0.028861 4 0.017637 5 0.016874 6 0.012859 3 0.009451 7 0.00907 8 0.008681 1 0.008434 2 0.007476 21 0.107681 22 0.088479 11 0.086723 12 0.078095 19 0.071932 18 0.059113 24 0.056848 13 0.047784 23 0.044934 20 0.041893 14 0.041496 10 0.040917 17 0.040339 9 0.037252 0 0.037172 16 0.028861 4 0.017637 5 0.016874 6 0.012859 3 0.009451 7 0.00907 8 0.008681 1 0.008434 2 0.007476 21 0.09067000322156935 22 0.07810640805488714 11 0.07369216206062425 19 0.0694730881081525 12 0.06735372030265933 18 0.06307234871445011 24 0.050871177849871774 10 0.04587640839240922 20 0.04554734447020141 23 0.043554419780191936 13 0.04329532088922973 17 0.04303043291998576 14 0.04011527038690878 9 0.03884935853728927 0 0.03845563100579744 16 0.0326988350669558 4 0.020252329166257247 5 0.019619836276725793 6 0.016319867041399365 3 0.013749763739183055 7 0.013287145340327483 8 0.013078414383909413 1 0.01284902609768957 2 0.012201231066601492 15 0.009495221003265612 __DUMMY__ 0.004485236123457094 false 1.0 866 21 0.07224625261097424 18 0.06909906842509403 22 0.0669144466489049 19 0.06609911812575633 11 0.06104088658215668 12 0.055796821584028405 10 0.05486305293392197 20 0.04816802317245985 17 0.045414460365431945 14 0.04232488435573749 24 0.04145854558336652 13 0.041212947704067394 9 0.04102867806517306 0 0.04067789497944594 23 0.03972950230501824 16 0.035400605694549586 15 0.022084391743040402 4 0.02145638133102058 5 0.020968161701295448 6 0.01850170380089216 3 0.01656838596259386 7 0.016170768870279933 8 0.01613150271832775 1 0.015929104667438625 2 0.015566034149139615 __DUMMY__ 0.015148375919884782 false 0.0 625 22 0.082308 9 0.071301 21 0.059562 0 0.05351 11 0.053404 18 0.052071 17 0.049568 4 0.04666 5 0.045681 10 0.045232 3 0.044814 8 0.04327 6 0.042981 7 0.042879 1 0.04257 2 0.042188 19 0.041334 24 0.036479 23 0.029539 14 0.020169 16 0.0171 12 0.014358 20 0.013073 15 0.009951 22 0.082308 9 0.071301 21 0.059562 0 0.05351 11 0.053404 18 0.052071 17 0.049568 4 0.04666 5 0.045681 10 0.045232 3 0.044814 8 0.04327 6 0.042981 7 0.042879 1 0.04257 2 0.042188 19 0.041334 24 0.036479 23 0.029539 14 0.020169 16 0.0171 12 0.014358 20 0.013073 15 0.009951 22 0.0744439399271118 21 0.06400072278064324 18 0.05858982144725738 9 0.057630719362271376 11 0.056569240723634284 19 0.051557823037240276 17 0.049171970540641284 0 0.049085131275675646 10 0.0484302645002309 24 0.037876076379654115 4 0.03615768081494489 5 0.03541179962648045 23 0.03435647547787086 12 0.03345235995793653 6 0.033195456488102675 3 0.03279200735027301 8 0.03214579837817835 7 0.031960514173845246 1 0.03169040003650549 2 0.031286590945314455 14 0.028310087857739686 20 0.027753613794813493 16 0.026996738661211536 13 0.01850039206860701 15 0.01474386401431333 __DUMMY__ 0.003890510379502589 false 1.0 867 21 0.0745924921863931 22 0.06868250352468605 18 0.06622825264774977 19 0.06622133429912488 11 0.0628159668369985 12 0.05738065354733153 10 0.051000864093343125 20 0.04668532256436675 17 0.04618478964480869 24 0.043356993656531895 0 0.04123873677804668 23 0.040914860891373826 9 0.04067367383360165 13 0.03936642893045364 14 0.0382930132389099 16 0.03633226666466149 4 0.022297987180109644 5 0.02179209786067432 6 0.01935793027334533 15 0.017400544169061286 3 0.017214599744457288 7 0.0169082832925443 8 0.016858710155376235 1 0.0166551447042218 2 0.016282861284210214 __DUMMY__ 0.015263687997618123 false 0.0 626 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.08799790075266552 22 0.08039272999817025 11 0.0739995130144701 19 0.07155064882202729 18 0.06731639204546538 12 0.061009589168528625 10 0.05206474083422528 24 0.04728272896430531 17 0.0465024912466084 20 0.04573378858207749 9 0.04333760016207988 0 0.04263267671073014 23 0.038666501060966973 14 0.037987669334528885 13 0.03685950786817627 16 0.035168323544358844 4 0.019373494567755854 5 0.01893436249519161 6 0.01536395998148828 3 0.013912313507619007 7 0.013020808230624058 8 0.012689597946212989 1 0.012514241452852425 2 0.011943957629830072 15 0.009425750596244797 __DUMMY__ 0.00431871148279607 false 1.0 868 21 0.07032973806930129 18 0.06956524628784862 19 0.06930788577168098 22 0.06514872132208901 11 0.05580630718932842 20 0.05490030517279055 10 0.052235603758377706 12 0.051573589807233595 24 0.04709952914099749 17 0.04379563037535544 14 0.043058429394457545 23 0.042730469198459395 9 0.039110500363998685 16 0.036926675732922645 13 0.036665270195728204 0 0.035330525654372565 15 0.027182535649765766 4 0.02171909481808757 5 0.021222881570606526 6 0.018127492476462715 3 0.01782589903815268 7 0.016531882236119903 8 0.01650767367057544 1 0.01627188478392092 2 0.015937516129607053 __DUMMY__ 0.01508871219175946 false 0.0 627 21 0.103258 22 0.091645 11 0.088095 12 0.068778 19 0.068218 18 0.058605 24 0.05281 10 0.044765 9 0.043463 17 0.042446 0 0.04172 23 0.039627 13 0.039505 14 0.039114 20 0.035504 16 0.027903 4 0.02026 5 0.019534 6 0.015362 3 0.01308 7 0.012164 8 0.011838 1 0.011586 2 0.010721 21 0.103258 22 0.091645 11 0.088095 12 0.068778 19 0.068218 18 0.058605 24 0.05281 10 0.044765 9 0.043463 17 0.042446 0 0.04172 23 0.039627 13 0.039505 14 0.039114 20 0.035504 16 0.027903 4 0.02026 5 0.019534 6 0.015362 3 0.01308 7 0.012164 8 0.011838 1 0.011586 2 0.010721 21 0.08774998323519355 22 0.07962653640174097 11 0.07417406001472505 19 0.06715722871751685 18 0.06256565328980974 12 0.06194515633702701 24 0.048335882504838806 10 0.04770257934535918 17 0.044624271491138234 9 0.0424034871861523 20 0.04160840023960837 0 0.04137153421691893 23 0.040669744663848095 13 0.03842205686306414 14 0.038217713865384126 16 0.03247340496688203 4 0.021978013631081397 5 0.021359782959315902 6 0.01807923261476744 3 0.01599625121784984 7 0.015352524153340083 8 0.01517714452690997 1 0.014941112479618011 2 0.01432923954513738 15 0.009389094880523433 __DUMMY__ 0.00434991065224914 false 1.0 869 22 0.06562296519284665 18 0.0646623406415212 10 0.05663173719995793 21 0.055833958732328125 11 0.05489467308220943 19 0.053928186598925225 9 0.053347561950171714 17 0.05265397756862404 0 0.05210695444230553 12 0.03586096125798115 16 0.034891075064338875 23 0.033273694703399866 20 0.03178986290485087 4 0.03160267817199961 14 0.03134626097329014 5 0.031054060100683414 6 0.029975103785453237 24 0.029527296811342953 8 0.028406963888192086 7 0.028380415589233345 1 0.02816191015214593 3 0.02790467670646667 2 0.02768189330413138 13 0.02519481918332644 15 0.021977843156602877 __DUMMY__ 0.013288128837671312 false 0.0 628 21 0.101993 19 0.094482 22 0.083683 20 0.078985 18 0.078025 24 0.074905 11 0.071839 12 0.066991 23 0.051533 10 0.044142 16 0.042648 17 0.042409 14 0.041656 13 0.031864 9 0.029283 0 0.021725 15 0.015571 4 0.009551 5 0.008432 3 0.004859 6 0.002345 7 0.001093 8 0.001022 1 9.63E-4 21 0.101993 19 0.094482 22 0.083683 20 0.078985 18 0.078025 24 0.074905 11 0.071839 12 0.066991 23 0.051533 10 0.044142 16 0.042648 17 0.042409 14 0.041656 13 0.031864 9 0.029283 0 0.021725 15 0.015571 4 0.009551 5 0.008432 3 0.004859 6 0.002345 7 0.001093 8 0.001022 1 9.63E-4 21 0.0870765726189875 19 0.0806113862641378 22 0.07547828088805449 18 0.07268714203857159 11 0.06576449129874229 20 0.0640875133087067 12 0.06082094392806003 24 0.059709328761158295 10 0.047793021868809196 23 0.04665189501991907 17 0.04407653486040367 14 0.04069793066605678 16 0.03959759627227069 9 0.035067898879609934 13 0.034934838112052516 0 0.0306805024236095 15 0.018435034086132288 4 0.01631894439134063 5 0.015516601849076724 3 0.01165422183813696 6 0.011173559491618593 7 0.009476744788831475 8 0.009421600863404217 1 0.009271681913707867 2 0.008621159377682736 __DUMMY__ 0.004374574190918516 false 1.0 629 21 0.102562 22 0.090212 11 0.088269 12 0.069731 19 0.057379 24 0.053731 18 0.047697 23 0.043358 13 0.043023 9 0.042187 14 0.039489 0 0.039141 17 0.038393 10 0.034913 4 0.026549 5 0.02557 20 0.025468 6 0.022062 16 0.021388 3 0.018324 7 0.018136 8 0.018006 1 0.017666 2 0.016747 21 0.102562 22 0.090212 11 0.088269 12 0.069731 19 0.057379 24 0.053731 18 0.047697 23 0.043358 13 0.043023 9 0.042187 14 0.039489 0 0.039141 17 0.038393 10 0.034913 4 0.026549 5 0.02557 20 0.025468 6 0.022062 16 0.021388 3 0.018324 7 0.018136 8 0.018006 1 0.017666 2 0.016747 21 0.08772075270142289 22 0.0791111135221358 11 0.07426462770061665 12 0.06240183584618787 19 0.062119328889327086 18 0.05734347801778412 24 0.04911456522531823 10 0.042887166270220135 23 0.04263372498095206 17 0.04241399116042813 9 0.041752018177402955 13 0.0399908694387158 0 0.03981100277997653 14 0.0384869452802859 20 0.0370075289069581 16 0.029118985289038727 4 0.02497573912270549 5 0.02423580009840207 6 0.021205178464553495 3 0.018513473532930976 7 0.01815470419993815 8 0.018067951181161078 1 0.017791232438621123 2 0.01715224849607708 15 0.009301486082146104 __DUMMY__ 0.004424252196693553 false 1.0 1066 21 0.06743340776514643 22 0.0670342862795051 18 0.0638814514731649 19 0.06014212084360901 11 0.05893979998949619 10 0.05088727176243044 12 0.04992895735683237 17 0.04847768372760677 9 0.04525780743410174 0 0.0448650549686583 20 0.04040719268551498 24 0.03883113953741877 23 0.03833026397897223 16 0.035468389733530344 14 0.035235749634696556 13 0.034562805705765254 4 0.026709468945688652 5 0.026172907748203474 6 0.02439557427041515 8 0.022181622950516663 7 0.02217770972253366 3 0.022037435550431014 1 0.021943541707459532 2 0.021523498265509148 15 0.018834771619466843 __DUMMY__ 0.014340086343326392 false 0.0 1065 21 0.07487832814809985 19 0.06930329703015506 18 0.06858434477691831 22 0.06597967091240178 11 0.05980813500393896 12 0.059338729109281174 20 0.053897577492310465 10 0.051105809572601094 24 0.04688238102360653 17 0.04381585022892491 14 0.04303800610712876 23 0.04289674445569557 13 0.04269642455354613 9 0.037183830833553796 16 0.03693620229531786 0 0.036312808228074936 15 0.022641832560532295 4 0.020116757841034557 5 0.019624378359522132 6 0.016830662262324957 __DUMMY__ 0.01561571000268152 3 0.015249320835560944 7 0.014534303385739652 8 0.014495165972623267 1 0.014284591429639023 2 0.013949137578786552 false 0.0 1064 21 0.07685738601468711 19 0.067759993973531 22 0.0676592383344137 18 0.06644060558250538 11 0.062253098552848954 12 0.06102491453036399 20 0.05029047053121012 10 0.04990512906708334 24 0.04602985137564703 17 0.04400188838251714 13 0.04288405277034904 23 0.042736144216839585 14 0.04072361578610681 9 0.03807425047460388 0 0.03804665667230596 16 0.0358617258173267 4 0.021018103097014535 5 0.020522247530195287 15 0.018120905419301787 6 0.017851973461643644 __DUMMY__ 0.015802924567080785 3 0.015794341761771635 7 0.015311518408142863 8 0.015254937799690726 1 0.015060649019280373 2 0.014713376853538677 false 0.0 1063 21 0.0750304645202454 19 0.06964521803835155 18 0.06737347656350734 22 0.06659903674502408 11 0.06067216120510106 12 0.059373999931248346 20 0.05265345689377397 10 0.04979822636207147 24 0.046778691534996066 17 0.04517120093387706 23 0.04321876370957689 13 0.04098815222346792 14 0.04015259185259859 16 0.038584384389529235 0 0.037723527138814605 9 0.03729111957140339 4 0.02053105633325999 15 0.020235134883283667 5 0.020042096412910063 6 0.01739285091918055 __DUMMY__ 0.015829377834958327 3 0.015611710340767295 7 0.015051575624477552 8 0.014999908406886803 1 0.014796001412447416 2 0.01445581621824143 false 0.0 1062 21 0.07062591055413597 22 0.06817880426385912 18 0.06512309224713861 19 0.06335514323115202 11 0.060612761760310316 12 0.0525592898104301 10 0.05089481945857195 17 0.04779260574599343 9 0.043586652835269205 0 0.04346882271897416 20 0.04335647586374307 24 0.041081604507130595 23 0.03948466910355569 16 0.03611633626700915 14 0.03552855423182136 13 0.03531173419640734 4 0.024873843282364323 5 0.02434707692694397 6 0.022217356423006113 3 0.02011135979718086 7 0.01997497864172458 8 0.019950587999196207 1 0.0197274052461969 2 0.01932221382882362 15 0.01741309822392593 __DUMMY__ 0.014984802835135614 false 0.0 1061 21 0.07295424912499485 22 0.0683687362616405 18 0.06556412410897779 19 0.06528508837005377 11 0.06119429501298569 12 0.05496957215501313 10 0.05020859038598015 17 0.04637333027635496 20 0.04617439368524277 24 0.04353670355857252 9 0.04159844769118639 0 0.04114421124476675 23 0.04099648998940989 14 0.03699266428719074 13 0.03693643347386741 16 0.03612114262178065 4 0.023617483999510837 5 0.023096257541303254 6 0.02067278127478359 3 0.018761540305703615 7 0.018397860540074577 8 0.018356543731968048 1 0.01813825606112264 2 0.017747210673242458 15 0.017627464117202358 __DUMMY__ 0.015166129507070483 false 0.0 1060 21 0.07295424912499485 22 0.0683687362616405 18 0.06556412410897779 19 0.06528508837005377 11 0.06119429501298569 12 0.05496957215501313 10 0.05020859038598015 17 0.04637333027635496 20 0.04617439368524277 24 0.04353670355857252 9 0.04159844769118639 0 0.04114421124476675 23 0.04099648998940989 14 0.03699266428719074 13 0.03693643347386741 16 0.03612114262178065 4 0.023617483999510837 5 0.023096257541303254 6 0.02067278127478359 3 0.018761540305703615 7 0.018397860540074577 8 0.018356543731968048 1 0.01813825606112264 2 0.017747210673242458 15 0.017627464117202358 __DUMMY__ 0.015166129507070483 false 0.0 870 18 0.07312650392344713 19 0.06744986834030238 21 0.06654856220074919 22 0.06327484498561883 10 0.05863910131091778 11 0.055804466327942566 20 0.052339229690154296 12 0.05046835745509925 14 0.04550676199387534 17 0.04488286672739382 24 0.0407795132993924 23 0.04073901371134884 9 0.04071145305653244 13 0.03962365882154664 0 0.03873085199967837 16 0.036078713402841515 15 0.02975036790567727 4 0.021191833833808287 5 0.020734648697064637 6 0.018136040422797678 3 0.017041765029234535 7 0.016282208055147643 8 0.01624909146206402 1 0.016039665610433993 2 0.015737523467295542 __DUMMY__ 0.014133088269635689 false 0.0 871 18 0.07351855024287846 19 0.06931312656169115 21 0.06761396132942804 22 0.06347579772382185 10 0.05738102814715422 11 0.055707093073215044 20 0.055376431335706924 12 0.05113313780648022 14 0.04722117874950695 17 0.045155571698217184 24 0.04321649329126681 23 0.04028381988293201 13 0.039953118325877494 9 0.03930042467570584 16 0.03777743258133849 0 0.0370900172325803 15 0.03232091897945898 4 0.019737265631442708 5 0.019256975437889665 6 0.016511831680477575 3 0.015696223611889635 7 0.01476123254268388 8 0.014755217568073091 __DUMMY__ 0.014740256720023784 1 0.014516044216088965 2 0.01418685095417088 false 0.0 630 21 0.107808 22 0.089713 11 0.085512 19 0.08432 12 0.075242 18 0.073147 24 0.055718 20 0.054795 10 0.053695 17 0.04582 13 0.042027 0 0.040985 14 0.040845 9 0.039195 23 0.039164 16 0.037672 4 0.010136 5 0.009314 6 0.004662 3 0.004057 7 0.002039 8 0.001635 1 0.001447 2 0.001054 21 0.107808 22 0.089713 11 0.085512 19 0.08432 12 0.075242 18 0.073147 24 0.055718 20 0.054795 10 0.053695 17 0.04582 13 0.042027 0 0.040985 14 0.040845 9 0.039195 23 0.039164 16 0.037672 4 0.010136 5 0.009314 6 0.004662 3 0.004057 7 0.002039 8 0.001635 1 0.001447 2 0.001054 21 0.09073265063515554 22 0.07867629145795561 19 0.07538760010265189 11 0.0731429453119626 18 0.06982699630245866 12 0.06604779883679329 10 0.052047503436780725 20 0.05173018677895415 24 0.050297648935868564 17 0.04562481438789555 23 0.040761027828114325 13 0.04066275568017689 0 0.040263165690095505 14 0.03990667001749264 9 0.03976058868607582 16 0.03686908457197847 4 0.01663165484682292 5 0.01597331933311441 6 0.012368631156891597 3 0.01112194145735366 7 0.009884350104079908 8 0.009669042159767648 15 0.009567545834606325 1 0.009468104648663428 2 0.009086421249921857 __DUMMY__ 0.004491260548368186 false 1.0 872 18 0.07490813189861706 19 0.06438332748074346 10 0.06338716965238159 22 0.06297701239542701 21 0.06283706576724901 11 0.055484775999109816 14 0.050322265822922985 20 0.04910480845539042 12 0.04591398096482653 17 0.04582700384379462 9 0.04371975171303075 0 0.04107236721363198 13 0.040295291077154814 15 0.036245372427362976 23 0.036051528524286086 24 0.03592152328241227 16 0.03470936792756579 4 0.021125472267661653 5 0.020667344485909945 6 0.018293513222679962 3 0.017199355277379074 8 0.016579168297981985 7 0.01657247180855246 1 0.016352174949844138 2 0.016007147874012487 __DUMMY__ 0.01404260737007118 false 0.0 631 21 0.106917 22 0.08762 11 0.08551 12 0.077286 19 0.070342 18 0.058785 24 0.057211 13 0.047262 23 0.044653 20 0.041844 14 0.041383 10 0.040429 17 0.040195 0 0.03723 9 0.036972 16 0.028891 4 0.018276 5 0.017533 6 0.013495 3 0.010589 7 0.009878 8 0.009645 1 0.009417 2 0.008637 21 0.106917 22 0.08762 11 0.08551 12 0.077286 19 0.070342 18 0.058785 24 0.057211 13 0.047262 23 0.044653 20 0.041844 14 0.041383 10 0.040429 17 0.040195 0 0.03723 9 0.036972 16 0.028891 4 0.018276 5 0.017533 6 0.013495 3 0.010589 7 0.009878 8 0.009645 1 0.009417 2 0.008637 21 0.09031201533899763 22 0.07770389480114437 11 0.07312375308378892 19 0.06872800509840876 12 0.0669746333170533 18 0.06291866889704634 24 0.051041312979180034 10 0.04564774033373079 20 0.045524403133892985 23 0.043422756244876085 13 0.04305071833213965 17 0.042962970920644855 14 0.04006233443186545 9 0.03871816142320127 0 0.03848282934337917 16 0.03271290917476114 4 0.02055179076211541 5 0.019928670099032184 6 0.016617920915975335 3 0.014283066732899806 7 0.013665801490208788 8 0.013530176114211203 1 0.013309691617202397 2 0.012745311735913922 15 0.009495225452974407 __DUMMY__ 0.004485238225355998 false 1.0 873 21 0.07441010027540142 19 0.0711264459366506 18 0.06986974931130734 22 0.06673139005701814 11 0.05859374216826548 20 0.056493470830626995 12 0.056144006500813075 10 0.0508638828646117 24 0.04906103875620311 17 0.04379411882493955 23 0.04331489926237615 14 0.04289448237044977 13 0.03887961702464412 16 0.03741795339799022 9 0.0373107000895595 0 0.034650012700008365 15 0.024608551903808357 4 0.020007952583400004 5 0.019500378295749025 6 0.016323785308961534 __DUMMY__ 0.015725492691663654 3 0.015595426592007583 7 0.014412843705913161 8 0.014362743295139457 1 0.014127146797290956 2 0.013780068455200505 false 0.0 1059 21 0.07525719950956421 19 0.0687987569424919 18 0.06759273770769099 22 0.0671119444233876 11 0.06040201055681595 12 0.05845603851505289 20 0.05223026448581848 10 0.05037236777975424 24 0.04684456720763722 17 0.04406719640814207 23 0.04298005971981812 14 0.04102567583693224 13 0.04072918647206513 9 0.038163369728534687 0 0.03706338494955669 16 0.036502362775030044 4 0.02103871552341488 5 0.020536714582494408 15 0.020419056222061374 6 0.01770523151754561 3 0.016192969929114107 __DUMMY__ 0.015638795045506082 7 0.01544697698991529 8 0.015398320338477796 1 0.015186994066266503 2 0.014839102766911458 false 0.0 1058 21 0.07452770265422567 19 0.0680514994981913 22 0.06747962079606731 18 0.0663928855900206 11 0.06042061788932669 12 0.057348215986136694 20 0.05064037753546802 10 0.049237399379380736 24 0.04652340698587645 17 0.04521300876127122 23 0.042685586901109386 14 0.03896888510579231 9 0.03890660173742415 13 0.038854265625936524 0 0.038248124990943815 16 0.03727255253748826 4 0.021937915910103894 5 0.021431207774803153 15 0.019369838807846367 6 0.01874653121132887 3 0.01713251343295529 7 0.01650381266399612 8 0.016462528443602104 1 0.016245740062934083 2 0.015889926753912993 __DUMMY__ 0.015509232963857936 false 0.0 874 18 0.06450935953368929 22 0.063787671049788 21 0.06342575775302496 19 0.057125894027075845 11 0.05634782441303883 10 0.05377130676883629 12 0.04814156653608921 17 0.0473290987153907 9 0.04588910858659913 0 0.04484000857540181 20 0.03940113774330436 14 0.03866348528074427 23 0.0375515473683455 13 0.03711309180717794 24 0.03560537741845054 16 0.03375279979111108 4 0.027523271421056338 5 0.027029687239026823 6 0.025503021572052652 15 0.02337553477325667 7 0.023334455804095454 8 0.023327316833638437 1 0.02314266790921435 3 0.022994520194642105 2 0.022715939936421854 __DUMMY__ 0.013798548948527443 false 0.0 632 0 0.089074 17 0.079762 9 0.065787 22 0.062919 11 0.060067 10 0.05785 18 0.055243 16 0.053353 6 0.04514 8 0.042541 7 0.042357 1 0.042037 2 0.041618 4 0.04125 5 0.040424 19 0.037447 3 0.036761 21 0.032696 12 0.02349 23 0.021134 13 0.012308 15 0.010943 14 0.003176 24 0.002624 0 0.089074 17 0.079762 9 0.065787 22 0.062919 11 0.060067 10 0.05785 18 0.055243 16 0.053353 6 0.04514 8 0.042541 7 0.042357 1 0.042037 2 0.041618 4 0.04125 5 0.040424 19 0.037447 3 0.036761 21 0.032696 12 0.02349 23 0.021134 13 0.012308 15 0.010943 14 0.003176 24 0.002624 0 0.07121978609481551 17 0.06748826543430286 22 0.06473266431946904 9 0.059183194070952655 11 0.05795149352277271 18 0.057453792194595475 10 0.05378508090703299 16 0.04582611246667088 19 0.04534958261409376 21 0.04499840988613298 6 0.0388452260545216 4 0.037509193923675084 5 0.036825175813256054 8 0.03662757119344371 7 0.036522693180139204 1 0.03626010977785926 2 0.035789569083799044 3 0.03323173818280086 12 0.03093956124317605 23 0.028244927229302472 13 0.017668579191260487 24 0.017342103226344142 20 0.01485937292623462 14 0.014130171112975582 15 0.01387105023718055 __DUMMY__ 0.0033445761131924547 false 1.0 633 21 0.103465 22 0.092091 11 0.086874 19 0.076338 18 0.068009 12 0.067139 10 0.053058 24 0.052143 17 0.045952 20 0.044587 9 0.044385 0 0.04404 14 0.038806 23 0.03604 13 0.035982 16 0.033948 4 0.015229 5 0.014408 6 0.009869 3 0.009551 7 0.007487 8 0.007146 1 0.006923 2 0.00653 21 0.103465 22 0.092091 11 0.086874 19 0.076338 18 0.068009 12 0.067139 10 0.053058 24 0.052143 17 0.045952 20 0.044587 9 0.044385 0 0.04404 14 0.038806 23 0.03604 13 0.035982 16 0.033948 4 0.015229 5 0.014408 6 0.009869 3 0.009551 7 0.007487 8 0.007146 1 0.006923 2 0.00653 21 0.08754251554559256 22 0.07975533818006925 11 0.0734718777693848 19 0.07071717710804484 18 0.06695949230740182 12 0.060886280779764365 10 0.05173550196605005 24 0.04773871015458404 17 0.046351494070034346 20 0.04560483701266626 9 0.04306323439199003 0 0.042658515601055436 23 0.038826959554422495 14 0.03798348333500608 13 0.0366287596065327 16 0.03523871715950846 4 0.019772222935764524 5 0.019108405530747517 6 0.01568341162021546 3 0.014512268131990642 7 0.013349639087447197 8 0.013167593011550146 1 0.012946267413789962 2 0.012552822753094066 15 0.00942575943893383 __DUMMY__ 0.004318715534359102 false 1.0 1057 21 0.07493560470522936 19 0.06947090920003203 18 0.06769580382217744 22 0.06636610419235256 11 0.060260153927849794 12 0.05932467303186459 20 0.05302569784659979 10 0.05010882897949935 24 0.04684609241683268 17 0.044719161481661 23 0.04317668938983572 13 0.0414932112785165 14 0.04099989227580229 16 0.03800826336760393 9 0.037287037682685716 0 0.037239442615351975 15 0.020941445265688946 4 0.020490071881428335 5 0.01999621575866484 6 0.017308727840484678 __DUMMY__ 0.015682211622949183 3 0.015586954494394996 7 0.014983657643424726 8 0.014936048940045939 1 0.01472883391725411 2 0.014388266421769458 false 0.0 875 22 0.06000148650163534 9 0.05481668032542345 18 0.05424744348656925 17 0.049605501351601876 0 0.049286246402914555 21 0.04903430284757144 10 0.046883459248181075 11 0.04588417996844677 19 0.04381181063368311 4 0.040775352885623124 5 0.040237250584232956 6 0.03966781562849621 8 0.03839163783007842 7 0.03839087421380537 1 0.03823645271916276 23 0.03770587547042484 2 0.03766301560337939 3 0.03754738362176384 12 0.031173293589370495 24 0.030913054039753925 16 0.030818314509632766 20 0.02626139207085717 14 0.025090487437394 13 0.021002578542205108 15 0.019999596628666003 __DUMMY__ 0.012554513859126891 false 0.0 634 21 0.104412 19 0.087211 22 0.082715 11 0.079754 12 0.07845 18 0.074275 20 0.062177 24 0.056525 10 0.053073 13 0.047342 17 0.045217 14 0.042533 23 0.041801 16 0.041107 0 0.038174 9 0.035071 4 0.008626 5 0.008155 15 0.004552 6 0.003766 3 0.002656 7 0.00122 8 6.35E-4 1 5.51E-4 21 0.104412 19 0.087211 22 0.082715 11 0.079754 12 0.07845 18 0.074275 20 0.062177 24 0.056525 10 0.053073 13 0.047342 17 0.045217 14 0.042533 23 0.041801 16 0.041107 0 0.038174 9 0.035071 4 0.008626 5 0.008155 15 0.004552 6 0.003766 3 0.002656 7 0.00122 8 6.35E-4 1 5.51E-4 21 0.08965041993552102 19 0.07720044750959933 22 0.07533750086571686 11 0.07061254723321767 18 0.07057251266754101 12 0.06832204665920803 20 0.05582277167391055 10 0.05175853897542069 24 0.051015058700810224 17 0.045147247913139184 13 0.043841147732234416 23 0.0421854434214573 14 0.041120404992042586 0 0.038598428792719935 16 0.03859032095522534 9 0.0373557297491811 4 0.015510385998092189 5 0.015019388582275514 15 0.011769009508008106 6 0.011507101042265778 3 0.010008217263297422 7 0.009027286071268525 8 0.008726401824157395 1 0.008576286005381515 2 0.008126066237572243 __DUMMY__ 0.00459928969073592 false 1.0 1056 21 0.07503046452024538 19 0.06964521803835155 18 0.06737347656350731 22 0.0665990367450241 11 0.060672161205101056 12 0.05937399993124834 20 0.052653456893773966 10 0.04979822636207146 24 0.04677869153499606 17 0.04517120093387706 23 0.04321876370957689 13 0.04098815222346792 14 0.04015259185259858 16 0.03858438438952923 0 0.0377235271388146 9 0.03729111957140339 4 0.02053105633325999 15 0.020235134883283663 5 0.020042096412910063 6 0.01739285091918055 __DUMMY__ 0.015829377834958327 3 0.015611710340767292 7 0.01505157562447755 8 0.014999908406886801 1 0.014796001412447414 2 0.014455816218241428 false 0.0 876 21 0.07435978641813049 22 0.06701100595795662 18 0.06337105732526145 19 0.06211627987737334 11 0.06093604742456096 12 0.058345829740187725 10 0.049061302829473796 20 0.045151889456891886 24 0.04393420405803447 17 0.04267575906211575 23 0.042598906717983734 13 0.041677460694371664 9 0.04063756031089261 14 0.03934386469789875 0 0.03875312042962382 16 0.03189561204279683 4 0.0247433901649348 5 0.024245615409800178 6 0.021768482745199363 3 0.019532963785610112 7 0.01925244886865821 8 0.019185800846847255 1 0.019015125561580103 2 0.018625114672156887 15 0.01685911477799141 __DUMMY__ 0.014902256123667686 false 0.0 635 22 0.099468 21 0.094181 24 0.069662 9 0.061525 11 0.059701 19 0.050333 18 0.045363 14 0.043494 4 0.040453 23 0.040066 5 0.039376 3 0.038697 8 0.032506 7 0.032061 1 0.031763 6 0.031494 2 0.031398 17 0.027962 12 0.027866 20 0.027636 10 0.027596 0 0.023725 15 0.015516 13 0.008159 22 0.099468 21 0.094181 24 0.069662 9 0.061525 11 0.059701 19 0.050333 18 0.045363 14 0.043494 4 0.040453 23 0.040066 5 0.039376 3 0.038697 8 0.032506 7 0.032061 1 0.031763 6 0.031494 2 0.031398 17 0.027962 12 0.027866 20 0.027636 10 0.027596 0 0.023725 15 0.015516 13 0.008159 21 0.08305491596476332 22 0.08206321706046525 11 0.0600194563206683 19 0.05805230414712887 18 0.0567026258676245 24 0.05583604522437801 9 0.05032967961576095 12 0.043607260521043086 14 0.04288705784891627 23 0.04063027330927528 10 0.04029778461293507 20 0.038527047427283405 17 0.03694091471243138 0 0.032077679335948434 4 0.03107187597383931 5 0.03029577892093909 3 0.027572809548211116 13 0.026368039476097872 6 0.025330225434589067 8 0.024502048173610198 7 0.0243003611998825 1 0.02403422288326882 2 0.02366899707196146 15 0.01894820470267425 16 0.018609719723177782 __DUMMY__ 0.004271454923126312 false 1.0 877 22 0.06693928731444093 18 0.06460146101066326 21 0.05770971143597261 11 0.056593613530139794 10 0.055680672464882466 19 0.054989049595950176 17 0.053755413358936834 9 0.05296202857192164 0 0.05293225970961941 12 0.03772724757636851 16 0.03597508916370341 23 0.03307320753618826 20 0.03172728819567989 4 0.030878186933630952 5 0.030321291190097823 24 0.030111204525779995 14 0.030043563369434888 6 0.02930278117878856 8 0.027567780906691337 7 0.0275312989532767 1 0.027309332233650306 3 0.026927354588441667 2 0.026826114055070384 13 0.025355579426158494 15 0.01981033159956035 __DUMMY__ 0.013348851574951547 false 0.0 636 17 0.090148 18 0.084545 19 0.080401 16 0.078137 11 0.075528 0 0.075071 22 0.06996 21 0.056967 10 0.053546 12 0.051961 20 0.04878 9 0.038675 23 0.034422 24 0.029606 6 0.018227 13 0.016288 4 0.015968 5 0.014628 7 0.013389 8 0.01332 1 0.012568 2 0.01114 15 0.01003 3 0.006695 17 0.090148 18 0.084545 19 0.080401 16 0.078137 11 0.075528 0 0.075071 22 0.06996 21 0.056967 10 0.053546 12 0.051961 20 0.04878 9 0.038675 23 0.034422 24 0.029606 6 0.018227 13 0.016288 4 0.015968 5 0.014628 7 0.013389 8 0.01332 1 0.012568 2 0.01114 15 0.01003 3 0.006695 18 0.07539511861082364 19 0.07259707892192886 22 0.06860566864520454 17 0.06736553205535067 11 0.06701998245595167 21 0.06421274373516235 0 0.05712627206704671 16 0.05637547584603326 10 0.0526295445656232 12 0.05232714457400026 20 0.048192752239073086 9 0.04054270170215293 23 0.03769386665424108 24 0.0367953019934284 13 0.026869808979658166 14 0.02042836557890755 4 0.02012402423472129 6 0.019645507214465507 5 0.01922177372936049 7 0.016274548659088162 8 0.016227006239506837 15 0.016113978369164655 1 0.01575580448685282 2 0.014876972717021908 3 0.013358700308858757 __DUMMY__ 0.004224325416373076 false 1.0 878 22 0.0642252891762472 18 0.05754391313649647 9 0.05416081252131426 21 0.05333536149844638 17 0.053267228426444845 0 0.052564634196075946 11 0.052020089534443245 10 0.04919022637990774 19 0.049137584074888406 4 0.03662644771535543 5 0.03607403582927169 23 0.03553120096629457 6 0.03546108391133378 16 0.035121597901052466 12 0.0341375080499531 8 0.033922675193817975 7 0.03390472359086145 1 0.033706592010594914 2 0.033176038058500015 3 0.0330103467576781 24 0.030715935444621402 20 0.027354006310790747 14 0.024291257709113244 13 0.020919018338581785 15 0.017577034949964727 __DUMMY__ 0.013025358317950193 false 0.0 637 21 0.103572 22 0.09346 11 0.087685 19 0.077196 18 0.068431 12 0.067583 10 0.052725 24 0.051339 17 0.04634 9 0.044364 20 0.044264 0 0.043909 14 0.039077 13 0.036379 23 0.035693 16 0.033962 4 0.01495 5 0.014626 6 0.009414 3 0.00911 7 0.006804 1 0.006522 8 0.006502 2 0.006094 21 0.103572 22 0.09346 11 0.087685 19 0.077196 18 0.068431 12 0.067583 10 0.052725 24 0.051339 17 0.04634 9 0.044364 20 0.044264 0 0.043909 14 0.039077 13 0.036379 23 0.035693 16 0.033962 4 0.01495 5 0.014626 6 0.009414 3 0.00911 7 0.006804 1 0.006522 8 0.006502 2 0.006094 21 0.08759266503565702 22 0.08039745841398775 11 0.07385225955857896 19 0.07111960650736159 18 0.0671574086898392 12 0.06109451956406066 10 0.051579277190252154 24 0.04736155500323351 17 0.04653347171884158 20 0.04545330581853482 9 0.04305336370979425 0 0.04259704734323144 23 0.03866417384530974 14 0.03811058364936492 13 0.0368149634513454 16 0.03524526761839496 4 0.019641342965140706 5 0.019210653957305774 6 0.015469977142780988 3 0.01430540119223767 7 0.01302925760901558 8 0.012865505371723039 1 0.012758164032409113 2 0.01234830208543521 15 0.00942575501758724 __DUMMY__ 0.004318713508576637 false 1.0 879 22 0.06209415608279449 17 0.058601907858561265 0 0.056521285089646496 18 0.055844969302276656 9 0.05374254946763051 11 0.050836304609777574 21 0.04882485453562211 19 0.048646198075675384 10 0.04689540657789426 16 0.04174865049253175 4 0.037303388538241486 6 0.037103761058790284 5 0.036754545077018516 8 0.03544455113630638 7 0.03540031886202425 1 0.03521877110193863 23 0.034978049274736245 2 0.034667848480540144 3 0.0336264977270959 12 0.03275373425595127 24 0.02860093095650173 20 0.02558200340241235 14 0.01959051666093405 13 0.018433589688749526 15 0.01812080161169945 __DUMMY__ 0.012664410074649279 false 0.0 638 14 0.108861 13 0.099643 21 0.090716 12 0.079373 11 0.062865 18 0.06254 22 0.061519 15 0.060566 10 0.060561 20 0.049727 19 0.048283 24 0.046353 23 0.037453 9 0.031832 4 0.015392 5 0.015068 0 0.012485 6 0.010179 17 0.009631 3 0.009235 8 0.00703 7 0.007027 1 0.006961 2 0.006702 14 0.108861 13 0.099643 21 0.090716 12 0.079373 11 0.062865 18 0.06254 22 0.061519 15 0.060566 10 0.060561 20 0.049727 19 0.048283 24 0.046353 23 0.037453 9 0.031832 4 0.015392 5 0.015068 0 0.012485 6 0.010179 17 0.009631 3 0.009235 8 0.00703 7 0.007027 1 0.006961 2 0.006702 21 0.08254968401528272 14 0.07620678571202773 13 0.07270205235030827 12 0.07032986454374614 18 0.06528380190779624 22 0.06347724215384021 11 0.061730282646267245 19 0.05762465732193345 10 0.0561271922013608 20 0.05048843841745289 24 0.04540107497371692 15 0.041493401935878985 23 0.03989811658096433 9 0.034841197140009335 17 0.0271847710621083 0 0.02543455198215698 16 0.01830665848048552 4 0.018134698360539513 5 0.01772502935666044 6 0.014119017252144532 3 0.01237748687673509 7 0.011198454538320607 8 0.011191963308316502 1 0.01104775484428219 2 0.010750026274905893 __DUMMY__ 0.004375795762759238 false 1.0 639 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.07989891525908209 21 0.07395116320364231 11 0.05893178457778314 18 0.058186097779278086 9 0.055397858597483654 19 0.05481130319402008 24 0.046215808833187155 10 0.04475825449936287 17 0.04388709522483878 0 0.041812497037503026 12 0.037409111036933465 23 0.03683532029010765 14 0.03440145083775474 4 0.03403164353093286 5 0.033290975092706905 20 0.03165025086781898 3 0.03041437468970424 6 0.029579527600782096 8 0.028524019300633346 7 0.02826837210888898 1 0.02802162274671527 2 0.027664474257389576 16 0.02210297635714259 13 0.020666540456182325 15 0.015238025594308606 __DUMMY__ 0.004050537025817198 false 1.0 1077 21 0.07709232456046439 19 0.06859360770825793 22 0.06810481877020999 18 0.06706871409762336 11 0.06242518759353676 12 0.060706728804356735 20 0.0508577280962137 10 0.050233738440855796 24 0.04627457265941288 17 0.04439391682960303 23 0.04251019402000387 13 0.04211226869219595 14 0.04040602588325339 9 0.03820803407311528 0 0.03819091866651555 16 0.03631774044441136 4 0.02066233987038536 5 0.020164603075850687 15 0.017971098103902086 6 0.01742474427751483 __DUMMY__ 0.015928538153029744 3 0.015504862838618736 7 0.014939103924607499 8 0.01488415625336252 1 0.014686681142438597 2 0.0143373530202599 false 0.0 1076 21 0.07295424912499485 22 0.0683687362616405 18 0.06556412410897779 19 0.06528508837005377 11 0.06119429501298569 12 0.05496957215501313 10 0.05020859038598015 17 0.04637333027635496 20 0.04617439368524277 24 0.04353670355857252 9 0.04159844769118639 0 0.04114421124476675 23 0.04099648998940989 14 0.03699266428719074 13 0.03693643347386741 16 0.03612114262178065 4 0.023617483999510837 5 0.023096257541303254 6 0.02067278127478359 3 0.018761540305703615 7 0.018397860540074577 8 0.018356543731968048 1 0.01813825606112264 2 0.017747210673242458 15 0.017627464117202358 __DUMMY__ 0.015166129507070483 false 0.0 1075 21 0.07487832814809985 19 0.06930329703015506 18 0.06858434477691831 22 0.06597967091240178 11 0.05980813500393896 12 0.059338729109281174 20 0.053897577492310465 10 0.051105809572601094 24 0.04688238102360653 17 0.04381585022892491 14 0.04303800610712876 23 0.04289674445569557 13 0.04269642455354613 9 0.037183830833553796 16 0.03693620229531786 0 0.036312808228074936 15 0.022641832560532295 4 0.020116757841034557 5 0.019624378359522132 6 0.016830662262324957 __DUMMY__ 0.01561571000268152 3 0.015249320835560944 7 0.014534303385739652 8 0.014495165972623267 1 0.014284591429639023 2 0.013949137578786552 false 0.0 1074 21 0.07646536546946212 22 0.07130643889899849 19 0.06822964322385407 18 0.06692249283373218 11 0.06300306442320489 12 0.054501830339059094 10 0.0503892461913426 20 0.049114923898267736 24 0.04712859959086462 17 0.04445407643400931 23 0.041886528640807656 9 0.04098312742132083 14 0.03864122741552391 0 0.038207912812852934 13 0.03503159649836285 16 0.03491741292940121 4 0.02236036459889251 5 0.021829440370020613 6 0.018598502029855298 15 0.017979756186536053 3 0.017729128779472088 7 0.01659778639727444 8 0.016524577685920225 1 0.01629206464746342 2 0.01590092685824132 __DUMMY__ 0.015003965425259507 false 0.0 1073 21 0.07321165445971548 22 0.06725387510671542 18 0.06571869796585292 19 0.06438366104653667 11 0.060629857080137455 12 0.05664688702355384 10 0.05071059701581437 20 0.04664018839895289 17 0.044959391483409106 24 0.043243674074093526 9 0.04089243209650336 23 0.04088010436713496 13 0.04054132362328875 14 0.040120795476193113 0 0.03998051429879293 16 0.03468655900811799 4 0.023173421372037116 5 0.022657380780930433 6 0.020260433756876223 15 0.019575219414231522 3 0.018164922030355492 7 0.017854897706538163 8 0.01783011423120153 1 0.017611851019371978 2 0.017235109833413052 __DUMMY__ 0.015136437330231723 false 0.0 1072 21 0.07690581639766245 19 0.06799348476405603 22 0.06771702697045834 18 0.06656903122787955 11 0.06220829781807839 12 0.060962153532724425 20 0.05052506815163328 10 0.049908332871882656 24 0.046181097208943665 17 0.044069496075913185 23 0.0427473839441573 13 0.04269175084835445 14 0.0406459470608734 9 0.03805220841936903 0 0.037999051462963666 16 0.036001572048289306 4 0.020935350518297265 5 0.02043822873128758 15 0.01811938319609665 6 0.017748401446472255 __DUMMY__ 0.015851429672919064 3 0.015733388608633547 7 0.01522569533031888 8 0.015169862318710797 1 0.014974145686310891 2 0.014626395687714048 false 0.0 1071 21 0.0752571995095642 19 0.0687987569424919 18 0.06759273770769099 22 0.06711194442338761 11 0.06040201055681595 12 0.058456038515052884 20 0.05223026448581848 10 0.05037236777975425 24 0.04684456720763721 17 0.044067196408142065 23 0.04298005971981812 14 0.04102567583693224 13 0.040729186472065124 9 0.03816336972853469 0 0.03706338494955669 16 0.036502362775030044 4 0.021038715523414877 5 0.020536714582494408 15 0.020419056222061374 6 0.01770523151754561 3 0.016192969929114103 __DUMMY__ 0.015638795045506082 7 0.01544697698991529 8 0.015398320338477796 1 0.015186994066266503 2 0.014839102766911458 false 0.0 1070 21 0.07487832814809983 19 0.06930329703015504 18 0.0685843447769183 22 0.06597967091240176 11 0.05980813500393896 12 0.059338729109281174 20 0.053897577492310465 10 0.05110580957260109 24 0.046882381023606534 17 0.04381585022892492 14 0.04303800610712875 23 0.042896744455695565 13 0.04269642455354613 9 0.03718383083355378 16 0.03693620229531786 0 0.036312808228074936 15 0.0226418325605323 4 0.020116757841034547 5 0.019624378359522132 6 0.01683066226232496 __DUMMY__ 0.01561571000268152 3 0.015249320835560944 7 0.014534303385739654 8 0.014495165972623266 1 0.014284591429639023 2 0.013949137578786554 false 0.0 880 22 0.0642252891762472 18 0.05754391313649647 9 0.05416081252131426 21 0.05333536149844638 17 0.053267228426444845 0 0.052564634196075946 11 0.052020089534443245 10 0.04919022637990774 19 0.049137584074888406 4 0.03662644771535543 5 0.03607403582927169 23 0.03553120096629457 6 0.03546108391133378 16 0.035121597901052466 12 0.0341375080499531 8 0.033922675193817975 7 0.03390472359086145 1 0.033706592010594914 2 0.033176038058500015 3 0.0330103467576781 24 0.030715935444621402 20 0.027354006310790747 14 0.024291257709113244 13 0.020919018338581785 15 0.017577034949964727 __DUMMY__ 0.013025358317950193 false 0.0 881 22 0.06000148650163534 9 0.05481668032542346 18 0.054247443486569256 17 0.049605501351601876 0 0.04928624640291456 21 0.04903430284757144 10 0.04688345924818107 11 0.04588417996844677 19 0.04381181063368311 4 0.04077535288562313 5 0.040237250584232956 6 0.03966781562849621 8 0.038391637830078415 7 0.03839087421380537 1 0.038236452719162754 23 0.037705875470424845 2 0.037663015603379396 3 0.03754738362176383 12 0.031173293589370488 24 0.030913054039753925 16 0.030818314509632766 20 0.026261392070857172 14 0.025090487437394 13 0.021002578542205105 15 0.019999596628666003 __DUMMY__ 0.012554513859126891 false 0.0 882 22 0.06619507486511524 18 0.0619822527650638 21 0.06160318668102891 11 0.05643339961615745 19 0.05606283268922512 10 0.05114482358456686 17 0.05061200637215464 9 0.04924101772899121 0 0.048378266726303076 12 0.04289522732234158 23 0.03687784464540119 16 0.03537644276021601 24 0.03510394801143884 20 0.0351025823811856 14 0.03071612413939431 4 0.03054041006861168 5 0.030007557903696695 6 0.02864573409571252 13 0.02841432797689215 7 0.026752157878734147 8 0.02674911870077064 1 0.026536566425997506 3 0.02637001800946698 2 0.026069554435694562 15 0.018304698342950076 __DUMMY__ 0.013884825872888973 false 0.0 640 21 0.080499 12 0.078063 23 0.07752 19 0.076038 24 0.073825 20 0.072797 18 0.052111 22 0.049949 13 0.042107 16 0.041456 17 0.034699 11 0.033859 5 0.03037 4 0.030237 6 0.026996 3 0.025718 2 0.024787 7 0.024321 1 0.024266 8 0.024049 9 0.021746 14 0.019665 10 0.018819 0 0.016103 21 0.080499 12 0.078063 23 0.07752 19 0.076038 24 0.073825 20 0.072797 18 0.052111 22 0.049949 13 0.042107 16 0.041456 17 0.034699 11 0.033859 5 0.03037 4 0.030237 6 0.026996 3 0.025718 2 0.024787 7 0.024321 1 0.024266 8 0.024049 9 0.021746 14 0.019665 10 0.018819 0 0.016103 21 0.0780191117884358 19 0.07194583529831226 12 0.06784811075607486 20 0.06089556886309451 18 0.059788712411992316 22 0.059633818517784244 23 0.059514950295632196 24 0.059365246522264374 11 0.04867091506053031 13 0.040891734914870505 17 0.04022242534925229 16 0.039096772858361974 10 0.035162967106771734 9 0.03087235604870364 14 0.029866818145149684 0 0.028056620785613405 4 0.025942343150883625 5 0.02573523419199462 6 0.022722757601852786 3 0.021155906446303954 7 0.020210094865980875 2 0.020092070800610706 8 0.020048226758976825 1 0.020040870356088192 15 0.009643591085517511 __DUMMY__ 0.00455694001894698 false 1.0 641 22 0.108526 21 0.099946 11 0.098039 19 0.092139 18 0.074088 17 0.061922 10 0.057627 0 0.055781 16 0.051985 12 0.050261 9 0.049993 24 0.049037 20 0.039348 23 0.029874 14 0.027102 4 0.011435 5 0.01129 13 0.009963 3 0.006223 6 0.005184 8 0.002807 7 0.002768 2 0.002369 1 0.002291 22 0.108526 21 0.099946 11 0.098039 19 0.092139 18 0.074088 17 0.061922 10 0.057627 0 0.055781 16 0.051985 12 0.050261 9 0.049993 24 0.049037 20 0.039348 23 0.029874 14 0.027102 4 0.011435 5 0.01129 13 0.009963 3 0.006223 6 0.005184 8 0.002807 7 0.002768 2 0.002369 1 0.002291 22 0.08750850174998628 21 0.08474736865750104 11 0.07840814711645891 19 0.07789879160591327 18 0.06964261537523597 17 0.05480549924496016 10 0.0538518291600947 12 0.05145849260049987 0 0.049059662489139934 9 0.046319994580636396 24 0.04570569088188695 16 0.04449941841428615 20 0.04238862831450916 23 0.03556190455951797 14 0.03143286226355861 13 0.022818685800652654 4 0.018434191747706975 5 0.018084726427007498 6 0.014022533526957405 3 0.01349741097150406 8 0.011740921264948323 7 0.011740908958030753 1 0.011376443205471275 2 0.011194449131172785 15 0.009572812207311212 __DUMMY__ 0.004227509745051615 false 1.0 883 22 0.0645197185227317 18 0.05828647078360309 9 0.05677008882571683 0 0.054961287445791936 17 0.05494696380116556 11 0.05120759534195711 10 0.051130111588371566 21 0.050312264011008204 19 0.048155612124117314 4 0.037597166490632966 5 0.037012732664205995 6 0.036562008699449075 16 0.035420375368005914 8 0.0352612585079896 7 0.03521235814236527 1 0.034989016280358234 2 0.03445896772722574 3 0.03429767447676904 23 0.033574127935930176 12 0.02968011665276355 24 0.02812556860609163 20 0.02514134458504913 14 0.02330072809155945 15 0.01871573538865523 13 0.017686241007392273 __DUMMY__ 0.012674466931093397 false 0.0 400 20 0.103463 19 0.100029 21 0.084927 12 0.08011 18 0.07804 24 0.077732 23 0.059361 16 0.056844 22 0.053981 13 0.053144 14 0.049054 11 0.04782 17 0.039611 10 0.038715 15 0.033701 0 0.012998 9 0.012854 4 0.006233 5 0.006061 3 0.003519 6 0.001277 2 3.0E-4 8 1.52E-4 7 7.4E-5 20 0.103463 19 0.100029 21 0.084927 12 0.08011 18 0.07804 24 0.077732 23 0.059361 16 0.056844 22 0.053981 13 0.053144 14 0.049054 11 0.04782 17 0.039611 10 0.038715 15 0.033701 0 0.012998 9 0.012854 4 0.006233 5 0.006061 3 0.003519 6 0.001277 2 3.0E-4 8 1.52E-4 7 7.4E-5 19 0.08395902689867463 21 0.07986899142362422 20 0.07732048273503957 18 0.07327339112261591 12 0.069293592608864 24 0.06151131292590861 22 0.06060857239435803 11 0.05441861736878467 23 0.050771764133921135 13 0.04775216984461346 16 0.04640179453502261 14 0.04601906778508423 10 0.045494727044494615 17 0.04201189673476364 15 0.027908186680946228 9 0.025927224445446068 0 0.025528393434968124 4 0.013689032582647006 5 0.013344871714468472 3 0.009811954424613668 6 0.009608234149757498 8 0.007830957242350728 7 0.007815369690931082 1 0.0076470251008496646 2 0.007607980430987517 __DUMMY__ 0.0045753625462646415 false 1.0 642 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.07945984724739542 21 0.07381382070676767 11 0.05865577742339475 18 0.05837906905901611 9 0.05542685426069097 19 0.05487356356189927 24 0.04609629567544611 10 0.04448132360738133 17 0.04412833635330239 0 0.041402512285516044 12 0.037562278500866325 23 0.037055953620262656 14 0.0343953279830202 4 0.034054100085511456 5 0.03320286416392749 20 0.031842309993682864 3 0.030288317209032065 6 0.029642280120526766 8 0.02860926125226532 7 0.02847027309738541 1 0.028297548424156507 2 0.027566998416221705 16 0.02220181109296944 13 0.020666521091252575 15 0.015376221537719946 __DUMMY__ 0.0040505332303892635 false 1.0 884 22 0.06565122669745871 18 0.05883093251520488 17 0.05850774048832863 0 0.056383912138596594 11 0.05572671919695008 21 0.05453904297500135 19 0.05286249295587221 9 0.052535667304898 10 0.04906595143092745 16 0.04204554264081986 12 0.03692575725154129 23 0.034028969012466444 4 0.03352132708598002 5 0.032961549046361 6 0.03287910674123012 8 0.0309861150559292 7 0.03093624528189458 1 0.030715696031912175 2 0.030205530822233626 24 0.02992208734684514 3 0.029447748499628806 20 0.027880449038215946 14 0.022184915415134066 13 0.021119735419243477 15 0.01684947898215866 __DUMMY__ 0.013286060625167686 false 0.0 1069 21 0.07295424912499485 22 0.06836873626164051 18 0.0655641241089778 19 0.06528508837005378 11 0.0611942950129857 12 0.05496957215501315 10 0.05020859038598017 17 0.04637333027635497 20 0.04617439368524279 24 0.04353670355857252 9 0.0415984476911864 0 0.041144211244766755 23 0.0409964899894099 14 0.036992664287190745 13 0.0369364334738674 16 0.03612114262178066 4 0.023617483999510844 5 0.023096257541303258 6 0.020672781274783593 3 0.01876154030570362 7 0.01839786054007458 8 0.018356543731968055 1 0.01813825606112265 2 0.01774721067324246 15 0.01762746411720236 __DUMMY__ 0.015166129507070485 false 0.0 401 15 0.159 14 0.158712 10 0.093107 18 0.092093 13 0.078334 20 0.072627 19 0.053604 22 0.045995 21 0.045972 24 0.038037 9 0.036204 11 0.029914 23 0.024434 12 0.019232 17 0.015114 16 0.011109 3 0.007369 4 0.006806 5 0.006483 8 0.001756 2 0.001435 7 0.001365 1 0.001249 6 5.2E-5 15 0.159 14 0.158712 10 0.093107 18 0.092093 13 0.078334 20 0.072627 19 0.053604 22 0.045995 21 0.045972 24 0.038037 9 0.036204 11 0.029914 23 0.024434 12 0.019232 17 0.015114 16 0.011109 3 0.007369 4 0.006806 5 0.006483 8 0.001756 2 0.001435 7 0.001365 1 0.001249 6 5.2E-5 14 0.10105001698634666 15 0.09365556777813534 18 0.08173236007462749 10 0.07260604784029406 20 0.06541988009264108 19 0.06247652155555647 13 0.05909611107624028 21 0.05806532076051193 22 0.05466351622387632 24 0.04285209957197637 11 0.04268716163776369 12 0.03716188074213856 9 0.03650522565740432 23 0.03422244016375655 17 0.030206898747294264 16 0.025557270153132944 0 0.01769162941215252 4 0.013585694318458335 5 0.013176318790273079 3 0.011724074987766751 6 0.008595985650183997 8 0.008489656183788406 7 0.008306245614942406 1 0.008118255695146504 2 0.008036597193379375 __DUMMY__ 0.004317223092212221 false 1.0 643 21 0.113104 22 0.085495 19 0.081072 12 0.080461 11 0.072824 24 0.070921 20 0.058833 18 0.058476 23 0.051966 13 0.045446 14 0.041897 17 0.035624 16 0.033266 9 0.031795 10 0.031218 0 0.023581 4 0.016622 5 0.016145 3 0.010511 6 0.010446 7 0.007953 1 0.007789 8 0.007599 2 0.006955 21 0.113104 22 0.085495 19 0.081072 12 0.080461 11 0.072824 24 0.070921 20 0.058833 18 0.058476 23 0.051966 13 0.045446 14 0.041897 17 0.035624 16 0.033266 9 0.031795 10 0.031218 0 0.023581 4 0.016622 5 0.016145 3 0.010511 6 0.010446 7 0.007953 1 0.007789 8 0.007599 2 0.006955 21 0.0938252420428619 22 0.0761267694323892 19 0.0745606563248462 12 0.06981768339201873 11 0.06690751520955218 18 0.06310971259193662 24 0.05836141290882977 20 0.055131145788397465 23 0.04746238748654543 13 0.04363267787973865 14 0.041372138130919146 10 0.04115512782632281 17 0.04018795980827234 9 0.03517116928117325 16 0.034966628917202945 0 0.030970106696485825 4 0.019093177817588534 5 0.018600278637317995 6 0.014448121721019391 3 0.013527481408334298 7 0.01199369141828831 8 0.011800292768411692 1 0.011779020823693831 2 0.011201147552875691 15 0.01016590119447964 __DUMMY__ 0.004632552940498147 false 1.0 885 21 0.07382209625396953 19 0.06931700604920453 22 0.06650797216257189 18 0.06600952772505723 11 0.05951835459988395 12 0.05724534293579894 20 0.05213533644404636 10 0.04793169856648093 24 0.04763052813308278 17 0.045447904630223884 23 0.04456726714481196 16 0.03916608700087441 13 0.03790117342653348 14 0.03780719606147987 9 0.03748947753885097 0 0.03744503601231671 4 0.021921851896542367 5 0.021416753602496858 15 0.019681722792502392 6 0.018771124473342313 3 0.017175708025477018 7 0.016584438202494823 8 0.016517105840232468 1 0.01630579311195913 2 0.015944671245742736 __DUMMY__ 0.015738826124022696 false 0.0 1068 21 0.07295424912499486 22 0.06836873626164051 18 0.0655641241089778 19 0.06528508837005378 11 0.0611942950129857 12 0.05496957215501314 10 0.05020859038598017 17 0.04637333027635496 20 0.04617439368524279 24 0.04353670355857253 9 0.04159844769118641 0 0.041144211244766755 23 0.0409964899894099 14 0.03699266428719076 13 0.03693643347386741 16 0.036121142621780664 4 0.023617483999510844 5 0.023096257541303254 6 0.020672781274783593 3 0.018761540305703622 7 0.018397860540074577 8 0.01835654373196805 1 0.01813825606112265 2 0.017747210673242458 15 0.017627464117202358 __DUMMY__ 0.015166129507070488 false 0.0 402 16 0.120625 17 0.100588 19 0.094631 15 0.087454 20 0.079309 18 0.076776 24 0.056127 0 0.050911 22 0.046596 23 0.04346 10 0.033027 11 0.03281 21 0.028371 14 0.026818 12 0.022557 9 0.02062 6 0.011583 8 0.011271 7 0.01068 1 0.010426 2 0.010077 4 0.009423 5 0.008537 3 0.007325 16 0.120625 17 0.100588 19 0.094631 15 0.087454 20 0.079309 18 0.076776 24 0.056127 0 0.050911 22 0.046596 23 0.04346 10 0.033027 11 0.03281 21 0.028371 14 0.026818 12 0.022557 9 0.02062 6 0.011583 8 0.011271 7 0.01068 1 0.010426 2 0.010077 4 0.009423 5 0.008537 3 0.007325 16 0.08162114760528791 19 0.08098925435433067 17 0.07451713422754962 18 0.07274844479959408 20 0.06626043893848291 15 0.05902503079938279 22 0.05371859753987577 24 0.04967700293217082 21 0.04592299004066437 0 0.04515308150012995 11 0.042946503342877425 23 0.04282163505473859 10 0.04249728488271092 12 0.03631618259925131 14 0.03381125879963247 9 0.029833439707550466 13 0.018429741771803766 4 0.01625243711514059 6 0.01613068269833653 5 0.015578901684272239 8 0.015086972891706563 7 0.014793404732833172 1 0.014552246680783304 2 0.014209335366861734 3 0.013245094658486617 __DUMMY__ 0.003861755275545373 false 1.0 886 21 0.07332325979390929 22 0.06584165881108175 18 0.0640444613399033 19 0.062056432085338765 11 0.06034099975402298 12 0.05882271185855731 10 0.05003960079586074 20 0.045509215982413136 13 0.043336576121499645 17 0.04316203213912966 24 0.04277558332032515 23 0.04182811419261397 14 0.04049126882055095 9 0.040407418089102594 0 0.039281329893886684 16 0.032635213644315715 4 0.02419946251197726 5 0.023710663727210347 6 0.021427064177759032 3 0.01895890726952185 7 0.01884263583692018 8 0.01879468604515906 1 0.018626503122800946 15 0.018325157424650216 2 0.01824469296846294 __DUMMY__ 0.014974350273026408 false 0.0 644 19 0.095159 22 0.087969 21 0.087889 20 0.082821 24 0.082005 18 0.077552 11 0.070628 23 0.054766 10 0.046176 12 0.036517 9 0.033887 14 0.033183 16 0.031753 17 0.031441 4 0.020885 3 0.019802 15 0.019801 5 0.019711 0 0.013855 8 0.011692 7 0.011067 1 0.010845 2 0.010602 6 0.009995 19 0.095159 22 0.087969 21 0.087889 20 0.082821 24 0.082005 18 0.077552 11 0.070628 23 0.054766 10 0.046176 12 0.036517 9 0.033887 14 0.033183 16 0.031753 17 0.031441 4 0.020885 3 0.019802 15 0.019801 5 0.019711 0 0.013855 8 0.011692 7 0.011067 1 0.010845 2 0.010602 6 0.009995 21 0.08202620310581128 19 0.08092185267751639 22 0.07926792068393881 18 0.07208104334696476 11 0.06675924796254736 20 0.0648661804526648 24 0.06341303556479345 10 0.04863054395053317 23 0.04799122859363246 12 0.046397412126490706 17 0.03860871814263004 9 0.037857864250824595 14 0.036263791759397375 16 0.03358562899849375 0 0.027101529142540465 4 0.02176204878008204 5 0.02093211766933016 13 0.018980984800261884 15 0.018887834068401707 3 0.01875249983864771 6 0.014693755921041288 8 0.014353886117286937 7 0.014104868823862235 1 0.013836680815256417 2 0.013512512517036291 __DUMMY__ 0.0044106098900139005 false 1.0 645 20 0.125979 19 0.123729 18 0.110397 24 0.086118 21 0.07569 23 0.069698 22 0.064752 16 0.062105 17 0.05546 12 0.047507 10 0.03936 15 0.031511 9 0.025125 11 0.022789 14 0.020907 4 0.008154 5 0.007613 0 0.006096 3 0.005265 13 0.005057 7 0.002217 8 0.001731 1 0.001501 6 0.001241 20 0.125979 19 0.123729 18 0.110397 24 0.086118 21 0.07569 23 0.069698 22 0.064752 16 0.062105 17 0.05546 12 0.047507 10 0.03936 15 0.031511 9 0.025125 11 0.022789 14 0.020907 4 0.008154 5 0.007613 0 0.006096 3 0.005265 13 0.005057 7 0.002217 8 0.001731 1 0.001501 6 0.001241 19 0.09522171186188308 18 0.08898670794991817 20 0.08853385578597506 21 0.07354990035864975 24 0.06570234097117408 22 0.06531454256050638 23 0.055402884827313224 12 0.050845385807721945 17 0.04993196319917494 16 0.049382061035865316 10 0.04595470187977283 11 0.04094563180597332 14 0.032722669025560286 9 0.03234219251699062 15 0.02907041302445164 13 0.022613607695940657 0 0.021986930151834446 4 0.015086588903133573 5 0.01455804396727833 3 0.011488212363413243 6 0.010012836860924352 7 0.009504561597098336 8 0.009268383840272815 1 0.009028126451088614 2 0.008137189797518957 __DUMMY__ 0.004408555760566094 false 1.0 887 21 0.07612708053720074 19 0.06791486487323796 22 0.06763019924103142 18 0.06713796855111241 11 0.061845051942456215 12 0.059964239892749994 10 0.0505721247114928 20 0.050485351563186565 24 0.04567574186175852 17 0.044386692161485955 23 0.042256616443722056 13 0.04220168598951824 14 0.040878345068434414 9 0.038502849775729396 0 0.038286129680653445 16 0.03604188149676124 4 0.02097003732000122 5 0.020470026064833297 15 0.018927714738270433 6 0.017798075783687473 3 0.01584490384164242 __DUMMY__ 0.015671735381331174 7 0.015328239327808328 8 0.01527972571733947 1 0.015077110564378115 2 0.014725607470176563 false 0.0 1067 21 0.07487832814809985 19 0.06930329703015506 18 0.0685843447769183 22 0.06597967091240176 11 0.05980813500393896 12 0.059338729109281174 20 0.05389757749231046 10 0.05110580957260109 24 0.046882381023606534 17 0.04381585022892491 14 0.04303800610712875 23 0.042896744455695565 13 0.04269642455354613 9 0.03718383083355378 16 0.03693620229531786 0 0.036312808228074936 15 0.0226418325605323 4 0.020116757841034547 5 0.019624378359522132 6 0.016830662262324957 __DUMMY__ 0.01561571000268152 3 0.015249320835560947 7 0.014534303385739654 8 0.014495165972623264 1 0.014284591429639023 2 0.013949137578786554 false 0.0 403 14 0.146968 15 0.121314 13 0.118095 10 0.093656 18 0.085005 12 0.062181 20 0.057331 21 0.056502 11 0.047596 19 0.043018 22 0.03833 9 0.029676 23 0.025562 24 0.02059 0 0.01585 17 0.014781 16 0.00761 4 0.005847 5 0.005693 6 0.003186 3 6.03E-4 8 3.47E-4 7 1.46E-4 1 1.14E-4 14 0.146968 15 0.121314 13 0.118095 10 0.093656 18 0.085005 12 0.062181 20 0.057331 21 0.056502 11 0.047596 19 0.043018 22 0.03833 9 0.029676 23 0.025562 24 0.02059 0 0.01585 17 0.014781 16 0.00761 4 0.005847 5 0.005693 6 0.003186 3 6.03E-4 8 3.47E-4 7 1.46E-4 1 1.14E-4 14 0.09760859944956927 13 0.08342851066178687 18 0.07690036364694249 15 0.07491622498823843 10 0.07298608773920255 21 0.06423651164921239 12 0.06146844508835265 20 0.0555783187856599 19 0.05459513960249308 11 0.05239870210845955 22 0.05029602134602253 23 0.03422867695608333 9 0.03307187346531924 24 0.03270524893734391 17 0.028851129308544148 0 0.02572280724678101 16 0.021747585460471276 4 0.013240625724779428 5 0.012928637377587478 6 0.010511833505135836 3 0.00804550780139266 8 0.00780308812183931 7 0.0077004298454542465 1 0.007577842336702064 2 0.0073686129956893375 __DUMMY__ 0.0040831758509370965 false 1.0 646 21 0.097705 19 0.091518 12 0.089206 20 0.08595 24 0.073093 18 0.070353 22 0.062846 11 0.061473 13 0.060844 23 0.059664 14 0.048996 16 0.046456 17 0.037402 10 0.03612 15 0.019839 0 0.017876 9 0.015361 4 0.008661 5 0.007444 6 0.004065 3 0.002134 7 0.001276 8 0.001015 1 7.02E-4 21 0.097705 19 0.091518 12 0.089206 20 0.08595 24 0.073093 18 0.070353 22 0.062846 11 0.061473 13 0.060844 23 0.059664 14 0.048996 16 0.046456 17 0.037402 10 0.03612 15 0.019839 0 0.017876 9 0.015361 4 0.008661 5 0.007444 6 0.004065 3 0.002134 7 0.001276 8 0.001015 1 7.02E-4 21 0.08623674698755868 19 0.0794473796569762 12 0.07380008656243595 18 0.06902605206828363 20 0.06802968912080135 22 0.06519536825675523 11 0.061367803348488355 24 0.059077168316462626 13 0.051219330021442785 23 0.050894691015555 14 0.04524673285625092 10 0.043896514306118725 16 0.04120804468904004 17 0.04104671992297898 0 0.028308765851866622 9 0.02742767782789362 15 0.020187274817024724 4 0.015199072372370752 5 0.01436226959225063 6 0.011324406950919593 3 0.009452609638952541 7 0.008733927650413828 8 0.008586126512630346 1 0.008329889985776686 2 0.007815889996796025 __DUMMY__ 0.004579761673956392 false 1.0 404 15 0.153741 14 0.142698 10 0.083652 18 0.083583 13 0.068975 20 0.067842 19 0.043872 9 0.038323 22 0.036923 24 0.035985 21 0.032526 23 0.032179 3 0.0194 4 0.018381 5 0.018268 11 0.017962 17 0.014726 8 0.014659 7 0.014547 2 0.014205 1 0.01416 6 0.012963 12 0.011494 16 0.008935 15 0.153741 14 0.142698 10 0.083652 18 0.083583 13 0.068975 20 0.067842 19 0.043872 9 0.038323 22 0.036923 24 0.035985 21 0.032526 23 0.032179 3 0.0194 4 0.018381 5 0.018268 11 0.017962 17 0.014726 8 0.014659 7 0.014547 2 0.014205 1 0.01416 6 0.012963 12 0.011494 16 0.008935 14 0.09547194741680501 15 0.09427489084928053 18 0.07880451412838398 10 0.06956881331466591 20 0.06387362308820652 19 0.05768254357339577 13 0.05525632754884269 21 0.05011248956320506 22 0.04927725861950805 24 0.04112041696952216 9 0.037450507783324836 23 0.03743176894435517 11 0.03595582208185755 12 0.0323305768018131 17 0.02994994604039437 16 0.02462119483478963 4 0.01870783202864102 5 0.018403054733177427 0 0.017392796129507997 3 0.017196289040686423 6 0.014396393791231258 8 0.014370879453194143 7 0.014314991543462326 1 0.013999954066765151 2 0.013859855360569228 __DUMMY__ 0.004175312294414819 false 1.0 888 21 0.07377991897699213 22 0.0661505530307054 18 0.06483250920515812 19 0.06356840445936436 11 0.060444683095322 12 0.05887469356189223 10 0.050118999113899165 20 0.046849931823147346 17 0.04351579774902389 24 0.0435080384437296 13 0.04280048450678001 23 0.042076749950626824 14 0.04040192183939344 9 0.039942298236931705 0 0.03899920652805271 16 0.03360092239812552 4 0.023488988651941305 5 0.02299943624538752 6 0.020622986347985754 15 0.018533321255409352 3 0.018304567473506932 7 0.018086344458055383 8 0.018037118835326098 1 0.01786011035025162 2 0.01748587572108755 __DUMMY__ 0.015116137741903962 false 0.0 405 18 0.094498 10 0.08997 19 0.077691 11 0.076421 21 0.075897 22 0.072034 12 0.059824 14 0.05944 0 0.056238 13 0.056212 17 0.053175 20 0.050474 9 0.046696 16 0.039529 15 0.030159 23 0.022844 24 0.022275 4 0.005781 5 0.00568 6 0.003324 3 5.32E-4 7 5.01E-4 8 4.35E-4 1 3.7E-4 18 0.094498 10 0.08997 19 0.077691 11 0.076421 21 0.075897 22 0.072034 12 0.059824 14 0.05944 0 0.056238 13 0.056212 17 0.053175 20 0.050474 9 0.046696 16 0.039529 15 0.030159 23 0.022844 24 0.022275 4 0.005781 5 0.00568 6 0.003324 3 5.32E-4 7 5.01E-4 8 4.35E-4 1 3.7E-4 18 0.08168778164998823 21 0.07480195904986506 19 0.07258960744245868 10 0.07158134185588 22 0.0701356806024422 11 0.06888156270953281 12 0.05791372883365678 14 0.05014493095645356 20 0.04991772458499682 17 0.04949328974295096 0 0.048185563322655674 13 0.04782903843802973 9 0.04383921929177148 16 0.0378028682256899 24 0.03306415352674081 23 0.03185806950633195 15 0.025482918028400612 4 0.013837063419157003 5 0.013525357747188705 6 0.0110249581337124 3 0.008799133763241946 7 0.00848711245066168 8 0.008435243601695655 1 0.008296642560888688 2 0.00793120823616718 __DUMMY__ 0.004453842319441391 false 1.0 647 21 0.103391 22 0.092941 11 0.087552 19 0.077041 18 0.067885 12 0.067699 10 0.052182 24 0.051505 17 0.046247 9 0.044354 20 0.044103 0 0.043978 14 0.039093 13 0.03651 23 0.035047 16 0.034041 4 0.015153 5 0.014603 6 0.009728 3 0.00925 7 0.007439 1 0.007101 8 0.006932 2 0.006227 21 0.103391 22 0.092941 11 0.087552 19 0.077041 18 0.067885 12 0.067699 10 0.052182 24 0.051505 17 0.046247 9 0.044354 20 0.044103 0 0.043978 14 0.039093 13 0.03651 23 0.035047 16 0.034041 4 0.015153 5 0.014603 6 0.009728 3 0.00925 7 0.007439 1 0.007101 8 0.006932 2 0.006227 21 0.08750772221062997 22 0.08015397317721704 11 0.07378983855677644 19 0.07104686723911227 18 0.06690126476345441 12 0.061148903069949266 10 0.05132454778223282 24 0.04743939846960665 17 0.04648982634647925 20 0.04537776416733588 9 0.043048652810985244 0 0.04262939321810407 23 0.03836113624674195 14 0.03811807089882162 13 0.036876394401681806 16 0.035282307645521184 4 0.019736555038124784 5 0.01919985632752858 6 0.01561725798407125 3 0.014371064334519276 7 0.013327111185599394 8 0.013067199598211676 1 0.013029749795146286 2 0.012410682653107954 15 0.009425750596244798 __DUMMY__ 0.00431871148279607 false 1.0 889 21 0.06520049119722725 22 0.0632936421580205 18 0.0569065000243375 11 0.05390979851126888 19 0.052015999571129 12 0.04962058467474166 9 0.04589396834469734 10 0.04542629958150344 23 0.04290529301486056 17 0.04275551950365446 0 0.041029155321871416 24 0.03991669925754928 20 0.03635278315784964 13 0.035214252608844115 4 0.03322959061698523 14 0.03295589763315717 5 0.032711016482451796 6 0.030974897722610202 7 0.02880081505455736 8 0.028738971461559373 1 0.028607008382737636 3 0.02855324382245565 2 0.02812848634359061 16 0.02811959282248627 15 0.015454124082348019 __DUMMY__ 0.013285368647505572 false 0.0 648 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.07945984724739542 21 0.07381382070676767 11 0.05865577742339475 18 0.05837906905901611 9 0.05542685426069097 19 0.05487356356189927 24 0.04609629567544611 10 0.04448132360738133 17 0.04412833635330239 0 0.041402512285516044 12 0.037562278500866325 23 0.037055953620262656 14 0.0343953279830202 4 0.034054100085511456 5 0.03320286416392749 20 0.031842309993682864 3 0.030288317209032065 6 0.029642280120526766 8 0.02860926125226532 7 0.02847027309738541 1 0.028297548424156507 2 0.027566998416221705 16 0.02220181109296944 13 0.020666521091252575 15 0.015376221537719946 __DUMMY__ 0.0040505332303892635 false 1.0 406 14 0.142532 15 0.124282 18 0.089191 10 0.087559 13 0.074871 20 0.071188 21 0.060458 19 0.05684 22 0.054576 24 0.045624 11 0.039193 9 0.036818 23 0.031052 12 0.031031 4 0.009831 5 0.009711 17 0.009224 3 0.00919 16 0.003744 7 0.002942 8 0.002793 1 0.00264 2 0.002629 6 0.002081 14 0.142532 15 0.124282 18 0.089191 10 0.087559 13 0.074871 20 0.071188 21 0.060458 19 0.05684 22 0.054576 24 0.045624 11 0.039193 9 0.036818 23 0.031052 12 0.031031 4 0.009831 5 0.009711 17 0.009224 3 0.00919 16 0.003744 7 0.002942 8 0.002793 1 0.00264 2 0.002629 6 0.002081 14 0.09339782564827029 18 0.0807045649021976 15 0.0775707265754615 10 0.07009139076277134 20 0.06550125858499321 21 0.06482101212737958 19 0.06458557562198937 22 0.05866018999506181 13 0.056960886347052396 24 0.04689709792038241 11 0.046824892111531624 12 0.04239812928957659 23 0.037629054802608565 9 0.03659592984467419 17 0.027328670073206843 16 0.022311995361660363 0 0.017292224925433836 4 0.014881211697857244 5 0.014566382991727182 3 0.012533438170271914 6 0.00934293594890654 7 0.008901356771049888 8 0.008830627468604982 1 0.008622377978006005 2 0.008455954077095157 __DUMMY__ 0.004294290002229551 false 1.0 649 21 0.110716 22 0.08719 12 0.08205 11 0.081231 19 0.079652 24 0.063058 18 0.062115 20 0.053486 13 0.048656 23 0.046696 14 0.043012 17 0.039672 10 0.038812 16 0.033345 9 0.033141 0 0.031443 4 0.014641 5 0.013681 6 0.00895 3 0.00754 7 0.00552 8 0.005288 1 0.005255 2 0.004849 21 0.110716 22 0.08719 12 0.08205 11 0.081231 19 0.079652 24 0.063058 18 0.062115 20 0.053486 13 0.048656 23 0.046696 14 0.043012 17 0.039672 10 0.038812 16 0.033345 9 0.033141 0 0.031443 4 0.014641 5 0.013681 6 0.00895 3 0.00754 7 0.00552 8 0.005288 1 0.005255 2 0.004849 21 0.09249155081239775 22 0.0772347973128204 19 0.07349947766421723 11 0.0711421856915607 12 0.07007359153042392 18 0.06473978580494609 24 0.0540881575984954 20 0.05175550591343251 10 0.04497658011769552 13 0.04469753999786737 23 0.044594112039878196 17 0.04239840214325153 14 0.041544317937771635 9 0.03633982960462427 0 0.035288315451837096 16 0.034873591271089244 4 0.018392593528226652 5 0.01767170531012004 6 0.014012411757530971 3 0.01235261857748887 7 0.011111783842873915 8 0.01097634217054975 1 0.01084951240243326 2 0.0104673955953894 15 0.009856494725626452 __DUMMY__ 0.004571401197451535 false 1.0 407 17 0.08601 16 0.082722 0 0.070622 19 0.057397 18 0.051582 22 0.051442 9 0.046114 11 0.044729 6 0.0388 8 0.037187 7 0.036917 1 0.036767 2 0.036114 4 0.034889 5 0.034365 23 0.034277 10 0.034038 3 0.03163 21 0.031318 20 0.031142 12 0.030662 24 0.027701 15 0.025993 13 0.00758 17 0.08601 16 0.082722 0 0.070622 19 0.057397 18 0.051582 22 0.051442 9 0.046114 11 0.044729 6 0.0388 8 0.037187 7 0.036917 1 0.036767 2 0.036114 4 0.034889 5 0.034365 23 0.034277 10 0.034038 3 0.03163 21 0.031318 20 0.031142 12 0.030662 24 0.027701 15 0.025993 13 0.00758 17 0.07353527888233932 16 0.06430782722298078 0 0.06404182721631294 22 0.05799138860957391 19 0.05587650996005534 18 0.055771433626342286 11 0.049931839591070434 9 0.04883897674104688 21 0.0421449295722778 10 0.04161139827372335 6 0.03569290212844874 23 0.0343994833843428 8 0.03389714003075024 4 0.03388760764817295 12 0.03387510664078366 7 0.03373488107165216 1 0.03355364613547723 5 0.033347017454203175 2 0.03297145080208553 20 0.030290046562913675 3 0.030182400300808012 24 0.028747046376377185 15 0.02269922608770946 13 0.014402188699918902 14 0.011011565757553804 __DUMMY__ 0.003256881223079438 false 1.0 408 20 0.09806 14 0.081142 19 0.077999 18 0.076598 13 0.074663 12 0.071197 21 0.070225 24 0.068337 15 0.063258 23 0.059265 10 0.049288 22 0.040137 11 0.033407 16 0.031884 17 0.019984 9 0.014766 4 0.012991 5 0.012389 3 0.009909 6 0.007787 8 0.006893 1 0.006724 7 0.006707 2 0.006389 20 0.09806 14 0.081142 19 0.077999 18 0.076598 13 0.074663 12 0.071197 21 0.070225 24 0.068337 15 0.063258 23 0.059265 10 0.049288 22 0.040137 11 0.033407 16 0.031884 17 0.019984 9 0.014766 4 0.012991 5 0.012389 3 0.009909 6 0.007787 8 0.006893 1 0.006724 7 0.006707 2 0.006389 20 0.075974222778921 19 0.0735818906306289 18 0.07301849553068936 21 0.07152956284758633 12 0.06392922869718859 14 0.06255306711355896 13 0.057912235961200126 24 0.05739382927278662 22 0.05294404562981043 23 0.0509915609967023 10 0.05062774824823131 11 0.04599441131494097 15 0.044621313210668 16 0.034857964197914156 17 0.03244325359796742 9 0.026428791881316763 0 0.0183598608907034 4 0.016861166530391162 5 0.016318578689997813 3 0.012989191395519106 6 0.012645474057260532 8 0.011104855037109475 7 0.011028244908684367 1 0.010903438610123233 2 0.010572667163863115 __DUMMY__ 0.004414900806236668 false 1.0 409 14 0.123212 15 0.106228 13 0.099407 18 0.084173 20 0.083039 10 0.073256 12 0.065516 19 0.062424 21 0.061262 24 0.04562 23 0.042331 11 0.037699 22 0.035889 16 0.022708 9 0.01888 17 0.017796 4 0.005935 5 0.005813 0 0.004071 3 0.002107 6 0.002022 1 2.92E-4 8 2.16E-4 7 1.06E-4 14 0.123212 15 0.106228 13 0.099407 18 0.084173 20 0.083039 10 0.073256 12 0.065516 19 0.062424 21 0.061262 24 0.04562 23 0.042331 11 0.037699 22 0.035889 16 0.022708 9 0.01888 17 0.017796 4 0.005935 5 0.005813 0 0.004071 3 0.002107 6 0.002022 1 2.92E-4 8 2.16E-4 7 1.06E-4 14 0.08403083026718787 18 0.07688468137695845 13 0.07140321022790741 20 0.06908043808024479 21 0.06663170838244578 15 0.06657625583765864 19 0.06565491098202597 10 0.06253368964268068 12 0.06175037643806064 22 0.049933918418567064 11 0.04749954003290457 24 0.04599652960984218 23 0.0427786296143428 17 0.031119012973557975 16 0.030322897192305846 9 0.027993123421941966 0 0.020060219957860746 4 0.013274811636781713 5 0.012963538880750722 6 0.009783077345882189 3 0.008983161368856667 8 0.007750349406549888 7 0.007698454097001275 1 0.007662625884859016 2 0.007362760188721528 __DUMMY__ 0.0042712487341036096 false 1.0 1080 21 0.07325799886514674 19 0.0703568425288994 18 0.06753558481774023 22 0.06594076032275892 11 0.05675597092574859 20 0.055972347423547626 12 0.05471481837898988 24 0.05034995413689981 10 0.048295702610115704 23 0.04490687525949936 17 0.04343748287481695 14 0.04053873773184781 16 0.03759615014512486 9 0.03734745275325928 13 0.03659419856221183 0 0.033981904536344414 15 0.023531124191773736 4 0.021786785271920277 5 0.021265816586425467 6 0.018092681387817038 3 0.017631553634850933 7 0.016358843037314157 8 0.016318591778362087 1 0.016078554297320812 2 0.01572933307056108 __DUMMY__ 0.015623934870703127 false 0.0 1088 18 0.07192202295165898 19 0.0701604565137998 21 0.06567226919899441 22 0.061615377449117444 20 0.05747115629158822 10 0.053308544839403095 11 0.05296606605876722 12 0.05037454838858934 17 0.04674390305848053 24 0.04580967900714936 14 0.04401315491502023 23 0.04252399099622346 16 0.04131423467599666 9 0.0375430220638597 13 0.03730026859668947 0 0.03614505576568264 15 0.032882420982715765 4 0.020527359623862332 5 0.020027825015093766 6 0.01753911697672393 3 0.016672147749038822 7 0.015905005754563096 8 0.01590381698090298 1 0.015650427536542964 2 0.015312490629939063 __DUMMY__ 0.014695637979596802 false 0.0 1087 19 0.06961801401892383 18 0.06887615041682671 21 0.06671558067870464 22 0.061919890951830155 20 0.0566147965956108 11 0.05297431065554963 12 0.05154976353211441 10 0.0492972437346771 24 0.04775742501652767 17 0.04680089996336691 23 0.044416489095339094 16 0.0418783871402388 14 0.040517642516390485 9 0.03688614651986063 13 0.035878747437431587 0 0.035752447761086756 15 0.029395857899203803 4 0.021924840573916818 5 0.021416213653844322 6 0.018993915778467926 3 0.017935536334565655 7 0.017279730849467437 8 0.017268871288241925 1 0.0170161633662072 2 0.01666747599383575 __DUMMY__ 0.014647458227770143 false 0.0 1086 21 0.073897487575503 19 0.06861978122590918 18 0.06727180670366142 22 0.06621640779580547 11 0.05933273055562484 12 0.05757794269536729 20 0.05252603004081566 10 0.049728632407463946 24 0.04699416734232058 17 0.04444255555003262 23 0.043603479354585264 14 0.04035297962205459 13 0.03987163845440653 9 0.037856196994632337 16 0.03732664037116157 0 0.0369087241315449 4 0.0215006744301127 15 0.021211278877390244 5 0.021001786769115096 6 0.018271798021566553 3 0.016736709407984617 7 0.016062666111317712 8 0.016010941837082092 1 0.015797756246799636 2 0.015451245601523184 __DUMMY__ 0.015427941876219035 false 0.0 1085 22 0.06266474143703359 18 0.058479561299340614 21 0.05321420542894252 9 0.05306883558319763 19 0.05023069586246453 17 0.04964113420458477 10 0.04859813151235094 11 0.048263171880337886 0 0.04755655857972095 23 0.03800234782084877 4 0.037007213962593356 5 0.03645869683659545 6 0.03522943650331792 24 0.03419257440399526 8 0.0341031044212612 7 0.03409908877998813 3 0.033946511938819104 1 0.033905090331879335 2 0.033412395383065674 12 0.03287599846537019 16 0.03251678161404719 20 0.03195758397959771 14 0.026769578626628012 13 0.020665733059854745 15 0.020254695823202766 __DUMMY__ 0.012886132260961723 false 0.0 1084 22 0.06409946316593608 17 0.05960188311808891 18 0.05809543004719653 0 0.05780853546401839 11 0.05430104586986665 9 0.05310714674121457 21 0.051776803383803284 19 0.05145034409117879 10 0.04892552889129148 16 0.04294945740099228 12 0.03559466030227238 4 0.03460670167490016 6 0.034320665300650054 5 0.03404174479561675 23 0.03370865862859714 8 0.03245539975947434 7 0.032381216795861534 1 0.03217874186468115 2 0.03167807968131265 3 0.030623033366970327 24 0.028266789354413478 20 0.026571422039278193 14 0.020783529884477545 13 0.020480505708072153 15 0.017201722253980263 __DUMMY__ 0.012991490415854857 false 0.0 1083 18 0.07012703160103285 21 0.06481891904684307 22 0.06471207595740247 19 0.06404581267541509 10 0.05685034867632828 11 0.05476588601332396 20 0.048203786185170155 12 0.04530868833978714 17 0.045274941255708426 9 0.044281114490844195 14 0.04306021907198599 24 0.04012864519268631 0 0.039946743788482585 23 0.038680810478883255 13 0.034567955354311126 16 0.03434285886125648 15 0.028850250866140535 4 0.024273048442079326 5 0.023771026163960488 6 0.021145020085316813 3 0.020629888255717165 7 0.01967511804312897 8 0.019665695268571395 1 0.0194384374672811 2 0.019079172743646528 __DUMMY__ 0.01435650567469639 false 0.0 1082 21 0.07325799886514674 19 0.0703568425288994 18 0.06753558481774023 22 0.06594076032275892 11 0.05675597092574859 20 0.055972347423547626 12 0.05471481837898988 24 0.05034995413689981 10 0.048295702610115704 23 0.04490687525949936 17 0.04343748287481695 14 0.04053873773184781 16 0.03759615014512486 9 0.03734745275325928 13 0.03659419856221183 0 0.033981904536344414 15 0.023531124191773736 4 0.021786785271920277 5 0.021265816586425467 6 0.018092681387817038 3 0.017631553634850933 7 0.016358843037314157 8 0.016318591778362087 1 0.016078554297320812 2 0.01572933307056108 __DUMMY__ 0.015623934870703127 false 0.0 890 21 0.07441010027540142 19 0.0711264459366506 18 0.06986974931130734 22 0.06673139005701816 11 0.05859374216826548 20 0.056493470830626995 12 0.056144006500813075 10 0.0508638828646117 24 0.04906103875620311 17 0.04379411882493955 23 0.04331489926237615 14 0.04289448237044977 13 0.03887961702464412 16 0.03741795339799022 9 0.0373107000895595 0 0.034650012700008365 15 0.024608551903808357 4 0.020007952583400004 5 0.019500378295749025 6 0.016323785308961534 __DUMMY__ 0.015725492691663654 3 0.015595426592007583 7 0.014412843705913163 8 0.014362743295139457 1 0.014127146797290956 2 0.013780068455200505 false 0.0 1081 22 0.06678981445302974 18 0.05978975526888839 17 0.05594475258584856 0 0.055309184844231064 9 0.055213046763414084 11 0.054701735395023134 21 0.054498297166795245 19 0.051204734473651814 10 0.051049985965125784 16 0.036891433036664645 4 0.03497377752729269 5 0.03438704668528124 12 0.03395896024762931 6 0.033843930754651565 23 0.03332955078249595 8 0.03222452789593694 7 0.03216643792966166 1 0.03194088161483075 2 0.03142221007468877 3 0.03118954101453799 24 0.029475526078020283 20 0.026776428790068738 14 0.023601826500335786 13 0.019798413233513328 15 0.01664535233979131 __DUMMY__ 0.012872848578591419 false 0.0 891 18 0.07649175757125394 10 0.06641129666968851 22 0.06626809530525368 21 0.06505444507431539 19 0.06490141926088841 11 0.06017768622975238 17 0.0480343270807758 12 0.04717120529038097 14 0.04707260733307665 9 0.04613541218862036 0 0.04571470906665634 20 0.045629819902756615 13 0.03958831749561135 16 0.03452401007470432 23 0.03346754386425513 24 0.032770449440825807 15 0.02987569392872826 4 0.020469589612927705 5 0.019996477039987217 6 0.01776964478941872 3 0.0161628907403627 7 0.015789276540050752 8 0.015781234286484844 1 0.015575258384889441 2 0.015208679006505386 __DUMMY__ 0.013958153821829203 false 0.0 650 21 0.108063 22 0.088565 11 0.087906 12 0.078684 19 0.071847 24 0.059272 18 0.057904 13 0.04827 23 0.042612 14 0.0418 20 0.041673 10 0.041096 17 0.040444 9 0.037287 0 0.037136 16 0.028757 4 0.017426 5 0.016629 6 0.012573 3 0.009518 7 0.008539 8 0.008378 1 0.008086 2 0.007533 21 0.108063 22 0.088565 11 0.087906 12 0.078684 19 0.071847 24 0.059272 18 0.057904 13 0.04827 23 0.042612 14 0.0418 20 0.041673 10 0.041096 17 0.040444 9 0.037287 0 0.037136 16 0.028757 4 0.017426 5 0.016629 6 0.012573 3 0.009518 7 0.008539 8 0.008378 1 0.008086 2 0.007533 21 0.09084914604692572 22 0.07814681974913623 11 0.07424665090917372 19 0.06943335251950963 12 0.06762983605055177 18 0.06250586784923026 24 0.052007200202835745 10 0.045960357047259016 20 0.04544431065630151 13 0.043523134275983644 17 0.04307969920668546 23 0.042466330089603425 14 0.04025778926501235 9 0.03886581508517744 0 0.038438814512846524 16 0.03265014387308185 4 0.020153477429843587 5 0.01950505034732308 6 0.016185862782784263 3 0.013781181050675849 7 0.013038323305537228 8 0.01293643891631162 1 0.012685962111419872 2 0.012227959935225888 15 0.009495234352404498 __DUMMY__ 0.004485242429159713 false 1.0 892 21 0.07169076760977539 22 0.06764814645886526 18 0.06508009603473539 19 0.06408343172949686 11 0.06228415172618634 12 0.05592682302376085 10 0.05101748499628541 17 0.04813392604574331 0 0.04392686321604342 20 0.043731622521910554 9 0.041857862815929896 24 0.040661112283742674 23 0.03991182315697645 13 0.03838225120659526 16 0.03759623175620929 14 0.036129243128585835 4 0.02360681391774704 5 0.023106771780470596 6 0.021177110907428583 7 0.018637485397660535 8 0.018599993540244393 3 0.018469187243383256 1 0.018395457855196556 2 0.01800684534622127 15 0.016995580065550617 __DUMMY__ 0.014942916235254936 false 0.0 651 22 0.077924 9 0.071823 0 0.05828 17 0.05321 21 0.053067 18 0.052406 11 0.052366 10 0.04773 4 0.047697 5 0.046734 3 0.045637 6 0.044873 8 0.04484 7 0.044323 1 0.044159 2 0.043889 19 0.03998 24 0.0313 23 0.027812 16 0.020809 14 0.016884 12 0.013193 20 0.01131 15 0.009754 22 0.077924 9 0.071823 0 0.05828 17 0.05321 21 0.053067 18 0.052406 11 0.052366 10 0.04773 4 0.047697 5 0.046734 3 0.045637 6 0.044873 8 0.04484 7 0.044323 1 0.044159 2 0.043889 19 0.03998 24 0.0313 23 0.027812 16 0.020809 14 0.016884 12 0.013193 20 0.01131 15 0.009754 22 0.07277212211631555 21 0.05966163036821379 9 0.05921493234669177 18 0.05823886950913157 11 0.055840276080485675 0 0.05267695643137024 17 0.05191755005267267 19 0.05000527379664153 10 0.04950942313207128 4 0.03763521249347053 5 0.03688805247593222 6 0.035181343610003045 24 0.03445201722352345 3 0.034284080757993184 8 0.03406397824299985 7 0.03381636860697388 1 0.03361122510286722 2 0.03324463285775803 23 0.03288714381717248 12 0.03082190651286212 16 0.028961995665813804 20 0.025169037972525347 14 0.02509224851018892 13 0.016265729270154766 15 0.014093092061858232 __DUMMY__ 0.0036949009843086043 false 1.0 893 22 0.06787996158428221 18 0.06633060078908048 21 0.06508399578595997 11 0.06014563874639438 19 0.05978940864960105 10 0.05541825247151265 17 0.05055300856731738 0 0.04844937982753315 9 0.04788575295825042 12 0.04647713814242458 20 0.03792527050061498 16 0.03586903901162708 23 0.03547592695358242 14 0.03507264699094306 24 0.034704256085954274 13 0.03258748548543405 4 0.02646840566426157 5 0.025940437333139624 6 0.024325076902668347 7 0.022201368641466622 8 0.022199142588165684 1 0.021971807267419163 3 0.021954868050748394 2 0.021540121989079803 15 0.019679826935269724 __DUMMY__ 0.014071182077269024 false 0.0 652 21 0.10341 22 0.093361 11 0.088328 19 0.07747 12 0.068292 18 0.067896 10 0.052932 24 0.051629 17 0.046366 9 0.044688 20 0.044002 0 0.043884 14 0.039084 13 0.036465 23 0.035357 16 0.034204 4 0.014848 5 0.014318 6 0.009289 3 0.008833 7 0.006759 8 0.006443 1 0.006357 2 0.005786 21 0.10341 22 0.093361 11 0.088328 19 0.07747 12 0.068292 18 0.067896 10 0.052932 24 0.051629 17 0.046366 9 0.044688 20 0.044002 0 0.043884 14 0.039084 13 0.036465 23 0.035357 16 0.034204 4 0.014848 5 0.014318 6 0.009289 3 0.008833 7 0.006759 8 0.006443 1 0.006357 2 0.005786 21 0.08751667559923773 22 0.08035102042506485 11 0.07415387195128018 19 0.07124813185044111 18 0.06690645592141747 12 0.06142709061604381 10 0.051676374803454564 24 0.04749758547583593 17 0.046545667554316265 20 0.04533040932259746 9 0.04320534258263281 0 0.04258532057835192 23 0.038506566125328996 14 0.03811386714353118 13 0.036855303522530934 16 0.03535878270242869 4 0.019593497764432265 5 0.01906618021399009 6 0.01541134331838339 3 0.014175468637372598 7 0.013008149432232446 8 0.012837830206607375 1 0.012680767384204287 2 0.012203828342119529 15 0.00942575501758724 __DUMMY__ 0.004318713508576637 false 1.0 410 15 0.182794 14 0.123717 18 0.09627 20 0.079296 10 0.077603 16 0.073147 19 0.06692 17 0.063387 13 0.04637 24 0.032097 22 0.030232 9 0.02797 23 0.025839 0 0.024695 11 0.014528 21 0.010163 8 0.003918 3 0.003738 2 0.0032 1 0.003142 7 0.003049 4 0.002855 5 0.002729 6 0.002343 15 0.182794 14 0.123717 18 0.09627 20 0.079296 10 0.077603 16 0.073147 19 0.06692 17 0.063387 13 0.04637 24 0.032097 22 0.030232 9 0.02797 23 0.025839 0 0.024695 11 0.014528 21 0.010163 8 0.003918 3 0.003738 2 0.0032 1 0.003142 7 0.003049 4 0.002855 5 0.002729 6 0.002343 15 0.10706103566409185 14 0.0849644772602387 18 0.08301863799322601 20 0.06784680006486742 19 0.06734240804435852 10 0.06493946676826572 16 0.05598938683776157 17 0.05390051283635485 22 0.04542969008902464 13 0.044902482471096045 21 0.038883285264258396 24 0.038861420378398605 23 0.0345668118033735 11 0.034128490593877764 9 0.032348294621272915 0 0.029995903354319654 12 0.027675901189663316 4 0.01211964371537428 5 0.01181272693910471 6 0.010460446530639437 3 0.010377827052565684 8 0.010231175119936823 7 0.009810021059130555 1 0.00972963787629168 2 0.009590912464400223 __DUMMY__ 0.004012604008107002 false 1.0 894 21 0.07344479074363154 18 0.06917705036381762 19 0.06907319590259131 22 0.06532273997071465 11 0.05941635797786229 12 0.058385710191675114 20 0.0534273966229013 10 0.052347406592596235 24 0.045554565164187016 17 0.04422127537932968 14 0.043048241724208756 23 0.04272145115393008 13 0.042510202864021095 9 0.037528954026404375 16 0.03724718096444423 0 0.03709880310765695 15 0.023336794135333475 4 0.020227868868425307 5 0.019743028372339214 6 0.017063816321354248 __DUMMY__ 0.01542179431247993 3 0.015410733257548371 7 0.014784602060335616 8 0.014740675750998493 1 0.014537224700887653 2 0.014208139470325494 false 0.0 411 14 0.104588 13 0.102823 10 0.099322 18 0.088777 12 0.071797 11 0.069988 21 0.066797 15 0.064338 22 0.053144 19 0.050919 0 0.043711 20 0.042071 9 0.040502 17 0.031313 23 0.019305 16 0.0158 24 0.008684 5 0.007239 4 0.006968 6 0.005919 1 0.001605 7 0.00156 8 0.001543 2 0.001287 14 0.104588 13 0.102823 10 0.099322 18 0.088777 12 0.071797 11 0.069988 21 0.066797 15 0.064338 22 0.053144 19 0.050919 0 0.043711 20 0.042071 9 0.040502 17 0.031313 23 0.019305 16 0.0158 24 0.008684 5 0.007239 4 0.006968 6 0.005919 1 0.001605 7 0.00156 8 0.001543 2 0.001287 18 0.07953920730466695 10 0.07791457186400327 14 0.07620263112108563 13 0.07512087820065474 21 0.06982463625460322 12 0.06536776468734339 11 0.06528897576872689 22 0.05930483586566109 19 0.05802428790621618 20 0.0457455702305527 15 0.04505215220625921 0 0.04147231022446783 9 0.04027921591382074 17 0.037503291940400724 23 0.029549141970206312 24 0.024872903705154263 16 0.02465698396526911 4 0.013842011873694207 5 0.013721573266463487 6 0.011865185159791796 7 0.008384820059832708 8 0.008374126048164685 1 0.00830267589806791 2 0.007984280425298876 3 0.007749975764130981 __DUMMY__ 0.004055992375463134 false 1.0 895 18 0.07427213542970207 19 0.06890390672649974 21 0.06839321364020341 22 0.06453696067591375 10 0.05981243221259047 11 0.05804232466560131 20 0.05294651235306328 12 0.052203109342285246 14 0.04687500658564678 17 0.04563691846768345 13 0.041181002961214117 24 0.04051495592158706 9 0.040475233476989995 0 0.039505046989013554 23 0.038996487923014564 16 0.0370400097883843 15 0.02982620770789378 4 0.01940429106771008 5 0.018932863297069304 6 0.016307685761943042 3 0.015112735454162208 __DUMMY__ 0.014446178125337814 7 0.014360221987194798 8 0.014337314849088649 1 0.01412872852552078 2 0.01380851606468639 false 0.0 653 0 0.087394 17 0.080064 9 0.066661 22 0.062443 11 0.059329 10 0.056488 18 0.055927 16 0.053413 6 0.04559 7 0.043069 8 0.042788 1 0.042741 4 0.041697 2 0.041382 5 0.040697 19 0.037773 3 0.036533 21 0.033141 12 0.0236 23 0.021583 13 0.011531 15 0.01071 14 0.00304 24 0.002406 0 0.087394 17 0.080064 9 0.066661 22 0.062443 11 0.059329 10 0.056488 18 0.055927 16 0.053413 6 0.04559 7 0.043069 8 0.042788 1 0.042741 4 0.041697 2 0.041382 5 0.040697 19 0.037773 3 0.036533 21 0.033141 12 0.0236 23 0.021583 13 0.011531 15 0.01071 14 0.00304 24 0.002406 0 0.07043725963318062 17 0.06762897128180742 22 0.06451096924221224 9 0.05959033897372481 18 0.05777243252338538 11 0.05760775324823807 10 0.05315067368391134 16 0.0458540823713461 19 0.045501457572572 21 0.04520571598861528 6 0.03905485833733073 4 0.037717428156225724 5 0.03695235890769273 7 0.03685436641963627 8 0.03674264315384127 1 0.03658805642058314 2 0.035679654758361115 3 0.033125549140360894 12 0.0309908146789284 23 0.028454088765086316 13 0.017306653589579845 24 0.017240564875438576 20 0.014859379847868835 14 0.014066827629130994 15 0.013762523129814817 __DUMMY__ 0.0033445776711271383 false 1.0 654 21 0.104755 19 0.086989 22 0.086402 11 0.08301 12 0.078563 18 0.073644 20 0.058471 24 0.056581 10 0.052745 13 0.046461 17 0.046266 14 0.042169 16 0.040428 0 0.039813 23 0.037955 9 0.037225 4 0.008912 5 0.008504 6 0.003495 15 0.00344 3 0.002811 7 6.87E-4 1 3.9E-4 8 2.84E-4 21 0.104755 19 0.086989 22 0.086402 11 0.08301 12 0.078563 18 0.073644 20 0.058471 24 0.056581 10 0.052745 13 0.046461 17 0.046266 14 0.042169 16 0.040428 0 0.039813 23 0.037955 9 0.037225 4 0.008912 5 0.008504 6 0.003495 15 0.00344 3 0.002811 7 6.87E-4 1 3.9E-4 8 2.84E-4 21 0.08967412320538176 22 0.07711234007487151 19 0.07697847946633646 11 0.072106122767283 18 0.07024700094095615 12 0.06812040331252547 20 0.05390222846986497 10 0.05164360830812375 24 0.05093543785090372 17 0.04568695876831475 13 0.04321074599344819 14 0.040855718282781374 23 0.04031641894608214 0 0.03946510812292432 9 0.03851878864866073 16 0.038218752584374495 4 0.015753273467874595 5 0.015290471450934704 6 0.011491437211850669 15 0.011246522883226629 3 0.010204054198209914 7 0.008900310297302932 8 0.008684472929352788 1 0.00862261180349527 2 0.008246272035458429 __DUMMY__ 0.004568337979461385 false 1.0 412 14 0.133049 13 0.108446 15 0.093821 10 0.086157 18 0.081541 21 0.070857 12 0.069114 20 0.058607 11 0.05558 22 0.04966 19 0.049483 24 0.031467 9 0.030439 23 0.029445 0 0.014264 17 0.012119 5 0.007515 4 0.00748 16 0.005095 6 0.003319 3 0.002043 7 2.17E-4 2 1.75E-4 8 1.08E-4 14 0.133049 13 0.108446 15 0.093821 10 0.086157 18 0.081541 21 0.070857 12 0.069114 20 0.058607 11 0.05558 22 0.04966 19 0.049483 24 0.031467 9 0.030439 23 0.029445 0 0.014264 17 0.012119 5 0.007515 4 0.00748 16 0.005095 6 0.003319 3 0.002043 7 2.17E-4 2 1.75E-4 8 1.08E-4 14 0.08812634347049295 13 0.07603078619056226 18 0.07520455266010721 21 0.07267874703022097 10 0.06885117396776848 12 0.06443621547914818 19 0.05916714569205994 15 0.058483006485184015 22 0.057747379350610785 11 0.05772493859855224 20 0.05596850200975888 24 0.0387955844534729 23 0.03620993701266853 9 0.03405404801368075 17 0.028346448116971863 0 0.025745305381789988 16 0.02115648581896456 4 0.014033358704199523 5 0.013793004238711638 6 0.010393476564742635 3 0.008798161046281089 7 0.007636195302331171 8 0.007575732944610871 1 0.007409819017725433 2 0.007317783150565482 __DUMMY__ 0.004315869298817554 false 1.0 896 18 0.07128057294385048 19 0.07077172128668342 21 0.07054151013853349 22 0.06308479711920621 20 0.057440958063359526 11 0.05607819532559779 12 0.05581997391850224 10 0.05329939355929098 24 0.04658340422887752 14 0.045363369904725614 17 0.04422265301495783 23 0.04325517802518956 13 0.04171156331133689 16 0.03894179386921725 9 0.0364336499971002 0 0.03510911305236402 15 0.028921206804698542 4 0.01947479868316419 5 0.018991272541227903 6 0.016218692283740687 __DUMMY__ 0.015150876823306491 3 0.015123250653814037 7 0.014255949097422251 8 0.014231691827276747 1 0.01400481048366703 2 0.013689603042889121 false 0.0 897 21 0.0754793062737095 19 0.06905792794076973 18 0.0679101426611604 22 0.06745194919415715 11 0.06051211690022984 12 0.058219244832124734 20 0.052564707071909904 10 0.05037471376584737 24 0.04716076245475015 17 0.04413334685067613 23 0.04286096085308789 14 0.04088571803661432 13 0.040245257001920644 9 0.03827944811964417 0 0.036943548319178884 16 0.03640551326490994 4 0.02095699315389222 5 0.02044974464811995 15 0.020337634958080296 6 0.01756145497155683 3 0.016142285947929068 __DUMMY__ 0.015644102269109575 7 0.015338264680720132 8 0.015288043867855422 1 0.015075377156107201 2 0.014721434805938488 false 0.0 655 17 0.071011 0 0.064631 22 0.057758 9 0.057306 16 0.056284 18 0.052529 19 0.048183 6 0.043944 8 0.043518 7 0.043469 1 0.043303 11 0.042891 4 0.04284 2 0.042705 5 0.042212 3 0.041114 10 0.040868 21 0.033756 23 0.032919 24 0.028876 20 0.024844 15 0.022363 12 0.017453 14 0.005223 17 0.071011 0 0.064631 22 0.057758 9 0.057306 16 0.056284 18 0.052529 19 0.048183 6 0.043944 8 0.043518 7 0.043469 1 0.043303 11 0.042891 4 0.04284 2 0.042705 5 0.042212 3 0.041114 10 0.040868 21 0.033756 23 0.032919 24 0.028876 20 0.024844 15 0.022363 12 0.017453 14 0.005223 17 0.0631401232837701 22 0.06262933143980706 0 0.058311871188918445 18 0.05750418969171611 9 0.053837764951586486 19 0.05273469996238972 11 0.05012305620202996 16 0.04810096485617656 21 0.046937142966710844 10 0.0458558754235015 4 0.03673732423413132 6 0.036544985032922604 5 0.036139336028345216 8 0.03537112515962746 7 0.03532541123062662 1 0.03512239826030264 2 0.034578324716081264 23 0.03439491953837955 3 0.03375228830301984 24 0.0314612920611231 20 0.02931660143679468 12 0.02922782474550593 15 0.020392917483574923 14 0.016428497494973136 13 0.012523677463115798 __DUMMY__ 0.0035080568448691576 false 1.0 1079 21 0.06749216398704867 22 0.06691595079190536 18 0.061694662051780896 19 0.059695084463596504 11 0.05659455494733402 12 0.04804532030399967 10 0.04749134900687367 17 0.04679392875633437 9 0.04528191909569664 0 0.042386884128908404 24 0.04172544025364296 20 0.041004908921822646 23 0.04075851714217593 16 0.034036388446240164 14 0.03304151213155624 13 0.03128378925575404 4 0.028747161941595822 5 0.02820331739293628 6 0.02610773070757756 3 0.024452946688218374 7 0.0242111310966215 8 0.02417846355770306 1 0.023968667011134915 2 0.023532024738022923 15 0.01747994480935781 __DUMMY__ 0.014876238372161604 false 0.0 413 14 0.087784 15 0.078872 10 0.065407 18 0.058595 13 0.057131 9 0.050869 22 0.047535 21 0.044149 4 0.037555 5 0.037083 11 0.036399 3 0.035482 23 0.034912 6 0.034285 8 0.033961 7 0.033651 1 0.033646 2 0.033335 20 0.032154 24 0.029388 12 0.027767 19 0.024844 0 0.024681 17 0.020515 14 0.087784 15 0.078872 10 0.065407 18 0.058595 13 0.057131 9 0.050869 22 0.047535 21 0.044149 4 0.037555 5 0.037083 11 0.036399 3 0.035482 23 0.034912 6 0.034285 8 0.033961 7 0.033651 1 0.033646 2 0.033335 20 0.032154 24 0.029388 12 0.027767 19 0.024844 0 0.024681 17 0.020515 14 0.06817384964014248 18 0.06377715325374712 10 0.059465111480592484 21 0.05891200310414803 22 0.05567263731786126 13 0.05331022311719196 15 0.052693963437275095 11 0.04782004153783818 19 0.045244703448835334 12 0.04466028421872401 9 0.044135016441077764 20 0.04218692267319665 23 0.03854020077859075 24 0.03667123499764586 17 0.03135775914885499 0 0.03045328695309204 4 0.029072423166407863 5 0.02860089531560942 6 0.02597512866490533 3 0.025364518207102716 8 0.024468151996435265 7 0.024324291641738417 1 0.024208072278461598 2 0.023885869427123018 16 0.01699318898448416 __DUMMY__ 0.004033068768918265 false 1.0 656 19 0.098574 21 0.087402 18 0.077325 20 0.075381 12 0.071939 22 0.069486 11 0.066777 16 0.061663 24 0.056897 17 0.053106 10 0.051744 23 0.045328 13 0.042202 14 0.038759 0 0.038262 9 0.027551 15 0.018584 5 0.006567 4 0.006383 6 0.002688 3 0.002076 7 6.63E-4 8 3.8E-4 1 2.62E-4 19 0.098574 21 0.087402 18 0.077325 20 0.075381 12 0.071939 22 0.069486 11 0.066777 16 0.061663 24 0.056897 17 0.053106 10 0.051744 23 0.045328 13 0.042202 14 0.038759 0 0.038262 9 0.027551 15 0.018584 5 0.006567 4 0.006383 6 0.002688 3 0.002076 7 6.63E-4 8 3.8E-4 1 2.62E-4 19 0.08300213129590579 21 0.08172628505245617 18 0.07216928362079336 22 0.06855008417060132 12 0.06601615933432788 11 0.06422093079921667 20 0.06296088076030691 24 0.05152665246087375 10 0.05104175082953258 16 0.04867849614125226 17 0.048669169595383956 23 0.0441903853202993 13 0.04232925300443399 14 0.03993504106708959 0 0.03814585941998259 9 0.033101173878998656 15 0.018953346487039856 4 0.01404555078289596 5 0.013866298257343215 6 0.010607400186872618 3 0.009307063174430032 7 0.008350246386758532 8 0.008190040342835617 1 0.008027290371499384 2 0.007720556836472366 __DUMMY__ 0.004668670422397614 false 1.0 898 21 0.07617033950446929 22 0.06746578158842394 18 0.06657200684527528 19 0.06621245271149227 11 0.06301820503217606 12 0.061402966965214384 10 0.051387991143004526 20 0.04830225981348881 13 0.0444758542486258 17 0.04431215378045137 24 0.04377452758074017 23 0.04148589688200558 14 0.041417780936851584 0 0.039549583223825964 9 0.03888245079548337 16 0.03515498487361041 4 0.021165326120159103 5 0.02067240181979629 6 0.01822594880862179 15 0.0181266635237332 3 0.015739014636653656 7 0.015514421425866115 8 0.015473742492740411 __DUMMY__ 0.015291037342610184 1 0.015277956253017118 2 0.01492825165166325 false 0.0 1078 21 0.07389980854777115 19 0.07017469301696894 18 0.06927232966618911 22 0.06505497350522008 12 0.05839565279756766 11 0.05829049022856506 20 0.05588828891749076 10 0.051057985502693776 24 0.047792244162905353 14 0.043944234034589594 17 0.04370548120852371 23 0.04336519354610509 13 0.04225616972691274 16 0.037720256110158015 9 0.03652019252316297 0 0.035146481601461395 15 0.02496659479556617 4 0.019790967735213095 5 0.01930300889005799 6 0.016433337147742234 __DUMMY__ 0.01559322234184834 3 0.015141469303506416 7 0.014288394009607295 8 0.014253731765022502 1 0.014036796157294529 2 0.013708002757856108 false 0.0 414 14 0.136698 15 0.101959 13 0.100641 10 0.086612 18 0.083647 21 0.069201 20 0.062029 12 0.059925 19 0.051935 11 0.051906 22 0.051304 24 0.035193 9 0.031829 23 0.029465 17 0.01127 0 0.010181 4 0.007708 5 0.007578 16 0.004539 3 0.00336 6 0.00242 2 2.36E-4 7 2.02E-4 8 1.62E-4 14 0.136698 15 0.101959 13 0.100641 10 0.086612 18 0.083647 21 0.069201 20 0.062029 12 0.059925 19 0.051935 11 0.051906 22 0.051304 24 0.035193 9 0.031829 23 0.029465 17 0.01127 0 0.010181 4 0.007708 5 0.007578 16 0.004539 3 0.00336 6 0.00242 2 2.36E-4 7 2.02E-4 8 1.62E-4 14 0.08971344546052398 18 0.07643075418035726 13 0.07140242879666805 21 0.07139975107715876 10 0.06905896527875968 15 0.0628994101473763 19 0.060633179948156035 12 0.059164060895970975 22 0.058417518262445435 20 0.058103707191216845 11 0.05541896355449632 24 0.04090959838570614 23 0.03636687459114727 9 0.03477488663360601 17 0.028001037051619052 0 0.023531527560241242 16 0.021120908175054427 4 0.014241459068921943 5 0.013922846087015099 6 0.010012160615864383 3 0.009655144156883646 7 0.007771730833664116 8 0.007743654396300887 1 0.007549409722383175 2 0.007486684268382772 __DUMMY__ 0.004269893660080181 false 1.0 657 21 0.10512 22 0.080192 12 0.076834 11 0.070466 19 0.069625 18 0.06251 24 0.057776 20 0.050606 13 0.050229 23 0.048121 10 0.043562 14 0.043304 9 0.039351 17 0.032514 0 0.028738 4 0.020987 5 0.020374 16 0.019788 6 0.015322 3 0.014815 1 0.012733 7 0.012648 8 0.012421 2 0.011965 21 0.10512 22 0.080192 12 0.076834 11 0.070466 19 0.069625 18 0.06251 24 0.057776 20 0.050606 13 0.050229 23 0.048121 10 0.043562 14 0.043304 9 0.039351 17 0.032514 0 0.028738 4 0.020987 5 0.020374 16 0.019788 6 0.015322 3 0.014815 1 0.012733 7 0.012648 8 0.012421 2 0.011965 21 0.08939861190021976 22 0.0733385183818537 19 0.06808178362108423 12 0.06779900204127667 11 0.06565191519866777 18 0.06471987991528177 24 0.05122006792657769 20 0.050152575854869826 10 0.04729296962330031 13 0.04618124449566231 23 0.04527508390111144 14 0.04207334068232735 9 0.03925144341893256 17 0.038720877320920055 0 0.03392640762149809 16 0.028061363400215613 4 0.02163844305654691 5 0.021087019934879287 6 0.017340307411888717 3 0.016009380530328344 7 0.014764717781073284 1 0.014676276789349008 8 0.014632673545545405 2 0.014124391211665652 15 0.010167593998790588 __DUMMY__ 0.0044141104361338146 false 1.0 899 21 0.07617033950446929 22 0.06746578158842394 18 0.06657200684527528 19 0.06621245271149227 11 0.06301820503217606 12 0.061402966965214384 10 0.051387991143004526 20 0.04830225981348881 13 0.0444758542486258 17 0.04431215378045137 24 0.04377452758074017 23 0.04148589688200558 14 0.041417780936851584 0 0.039549583223825964 9 0.03888245079548337 16 0.03515498487361041 4 0.021165326120159103 5 0.02067240181979629 6 0.01822594880862179 15 0.0181266635237332 3 0.015739014636653656 7 0.015514421425866115 8 0.015473742492740411 __DUMMY__ 0.015291037342610184 1 0.015277956253017118 2 0.01492825165166325 false 0.0 415 15 0.160502 14 0.116648 18 0.077438 20 0.067934 10 0.066303 19 0.049058 13 0.046535 16 0.044715 17 0.040083 24 0.037243 23 0.034321 9 0.032991 22 0.028663 3 0.021787 8 0.020167 4 0.019981 5 0.019906 7 0.019734 1 0.0196 2 0.019514 6 0.017934 21 0.013955 0 0.013465 11 0.011527 15 0.160502 14 0.116648 18 0.077438 20 0.067934 10 0.066303 19 0.049058 13 0.046535 16 0.044715 17 0.040083 24 0.037243 23 0.034321 9 0.032991 22 0.028663 3 0.021787 8 0.020167 4 0.019981 5 0.019906 7 0.019734 1 0.0196 2 0.019514 6 0.017934 21 0.013955 0 0.013465 11 0.011527 15 0.10146218920564888 14 0.08427810780873969 18 0.0754654711274426 20 0.0638901263921352 10 0.06082659729671517 19 0.05901311866080091 13 0.044290969668176014 22 0.04374791685172071 17 0.04278348084278758 16 0.04272438874581845 24 0.04124340272005429 21 0.03862111234878286 23 0.03810025922251853 9 0.03479928483632956 11 0.030827003678397958 12 0.02491465680153558 0 0.02364644219202197 4 0.01986089032753807 5 0.01957184145184431 3 0.018884745830139566 8 0.017714889635619346 7 0.017495516876880193 6 0.017386056536802114 1 0.017297916903484492 2 0.01708601100808908 __DUMMY__ 0.004067603029976698 false 1.0 416 14 0.141293 15 0.123558 18 0.088441 10 0.08721 13 0.074751 20 0.071279 21 0.060841 19 0.056781 22 0.054158 24 0.045671 11 0.039005 9 0.036933 12 0.031177 23 0.030755 4 0.010412 5 0.010075 17 0.009654 3 0.009583 16 0.003388 8 0.003224 7 0.003174 2 0.003069 1 0.003055 6 0.002513 14 0.141293 15 0.123558 18 0.088441 10 0.08721 13 0.074751 20 0.071279 21 0.060841 19 0.056781 22 0.054158 24 0.045671 11 0.039005 9 0.036933 12 0.031177 23 0.030755 4 0.010412 5 0.010075 17 0.009654 3 0.009583 16 0.003388 8 0.003224 7 0.003174 2 0.003069 1 0.003055 6 0.002513 14 0.09282341879365319 18 0.08035686099504438 15 0.07723507640375628 10 0.06992959254464272 20 0.06554344665906114 21 0.06499857292263249 19 0.06455822291462666 22 0.0584664030174751 13 0.05690525372190788 24 0.046918887365230685 11 0.046737734332138556 12 0.042465815650169096 23 0.037491364055375904 9 0.036649244443771024 17 0.02752802031330802 16 0.022146951907064984 0 0.01729222492543384 4 0.015150566324598599 5 0.014735135287998878 3 0.0127156350176202 6 0.00954321339942679 8 0.009030441313915696 7 0.009008913179662613 1 0.008814774139964116 2 0.008659940369291706 __DUMMY__ 0.004294290002229551 false 1.0 658 21 0.081132 22 0.069342 12 0.061968 11 0.060737 18 0.054037 9 0.05082 10 0.05029 13 0.049789 23 0.0439 14 0.043875 24 0.041852 19 0.041797 4 0.037148 5 0.036657 0 0.033514 6 0.032555 3 0.0314 20 0.030084 1 0.029859 8 0.029785 7 0.029588 2 0.029584 17 0.025199 15 0.00509 21 0.081132 22 0.069342 12 0.061968 11 0.060737 18 0.054037 9 0.05082 10 0.05029 13 0.049789 23 0.0439 14 0.043875 24 0.041852 19 0.041797 4 0.037148 5 0.036657 0 0.033514 6 0.032555 3 0.0314 20 0.030084 1 0.029859 8 0.029785 7 0.029588 2 0.029584 17 0.025199 15 0.00509 21 0.07750225921914508 22 0.06789544270720552 11 0.06081021100388294 12 0.060546100070621965 18 0.06002175530448124 19 0.053612412819309306 10 0.050388654275153384 13 0.046235376647819314 9 0.04518784316283669 23 0.04308980158588382 24 0.04289701197668495 14 0.042181320004047757 20 0.039174970389906597 0 0.03657777144726707 17 0.03510189204691652 4 0.029974901061447404 5 0.029482819020683552 6 0.026289235491592417 3 0.024506923696989313 8 0.023607350571534562 1 0.02354723001818303 7 0.023541444948891935 2 0.02321805549305555 16 0.01799134018427106 15 0.012307369111773485 __DUMMY__ 0.00431050774041561 false 1.0 659 21 0.08156 22 0.068745 12 0.06172 11 0.060616 18 0.053825 9 0.051043 10 0.050888 13 0.049484 23 0.043815 14 0.043663 24 0.042115 19 0.041584 4 0.036705 5 0.036472 0 0.033433 6 0.032338 3 0.031792 1 0.030127 20 0.030007 8 0.030006 2 0.029985 7 0.029898 17 0.025065 15 0.005115 21 0.08156 22 0.068745 12 0.06172 11 0.060616 18 0.053825 9 0.051043 10 0.050888 13 0.049484 23 0.043815 14 0.043663 24 0.042115 19 0.041584 4 0.036705 5 0.036472 0 0.033433 6 0.032338 3 0.031792 1 0.030127 20 0.030007 8 0.030006 2 0.029985 7 0.029898 17 0.025065 15 0.005115 21 0.0777027453506591 22 0.06761587508735246 11 0.06075357025499686 12 0.06042997992485449 18 0.05992249517955709 19 0.05351268135189525 10 0.050668745633000924 13 0.046092554377932846 9 0.04529230430977269 23 0.04305001280422352 24 0.04302020568008177 14 0.04208205152372106 20 0.03913892650064147 0 0.03653985297869285 17 0.035039150828238594 4 0.02976744015485904 5 0.029396189792943103 6 0.02618761786468641 3 0.0246905247422137 8 0.023710864929979314 7 0.023686641601775003 1 0.02367275636295758 2 0.02340587100125429 16 0.017991348610348516 15 0.012319083394159751 __DUMMY__ 0.004310509759201967 false 1.0 417 16 0.137014 17 0.121332 15 0.103144 19 0.084362 18 0.083095 0 0.073361 20 0.058622 10 0.044621 22 0.040516 11 0.033409 14 0.032923 23 0.028527 9 0.027597 12 0.023201 24 0.0201 13 0.015906 6 0.012752 21 0.01266 8 0.00962 7 0.009384 1 0.009319 2 0.008134 4 0.005518 5 0.004882 16 0.137014 17 0.121332 15 0.103144 19 0.084362 18 0.083095 0 0.073361 20 0.058622 10 0.044621 22 0.040516 11 0.033409 14 0.032923 23 0.028527 9 0.027597 12 0.023201 24 0.0201 13 0.015906 6 0.012752 21 0.01266 8 0.00962 7 0.009384 1 0.009319 2 0.008134 4 0.005518 5 0.004882 16 0.09180199303163962 17 0.08800924029467995 18 0.07306122990031891 19 0.07237882389745323 15 0.06646992031346366 0 0.06000988538641014 20 0.05134053202464623 22 0.04967663465826608 10 0.04663217325514208 11 0.042269276001123846 9 0.035134100227108125 23 0.034035561654056634 21 0.03390488963586431 12 0.033412736023187645 14 0.032895615792280015 24 0.029093348902800364 13 0.02318177376177637 6 0.01987017423494352 8 0.017448472074131863 7 0.017290894260818267 1 0.017151854012161637 4 0.016775182492339537 2 0.016390774578159458 5 0.016215981943043488 3 0.012161429344107525 __DUMMY__ 0.003387502300077465 false 1.0 418 15 0.161702 16 0.111034 18 0.092733 17 0.092558 20 0.083206 19 0.082174 14 0.081053 10 0.058591 0 0.0403 24 0.037591 23 0.032021 22 0.031416 9 0.022305 13 0.019602 11 0.014153 8 0.006339 7 0.005901 6 0.005474 1 0.005311 2 0.004793 21 0.003596 4 0.002889 5 0.002797 3 0.002461 15 0.161702 16 0.111034 18 0.092733 17 0.092558 20 0.083206 19 0.082174 14 0.081053 10 0.058591 0 0.0403 24 0.037591 23 0.032021 22 0.031416 9 0.022305 13 0.019602 11 0.014153 8 0.006339 7 0.005901 6 0.005474 1 0.005311 2 0.004793 21 0.003596 4 0.002889 5 0.002797 3 0.002461 15 0.09630525000454986 18 0.08062720634533728 16 0.07541592358788775 19 0.07422747869446461 17 0.06909859161458906 20 0.06876252685100016 14 0.06278210011139415 10 0.05525566428143189 22 0.045636522877004156 24 0.04081064447113656 0 0.038703516342888704 23 0.03736803118418503 21 0.03462796273253167 11 0.03377850053008975 13 0.031026977960276873 9 0.029908472620513486 12 0.027101513783227508 6 0.012702446844237927 4 0.012655083181094835 5 0.01236269362043888 8 0.012122433959379578 7 0.011897373880728642 1 0.011504061495964404 2 0.01109357821351688 3 0.010310480238804223 __DUMMY__ 0.00391496457332592 false 1.0 419 16 0.137498 17 0.120608 15 0.103699 19 0.084769 18 0.081369 0 0.072535 20 0.058577 10 0.045763 22 0.040161 11 0.033652 14 0.033558 9 0.0278 23 0.02774 12 0.023303 24 0.02021 13 0.015323 6 0.013522 21 0.011473 8 0.010035 7 0.010003 1 0.008846 2 0.008187 4 0.00615 5 0.005219 16 0.137498 17 0.120608 15 0.103699 19 0.084769 18 0.081369 0 0.072535 20 0.058577 10 0.045763 22 0.040161 11 0.033652 14 0.033558 9 0.0278 23 0.02774 12 0.023303 24 0.02021 13 0.015323 6 0.013522 21 0.011473 8 0.010035 7 0.010003 1 0.008846 2 0.008187 4 0.00615 5 0.005219 16 0.09202419137822947 17 0.08767675748264789 19 0.07256567471952954 18 0.07226866101663772 15 0.06672473168751936 0 0.059630579623175514 20 0.05131984559399865 22 0.04951360486990868 10 0.04715652922030007 11 0.042380836016598755 9 0.03522729653542548 23 0.03367417562643406 12 0.03345955648870316 21 0.033359833833753745 14 0.033187176549700964 24 0.02914384474835847 13 0.022914064333526885 6 0.02022372954245633 8 0.017639021515519538 7 0.017575115390151184 4 0.01706537312809509 1 0.016934656557182605 2 0.01641510330500216 5 0.01637071633263389 3 0.012161423759888237 __DUMMY__ 0.003387500744622498 false 1.0 660 16 0.108125 19 0.097167 17 0.09206 20 0.073343 18 0.067943 24 0.057485 0 0.057347 21 0.056536 22 0.056136 12 0.055068 11 0.051885 23 0.048595 15 0.02756 10 0.026593 9 0.021748 6 0.014129 4 0.012441 5 0.011847 8 0.011773 7 0.011568 1 0.01112 2 0.011043 13 0.010382 3 0.008105 16 0.108125 19 0.097167 17 0.09206 20 0.073343 18 0.067943 24 0.057485 0 0.057347 21 0.056536 22 0.056136 12 0.055068 11 0.051885 23 0.048595 15 0.02756 10 0.026593 9 0.021748 6 0.014129 4 0.012441 5 0.011847 8 0.011773 7 0.011568 1 0.01112 2 0.011043 13 0.010382 3 0.008105 19 0.08225802155800287 16 0.07313585438032622 17 0.06903656722470114 18 0.06750711771450559 21 0.06467644290802992 20 0.06176868376562501 22 0.061073788187229056 12 0.05651933393080165 11 0.05596761869711507 24 0.05097236358813724 0 0.04845196945492127 23 0.04543986412196764 10 0.038748450633121406 9 0.030411684893339386 13 0.025785753060147285 15 0.024320089027120694 14 0.020121332346272416 4 0.017236743093863416 5 0.01669825168889188 6 0.01666932596237021 8 0.014288163584701016 7 0.014205054202257908 1 0.013868843894802323 2 0.01364557037994372 3 0.012614351305968797 __DUMMY__ 0.004578760395836908 false 1.0 661 17 0.071437 0 0.064727 22 0.058179 9 0.057208 16 0.056077 18 0.053656 19 0.048254 6 0.043853 8 0.043548 1 0.043396 7 0.043357 11 0.042697 4 0.042555 2 0.042393 5 0.042201 3 0.040803 10 0.040801 21 0.033534 23 0.033036 24 0.028668 20 0.024949 15 0.022435 12 0.017128 14 0.005108 17 0.071437 0 0.064727 22 0.058179 9 0.057208 16 0.056077 18 0.053656 19 0.048254 6 0.043853 8 0.043548 1 0.043396 7 0.043357 11 0.042697 4 0.042555 2 0.042393 5 0.042201 3 0.040803 10 0.040801 21 0.033534 23 0.033036 24 0.028668 20 0.024949 15 0.022435 12 0.017128 14 0.005108 17 0.06333875757293715 22 0.0628256343406036 0 0.05835663384563215 18 0.05802968463042807 9 0.05379206973952458 19 0.052767805677250895 11 0.05003259833325436 16 0.04800444537763763 21 0.0468336293230604 10 0.04582463481933673 4 0.0366044350970125 6 0.03650255376457941 5 0.03613420697393011 8 0.035385113489850496 7 0.0352731881311273 1 0.035165762083994044 23 0.03444947402624939 2 0.034432846081761725 3 0.033607275946374394 24 0.03136430630491007 20 0.029365560592575304 12 0.02907628450142307 15 0.0204264894761102 14 0.01637487556245151 13 0.012523677463115796 __DUMMY__ 0.0035080568448691576 false 1.0 662 0 0.086041 17 0.07887 9 0.065832 22 0.062367 11 0.058418 10 0.055517 18 0.055196 16 0.053023 6 0.045498 1 0.0429 8 0.042844 7 0.042822 2 0.04196 4 0.041897 5 0.041433 19 0.037457 3 0.037244 21 0.033344 12 0.024287 23 0.02163 13 0.012286 15 0.011678 14 0.004187 24 0.003267 0 0.086041 17 0.07887 9 0.065832 22 0.062367 11 0.058418 10 0.055517 18 0.055196 16 0.053023 6 0.045498 1 0.0429 8 0.042844 7 0.042822 2 0.04196 4 0.041897 5 0.041433 19 0.037457 3 0.037244 21 0.033344 12 0.024287 23 0.02163 13 0.012286 15 0.011678 14 0.004187 24 0.003267 0 0.06980708467381407 17 0.06707285745506447 22 0.064475627801543 9 0.059204238213639834 18 0.05743197942435878 11 0.05718345424234428 10 0.052698421941232455 16 0.045672459290763585 19 0.04535430408433963 21 0.045300317480641596 6 0.0390120402253905 4 0.03781062524279306 5 0.03729522930288746 8 0.03676876272952087 7 0.03673934574776067 1 0.03666215425560909 2 0.035948926028741474 3 0.03345677072689052 12 0.03131085484290464 23 0.028476008331314733 13 0.017658356067538992 24 0.01764164312441469 20 0.014859393691156603 14 0.014601124507426932 15 0.014213439780907361 __DUMMY__ 0.003344580787000858 false 1.0 420 16 0.101616 17 0.094059 0 0.067729 19 0.062665 18 0.051077 15 0.048399 20 0.043171 22 0.040531 23 0.039825 6 0.037382 8 0.03634 9 0.035998 7 0.035963 1 0.035948 2 0.0356 24 0.034392 11 0.034309 4 0.032326 5 0.031854 3 0.03039 10 0.027038 12 0.02359 21 0.018749 13 0.001048 16 0.101616 17 0.094059 0 0.067729 19 0.062665 18 0.051077 15 0.048399 20 0.043171 22 0.040531 23 0.039825 6 0.037382 8 0.03634 9 0.035998 7 0.035963 1 0.035948 2 0.0356 24 0.034392 11 0.034309 4 0.032326 5 0.031854 3 0.03039 10 0.027038 12 0.02359 21 0.018749 13 0.001048 17 0.07652819872593233 16 0.076270799708374 19 0.061811765131628955 0 0.05878876373835501 18 0.057572221478476356 22 0.04974353021589402 20 0.04281256234751358 11 0.04272499633948266 15 0.04016305105772209 9 0.039686421608385196 23 0.0388676558107964 10 0.03809006142200487 21 0.03580982652783357 24 0.03484180821765259 12 0.03271913805099416 6 0.032067834728305586 8 0.03061590336471081 7 0.030388963817282812 1 0.030275953156745205 2 0.029892992820965213 4 0.029801877515641995 5 0.029315585911734856 3 0.026867199648628406 14 0.015851625990264285 13 0.014966808509787112 __DUMMY__ 0.0035244541548880115 false 1.0 663 16 0.104701 17 0.090871 19 0.077963 0 0.057153 22 0.056029 24 0.055607 20 0.052773 18 0.047861 21 0.046218 11 0.045973 23 0.045749 12 0.042465 15 0.032557 9 0.028598 6 0.027416 8 0.025564 1 0.025249 7 0.025229 2 0.02492 4 0.02474 5 0.024465 3 0.021354 10 0.012792 13 0.003753 16 0.104701 17 0.090871 19 0.077963 0 0.057153 22 0.056029 24 0.055607 20 0.052773 18 0.047861 21 0.046218 11 0.045973 23 0.045749 12 0.042465 15 0.032557 9 0.028598 6 0.027416 8 0.025564 1 0.025249 7 0.025229 2 0.02492 4 0.02474 5 0.024465 3 0.021354 10 0.012792 13 0.003753 16 0.07540424755644864 17 0.0743563627067661 19 0.06823610531048666 22 0.0594293865489169 18 0.054873430511541296 0 0.05459571926046945 21 0.05099140856690753 11 0.05009259729319703 24 0.04502376373515768 20 0.044886876066255396 12 0.041928026318168006 23 0.04170457634087123 9 0.037839406241155046 10 0.030744059063276374 6 0.02840331090200572 4 0.027474277719619244 15 0.02727342918749074 5 0.027054883216452028 8 0.026513748208185896 7 0.026326965109671117 1 0.026223363750689076 2 0.025818105508235274 3 0.023719564095838322 13 0.014540088417036892 14 0.013008172225450169 __DUMMY__ 0.003538126139708166 false 1.0 421 17 0.086271 16 0.082974 0 0.070558 19 0.057562 22 0.052132 18 0.051647 9 0.045887 11 0.044885 6 0.038643 8 0.036879 7 0.0367 1 0.03665 2 0.036296 4 0.034722 5 0.034424 23 0.034223 10 0.034072 3 0.031783 21 0.031559 20 0.030877 12 0.030759 24 0.027673 15 0.025712 13 0.007113 17 0.086271 16 0.082974 0 0.070558 19 0.057562 22 0.052132 18 0.051647 9 0.045887 11 0.044885 6 0.038643 8 0.036879 7 0.0367 1 0.03665 2 0.036296 4 0.034722 5 0.034424 23 0.034223 10 0.034072 3 0.031783 21 0.031559 20 0.030877 12 0.030759 24 0.027673 15 0.025712 13 0.007113 17 0.0736557991734297 16 0.0644242009198289 0 0.06401216055620898 22 0.058310194601519545 19 0.0559526879316083 18 0.055801396324038154 11 0.050003866416927716 9 0.048734000025273706 21 0.04225625030100473 10 0.04162705382372059 6 0.0356202944328952 23 0.0343744793641937 12 0.033919888631170944 4 0.033810380913638534 8 0.033754749541446034 7 0.033634546839096675 1 0.0334995275737387 5 0.033374238317340585 2 0.033055517151968083 3 0.030253068045937713 20 0.03016753370511244 24 0.028734066202201303 15 0.022569329287170172 13 0.014186342722564362 14 0.011011550490429867 __DUMMY__ 0.0032568767075354748 false 1.0 664 19 0.096025 20 0.092183 21 0.089308 12 0.081017 18 0.07667 24 0.071008 22 0.060126 11 0.056791 23 0.054558 13 0.053667 16 0.053139 14 0.047567 10 0.043375 17 0.041901 15 0.025357 0 0.020946 9 0.017753 4 0.006866 5 0.006108 3 0.00282 6 0.002052 7 3.74E-4 8 3.58E-4 1 3.3E-5 19 0.096025 20 0.092183 21 0.089308 12 0.081017 18 0.07667 24 0.071008 22 0.060126 11 0.056791 23 0.054558 13 0.053667 16 0.053139 14 0.047567 10 0.043375 17 0.041901 15 0.025357 0 0.020946 9 0.017753 4 0.006866 5 0.006108 3 0.00282 6 0.002052 7 3.74E-4 8 3.58E-4 1 3.3E-5 21 0.08234199672313443 19 0.0818372498796764 18 0.07226734175122454 20 0.07140844947701029 12 0.07010342799161505 22 0.06381507075675126 11 0.05909265157844823 24 0.058221517751741315 23 0.04850434953928608 13 0.04804964928898879 10 0.04745791033357313 14 0.044834893370418155 16 0.04445470533222144 17 0.04311625589323695 0 0.029577257273560215 9 0.028382837946885838 15 0.023038157721258386 4 0.014141539887868424 5 0.013521192670215811 6 0.01014799904163295 3 0.009567453822024743 7 0.00808397031980011 8 0.008051877393483104 1 0.007789924243347337 2 0.007591477835526514 __DUMMY__ 0.004600842177070437 false 1.0 422 15 0.160664 14 0.116149 18 0.077175 20 0.067376 10 0.066126 19 0.048898 13 0.046275 16 0.044585 17 0.040094 24 0.036778 23 0.034224 9 0.033648 22 0.02826 3 0.022117 5 0.020871 8 0.020287 4 0.02024 1 0.020137 7 0.019889 2 0.019858 6 0.018269 21 0.013716 0 0.013346 11 0.011017 15 0.160664 14 0.116149 18 0.077175 20 0.067376 10 0.066126 19 0.048898 13 0.046275 16 0.044585 17 0.040094 24 0.036778 23 0.034224 9 0.033648 22 0.02826 3 0.022117 5 0.020871 8 0.020287 4 0.02024 1 0.020137 7 0.019889 2 0.019858 6 0.018269 21 0.013716 0 0.013346 11 0.011017 15 0.10153646331330844 14 0.08405023202210413 18 0.07534543920673531 20 0.06363523801251542 10 0.06074583829717748 19 0.05894012538177345 13 0.04417223765841034 22 0.04356382532669814 17 0.04278860617348021 16 0.04266506976896518 24 0.04103096831771229 21 0.03851196545019661 23 0.03805601235702465 9 0.03509964678236955 11 0.030593978182837316 12 0.024914713737863272 0 0.023592107176765617 5 0.020012940266903655 4 0.019979311889751668 3 0.019035615773301838 8 0.01776977622290778 7 0.017566399743255225 1 0.01754339275018745 6 0.017539208309422332 2 0.017243275552848446 __DUMMY__ 0.004067612325484193 false 1.0 423 15 0.157622 14 0.115275 18 0.076197 20 0.067967 10 0.066385 19 0.048684 13 0.045915 16 0.044728 17 0.038647 24 0.035235 9 0.034448 23 0.034255 22 0.028699 3 0.022187 4 0.021598 7 0.021486 5 0.021212 8 0.020942 1 0.020248 2 0.019952 6 0.019926 21 0.014384 0 0.01312 11 0.010886 15 0.157622 14 0.115275 18 0.076197 20 0.067967 10 0.066385 19 0.048684 13 0.045915 16 0.044728 17 0.038647 24 0.035235 9 0.034448 23 0.034255 22 0.028699 3 0.022187 4 0.021598 7 0.021486 5 0.021212 8 0.020942 1 0.020248 2 0.019952 6 0.019926 21 0.014384 0 0.01312 11 0.010886 15 0.1001461603422087 14 0.08365080779541864 18 0.07489847768943113 20 0.06390538428400698 10 0.060864242290259975 19 0.058842343389787395 13 0.044007719459396945 22 0.04376449066071421 16 0.042730447573196446 17 0.0421272728205858 24 0.04032575725802569 21 0.03881729317205447 23 0.038070198333975694 9 0.03546530368688364 11 0.03053411847466559 12 0.024914725125160034 0 0.02348882441599701 4 0.020599996384872834 5 0.02016880383134495 3 0.019067618048991524 6 0.018296549961532314 7 0.018296318343129375 8 0.01806915280051524 1 0.017594133438041858 2 0.017286246235212584 __DUMMY__ 0.0040676141845907895 false 1.0 665 17 0.093637 16 0.091672 0 0.079427 19 0.069106 18 0.060589 11 0.059987 22 0.055628 12 0.046803 21 0.042322 10 0.042164 9 0.039715 20 0.033831 23 0.032928 6 0.027855 8 0.024524 24 0.024519 1 0.024369 7 0.024292 2 0.023758 4 0.023306 5 0.023029 15 0.021181 3 0.017928 13 0.01743 17 0.093637 16 0.091672 0 0.079427 19 0.069106 18 0.060589 11 0.059987 22 0.055628 12 0.046803 21 0.042322 10 0.042164 9 0.039715 20 0.033831 23 0.032928 6 0.027855 8 0.024524 24 0.024519 1 0.024369 7 0.024292 2 0.023758 4 0.023306 5 0.023029 15 0.021181 3 0.017928 13 0.01743 17 0.0712669343632623 19 0.06597989257458862 16 0.06488496564909634 18 0.06264366363566695 0 0.061679827215733396 22 0.06102720874902061 11 0.059459966905094745 21 0.055327086918303806 12 0.049452237339504254 10 0.04628820985971212 9 0.041533262270756405 20 0.038779496975860216 23 0.036518647716424484 24 0.032611793920374624 13 0.02652234704468902 6 0.025619863915345303 4 0.024512392065195263 5 0.024110718234104423 8 0.02282415381237122 7 0.022719083390915103 1 0.02263810357206526 2 0.022130577819456244 15 0.020265217177549606 3 0.01947329347209771 14 0.0177020679361638 __DUMMY__ 0.004028987466648142 false 1.0 424 16 0.115156 17 0.09539 19 0.084947 20 0.068272 18 0.060394 0 0.058786 12 0.049513 24 0.047896 23 0.047765 22 0.041191 11 0.038636 15 0.038477 21 0.035164 6 0.023687 10 0.021941 8 0.021653 7 0.021125 1 0.020903 9 0.020735 2 0.020412 4 0.019166 5 0.018487 13 0.015202 3 0.015103 16 0.115156 17 0.09539 19 0.084947 20 0.068272 18 0.060394 0 0.058786 12 0.049513 24 0.047896 23 0.047765 22 0.041191 11 0.038636 15 0.038477 21 0.035164 6 0.023687 10 0.021941 8 0.021653 7 0.021125 1 0.020903 9 0.020735 2 0.020412 4 0.019166 5 0.018487 13 0.015202 3 0.015103 16 0.08087240226591713 19 0.07574879355941225 17 0.0741507421518507 18 0.06332778343946667 20 0.059414748029862574 22 0.05133469163297942 0 0.05068968685856504 12 0.04857199371688901 21 0.04831142638607807 11 0.04567684691993517 24 0.04566584420955112 23 0.04491343476519543 10 0.03502300126969022 15 0.03306422131488061 9 0.030417604299605362 6 0.023345233037931727 13 0.02312205442764081 4 0.022040495050253454 5 0.02145091418216412 8 0.021440691601226705 7 0.021170326831816102 1 0.020945467960830886 2 0.0205128796592964 3 0.018049525552533058 14 0.01693933232203631 __DUMMY__ 0.003799858554391426 false 1.0 666 19 0.107293 18 0.079682 20 0.078745 16 0.07796 21 0.076269 22 0.066209 17 0.06342 11 0.062773 12 0.060631 24 0.055437 10 0.052308 23 0.046351 0 0.042179 14 0.031691 13 0.029556 9 0.026992 15 0.026389 4 0.005112 5 0.004247 3 0.00199 6 0.001776 7 0.00109 1 0.001004 8 8.97E-4 19 0.107293 18 0.079682 20 0.078745 16 0.07796 21 0.076269 22 0.066209 17 0.06342 11 0.062773 12 0.060631 24 0.055437 10 0.052308 23 0.046351 0 0.042179 14 0.031691 13 0.029556 9 0.026992 15 0.026389 4 0.005112 5 0.004247 3 0.00199 6 0.001776 7 0.00109 1 0.001004 8 8.97E-4 19 0.08752585746260066 21 0.07589355153235593 18 0.07338789098544937 22 0.06666816597951569 20 0.06506208822708005 11 0.06188451381963989 12 0.06018656852564398 16 0.05715620729729237 17 0.0538815061807717 10 0.051160854310492554 24 0.0510071496057337 23 0.04484781542473005 0 0.03995103033280226 14 0.03634466415936957 13 0.035793292195053755 9 0.03261249872067655 15 0.023191328700478506 4 0.013393204744804056 5 0.012726427296634901 6 0.010150582376652282 3 0.00929634830367756 7 0.008575055309295013 8 0.008457055434835326 1 0.00839786854891554 2 0.00774576226556218 __DUMMY__ 0.004702712259936425 false 1.0 425 18 0.099531 19 0.086432 10 0.081084 20 0.079196 14 0.065073 21 0.06164 22 0.054786 12 0.054728 11 0.05472 13 0.054663 15 0.053721 16 0.049662 17 0.049489 24 0.038114 0 0.037818 23 0.033709 9 0.032869 4 0.004329 5 0.004147 6 0.001667 3 0.001407 7 5.16E-4 8 3.98E-4 1 3.03E-4 18 0.099531 19 0.086432 10 0.081084 20 0.079196 14 0.065073 21 0.06164 22 0.054786 12 0.054728 11 0.05472 13 0.054663 15 0.053721 16 0.049662 17 0.049489 24 0.038114 0 0.037818 23 0.033709 9 0.032869 4 0.004329 5 0.004147 6 0.001667 3 0.001407 7 5.16E-4 8 3.98E-4 1 3.03E-4 18 0.08590936863864254 19 0.077511028830692 10 0.06857078713910426 20 0.06644703429243261 21 0.06545629416898437 22 0.06003664216780777 11 0.05574045973400148 14 0.055342652113722184 12 0.05311448217290626 17 0.047372962421186354 13 0.04676445412069997 16 0.043196821763195156 15 0.0416988333600084 24 0.04104565210395787 0 0.037719301512538626 23 0.03727967951091704 9 0.036656750990555584 4 0.01270049443879138 5 0.012354444166870874 6 0.009704634814157516 3 0.009143880354973344 7 0.008214763730127268 8 0.008155234297350367 1 0.007984998430063738 2 0.007667270942162863 __DUMMY__ 0.004211073784150241 false 1.0 667 19 0.106929 18 0.07927 20 0.07846 16 0.078047 21 0.07639 22 0.066462 17 0.063106 11 0.063079 12 0.060911 24 0.055857 10 0.052205 23 0.046633 0 0.042231 14 0.032088 13 0.029332 9 0.026805 15 0.026363 4 0.005155 5 0.004475 3 0.001994 6 0.001683 8 0.001005 7 8.28E-4 1 6.93E-4 19 0.106929 18 0.07927 20 0.07846 16 0.078047 21 0.07639 22 0.066462 17 0.063106 11 0.063079 12 0.060911 24 0.055857 10 0.052205 23 0.046633 0 0.042231 14 0.032088 13 0.029332 9 0.026805 15 0.026363 4 0.005155 5 0.004475 3 0.001994 6 0.001683 8 0.001005 7 8.28E-4 1 6.93E-4 19 0.0873555217226685 21 0.07595017412722352 18 0.07319509338970197 22 0.06678655867787515 20 0.06492872095817713 11 0.06202770815046201 12 0.060317596017899516 16 0.057196919410957496 17 0.053734568207313725 24 0.051203690844116995 10 0.05111265491155571 23 0.044979778827644555 0 0.03997536400993544 14 0.03653044242517473 13 0.03568847020124935 9 0.032524991074063044 15 0.023179161861911927 4 0.01341332682397187 5 0.012833121111757256 6 0.010107062531010274 3 0.009298220124995498 8 0.0085075946104196 7 0.008452451012970204 1 0.008252334441446017 2 0.007745762265562183 __DUMMY__ 0.004702712259936427 false 1.0 668 19 0.107263 18 0.079188 20 0.078435 16 0.077968 21 0.076248 22 0.066545 11 0.06346 17 0.063402 12 0.060958 24 0.05664 10 0.051929 23 0.045831 0 0.042324 14 0.032179 13 0.029346 9 0.026638 15 0.026312 4 0.005111 5 0.004736 3 0.002007 6 0.001583 8 8.07E-4 1 5.65E-4 7 5.27E-4 19 0.107263 18 0.079188 20 0.078435 16 0.077968 21 0.076248 22 0.066545 11 0.06346 17 0.063402 12 0.060958 24 0.05664 10 0.051929 23 0.045831 0 0.042324 14 0.032179 13 0.029346 9 0.026638 15 0.026312 4 0.005111 5 0.004736 3 0.002007 6 0.001583 8 8.07E-4 1 5.65E-4 7 5.27E-4 19 0.08751177785111332 21 0.07588368896026011 18 0.07315668681862281 22 0.06682536769893536 20 0.06491699169668778 11 0.062205970021380216 12 0.060339561682165796 16 0.0571599241916371 17 0.053873057774656494 24 0.0515700757346112 10 0.0509834753826291 23 0.044604457780504626 0 0.04001886512853623 14 0.036573009245623185 13 0.035695004872194354 9 0.032446827350373436 15 0.023155285304469073 4 0.01339273052227495 5 0.012955251390273648 6 0.010060262290308517 3 0.009304299190282396 8 0.008414935517367841 7 0.008311592569341478 1 0.008192432325579695 2 0.007745758640893145 __DUMMY__ 0.0047027100592781906 false 1.0 426 16 0.135461 17 0.121838 15 0.101745 19 0.084553 18 0.081824 0 0.07191 20 0.058215 10 0.043733 22 0.039339 11 0.034203 14 0.032966 9 0.027849 23 0.02784 12 0.023398 24 0.021354 13 0.016288 6 0.013336 21 0.013293 1 0.010906 8 0.010332 7 0.010197 2 0.008074 4 0.006389 5 0.004958 16 0.135461 17 0.121838 15 0.101745 19 0.084553 18 0.081824 0 0.07191 20 0.058215 10 0.043733 22 0.039339 11 0.034203 14 0.032966 9 0.027849 23 0.02784 12 0.023398 24 0.021354 13 0.016288 6 0.013336 21 0.013293 1 0.010906 8 0.010332 7 0.010197 2 0.008074 4 0.006389 5 0.004958 16 0.09108881092042581 17 0.08824150170544737 18 0.07247755217351923 19 0.0724664597341487 15 0.06582747431973603 0 0.05934356825772764 20 0.05115360090535234 22 0.04913614079796612 10 0.046224383585204844 11 0.04263382163724031 9 0.035249779904347314 21 0.034195515878968054 23 0.0337200776016537 12 0.0335031626905935 14 0.032915330080773776 24 0.029669126851688734 13 0.02335715708421931 6 0.020138313822416903 1 0.017880547994509104 8 0.017775388205621297 7 0.017664187148932656 4 0.01717510796782933 2 0.016363209063189183 5 0.01625086430364575 3 0.01216141817567408 __DUMMY__ 0.0033874991891689596 false 1.0 427 14 0.104329 10 0.09909 18 0.096593 15 0.080149 19 0.065838 22 0.065615 13 0.064876 21 0.064079 11 0.061842 20 0.054944 9 0.046865 12 0.040207 0 0.03613 17 0.035983 24 0.025707 16 0.022253 23 0.017818 4 0.006419 5 0.005591 3 0.003101 6 0.001709 7 4.59E-4 8 3.74E-4 1 2.9E-5 14 0.104329 10 0.09909 18 0.096593 15 0.080149 19 0.065838 22 0.065615 13 0.064876 21 0.064079 11 0.061842 20 0.054944 9 0.046865 12 0.040207 0 0.03613 17 0.035983 24 0.025707 16 0.022253 23 0.017818 4 0.006419 5 0.005591 3 0.003101 6 0.001709 7 4.59E-4 8 3.74E-4 1 2.9E-5 18 0.08327843807746378 10 0.07602589839418651 14 0.07269911302474054 21 0.06781648842192728 19 0.06735340561401508 22 0.06611545294616583 11 0.060270497994012955 20 0.053612713043443797 15 0.052080367907852844 13 0.05138499351829313 12 0.04707138194294942 9 0.04350903814227599 17 0.041067062683378425 0 0.03744735777138294 24 0.035333620541295616 16 0.030017091509938528 23 0.029817261948276573 4 0.014056427516738081 5 0.013403852261484453 3 0.010177950558623243 6 0.01010174259012657 7 0.008482367522005723 8 0.008430668411573835 1 0.008147761369104918 2 0.007946166282175631 __DUMMY__ 0.004352880006568108 false 1.0 669 17 0.101861 16 0.099045 0 0.086089 18 0.080713 19 0.078825 11 0.063231 12 0.057262 10 0.054705 22 0.054486 20 0.042977 21 0.04082 9 0.035099 23 0.034518 13 0.027885 15 0.020551 6 0.019461 24 0.014614 8 0.014335 7 0.01407 4 0.013876 1 0.013626 2 0.013465 5 0.01297 3 0.005514 17 0.101861 16 0.099045 0 0.086089 18 0.080713 19 0.078825 11 0.063231 12 0.057262 10 0.054705 22 0.054486 20 0.042977 21 0.04082 9 0.035099 23 0.034518 13 0.027885 15 0.020551 6 0.019461 24 0.014614 8 0.014335 7 0.01407 4 0.013876 1 0.013626 2 0.013465 5 0.01297 3 0.005514 17 0.07359019964110285 18 0.07336096083823485 19 0.07138678844698094 16 0.06732685979764866 0 0.06276687841231934 11 0.06027726318064452 22 0.06001880030311536 21 0.05511555353717608 12 0.05475197278127639 10 0.053001987937891494 20 0.04542284470177108 9 0.03853198466087467 23 0.03770977311613976 13 0.03284285851930407 24 0.02906879570713874 15 0.022118832296348773 6 0.020617080945056574 14 0.020347544564229006 4 0.01927835952339979 5 0.01858459169008484 8 0.017061608011315513 7 0.016941928637401096 1 0.016612400912609897 2 0.016327664715330644 3 0.012929050063001109 __DUMMY__ 0.004007417059603886 false 1.0 428 15 0.160973 14 0.116391 18 0.076582 20 0.067425 10 0.066295 19 0.048628 13 0.046107 16 0.04445 17 0.039701 24 0.036677 23 0.034263 9 0.033274 22 0.028629 3 0.022458 5 0.020582 8 0.020466 4 0.020394 7 0.020239 2 0.020201 1 0.020082 6 0.018423 21 0.013674 0 0.013219 11 0.010867 15 0.160973 14 0.116391 18 0.076582 20 0.067425 10 0.066295 19 0.048628 13 0.046107 16 0.04445 17 0.039701 24 0.036677 23 0.034263 9 0.033274 22 0.028629 3 0.022458 5 0.020582 8 0.020466 4 0.020394 7 0.020239 2 0.020201 1 0.020082 6 0.018423 21 0.013674 0 0.013219 11 0.010867 15 0.10167764555992154 14 0.08416079986659496 18 0.07507437372870973 20 0.06365760441032481 10 0.06082305209478141 19 0.058816694764967155 13 0.04409543295859049 22 0.04373245710933992 17 0.042608965707564124 16 0.04260334842977533 24 0.04098478744782746 21 0.03849275172056001 23 0.038073819939236656 9 0.03492869379323624 11 0.03052540660084879 12 0.02491470235057692 0 0.02353405096016541 4 0.02004968855982434 5 0.019880843479254194 3 0.01919146134809973 8 0.017851580169348617 7 0.01772635944549871 6 0.017609586094745954 1 0.017518246945671653 2 0.017400036048156493 __DUMMY__ 0.004067610466379295 false 1.0 429 15 0.122811 14 0.122106 20 0.089074 18 0.086718 10 0.072271 13 0.067377 19 0.067183 24 0.054102 21 0.051678 22 0.041968 23 0.039675 12 0.035039 16 0.028208 11 0.028027 9 0.025527 17 0.021705 3 0.008939 4 0.008793 5 0.008353 7 0.004675 8 0.004477 1 0.004155 2 0.003897 6 0.003241 15 0.122811 14 0.122106 20 0.089074 18 0.086718 10 0.072271 13 0.067377 19 0.067183 24 0.054102 21 0.051678 22 0.041968 23 0.039675 12 0.035039 16 0.028208 11 0.028027 9 0.025527 17 0.021705 3 0.008939 4 0.008793 5 0.008353 7 0.004675 8 0.004477 1 0.004155 2 0.003897 6 0.003241 14 0.08296981240337714 18 0.0787851765177237 15 0.07548128951515688 20 0.07309895797360985 19 0.069005313795112 10 0.062155350548246904 21 0.06124056050282724 13 0.05370565224032703 22 0.052994967744425005 24 0.050832985961757636 12 0.045094646364167455 11 0.04202091277896721 23 0.04168832756230531 16 0.03371686428135173 17 0.03336427449917724 9 0.0313793697425624 0 0.01771763866592284 4 0.014657395617723227 5 0.01418957341051957 3 0.012555140143600646 6 0.010227007592158945 7 0.009964832445608826 8 0.009871953832125137 1 0.009587012690842616 2 0.009296661479256606 __DUMMY__ 0.004398321691146794 false 1.0 670 21 0.103232 22 0.092668 11 0.088093 19 0.076978 12 0.067947 18 0.06732 10 0.053052 24 0.053004 17 0.046164 20 0.044404 9 0.044099 0 0.043923 14 0.039082 13 0.036379 23 0.034272 16 0.033957 4 0.01502 5 0.014609 6 0.009501 3 0.00936 7 0.007033 1 0.00683 8 0.006753 2 0.006322 21 0.103232 22 0.092668 11 0.088093 19 0.076978 12 0.067947 18 0.06732 10 0.053052 24 0.053004 17 0.046164 20 0.044404 9 0.044099 0 0.043923 14 0.039082 13 0.036379 23 0.034272 16 0.033957 4 0.01502 5 0.014609 6 0.009501 3 0.00936 7 0.007033 1 0.00683 8 0.006753 2 0.006322 21 0.08743314002098056 22 0.08002591696480009 11 0.07404360562973455 19 0.0710173158054776 18 0.0666362400014926 12 0.06126523252298737 10 0.0517326390086165 24 0.04814253496196196 17 0.046450893505341505 20 0.04551895435025712 9 0.04292903986532107 0 0.042603594347470616 14 0.03811291112469492 23 0.037997606705997874 13 0.036814946182536674 16 0.03524290573400828 4 0.019674168678229353 5 0.019202670749779497 6 0.015510779008911372 3 0.014422662075786179 7 0.013136668613287014 8 0.012983236001059177 1 0.012902631723479649 2 0.01245524433874755 15 0.009425750596244797 __DUMMY__ 0.00431871148279607 false 1.0 671 21 0.107465 22 0.090149 11 0.086973 19 0.085236 12 0.076171 18 0.072227 24 0.056689 20 0.05534 10 0.054076 17 0.045958 13 0.042728 14 0.041201 0 0.040756 9 0.038791 16 0.037595 23 0.036846 4 0.009766 5 0.00946 6 0.004221 3 0.003644 7 0.001501 1 0.001361 8 0.00122 2 6.27E-4 21 0.107465 22 0.090149 11 0.086973 19 0.085236 12 0.076171 18 0.072227 24 0.056689 20 0.05534 10 0.054076 17 0.045958 13 0.042728 14 0.041201 0 0.040756 9 0.038791 16 0.037595 23 0.036846 4 0.009766 5 0.00946 6 0.004221 3 0.003644 7 0.001501 1 0.001361 8 0.00122 2 6.27E-4 21 0.09057194822529879 22 0.07888065716293892 19 0.07581691344123773 11 0.07382766864085714 18 0.06939587644138183 12 0.06648320017182113 10 0.052226081236056855 20 0.05198562206425472 24 0.050752725942478844 17 0.045689508657459424 13 0.04099129426061021 0 0.04015586505703343 14 0.04007352602418301 23 0.039674729873754914 9 0.039571275097494495 16 0.03683301625366256 4 0.016458264318886563 5 0.01604174885959345 6 0.012161964899004256 3 0.010928396650410848 7 0.009632224202868979 15 0.009567550318380367 8 0.00947455938370368 1 0.009427805692011532 2 0.008886314471445321 __DUMMY__ 0.004491262653171007 false 1.0 430 14 0.104581 13 0.103038 10 0.098755 18 0.088554 12 0.072035 11 0.069944 21 0.066572 15 0.06402 22 0.053218 19 0.050923 0 0.043472 20 0.041911 9 0.040526 17 0.0314 23 0.019547 16 0.015881 24 0.008773 4 0.007374 5 0.00716 6 0.006087 1 0.00169 8 0.001658 7 0.001602 2 0.001282 14 0.104581 13 0.103038 10 0.098755 18 0.088554 12 0.072035 11 0.069944 21 0.066572 15 0.06402 22 0.053218 19 0.050923 0 0.043472 20 0.041911 9 0.040526 17 0.0314 23 0.019547 16 0.015881 24 0.008773 4 0.007374 5 0.00716 6 0.006087 1 0.00169 8 0.001658 7 0.001602 2 0.001282 18 0.07943531143751514 10 0.07765057971824961 14 0.07619926690707379 13 0.07522083490809628 21 0.06971982314551035 12 0.0654784392754748 11 0.06526840689060062 22 0.05933919286745981 19 0.05802606850323705 20 0.0456710419197766 15 0.044904091228711356 0 0.04136102106258878 9 0.04029032934171182 17 0.03754372961748032 23 0.029661728179605405 24 0.024914289822391637 16 0.02469464716195376 4 0.01403094606496203 5 0.013684787290825706 6 0.011943356255977098 8 0.008427635672702065 7 0.008404355268491396 1 0.008342223539783367 2 0.007981942263817075 3 0.007749964943550816 __DUMMY__ 0.004055986712453084 false 1.0 672 22 0.081244 9 0.07039 18 0.068111 0 0.066244 17 0.06275 11 0.058941 21 0.058011 10 0.057033 19 0.05304 4 0.03829 5 0.037519 6 0.036474 8 0.035534 7 0.03542 1 0.035145 3 0.035033 2 0.034483 16 0.030226 23 0.02666 24 0.024092 12 0.02311 20 0.018097 14 0.01058 13 0.003572 22 0.081244 9 0.07039 18 0.068111 0 0.066244 17 0.06275 11 0.058941 21 0.058011 10 0.057033 19 0.05304 4 0.03829 5 0.037519 6 0.036474 8 0.035534 7 0.03542 1 0.035145 3 0.035033 2 0.034483 16 0.030226 23 0.02666 24 0.024092 12 0.02311 20 0.018097 14 0.01058 13 0.003572 22 0.07471755001972838 18 0.06631351079668181 21 0.06314845014603583 11 0.0597362461655743 9 0.05790303616098271 19 0.057434138198869805 17 0.0562622603413206 0 0.0561051920669669 10 0.05426330357440209 12 0.036586625484108695 16 0.03377016080443013 23 0.03256515207126685 4 0.03232155238158873 5 0.03167101873284153 24 0.0316453115857498 6 0.030236240918111626 20 0.029476633617024454 8 0.028658990134894154 7 0.028610049910309732 3 0.028361180900491056 1 0.02835049798074949 2 0.02780655441027687 14 0.022433105752807835 13 0.018478154635422853 15 0.009112174202417991 __DUMMY__ 0.004032909006945758 false 1.0 673 21 0.115739 22 0.088295 19 0.087648 12 0.079115 24 0.077593 11 0.07316 20 0.070022 18 0.066731 14 0.055477 13 0.049503 23 0.047834 10 0.03776 17 0.031394 9 0.031133 16 0.028095 0 0.017791 15 0.013531 4 0.010219 5 0.009957 3 0.005595 6 0.002027 8 6.79E-4 1 4.14E-4 7 2.86E-4 21 0.115739 22 0.088295 19 0.087648 12 0.079115 24 0.077593 11 0.07316 20 0.070022 18 0.066731 14 0.055477 13 0.049503 23 0.047834 10 0.03776 17 0.031394 9 0.031133 16 0.028095 0 0.017791 15 0.013531 4 0.010219 5 0.009957 3 0.005595 6 0.002027 8 6.79E-4 1 4.14E-4 7 2.86E-4 21 0.0946765809283631 22 0.07721277477749028 19 0.07703893128501832 12 0.06921236598133629 18 0.067291747549408 11 0.06714956225895695 24 0.06049381757872228 20 0.059807398820452065 14 0.04869428078412292 13 0.04649663870816698 10 0.04510213264813943 23 0.04478847170767988 17 0.0382420896558539 9 0.035184606768205694 16 0.03216953944680688 0 0.02871119999093722 15 0.017250491581906214 4 0.015965864672469906 5 0.015578345992126623 3 0.011050057170709945 6 0.010457603509949285 8 0.00846991296178285 7 0.008305243791516712 1 0.00823567269256309 2 0.007857592245964334 __DUMMY__ 0.004557076491350893 false 1.0 431 16 0.09942 17 0.084442 19 0.06611 15 0.06207 20 0.057787 0 0.052116 24 0.049419 18 0.049263 23 0.048458 8 0.036377 6 0.035911 7 0.035764 1 0.035651 2 0.035524 22 0.035307 4 0.032426 3 0.032283 5 0.032252 9 0.02767 11 0.026197 12 0.020772 10 0.019645 21 0.017352 14 0.007785 16 0.09942 17 0.084442 19 0.06611 15 0.06207 20 0.057787 0 0.052116 24 0.049419 18 0.049263 23 0.048458 8 0.036377 6 0.035911 7 0.035764 1 0.035651 2 0.035524 22 0.035307 4 0.032426 3 0.032283 5 0.032252 9 0.02767 11 0.026197 12 0.020772 10 0.019645 21 0.017352 14 0.007785 16 0.07331441000927498 17 0.06884885828143573 19 0.06531793434441625 18 0.058901526186389344 20 0.05428696474973906 15 0.051057489139357475 0 0.04713107763979334 22 0.046733209732968274 24 0.04457128302218998 23 0.04401687253622267 11 0.03788733261979763 21 0.036818487969788864 10 0.035853346147649276 9 0.03386170539091087 12 0.03241891521882737 6 0.02899732657877548 8 0.028402945020329435 7 0.028077826676461675 4 0.028034831386030766 1 0.0279069484546754 5 0.027689801133981833 2 0.027652775383894303 3 0.026103787014328295 14 0.025082436040501768 13 0.017305595681889687 __DUMMY__ 0.003726313640370386 false 1.0 432 15 0.160334 14 0.116447 18 0.077616 20 0.067875 10 0.066414 19 0.048528 13 0.046253 16 0.045245 17 0.040489 24 0.036661 23 0.034815 9 0.032445 22 0.029141 3 0.021875 4 0.020159 5 0.020152 8 0.019988 2 0.019615 7 0.019556 1 0.019504 6 0.018067 0 0.014416 21 0.013709 11 0.010695 15 0.160334 14 0.116447 18 0.077616 20 0.067875 10 0.066414 19 0.048528 13 0.046253 16 0.045245 17 0.040489 24 0.036661 23 0.034815 9 0.032445 22 0.029141 3 0.021875 4 0.020159 5 0.020152 8 0.019988 2 0.019615 7 0.019556 1 0.019504 6 0.018067 0 0.014416 21 0.013709 11 0.010695 15 0.10138563652659364 14 0.0841864331810163 18 0.07554699863989058 20 0.06386330639606298 10 0.06087746894740133 19 0.058771016560305325 13 0.044162182539296026 22 0.043966487142139826 17 0.042969141266669154 16 0.04296672334239481 24 0.04097749336605885 21 0.03850876609411478 23 0.03832612942050485 9 0.03454981458716371 11 0.030446807803073163 12 0.02491471373786328 0 0.0240811516064167 4 0.019942290769376213 5 0.01968432069221288 3 0.018925009463044304 8 0.017633118013126777 6 0.01744688403391811 7 0.017414201803933906 1 0.017254079550216295 2 0.017132212191722077 __DUMMY__ 0.004067612325484193 false 1.0 674 21 0.082813 22 0.069472 12 0.061343 11 0.061085 18 0.055365 10 0.051617 9 0.051101 13 0.049995 23 0.044869 14 0.043436 19 0.041677 24 0.041476 4 0.03646 5 0.035764 0 0.034154 6 0.03226 3 0.03046 20 0.030401 7 0.029599 8 0.029456 1 0.029183 2 0.02863 17 0.024844 15 0.00454 21 0.082813 22 0.069472 12 0.061343 11 0.061085 18 0.055365 10 0.051617 9 0.051101 13 0.049995 23 0.044869 14 0.043436 19 0.041677 24 0.041476 4 0.03646 5 0.035764 0 0.034154 6 0.03226 3 0.03046 20 0.030401 7 0.029599 8 0.029456 1 0.029183 2 0.02863 17 0.024844 15 0.00454 21 0.07828961295627472 22 0.06795639062754158 11 0.06097325061538706 18 0.06064376831149385 12 0.060253443687369186 19 0.05355626212271401 10 0.051010189918061465 13 0.04633189819199921 9 0.04531948929729364 23 0.04354366433087787 24 0.04272095595917326 14 0.04197575783611488 20 0.03932347116652612 0 0.036877543918989515 17 0.03493566388787219 4 0.02965271056266017 5 0.029064618165585913 6 0.026151099535078316 3 0.024066706156264734 7 0.023546618750221595 8 0.02345328851054189 1 0.02323065359014987 2 0.022771279971728002 16 0.01799135703643388 15 0.012049793115656933 __DUMMY__ 0.004310511777990217 false 1.0 433 14 0.109401 18 0.099956 10 0.099898 15 0.091479 13 0.065255 19 0.064781 22 0.061903 20 0.059655 21 0.059449 11 0.055344 9 0.045143 12 0.036481 17 0.034707 0 0.032118 24 0.024666 16 0.021538 23 0.020736 4 0.005828 5 0.005351 3 0.003142 6 0.001385 7 8.74E-4 8 6.28E-4 1 2.8E-4 14 0.109401 18 0.099956 10 0.099898 15 0.091479 13 0.065255 19 0.064781 22 0.061903 20 0.059655 21 0.059449 11 0.055344 9 0.045143 12 0.036481 17 0.034707 0 0.032118 24 0.024666 16 0.021538 23 0.020736 4 0.005828 5 0.005351 3 0.003142 6 0.001385 7 8.74E-4 8 6.28E-4 1 2.8E-4 18 0.08517141262068885 10 0.07671376114556715 14 0.07599901812239601 19 0.06689264344169198 21 0.06534152717219188 22 0.0639077729846749 15 0.058503463770150824 11 0.056778185249490874 20 0.056365587237473216 13 0.05211594899568723 12 0.04527510046201524 9 0.042434084245030555 17 0.040158828496122165 0 0.03509759248849991 24 0.03487259956088011 23 0.0312656628151801 16 0.029575022147714892 4 0.013593316881704249 5 0.013111311264199442 3 0.010043069472172908 6 0.009750308598749485 7 0.008494189252056288 8 0.008369243707387912 1 0.008085410423703985 2 0.007772309705369253 __DUMMY__ 0.004312629739200527 false 1.0 675 20 0.119061 19 0.111183 24 0.090501 18 0.08037 21 0.073957 23 0.070646 16 0.063548 12 0.058644 22 0.052637 15 0.04851 14 0.047471 11 0.037567 10 0.037119 17 0.034932 13 0.029443 4 0.008744 3 0.008485 5 0.008308 9 0.007769 8 0.002838 7 0.002642 1 0.002064 2 0.002054 6 0.001505 20 0.119061 19 0.111183 24 0.090501 18 0.08037 21 0.073957 23 0.070646 16 0.063548 12 0.058644 22 0.052637 15 0.04851 14 0.047471 11 0.037567 10 0.037119 17 0.034932 13 0.029443 4 0.008744 3 0.008485 5 0.008308 9 0.007769 8 0.002838 7 0.002642 1 0.002064 2 0.002054 6 0.001505 19 0.09004021699416484 20 0.08622954276249077 18 0.07482247727304361 21 0.07330338914715176 24 0.06872020281935083 22 0.05959291749783041 23 0.056732373050879366 12 0.056638288408222194 16 0.05029619678858343 11 0.04792826967818126 14 0.045066838005321165 10 0.04440739456894158 17 0.03986923039985326 15 0.03679244410479034 13 0.034051135218311934 9 0.023465489336467086 0 0.01833300375855477 4 0.015166654620336057 5 0.01469034068583146 3 0.012801627743894423 6 0.009849158749716726 8 0.009500479957206473 7 0.009430945766836575 1 0.009010496104154225 2 0.008823812913065075 __DUMMY__ 0.004437073646820262 false 1.0 434 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.08173139725377186 21 0.07478142993646938 19 0.07256813993247598 10 0.07170313114316186 22 0.06995690817685628 11 0.06880531670887126 12 0.05784870846481771 14 0.0500307462453909 20 0.049919643974429086 17 0.049461032868578746 0 0.04814581462297258 13 0.04777103106494228 9 0.04377044044418886 16 0.03779354037039728 24 0.03312738643024186 23 0.03203225580569322 15 0.025459533761028427 4 0.013929304398159344 5 0.013516943485360212 6 0.01111719647966996 3 0.00879820567698508 7 0.008564835381216364 8 0.008450700864086991 1 0.00833129435819226 2 0.007931215662356578 __DUMMY__ 0.004453846489685776 false 1.0 676 20 0.103324 19 0.09941 21 0.084581 12 0.079159 18 0.078392 24 0.077275 23 0.059879 16 0.056143 22 0.053372 13 0.05284 14 0.048956 11 0.048215 10 0.040501 17 0.039781 15 0.032901 0 0.013513 9 0.012943 4 0.006629 5 0.005982 3 0.003161 6 0.001791 8 5.13E-4 7 5.01E-4 1 2.38E-4 20 0.103324 19 0.09941 21 0.084581 12 0.079159 18 0.078392 24 0.077275 23 0.059879 16 0.056143 22 0.053372 13 0.05284 14 0.048956 11 0.048215 10 0.040501 17 0.039781 15 0.032901 0 0.013513 9 0.012943 4 0.006629 5 0.005982 3 0.003161 6 0.001791 8 5.13E-4 7 5.01E-4 1 2.38E-4 19 0.08366905608801042 21 0.07970690757792177 20 0.07725536812650592 18 0.07343828567084498 12 0.06884809625839285 24 0.0612972310834635 22 0.0603232860879049 11 0.05460365528512127 23 0.051014421452053677 13 0.04760976091659744 10 0.04633137949658868 16 0.04607341078982779 14 0.04597315964381592 17 0.04209153330635154 15 0.027533426344061987 9 0.025968916532924442 0 0.025769645401837356 4 0.013874538949404705 5 0.013307864131201151 6 0.009849017666205623 3 0.00964424917385797 7 0.008015398020743046 8 0.008000067844369742 1 0.007758516301072725 2 0.007467445304655927 __DUMMY__ 0.004575362546264641 false 1.0 435 15 0.125241 14 0.112611 20 0.097947 18 0.084913 19 0.071856 13 0.064872 10 0.063736 24 0.058663 23 0.044745 21 0.043183 16 0.041236 12 0.036284 22 0.032456 17 0.027878 11 0.0202 9 0.018751 3 0.00938 4 0.009066 5 0.008533 8 0.00626 7 0.006227 1 0.005624 2 0.005371 6 0.004966 15 0.125241 14 0.112611 20 0.097947 18 0.084913 19 0.071856 13 0.064872 10 0.063736 24 0.058663 23 0.044745 21 0.043183 16 0.041236 12 0.036284 22 0.032456 17 0.027878 11 0.0202 9 0.018751 3 0.00938 4 0.009066 5 0.008533 8 0.00626 7 0.006227 1 0.005624 2 0.005371 6 0.004966 14 0.07968564185720474 18 0.07848343404320544 15 0.0783214040780702 20 0.07791173311747454 19 0.07117820416755052 10 0.058612557457571456 21 0.056621394318426305 13 0.0532832583185477 24 0.05274824337713408 22 0.047856815553456666 12 0.04557541837691524 23 0.043904340745416305 16 0.04003892199495705 11 0.03776981670295962 17 0.036263609170467476 9 0.027886261104346215 0 0.017410535774867116 4 0.0144489310952028 5 0.013942086336232966 3 0.012444353765004383 6 0.01075037349837295 8 0.010429103895237017 7 0.01041071101679714 1 0.009994946141388086 2 0.009710950603850344 __DUMMY__ 0.004316953489343434 false 1.0 677 21 0.104417 12 0.099004 23 0.077977 13 0.07656 11 0.069223 24 0.06661 22 0.062886 19 0.045247 14 0.044087 5 0.034354 20 0.034271 4 0.032933 6 0.030571 2 0.027686 1 0.025686 3 0.025633 18 0.024692 7 0.024398 8 0.023505 17 0.021536 16 0.016136 0 0.014817 9 0.011414 15 0.006354 21 0.104417 12 0.099004 23 0.077977 13 0.07656 11 0.069223 24 0.06661 22 0.062886 19 0.045247 14 0.044087 5 0.034354 20 0.034271 4 0.032933 6 0.030571 2 0.027686 1 0.025686 3 0.025633 18 0.024692 7 0.024398 8 0.023505 17 0.021536 16 0.016136 0 0.014817 9 0.011414 15 0.006354 21 0.0901956678497385 12 0.07906512248061728 22 0.06574382601149063 11 0.06562579114903153 23 0.05998485167111569 13 0.058344392799400444 19 0.05715474566246826 24 0.05606524911531956 18 0.046347032391369725 20 0.04240402990937938 14 0.04153472539278829 17 0.033585965802404236 5 0.027567701961762923 0 0.027288757964747907 4 0.02718692888285007 16 0.026646982791780627 10 0.02579057432102819 9 0.025757667746732583 6 0.024408916139259225 2 0.021326744117149 3 0.02091581979368477 1 0.020600039978528967 7 0.020147287145245156 8 0.019686437341433567 15 0.011751363320669853 __DUMMY__ 0.004873378260003492 false 1.0 436 20 0.103383 19 0.099982 21 0.084878 12 0.079574 18 0.078347 24 0.07743 23 0.060006 16 0.056704 22 0.05367 13 0.053269 14 0.048881 11 0.047915 10 0.039723 17 0.039637 15 0.033437 0 0.013282 9 0.012712 4 0.006204 5 0.005848 3 0.00321 6 0.00138 8 2.73E-4 7 2.49E-4 2 7.0E-6 20 0.103383 19 0.099982 21 0.084878 12 0.079574 18 0.078347 24 0.07743 23 0.060006 16 0.056704 22 0.05367 13 0.053269 14 0.048881 11 0.047915 10 0.039723 17 0.039637 15 0.033437 0 0.013282 9 0.012712 4 0.006204 5 0.005848 3 0.00321 6 0.00138 8 2.73E-4 7 2.49E-4 2 7.0E-6 19 0.0839369704085735 21 0.07984599994909773 20 0.07728297049811107 18 0.07341717100959057 12 0.06904247084017702 24 0.06136981215002048 22 0.06046285598954393 11 0.05446309464553006 23 0.05107389072994843 13 0.04781070375030732 16 0.046336189769860266 10 0.045966903535753445 14 0.045938004342555544 17 0.0420240567595253 15 0.027784502754112414 9 0.02586069237119689 0 0.025661421333458397 4 0.013675441114168805 5 0.013245085570107128 3 0.009667198715888815 6 0.009656480019549213 7 0.007897344815110008 8 0.00788763604833804 1 0.007647021518599215 2 0.007470720957941284 __DUMMY__ 0.004575360402935133 false 1.0 678 21 0.115522 24 0.089203 22 0.08599 12 0.073785 11 0.066316 14 0.063308 23 0.061886 19 0.05314 13 0.052686 20 0.0429 4 0.032529 5 0.03163 18 0.030075 9 0.029162 3 0.026254 6 0.023891 8 0.021772 1 0.021387 7 0.021273 15 0.020798 2 0.020785 17 0.011119 10 0.003534 16 0.001052 21 0.115522 24 0.089203 22 0.08599 12 0.073785 11 0.066316 14 0.063308 23 0.061886 19 0.05314 13 0.052686 20 0.0429 4 0.032529 5 0.03163 18 0.030075 9 0.029162 3 0.026254 6 0.023891 8 0.021772 1 0.021387 7 0.021273 15 0.020798 2 0.020785 17 0.011119 10 0.003534 16 0.001052 21 0.09443741300758635 22 0.07595914054287388 12 0.06671673301009948 24 0.06587931118983062 11 0.06371854100794146 19 0.06012308267466173 14 0.052438780246371774 23 0.05151662187104158 18 0.049487346410811726 13 0.04823202468241534 20 0.04651616198117051 9 0.03432911949610962 10 0.02859249459389375 17 0.02845591783048183 4 0.026841854221693193 5 0.026153290283905183 6 0.021158344596156915 3 0.021120351324164625 15 0.020667083239408503 0 0.020236034525043526 16 0.019023469649506897 8 0.01878818148935601 7 0.018571977970413486 1 0.018495602468334937 2 0.01802695897309791 __DUMMY__ 0.004514162713629153 false 1.0 679 21 0.107905 22 0.091077 11 0.086324 19 0.086193 12 0.07588 18 0.073843 24 0.05546 20 0.054658 10 0.053623 17 0.047089 13 0.04278 14 0.04109 0 0.040976 9 0.039714 23 0.037897 16 0.037383 4 0.009296 5 0.008568 6 0.003704 3 0.003011 7 0.001189 8 9.93E-4 1 9.41E-4 15 4.08E-4 21 0.107905 22 0.091077 11 0.086324 19 0.086193 12 0.07588 18 0.073843 24 0.05546 20 0.054658 10 0.053623 17 0.047089 13 0.04278 14 0.04109 0 0.040976 9 0.039714 23 0.037897 16 0.037383 4 0.009296 5 0.008568 6 0.003704 3 0.003011 7 0.001189 8 9.93E-4 1 9.41E-4 15 4.08E-4 21 0.0907781090929316 22 0.07931552173018797 19 0.0762653701172349 11 0.07352348415437657 18 0.07015317245309921 12 0.06634679364154712 10 0.052013761076369625 20 0.051665982565394154 24 0.050176738811062147 17 0.04621952349014105 13 0.04101564453280956 0 0.04025894789504412 23 0.04016725601365802 14 0.04002148777166927 9 0.04000381486737245 16 0.03673364648643949 4 0.016237993975360184 5 0.015623710987743926 6 0.011919670305866232 3 0.010631739943603627 15 0.009758752543602513 7 0.009486002793671181 8 0.009368172779435413 1 0.009230970837996585 2 0.008592470585015038 __DUMMY__ 0.004491260548368186 false 1.0 437 14 0.121911 15 0.117738 10 0.106562 18 0.102169 13 0.066305 19 0.062541 20 0.057335 22 0.054334 11 0.049242 9 0.046484 21 0.044629 17 0.03919 0 0.034222 16 0.028507 12 0.0239 24 0.016095 23 0.014371 4 0.004831 5 0.004171 3 0.002659 6 0.001075 7 7.0E-4 8 6.99E-4 1 3.29E-4 14 0.121911 15 0.117738 10 0.106562 18 0.102169 13 0.066305 19 0.062541 20 0.057335 22 0.054334 11 0.049242 9 0.046484 21 0.044629 17 0.03919 0 0.034222 16 0.028507 12 0.0239 24 0.016095 23 0.014371 4 0.004831 5 0.004171 3 0.002659 6 0.001075 7 7.0E-4 8 6.99E-4 1 3.29E-4 18 0.08720676168278318 14 0.08349869166227997 10 0.08107661121421525 15 0.07365789239163405 19 0.06551209033104362 22 0.05929149625498405 21 0.056638795540818854 20 0.05582448103810648 13 0.0529224662250229 11 0.05262657905417762 9 0.04320109718175069 17 0.04227808741428798 12 0.037998809474386615 0 0.03587827503775972 16 0.032852170575372715 24 0.030038742546389302 23 0.027820354181904133 4 0.012997915524573182 5 0.012431964883098428 3 0.009826125855989905 6 0.00953509881285234 8 0.008426347781395803 7 0.00842526919363482 1 0.0081240217356531 2 0.007791113885390376 __DUMMY__ 0.004118740520494818 false 1.0 438 14 0.104386 13 0.102673 10 0.0992 18 0.088702 12 0.071747 11 0.069822 21 0.066738 15 0.064402 22 0.053246 19 0.051044 0 0.043782 20 0.041997 9 0.040537 17 0.031379 23 0.019664 16 0.015998 24 0.008636 4 0.007134 5 0.007093 6 0.005991 8 0.001552 7 0.001536 1 0.001457 2 0.001283 14 0.104386 13 0.102673 10 0.0992 18 0.088702 12 0.071747 11 0.069822 21 0.066738 15 0.064402 22 0.053246 19 0.051044 0 0.043782 20 0.041997 9 0.040537 17 0.031379 23 0.019664 16 0.015998 24 0.008636 4 0.007134 5 0.007093 6 0.005991 8 0.001552 7 0.001536 1 0.001457 2 0.001283 18 0.07950433905106882 10 0.07785782888419586 14 0.07610865505500619 13 0.07505110261931719 21 0.06979720993771431 12 0.06534452492878225 11 0.06521174915368062 22 0.05935233463549532 19 0.058082490363318244 20 0.04571115165289267 15 0.04508195900531679 0 0.04150537318278775 9 0.04029552378658238 17 0.037534026033429625 23 0.02971623562174358 24 0.0248505759073765 16 0.024749145357302015 4 0.013919275316588504 5 0.013653630724143622 6 0.011898699742467664 8 0.008378318578085225 7 0.008373654275299725 1 0.008233800026535386 2 0.007982422526735453 3 0.0077499793709977505 __DUMMY__ 0.004055994263136665 false 1.0 439 18 0.109381 10 0.103203 14 0.082116 19 0.074524 22 0.073267 15 0.062353 11 0.062202 21 0.062029 9 0.055083 20 0.054492 17 0.049595 0 0.047209 13 0.044888 12 0.032347 16 0.027968 24 0.021223 23 0.016591 4 0.007179 5 0.005932 6 0.002693 3 0.002487 7 0.001294 8 0.001189 1 7.57E-4 18 0.109381 10 0.103203 14 0.082116 19 0.074524 22 0.073267 15 0.062353 11 0.062202 21 0.062029 9 0.055083 20 0.054492 17 0.049595 0 0.047209 13 0.044888 12 0.032347 16 0.027968 24 0.021223 23 0.016591 4 0.007179 5 0.005932 6 0.002693 3 0.002487 7 0.001294 8 0.001189 1 7.57E-4 18 0.08903037824646387 10 0.07807523839245159 19 0.07067450110557563 22 0.06986036686968092 21 0.06596117596853382 14 0.06135211998385574 11 0.06022173582542444 20 0.05223038277187709 9 0.04830146072182601 17 0.04798148346579368 0 0.04349500469827194 15 0.043384077918823115 12 0.04207911823560252 13 0.04078159561310009 16 0.03257497419824997 24 0.03247758935672292 23 0.028763917513930582 4 0.015098129515262848 5 0.014244175966624167 6 0.011319691980693158 3 0.01064224717204998 7 0.009675251884683704 8 0.009618466250876888 1 0.009290515285494929 2 0.008738016518782527 __DUMMY__ 0.004128384539348073 false 1.0 680 12 0.0941 21 0.08766 19 0.069144 11 0.067079 13 0.063302 22 0.059968 20 0.057455 24 0.056129 18 0.053555 23 0.052954 16 0.043868 17 0.041159 0 0.035195 10 0.033532 14 0.032523 9 0.023923 4 0.020315 5 0.020217 6 0.018556 7 0.014185 2 0.014057 8 0.01397 1 0.013872 3 0.01328 12 0.0941 21 0.08766 19 0.069144 11 0.067079 13 0.063302 22 0.059968 20 0.057455 24 0.056129 18 0.053555 23 0.052954 16 0.043868 17 0.041159 0 0.035195 10 0.033532 14 0.032523 9 0.023923 4 0.020315 5 0.020217 6 0.018556 7 0.014185 2 0.014057 8 0.01397 1 0.013872 3 0.01328 21 0.08288677284428535 12 0.07939356969421861 19 0.06862310099918809 11 0.06543659317640889 22 0.06366793044958204 18 0.06075919077273173 13 0.05545726961575698 20 0.0539868007553276 24 0.05029536873739044 23 0.04759239850960874 10 0.042796279539609225 17 0.042735752952458586 16 0.03993235286878095 14 0.037777949303118986 0 0.03714378782675344 9 0.03076808491565024 4 0.02007462311419126 5 0.019778882414200404 6 0.017724710782611532 7 0.014087496760505126 8 0.013962379013857544 1 0.013821626667430354 2 0.013741618274042688 3 0.013709372941742775 15 0.009180105759279914 __DUMMY__ 0.004665981311268287 false 1.0 681 21 0.109397 22 0.091246 11 0.085472 19 0.085204 12 0.074809 18 0.07445 20 0.055092 24 0.053892 10 0.053698 17 0.046193 13 0.042508 0 0.041039 14 0.040517 9 0.039879 23 0.038775 16 0.037385 4 0.009487 5 0.009107 6 0.004195 3 0.003187 7 0.001868 1 0.001211 8 0.001197 2 1.93E-4 21 0.109397 22 0.091246 11 0.085472 19 0.085204 12 0.074809 18 0.07445 20 0.055092 24 0.053892 10 0.053698 17 0.046193 13 0.042508 0 0.041039 14 0.040517 9 0.039879 23 0.038775 16 0.037385 4 0.009487 5 0.009107 6 0.004195 3 0.003187 7 0.001868 1 0.001211 8 0.001197 2 1.93E-4 21 0.09147736865398286 22 0.0793947597562445 19 0.07580191682958248 11 0.07312423382540437 18 0.07043767230730555 12 0.06584490688824572 10 0.05204893376087953 20 0.05186939832392673 24 0.049441928354989555 17 0.045799640024302445 13 0.04088819255548055 23 0.040578744370096294 0 0.0402884913413593 9 0.040081159893772055 14 0.039752973450052624 16 0.036734600989675154 4 0.016327512611017586 5 0.015876317487271772 6 0.012149780152034382 3 0.010714226290209699 7 0.009804216592789808 15 0.009567550318380365 8 0.009463780569076487 1 0.009357509074877675 2 0.008682922925871361 __DUMMY__ 0.004491262653171005 false 1.0 440 20 0.098454 24 0.082257 19 0.073377 23 0.067986 18 0.059417 21 0.053431 12 0.051128 15 0.049736 14 0.045048 16 0.043442 13 0.037352 22 0.03447 3 0.029763 4 0.02943 5 0.028653 17 0.027306 7 0.026219 8 0.026185 1 0.025996 2 0.025645 6 0.024911 10 0.024058 11 0.01881 9 0.016925 20 0.098454 24 0.082257 19 0.073377 23 0.067986 18 0.059417 21 0.053431 12 0.051128 15 0.049736 14 0.045048 16 0.043442 13 0.037352 22 0.03447 3 0.029763 4 0.02943 5 0.028653 17 0.027306 7 0.026219 8 0.026185 1 0.025996 2 0.025645 6 0.024911 10 0.024058 11 0.01881 9 0.016925 20 0.07916482048054103 19 0.07275469868662086 18 0.06590437321950177 24 0.06543258760461819 21 0.062418958952970886 23 0.05605944901663972 12 0.05344322759010044 22 0.04900785437513022 14 0.04610940824377424 16 0.04132877268709625 15 0.04066336023099581 13 0.039500526072663654 10 0.03845178805546454 11 0.03713295574120245 17 0.03568551980555643 9 0.026388920037804065 4 0.024244338315210025 5 0.023619581245631408 3 0.022257809058409204 6 0.020242526368726973 7 0.01994683735280599 8 0.019925361061434665 1 0.019698584261669313 2 0.019374267628850663 0 0.01667852061158792 __DUMMY__ 0.0045649532949933475 false 1.0 682 21 0.104894 22 0.094112 11 0.088757 19 0.078452 18 0.069054 12 0.067961 10 0.053782 24 0.051528 17 0.046696 9 0.045578 20 0.044552 0 0.043979 14 0.038815 13 0.036561 23 0.034778 16 0.033513 4 0.014018 5 0.013644 6 0.00863 3 0.008034 7 0.006268 8 0.005732 1 0.005713 2 0.004951 21 0.104894 22 0.094112 11 0.088757 19 0.078452 18 0.069054 12 0.067961 10 0.053782 24 0.051528 17 0.046696 9 0.045578 20 0.044552 0 0.043979 14 0.038815 13 0.036561 23 0.034778 16 0.033513 4 0.014018 5 0.013644 6 0.00863 3 0.008034 7 0.006268 8 0.005732 1 0.005713 2 0.004951 21 0.08821273498448591 22 0.08070325458652197 11 0.07435506835883658 19 0.07170872553845406 18 0.06744960803200903 12 0.06127179950823952 10 0.05207506038247866 24 0.04745018708823518 17 0.04670043894492324 20 0.04558837676577987 9 0.04362279495017332 0 0.042629862288479224 23 0.03823495631582562 14 0.03798766933452889 13 0.03690031699081465 16 0.03503463848744006 4 0.019204160162325394 5 0.018750017837756223 6 0.015102218712152546 3 0.013800674758332439 7 0.01277782977629447 8 0.0125043151480273 1 0.01237868011443302 2 0.011812148854411897 15 0.009425750596244798 __DUMMY__ 0.004318711482796071 false 1.0 683 19 0.106642 21 0.106366 20 0.093766 18 0.087832 22 0.082328 24 0.078249 23 0.063176 12 0.063016 11 0.051154 10 0.050811 14 0.044888 9 0.034861 13 0.02922 17 0.027136 16 0.026441 4 0.011684 5 0.011097 0 0.008893 15 0.008673 3 0.008268 7 0.00175 8 0.00145 6 0.001437 1 8.61E-4 19 0.106642 21 0.106366 20 0.093766 18 0.087832 22 0.082328 24 0.078249 23 0.063176 12 0.063016 11 0.051154 10 0.050811 14 0.044888 9 0.034861 13 0.02922 17 0.027136 16 0.026441 4 0.011684 5 0.011097 0 0.008893 15 0.008673 3 0.008268 7 0.00175 8 0.00145 6 0.001437 1 8.61E-4 21 0.08980375881412002 19 0.08696999874435449 18 0.07752204296123145 22 0.07439048601192941 20 0.07228049907946432 24 0.061948143962486824 12 0.06023098131628788 11 0.055911075035603955 23 0.052678718462026417 10 0.05085074760890185 14 0.043173466507114296 9 0.03676936225082082 17 0.036222264405061315 13 0.03505772761185432 16 0.03198272120657327 0 0.023714703925710057 4 0.016753515450126974 5 0.016209200777740723 15 0.015578665819105419 3 0.012646635066572152 6 0.010120872443372788 7 0.00912519963618613 8 0.008958531841847387 1 0.008567017346694178 2 0.007976742868100257 __DUMMY__ 0.004556920846713208 false 1.0 441 15 0.108425 14 0.107448 20 0.066506 18 0.065368 13 0.064142 10 0.05961 24 0.048647 23 0.048489 19 0.044425 21 0.040804 22 0.033227 9 0.032012 12 0.029438 4 0.028856 3 0.02852 5 0.028504 8 0.024778 7 0.024655 1 0.024447 2 0.024337 6 0.02397 11 0.020081 17 0.012094 16 0.011217 15 0.108425 14 0.107448 20 0.066506 18 0.065368 13 0.064142 10 0.05961 24 0.048647 23 0.048489 19 0.044425 21 0.040804 22 0.033227 9 0.032012 12 0.029438 4 0.028856 3 0.02852 5 0.028504 8 0.024778 7 0.024655 1 0.024447 2 0.024337 6 0.02397 11 0.020081 17 0.012094 16 0.011217 14 0.07729804313621809 15 0.07247484851292209 18 0.0693609156107582 20 0.06381074241145422 19 0.05873631022669938 10 0.056802581514752745 21 0.053486044546438787 13 0.05244435566598455 24 0.04765161071798651 22 0.04678869049040466 23 0.04616573708091174 12 0.041280809701603596 11 0.03649858125594173 9 0.03346518988088379 17 0.02951355257877232 16 0.027795991319526855 4 0.02370421455584631 5 0.023296518926553527 3 0.021549513199432973 6 0.019797132799423207 8 0.019315889764635094 7 0.019259669801938738 1 0.01903027507057532 2 0.0188310032656186 0 0.017518804607466576 __DUMMY__ 0.00412297335725031 false 1.0 684 21 0.101398 19 0.096742 20 0.081557 22 0.08071 18 0.079969 24 0.071456 12 0.070435 11 0.06622 23 0.051529 10 0.048623 14 0.044217 16 0.039234 17 0.038531 13 0.037403 9 0.030339 0 0.021958 15 0.012892 4 0.009388 5 0.008867 3 0.005134 6 0.002054 7 6.88E-4 8 5.19E-4 1 1.39E-4 21 0.101398 19 0.096742 20 0.081557 22 0.08071 18 0.079969 24 0.071456 12 0.070435 11 0.06622 23 0.051529 10 0.048623 14 0.044217 16 0.039234 17 0.038531 13 0.037403 9 0.030339 0 0.021958 15 0.012892 4 0.009388 5 0.008867 3 0.005134 6 0.002054 7 6.88E-4 8 5.19E-4 1 1.39E-4 21 0.08731433725584556 19 0.08169059892471646 22 0.0737749383629371 18 0.07359413792160001 20 0.06557008523743074 12 0.06367054973065525 11 0.06333066554509267 24 0.05808687570837678 10 0.04996793494826822 23 0.046844010704553046 14 0.04259503272363882 17 0.04181348512130058 13 0.03897863833254594 16 0.037769041035270734 9 0.03505161243828865 0 0.03048792260831035 15 0.017145127293291467 4 0.015920661541311235 5 0.015405750088730248 3 0.01135348130967901 6 0.010735278830725297 7 0.008899108114000827 8 0.008796062190198654 1 0.008503247821469995 2 0.008247879611125244 __DUMMY__ 0.004453536600637021 false 1.0 442 14 0.110034 10 0.103865 18 0.099189 15 0.087375 13 0.065761 22 0.064799 19 0.063221 21 0.060612 11 0.060593 20 0.053203 9 0.049112 0 0.036201 12 0.035561 17 0.034928 24 0.021727 16 0.019721 23 0.015471 4 0.006363 5 0.005632 3 0.003181 6 0.00162 7 7.5E-4 8 6.38E-4 1 4.42E-4 14 0.110034 10 0.103865 18 0.099189 15 0.087375 13 0.065761 22 0.064799 19 0.063221 21 0.060612 11 0.060593 20 0.053203 9 0.049112 0 0.036201 12 0.035561 17 0.034928 24 0.021727 16 0.019721 23 0.015471 4 0.006363 5 0.005632 3 0.003181 6 0.00162 7 7.5E-4 8 6.38E-4 1 4.42E-4 18 0.08511104499500867 10 0.07890015619971603 14 0.07606061862814972 19 0.06623322381076795 21 0.06541357154256308 22 0.06531911242495643 11 0.059034861120387465 15 0.05675782815930302 20 0.05331395724328063 13 0.05165063813354383 9 0.044618291456116 12 0.044080774779115005 17 0.04052062776718228 0 0.037238861717339686 24 0.03329366088921401 16 0.02885340803742025 23 0.028594581604050966 4 0.013938003042000116 5 0.013333749241958369 3 0.010226254059243227 6 0.009947735082471734 7 0.008573991250706865 8 0.008515748044451614 1 0.00829805582487859 2 0.007908402230387824 __DUMMY__ 0.004262842715786683 false 1.0 200 11 0.123596 22 0.09449 21 0.083714 0 0.081988 10 0.076624 18 0.076008 17 0.071645 12 0.066306 19 0.063828 16 0.048651 9 0.048367 13 0.045637 14 0.035652 20 0.015177 24 0.013609 23 0.009931 4 0.009382 6 0.009114 5 0.008604 15 0.005178 8 0.003366 7 0.003261 1 0.00302 2 0.002852 11 0.123596 22 0.09449 21 0.083714 0 0.081988 10 0.076624 18 0.076008 17 0.071645 12 0.066306 19 0.063828 16 0.048651 9 0.048367 13 0.045637 14 0.035652 20 0.015177 24 0.013609 23 0.009931 4 0.009382 6 0.009114 5 0.008604 15 0.005178 8 0.003366 7 0.003261 1 0.00302 2 0.002852 11 0.09192276992552849 22 0.08161607053910741 21 0.07798280457316839 18 0.07006213238547906 19 0.06367246020643616 10 0.06321727092636056 0 0.06225307515262874 12 0.05997431240682098 17 0.059184552991567184 9 0.04600016814426876 16 0.04199418472185958 13 0.04057262188647888 14 0.035451931785206114 20 0.029273179394490766 24 0.02806966181987994 23 0.025758730055468776 4 0.017587307543002747 5 0.016942508151606413 6 0.016043146850627167 8 0.012021711732655264 7 0.012001152264791889 1 0.011746761052568323 2 0.011442891025424244 15 0.010637440484623875 3 0.01047725439516567 __DUMMY__ 0.004093899584784548 false 1.0 443 14 0.146422 15 0.120823 13 0.117913 10 0.093437 18 0.084677 12 0.062335 20 0.057278 21 0.056251 11 0.047891 19 0.043128 22 0.037894 9 0.029556 23 0.026193 24 0.020723 0 0.016267 17 0.0146 16 0.008013 4 0.006223 5 0.005734 6 0.003413 3 6.73E-4 8 4.06E-4 7 7.7E-5 2 7.3E-5 14 0.146422 15 0.120823 13 0.117913 10 0.093437 18 0.084677 12 0.062335 20 0.057278 21 0.056251 11 0.047891 19 0.043128 22 0.037894 9 0.029556 23 0.026193 24 0.020723 0 0.016267 17 0.0146 16 0.008013 4 0.006223 5 0.005734 6 0.003413 3 6.73E-4 8 4.06E-4 7 7.7E-5 2 7.3E-5 14 0.09735552652215876 13 0.08334417661230015 18 0.07674834295588528 15 0.07468863879325685 10 0.07288459615174517 21 0.0641201812405929 12 0.061539865890742854 20 0.05555377447151879 19 0.05464615941666811 11 0.052535484389422765 22 0.050093920989754494 23 0.03452121584593468 9 0.033016258428324195 24 0.03276692109099085 17 0.028767233544130938 0 0.025916134702639104 16 0.021934420863792888 4 0.01341494035144031 5 0.01294765041375556 6 0.010617072492338791 3 0.008077962579569203 8 0.007830443337172335 7 0.007668445953285894 1 0.00752499699945406 2 0.0074024582192833 __DUMMY__ 0.004083177743841913 false 1.0 201 10 0.096236 11 0.095163 18 0.086902 0 0.079961 22 0.074783 17 0.0674 21 0.063252 19 0.061594 13 0.05577 14 0.054895 9 0.053687 12 0.053279 16 0.046317 15 0.030944 20 0.020993 6 0.009623 4 0.008964 5 0.008574 23 0.006923 1 0.005857 7 0.00569 8 0.005592 2 0.0052 3 0.0024 10 0.096236 11 0.095163 18 0.086902 0 0.079961 22 0.074783 17 0.0674 21 0.063252 19 0.061594 13 0.05577 14 0.054895 9 0.053687 12 0.053279 16 0.046317 15 0.030944 20 0.020993 6 0.009623 4 0.008964 5 0.008574 23 0.006923 1 0.005857 7 0.00569 8 0.005592 2 0.0052 3 0.0024 18 0.07772557343731144 11 0.07764231659022712 10 0.07625654619131791 22 0.07158297151038011 21 0.06535865756378524 0 0.06300918723186737 19 0.06217443691977911 17 0.05830357522507012 12 0.05083739288090481 9 0.05014892104868974 14 0.04613526836874064 13 0.04491914585634039 16 0.04100889266680507 20 0.03146920844069733 15 0.025863857346446358 23 0.022095249331029316 24 0.018621379611021956 4 0.017066222395775685 5 0.01660946941343808 6 0.016114546521583426 7 0.013105129514762497 1 0.013057491835765123 8 0.013048123181586276 2 0.012524014496886568 3 0.01151591376799927 __DUMMY__ 0.0038065086517890226 false 1.0 685 17 0.086151 0 0.084752 9 0.064787 16 0.063663 22 0.059519 18 0.057276 10 0.048821 6 0.047189 11 0.045683 8 0.044897 7 0.044666 1 0.044619 2 0.044029 5 0.042796 4 0.042604 19 0.039514 3 0.038784 21 0.025867 23 0.023518 15 0.020128 12 0.016012 24 0.005694 20 0.005514 13 0.003519 17 0.086151 0 0.084752 9 0.064787 16 0.063663 22 0.059519 18 0.057276 10 0.048821 6 0.047189 11 0.045683 8 0.044897 7 0.044666 1 0.044619 2 0.044029 5 0.042796 4 0.042604 19 0.039514 3 0.038784 21 0.025867 23 0.023518 15 0.020128 12 0.016012 24 0.005694 20 0.005514 13 0.003519 17 0.07268096549379639 0 0.07112672948485088 22 0.06225918296922311 9 0.05926670642016097 18 0.05797465459317825 16 0.052989905265841325 11 0.05034664113328443 10 0.04930860209181616 19 0.045827316247503164 6 0.0407534261581358 21 0.03919795205454556 8 0.038725129067059216 4 0.0387236610671039 7 0.03857976225683434 5 0.038507823964770795 1 0.03844557639178681 2 0.037894358401338174 3 0.03486435453345448 23 0.028711183555768627 12 0.025607957868255024 15 0.018784194129530796 24 0.017347962834833294 20 0.01632420532349966 13 0.01176619758507395 14 0.010732475296916556 __DUMMY__ 0.003253075811438272 false 1.0 686 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.08799790075266552 22 0.08039272999817025 11 0.0739995130144701 19 0.07155064882202729 18 0.06731639204546538 12 0.06100958916852863 10 0.05206474083422528 24 0.04728272896430532 17 0.0465024912466084 20 0.045733788582077495 9 0.043337600162079895 0 0.042632676710730136 23 0.03866650106096698 14 0.03798766933452889 13 0.03685950786817627 16 0.03516832354435885 4 0.019373494567755858 5 0.018934362495191606 6 0.01536395998148828 3 0.013912313507619005 7 0.01302080823062406 8 0.012689597946212989 1 0.012514241452852425 2 0.011943957629830072 15 0.009425750596244797 __DUMMY__ 0.004318711482796071 false 1.0 202 11 0.103578 10 0.085023 21 0.081613 18 0.079236 22 0.078209 12 0.072333 13 0.066094 19 0.0655 0 0.063823 14 0.060629 17 0.050896 9 0.041864 16 0.036149 20 0.033196 15 0.022136 24 0.020568 23 0.018214 5 0.006735 4 0.006707 6 0.004922 2 7.85E-4 7 7.1E-4 1 6.29E-4 8 4.51E-4 11 0.103578 10 0.085023 21 0.081613 18 0.079236 22 0.078209 12 0.072333 13 0.066094 19 0.0655 0 0.063823 14 0.060629 17 0.050896 9 0.041864 16 0.036149 20 0.033196 15 0.022136 24 0.020568 23 0.018214 5 0.006735 4 0.006707 6 0.004922 2 7.85E-4 7 7.1E-4 1 6.29E-4 8 4.51E-4 11 0.08220101277458021 21 0.0776442673916505 22 0.07367086024809345 18 0.07366917972133209 10 0.06857217131539978 19 0.06640284063057549 12 0.06341304198638584 0 0.052257283036633594 13 0.05137724217450285 14 0.04942696694688675 17 0.04869694122904948 9 0.041976710093456035 20 0.04065264898803958 16 0.036201712116647196 24 0.03222690647355117 23 0.029806567471883476 15 0.02049229998875709 4 0.014849999500005375 5 0.01459361514420985 6 0.012368783162565643 7 0.009168252765112954 3 0.009090258320058121 8 0.009018595832911256 1 0.008991018556820093 2 0.008860752264187014 __DUMMY__ 0.0043700718667050754 false 1.0 444 15 0.162193 16 0.111509 17 0.09314 18 0.092902 20 0.083095 19 0.082553 14 0.081474 10 0.057607 0 0.04112 24 0.038936 23 0.031696 22 0.031193 9 0.021572 13 0.01986 11 0.01583 8 0.006019 7 0.004951 6 0.004778 1 0.004762 2 0.004602 21 0.003735 4 0.002299 3 0.002262 5 0.001914 15 0.162193 16 0.111509 17 0.09314 18 0.092902 20 0.083095 19 0.082553 14 0.081474 10 0.057607 0 0.04112 24 0.038936 23 0.031696 22 0.031193 9 0.021572 13 0.01986 11 0.01583 8 0.006019 7 0.004951 6 0.004778 1 0.004762 2 0.004602 21 0.003735 4 0.002299 3 0.002262 5 0.001914 15 0.0965324136032204 18 0.0807053510877824 16 0.07563570113845236 19 0.07440282503637981 17 0.06936789852374432 20 0.0687110883423741 14 0.06297689618307131 10 0.054800181967951105 22 0.04553326808194351 24 0.0414331218530224 0 0.03908300648675044 23 0.03721757471498631 21 0.03469226495875141 11 0.0345546461559067 13 0.031146361069232825 9 0.02956918574419382 12 0.02710148869608525 4 0.012381997902365332 6 0.012380300847408378 8 0.01197431504209904 5 0.011953997503335995 7 0.01145766814553704 1 0.011249953581237997 2 0.011005166163517831 3 0.010218366221301168 __DUMMY__ 0.003914960949348529 false 1.0 445 14 0.114137 15 0.097732 18 0.093796 10 0.085762 20 0.076024 19 0.06977 13 0.067158 21 0.062832 22 0.055905 11 0.045759 24 0.044231 12 0.040775 9 0.035092 23 0.031351 17 0.025045 16 0.021437 0 0.013858 4 0.00675 5 0.006101 3 0.004755 6 5.92E-4 7 5.0E-4 8 4.6E-4 1 1.78E-4 14 0.114137 15 0.097732 18 0.093796 10 0.085762 20 0.076024 19 0.06977 13 0.067158 21 0.062832 22 0.055905 11 0.045759 24 0.044231 12 0.040775 9 0.035092 23 0.031351 17 0.025045 16 0.021437 0 0.013858 4 0.00675 5 0.006101 3 0.004755 6 5.92E-4 7 5.0E-4 8 4.6E-4 1 1.78E-4 18 0.08261326513996518 14 0.07873954161855477 19 0.06997752635230178 10 0.06974576237120136 21 0.06650563664702222 20 0.06568182920318333 15 0.06276000272614819 22 0.060434289896566316 13 0.052850719654344236 11 0.05128379964557047 12 0.047020642770247506 24 0.0450344343302939 9 0.03698719654925698 23 0.036860912904083755 17 0.03535728580440093 16 0.030068278989271 0 0.0254533966898967 4 0.013784963196415857 5 0.013220032326023253 3 0.010682210001107452 6 0.009063863043532539 7 0.00809346885724347 8 0.008070350892827044 1 0.007809107225239528 2 0.007550221283405901 __DUMMY__ 0.004351261881896356 false 1.0 203 0 0.087323 17 0.079269 9 0.065647 22 0.062214 11 0.060124 10 0.057001 18 0.054547 16 0.053132 6 0.045356 8 0.042779 7 0.04247 1 0.042334 2 0.041862 4 0.041591 5 0.040961 19 0.037645 3 0.03706 21 0.033021 12 0.024102 23 0.020795 13 0.012242 15 0.011414 14 0.003735 24 0.003376 0 0.087323 17 0.079269 9 0.065647 22 0.062214 11 0.060124 10 0.057001 18 0.054547 16 0.053132 6 0.045356 8 0.042779 7 0.04247 1 0.042334 2 0.041862 4 0.041591 5 0.040961 19 0.037645 3 0.03706 21 0.033021 12 0.024102 23 0.020795 13 0.012242 15 0.011414 14 0.003735 24 0.003376 0 0.07040418717235344 17 0.0672586528824045 22 0.06440429891081188 9 0.059118008335995786 11 0.057978071647640995 18 0.05712961567913877 10 0.053389633858620396 16 0.04572318995595965 19 0.045441833981221584 21 0.04514981887172427 6 0.03894585895939325 4 0.03766805236963867 5 0.03707533256485295 8 0.03673845087007444 7 0.03657534664448865 1 0.036398472032461125 2 0.03590324322592515 3 0.033371030645373896 12 0.031224650951255782 23 0.028087031030835357 24 0.017692399903640885 13 0.017637844007159065 20 0.01485937984786883 14 0.014390565097791411 15 0.014090452882242059 __DUMMY__ 0.0033445776711271374 false 1.0 687 10 0.105973 18 0.098145 11 0.071004 0 0.067633 14 0.066857 22 0.066822 19 0.061659 9 0.057825 17 0.055737 13 0.052634 21 0.052382 15 0.046708 12 0.038832 16 0.034363 20 0.034255 4 0.012072 5 0.01194 23 0.01155 6 0.011071 2 0.00871 7 0.008641 8 0.008616 1 0.008479 3 0.008091 10 0.105973 18 0.098145 11 0.071004 0 0.067633 14 0.066857 22 0.066822 19 0.061659 9 0.057825 17 0.055737 13 0.052634 21 0.052382 15 0.046708 12 0.038832 16 0.034363 20 0.034255 4 0.012072 5 0.01194 23 0.01155 6 0.011071 2 0.00871 7 0.008641 8 0.008616 1 0.008479 3 0.008091 18 0.08741245139870318 10 0.08542294147614843 22 0.06690206413083688 11 0.06575169049589223 19 0.06421953263370728 21 0.059926417722664986 14 0.05681330063325555 0 0.0559887021416366 17 0.05180595434629184 9 0.051492519074236624 13 0.046351194495334626 12 0.04410030480538436 20 0.04108698162077818 15 0.03774592061540955 16 0.03470662979703099 23 0.023302035167028903 24 0.017777372301110473 4 0.01611822722222297 5 0.015801296328749017 6 0.01417269710513531 7 0.011947210133967063 8 0.01192831747935855 3 0.011898717484962565 1 0.011757872262676787 2 0.011663920057370217 __DUMMY__ 0.003905729070106788 false 1.0 446 9 0.083347 22 0.078605 10 0.077408 0 0.076899 18 0.071563 17 0.062803 11 0.058226 4 0.043285 5 0.042265 6 0.042026 21 0.041657 8 0.041506 7 0.041067 1 0.040766 3 0.040244 2 0.040201 19 0.037792 14 0.021663 16 0.020419 15 0.014309 23 0.013837 12 0.004709 24 0.003329 13 0.002074 9 0.083347 22 0.078605 10 0.077408 0 0.076899 18 0.071563 17 0.062803 11 0.058226 4 0.043285 5 0.042265 6 0.042026 21 0.041657 8 0.041506 7 0.041067 1 0.040766 3 0.040244 2 0.040201 19 0.037792 14 0.021663 16 0.020419 15 0.014309 23 0.013837 12 0.004709 24 0.003329 13 0.002074 22 0.0727186003544451 9 0.06779202007776262 18 0.06709224718247786 10 0.06524921808791796 0 0.06480426388497508 17 0.05848562165964328 11 0.05747609603073751 21 0.04991305852205856 19 0.04631852862004121 4 0.03757194692955287 5 0.03679265668372525 6 0.036211378266720086 8 0.03504483784958658 7 0.034817600392090094 1 0.03455619497279643 3 0.034040998382574086 2 0.03402720314251934 16 0.028858533809574816 14 0.025139842633532056 23 0.024253566126099427 12 0.021776842580569875 24 0.017498280502121023 15 0.0166997267758993 20 0.01585847562479463 13 0.01361958828831461 __DUMMY__ 0.00338267261947022 false 1.0 688 17 0.065031 0 0.061572 22 0.059527 9 0.059023 18 0.048125 6 0.047864 8 0.04752 4 0.047374 7 0.047158 1 0.047079 16 0.046769 5 0.046523 2 0.046375 3 0.045211 19 0.043304 11 0.042674 10 0.038863 23 0.037274 21 0.035613 24 0.029229 20 0.019669 15 0.017377 12 0.016723 14 0.004122 17 0.065031 0 0.061572 22 0.059527 9 0.059023 18 0.048125 6 0.047864 8 0.04752 4 0.047374 7 0.047158 1 0.047079 16 0.046769 5 0.046523 2 0.046375 3 0.045211 19 0.043304 11 0.042674 10 0.038863 23 0.037274 21 0.035613 24 0.029229 20 0.019669 15 0.017377 12 0.016723 14 0.004122 22 0.06338109284027724 17 0.05986545650918065 0 0.05687441931236605 18 0.055585158146003975 9 0.055038390328703224 19 0.0499276001311696 11 0.049908736330926476 21 0.047698204826280934 10 0.04553873748943935 16 0.04274969303176564 4 0.03902119270450315 6 0.0385162012720443 5 0.03831920985277481 8 0.03739286845406421 7 0.03719975462790566 1 0.0370427086469062 2 0.03645257625112103 23 0.036147951302869956 3 0.035852425694134944 24 0.031153232808374582 12 0.028719516250771716 20 0.026522437413951327 15 0.01816854584240401 14 0.016484829513835016 13 0.012960088840448147 __DUMMY__ 0.003478971577777892 false 1.0 204 0 0.089899 17 0.082534 9 0.061906 11 0.060882 22 0.060228 16 0.059755 10 0.056292 18 0.054869 6 0.043772 8 0.040675 7 0.040347 1 0.040325 2 0.040132 4 0.039099 5 0.038889 19 0.038316 3 0.034256 21 0.031419 12 0.029227 23 0.020965 13 0.017474 15 0.013999 14 0.00436 24 3.79E-4 0 0.089899 17 0.082534 9 0.061906 11 0.060882 22 0.060228 16 0.059755 10 0.056292 18 0.054869 6 0.043772 8 0.040675 7 0.040347 1 0.040325 2 0.040132 4 0.039099 5 0.038889 19 0.038316 3 0.034256 21 0.031419 12 0.029227 23 0.020965 13 0.017474 15 0.013999 14 0.00436 24 3.79E-4 0 0.0720386738786877 17 0.06922072143900575 22 0.06305005349514481 11 0.05784853648205769 9 0.05756996385186196 18 0.05684902030376902 10 0.052749231383912805 16 0.04921766442047062 19 0.04524155685817137 21 0.04350523532931568 6 0.03877762280091557 4 0.03695959861552451 5 0.03656490998184323 8 0.03634148045269252 7 0.03616628589534245 1 0.036048275212047266 2 0.035679850111995606 12 0.03303558815460065 3 0.03255220319396547 23 0.028134834832474823 13 0.019563335743091013 24 0.015900451352126192 15 0.015356570551885947 20 0.014335483706735873 14 0.014015338806615716 __DUMMY__ 0.0032775131457458335 false 1.0 447 14 0.091078 10 0.090246 13 0.089126 18 0.082465 21 0.069479 11 0.067764 22 0.06479 12 0.063759 9 0.054031 15 0.047471 0 0.047168 19 0.039592 17 0.032707 20 0.022556 23 0.01995 4 0.018999 5 0.018275 6 0.017046 8 0.012242 1 0.01175 7 0.011654 2 0.011399 3 0.00997 24 0.006481 14 0.091078 10 0.090246 13 0.089126 18 0.082465 21 0.069479 11 0.067764 22 0.06479 12 0.063759 9 0.054031 15 0.047471 0 0.047168 19 0.039592 17 0.032707 20 0.022556 23 0.01995 4 0.018999 5 0.018275 6 0.017046 8 0.012242 1 0.01175 7 0.011654 2 0.011399 3 0.00997 24 0.006481 18 0.07351819462047013 21 0.07062351616695255 10 0.07053585698836728 22 0.06576711931393349 13 0.0651131141321171 14 0.06495705193453193 11 0.06441423213764914 12 0.06029066766533618 19 0.05089746664532518 9 0.048031198642391436 0 0.044832008986720386 17 0.03953335177628053 20 0.03329684617554389 15 0.03313036542803216 23 0.030121593151092536 24 0.02387925039117615 4 0.02180168473338596 5 0.02119237252712684 6 0.019598786830111112 16 0.017645921656261002 8 0.01590148117361694 7 0.015627775199036513 1 0.015556020714174435 2 0.015189330378482871 3 0.014717186870088833 __DUMMY__ 0.0038276057617953273 false 1.0 205 0 0.083365 17 0.076195 10 0.070824 18 0.065811 11 0.065633 16 0.059842 22 0.05675 9 0.055257 19 0.046995 12 0.039881 21 0.037385 13 0.037064 6 0.031399 8 0.027853 15 0.027841 7 0.027734 1 0.027663 4 0.027566 2 0.027319 5 0.027174 14 0.026961 3 0.022073 23 0.018169 20 0.013244 0 0.083365 17 0.076195 10 0.070824 18 0.065811 11 0.065633 16 0.059842 22 0.05675 9 0.055257 19 0.046995 12 0.039881 21 0.037385 13 0.037064 6 0.031399 8 0.027853 15 0.027841 7 0.027734 1 0.027663 4 0.027566 2 0.027319 5 0.027174 14 0.026961 3 0.022073 23 0.018169 20 0.013244 0 0.06725344326662328 18 0.06492609011587694 17 0.0647830791926883 10 0.06218229967338416 22 0.06166508335405667 11 0.061455804719677716 9 0.05278382527090591 19 0.05192783002097741 21 0.04877428691538048 16 0.048743799415349016 12 0.04085683442597277 13 0.03243748894633056 6 0.02994689339206572 4 0.028832853904429 14 0.02870519974924931 5 0.028368669631786483 8 0.02720452413109236 7 0.027140553510849763 1 0.02699839390249889 23 0.026862094619788522 2 0.026583660770111962 3 0.0239755518041475 20 0.023909403628016555 15 0.023674900680117295 24 0.016499613440744913 __DUMMY__ 0.0035078215178786635 false 1.0 689 17 0.086799 0 0.084286 9 0.064518 16 0.063651 22 0.058375 18 0.054547 10 0.048996 6 0.047484 11 0.046097 8 0.045188 1 0.045096 7 0.045008 2 0.044852 4 0.04307 5 0.042892 19 0.039697 3 0.039565 21 0.025454 23 0.022614 15 0.020282 12 0.016652 24 0.006566 20 0.005247 13 0.003064 17 0.086799 0 0.084286 9 0.064518 16 0.063651 22 0.058375 18 0.054547 10 0.048996 6 0.047484 11 0.046097 8 0.045188 1 0.045096 7 0.045008 2 0.044852 4 0.04307 5 0.042892 19 0.039697 3 0.039565 21 0.025454 23 0.022614 15 0.020282 12 0.016652 24 0.006566 20 0.005247 13 0.003064 17 0.07298124568345207 0 0.07091090158466018 22 0.061729235264985555 9 0.059142135941802315 18 0.05671038600711833 16 0.052984394868254556 11 0.050538490434411706 10 0.04938972378005268 19 0.0459121410414562 6 0.040890134890537284 21 0.03900664901533004 4 0.03893959075278299 8 0.03885998275436727 7 0.03873824367222682 1 0.0386666020254948 5 0.03855233562245567 2 0.03827568235805145 3 0.035226217442682624 23 0.02829239470901862 12 0.02590448810945265 15 0.018855558414406524 24 0.017751969033533477 20 0.016200521638209845 13 0.011555410888129579 14 0.01073248524144415 __DUMMY__ 0.003253078825682542 false 1.0 448 18 0.094312 10 0.09129 19 0.0775 11 0.076222 21 0.07533 22 0.071995 14 0.060012 12 0.059982 0 0.056005 13 0.055827 17 0.052818 20 0.052091 9 0.04605 16 0.039635 15 0.03029 24 0.022851 23 0.021786 4 0.005722 5 0.005457 6 0.003269 3 5.32E-4 7 4.78E-4 8 3.05E-4 1 2.41E-4 18 0.094312 10 0.09129 19 0.0775 11 0.076222 21 0.07533 22 0.071995 14 0.060012 12 0.059982 0 0.056005 13 0.055827 17 0.052818 20 0.052091 9 0.04605 16 0.039635 15 0.03029 24 0.022851 23 0.021786 4 0.005722 5 0.005457 6 0.003269 3 5.32E-4 7 4.78E-4 8 3.05E-4 1 2.41E-4 18 0.08160070349659623 21 0.07453651113065393 19 0.07250018847849163 10 0.07219931584769422 22 0.07011742227995678 11 0.06878839844864568 12 0.05798769844782849 20 0.05067474272496925 14 0.050412719686239726 17 0.04932615586789211 0 0.04807648154985815 13 0.04764879602375058 9 0.04353678656547451 16 0.03785249340988103 24 0.03333381490498701 23 0.03136275398865054 15 0.025544247265467026 4 0.013809441854371364 5 0.013420957595541298 6 0.010999209217386808 3 0.008799133763241946 7 0.00847634472201643 8 0.008374382526744252 1 0.008236249648052295 2 0.007931208236167178 __DUMMY__ 0.00445384231944139 false 1.0 206 11 0.102833 10 0.085628 21 0.081165 18 0.079196 22 0.077889 12 0.072085 13 0.065884 19 0.065302 0 0.063686 14 0.060509 17 0.050698 9 0.041676 16 0.036298 20 0.033866 15 0.022582 24 0.021012 23 0.018181 5 0.006851 4 0.006832 6 0.005129 2 7.72E-4 7 7.42E-4 8 6.24E-4 1 5.58E-4 11 0.102833 10 0.085628 21 0.081165 18 0.079196 22 0.077889 12 0.072085 13 0.065884 19 0.065302 0 0.063686 14 0.060509 17 0.050698 9 0.041676 16 0.036298 20 0.033866 15 0.022582 24 0.021012 23 0.018181 5 0.006851 4 0.006832 6 0.005129 2 7.72E-4 7 7.42E-4 8 6.24E-4 1 5.58E-4 11 0.08185291928110554 21 0.07743497042655911 18 0.07365055487008644 22 0.07352137943713268 10 0.06885497775373105 19 0.06631036883800574 12 0.06329720026335095 0 0.05219330592826874 13 0.05127914822509852 14 0.04937093201928759 17 0.04860445288703342 9 0.04188888889732657 20 0.04096580660712698 16 0.036271380018973176 24 0.032434436762753274 23 0.02979117302192505 15 0.02070075399523115 4 0.01490843121994343 5 0.014647840540039278 6 0.012465534666294934 7 0.009183216301549403 8 0.009099454552827378 3 0.009090266816590196 1 0.00895784562755385 2 0.0088546850908577 __DUMMY__ 0.00437007595134761 false 1.0 207 18 0.084345 21 0.084076 19 0.081619 12 0.079965 20 0.07265 11 0.065685 13 0.064321 22 0.063402 10 0.062741 14 0.057031 24 0.048095 23 0.045031 17 0.041691 16 0.040632 0 0.03241 15 0.02745 9 0.027387 4 0.007605 5 0.00688 6 0.0044 7 9.84E-4 3 9.47E-4 8 5.09E-4 2 1.42E-4 18 0.084345 21 0.084076 19 0.081619 12 0.079965 20 0.07265 11 0.065685 13 0.064321 22 0.063402 10 0.062741 14 0.057031 24 0.048095 23 0.045031 17 0.041691 16 0.040632 0 0.03241 15 0.02745 9 0.027387 4 0.007605 5 0.00688 6 0.0044 7 9.84E-4 3 9.47E-4 8 5.09E-4 2 1.42E-4 21 0.0786110384172136 18 0.07612187938491294 19 0.07417077662184814 12 0.06815602642204154 22 0.06518106741679675 11 0.06296175645145925 20 0.06119623126805604 10 0.05752650474362142 13 0.052533973070568 14 0.04952156909726342 24 0.04625845142572955 23 0.04334614619886009 17 0.043272256366799586 16 0.038186767075001675 0 0.035661459641996365 9 0.03378122714785038 15 0.02486242657323258 4 0.01492599655897773 5 0.014320479259248991 6 0.011757235752779198 3 0.009198865980662163 7 0.00892110103453444 8 0.008679829597984242 1 0.008327800215981446 2 0.008208301745021842 __DUMMY__ 0.004310832531558643 false 1.0 449 19 0.069318 17 0.068761 18 0.06647 22 0.066454 0 0.060653 16 0.059716 9 0.054739 10 0.053263 11 0.049972 21 0.044371 20 0.037313 23 0.034395 4 0.031931 5 0.031389 24 0.030951 1 0.030845 7 0.030842 8 0.030802 3 0.030786 6 0.030742 2 0.030203 15 0.022595 12 0.020525 14 0.012964 19 0.069318 17 0.068761 18 0.06647 22 0.066454 0 0.060653 16 0.059716 9 0.054739 10 0.053263 11 0.049972 21 0.044371 20 0.037313 23 0.034395 4 0.031931 5 0.031389 24 0.030951 1 0.030845 7 0.030842 8 0.030802 3 0.030786 6 0.030742 2 0.030203 15 0.022595 12 0.020525 14 0.012964 22 0.06723342921213593 19 0.06567339571820831 18 0.06527767586266153 17 0.06015511527971533 21 0.055571394736993296 11 0.0549146669582568 0 0.05389595821445892 10 0.05179597539252462 9 0.05019507507045933 16 0.049481623234885676 20 0.03885623523189186 23 0.03652857612875363 24 0.03496882445528699 12 0.03455691537441368 4 0.02943065208983508 5 0.02888996108116703 6 0.02776782649133556 7 0.026733069005282592 8 0.02671424447087766 1 0.026599049040345345 3 0.02655592122053428 2 0.026065409322633466 14 0.022379048380007895 15 0.020186000175265766 13 0.015543814389279743 __DUMMY__ 0.0040301434627897014 false 1.0 208 21 0.099134 18 0.093331 19 0.084007 22 0.082626 12 0.072085 11 0.067444 20 0.066267 10 0.063409 23 0.061253 24 0.054601 14 0.047372 13 0.044335 17 0.037427 9 0.035506 0 0.023761 16 0.016858 15 0.015073 4 0.012624 5 0.011762 6 0.006141 3 0.002421 7 0.001277 8 0.001124 1 1.63E-4 21 0.099134 18 0.093331 19 0.084007 22 0.082626 12 0.072085 11 0.067444 20 0.066267 10 0.063409 23 0.061253 24 0.054601 14 0.047372 13 0.044335 17 0.037427 9 0.035506 0 0.023761 16 0.016858 15 0.015073 4 0.012624 5 0.011762 6 0.006141 3 0.002421 7 0.001277 8 0.001124 1 1.63E-4 21 0.08718015984115135 18 0.07908653148753786 19 0.07540826891683454 22 0.07524335523945287 12 0.06504980535162111 11 0.06460784614101968 20 0.05774338514688513 10 0.056185932264804464 23 0.051852285833879214 24 0.05055298348166647 14 0.043310892686846084 13 0.04208516476209527 17 0.04090822540462608 9 0.037483252493308354 0 0.031259119686003686 16 0.026691321070528663 4 0.017777578404363167 5 0.017105040405946712 15 0.01664736367291491 6 0.012941054621132233 3 0.010337406002594005 7 0.00942056711762753 8 0.009311903319892149 1 0.00875467736614096 2 0.008485992845556263 __DUMMY__ 0.004569886435571004 false 1.0 209 18 0.094183 10 0.089766 19 0.077874 11 0.076548 21 0.075489 22 0.072299 12 0.060399 14 0.060244 13 0.056093 0 0.05598 17 0.053392 20 0.050833 9 0.046584 16 0.039703 15 0.03038 24 0.022493 23 0.021805 4 0.005673 5 0.00523 6 0.003229 7 6.46E-4 3 5.34E-4 8 3.4E-4 1 2.83E-4 18 0.094183 10 0.089766 19 0.077874 11 0.076548 21 0.075489 22 0.072299 12 0.060399 14 0.060244 13 0.056093 0 0.05598 17 0.053392 20 0.050833 9 0.046584 16 0.039703 15 0.03038 24 0.022493 23 0.021805 4 0.005673 5 0.00523 6 0.003229 7 6.46E-4 3 5.34E-4 8 3.4E-4 1 2.83E-4 18 0.08154031058375988 21 0.07461094890694067 19 0.07267528110950568 10 0.0714858367844178 22 0.07025974356292007 11 0.0689410192981392 12 0.058182922049788 14 0.05052133329692225 20 0.05008579478428571 17 0.049594880921908314 0 0.048064777496982895 13 0.04777332714634345 9 0.04378678513489028 16 0.03788432843370178 24 0.03316621286781316 23 0.031371649068835765 15 0.025586381855818 4 0.013786501910735844 5 0.013314684795433856 6 0.01098048273278638 3 0.00880007008747197 7 0.008554995957338243 8 0.008390768200769632 1 0.008255912456882751 2 0.007931208236167182 __DUMMY__ 0.004453842319441392 false 1.0 690 20 0.112371 19 0.094476 24 0.086182 18 0.077936 23 0.075864 21 0.063926 16 0.054911 12 0.054866 15 0.047711 22 0.045302 14 0.039979 17 0.037076 13 0.030516 10 0.027071 11 0.022245 4 0.018323 3 0.016786 5 0.016578 7 0.014079 8 0.01359 6 0.013165 1 0.012921 2 0.012614 9 0.011512 20 0.112371 19 0.094476 24 0.086182 18 0.077936 23 0.075864 21 0.063926 16 0.054911 12 0.054866 15 0.047711 22 0.045302 14 0.039979 17 0.037076 13 0.030516 10 0.027071 11 0.022245 4 0.018323 3 0.016786 5 0.016578 7 0.014079 8 0.01359 6 0.013165 1 0.012921 2 0.012614 9 0.011512 20 0.08255866971540235 19 0.08172371033789033 18 0.07400369413154355 21 0.0674037528309418 24 0.06558277921613757 23 0.05825719707743796 22 0.055674593886828126 12 0.054046323688838535 16 0.04672970551597474 14 0.04194718025540193 17 0.041671419568082575 10 0.0403393270014869 11 0.04023227739642893 15 0.03766215272600234 13 0.034622932859571395 9 0.02570709633250226 4 0.019640182864429357 0 0.01917716898223324 5 0.018555819004997146 3 0.016726007132258847 6 0.01545733327731463 7 0.014938218373290015 8 0.014704209771134784 1 0.01426058476135674 2 0.013935193676769209 __DUMMY__ 0.004442469615744759 false 1.0 691 22 0.102223 11 0.101684 10 0.0976 18 0.095584 21 0.089644 19 0.070857 0 0.06904 9 0.065914 17 0.057831 14 0.055378 12 0.047125 13 0.038288 16 0.026287 20 0.02186 15 0.015422 24 0.013068 23 0.008839 4 0.007825 5 0.007744 6 0.003695 3 0.001715 7 8.71E-4 8 7.87E-4 1 7.17E-4 22 0.102223 11 0.101684 10 0.0976 18 0.095584 21 0.089644 19 0.070857 0 0.06904 9 0.065914 17 0.057831 14 0.055378 12 0.047125 13 0.038288 16 0.026287 20 0.02186 15 0.015422 24 0.013068 23 0.008839 4 0.007825 5 0.007744 6 0.003695 3 0.001715 7 8.71E-4 8 7.87E-4 1 7.17E-4 22 0.08465613488255817 18 0.0805338120989846 11 0.08011388128080699 21 0.07856970541073957 10 0.07448437586798067 19 0.06687382989928774 0 0.056583756862264925 9 0.055234369581257374 17 0.053358096180925664 12 0.048253232564940615 14 0.04509386543842964 13 0.035613423046993636 20 0.032705406882437726 16 0.031741111163757996 24 0.02688717153414359 23 0.02432152004118591 15 0.01752642072494355 4 0.01707211311449816 5 0.01675065950513201 6 0.013741914250877809 3 0.011780227376748892 7 0.011308529370729388 8 0.011256564527331495 1 0.011099408208737279 2 0.010534683783907251 __DUMMY__ 0.0039057864003992594 false 1.0 692 22 0.092818 21 0.068354 11 0.067734 9 0.067654 18 0.061088 0 0.057964 17 0.055495 19 0.050974 10 0.050866 4 0.039375 5 0.038948 6 0.035637 3 0.035564 8 0.034263 7 0.034167 1 0.033634 2 0.033528 24 0.032643 23 0.029997 16 0.024338 12 0.024227 14 0.01607 20 0.014528 15 1.33E-4 22 0.092818 21 0.068354 11 0.067734 9 0.067654 18 0.061088 0 0.057964 17 0.055495 19 0.050974 10 0.050866 4 0.039375 5 0.038948 6 0.035637 3 0.035564 8 0.034263 7 0.034167 1 0.033634 2 0.033528 24 0.032643 23 0.029997 16 0.024338 12 0.024227 14 0.01607 20 0.014528 15 1.33E-4 22 0.07981217042051952 21 0.06674498740734292 11 0.06297250191607759 18 0.0625102386306137 9 0.05710598300483675 19 0.05576873890074541 17 0.053071001733749554 0 0.05232122254714225 10 0.050983828197578816 12 0.03553787817814424 24 0.03553763872730219 23 0.03415463937156761 4 0.033633637507635324 5 0.0331436392598967 16 0.031076313230063258 6 0.030685056860001163 3 0.029562797886266017 8 0.02900980526426355 7 0.028966975548526376 1 0.028588511001918976 2 0.028297307384379668 20 0.027275339180362408 14 0.02436634937867677 13 0.015439043086124336 15 0.009656805488143797 __DUMMY__ 0.003777589888121078 false 1.0 450 23 0.086797 24 0.077114 20 0.069105 19 0.056471 4 0.054016 3 0.053285 5 0.052999 8 0.050291 7 0.049934 1 0.049718 21 0.049307 2 0.049109 6 0.048984 18 0.041398 22 0.038179 12 0.034555 9 0.034092 16 0.023513 17 0.019747 15 0.017231 14 0.017096 13 0.013317 10 0.012087 0 0.001655 23 0.086797 24 0.077114 20 0.069105 19 0.056471 4 0.054016 3 0.053285 5 0.052999 8 0.050291 7 0.049934 1 0.049718 21 0.049307 2 0.049109 6 0.048984 18 0.041398 22 0.038179 12 0.034555 9 0.034092 16 0.023513 17 0.019747 15 0.017231 14 0.017096 13 0.013317 10 0.012087 0 0.001655 23 0.06407563224018635 19 0.06331522564216507 21 0.062294785140686024 24 0.061561726819675325 20 0.060733485437715846 18 0.05560642106934139 22 0.05348856726708456 12 0.045837914906929615 4 0.03700535523218445 9 0.0365105903952797 5 0.03625677879586198 3 0.034252710979542314 17 0.032820742344417404 6 0.03280893914964667 10 0.03245187211482695 8 0.03232477799946991 7 0.03218791862870874 1 0.03193680966956049 2 0.031461095091545425 11 0.031369107985747297 16 0.030758267369395038 14 0.02974349696404769 13 0.026573843840900058 0 0.02015890777733041 15 0.020031608814659766 __DUMMY__ 0.004433418323091383 false 1.0 693 22 0.093919 11 0.07447 21 0.07434 9 0.068063 18 0.064836 0 0.059364 10 0.056433 17 0.054843 19 0.052067 4 0.035489 5 0.035003 6 0.0318 12 0.030485 3 0.030429 24 0.029744 7 0.02971 8 0.029665 1 0.029177 2 0.028643 23 0.027822 14 0.021888 16 0.020892 20 0.012368 13 0.008548 22 0.093919 11 0.07447 21 0.07434 9 0.068063 18 0.064836 0 0.059364 10 0.056433 17 0.054843 19 0.052067 4 0.035489 5 0.035003 6 0.0318 12 0.030485 3 0.030429 24 0.029744 7 0.02971 8 0.029665 1 0.029177 2 0.028643 23 0.027822 14 0.021888 16 0.020892 20 0.012368 13 0.008548 22 0.08045947803706978 21 0.07051628986576318 11 0.06672433359319478 18 0.06489919703496697 19 0.05681216071369841 9 0.05680438965487326 10 0.05424098933214172 0 0.05250103535511211 17 0.05218040443943226 12 0.039666923729420316 24 0.03432888392092727 23 0.03317281623103602 4 0.031071334792340602 5 0.03055597265066784 16 0.029040523239896497 14 0.028329880063347336 6 0.02806428296963545 20 0.026958543980040692 3 0.026314600160530683 7 0.025989051883900268 8 0.025964645102355022 1 0.02560783920958314 2 0.02512707378100206 13 0.02089324670484016 15 0.009827345115064548 __DUMMY__ 0.003948758439159689 false 1.0 451 9 0.076396 10 0.072273 22 0.071912 18 0.07074 0 0.065206 17 0.059132 11 0.048872 19 0.045729 4 0.041765 5 0.040893 3 0.040609 8 0.040384 1 0.040175 7 0.040143 21 0.039714 6 0.039698 2 0.039232 16 0.026667 15 0.026489 14 0.026076 23 0.020462 20 0.013509 24 0.012887 12 0.001037 9 0.076396 10 0.072273 22 0.071912 18 0.07074 0 0.065206 17 0.059132 11 0.048872 19 0.045729 4 0.041765 5 0.040893 3 0.040609 8 0.040384 1 0.040175 7 0.040143 21 0.039714 6 0.039698 2 0.039232 16 0.026667 15 0.026489 14 0.026076 23 0.020462 20 0.013509 24 0.012887 12 0.001037 22 0.06888578449505434 18 0.0669010725584081 9 0.06467509645489236 10 0.06325611344520832 0 0.058548111693407755 17 0.055935385429384275 11 0.0519575809382187 19 0.049720122599066136 21 0.04832237858203964 4 0.037190456267195915 5 0.03648483852783551 6 0.03537421268138764 8 0.03487692266003295 7 0.0347485761195476 3 0.03470041067425654 1 0.03464715099984121 2 0.033946227498779194 16 0.030990893604331292 14 0.027926623399353343 23 0.02759666501645942 15 0.02330248382699996 20 0.022682643862642925 24 0.022015780282678924 12 0.019289456880726842 13 0.012662379227477524 __DUMMY__ 0.0033626322747734444 false 1.0 210 19 0.116553 20 0.100152 18 0.092423 23 0.070051 10 0.069187 16 0.069173 24 0.061602 21 0.06055 22 0.056723 15 0.046376 14 0.046195 11 0.045937 12 0.045397 17 0.038837 13 0.023161 0 0.020062 9 0.016845 4 0.006863 5 0.006337 3 0.005657 7 0.001116 6 3.4E-4 8 2.75E-4 1 1.87E-4 19 0.116553 20 0.100152 18 0.092423 23 0.070051 10 0.069187 16 0.069173 24 0.061602 21 0.06055 22 0.056723 15 0.046376 14 0.046195 11 0.045937 12 0.045397 17 0.038837 13 0.023161 0 0.020062 9 0.016845 4 0.006863 5 0.006337 3 0.005657 7 0.001116 6 3.4E-4 8 2.75E-4 1 1.87E-4 19 0.09191754534310936 18 0.0798084319268993 20 0.07592588107918757 21 0.06708457544369094 22 0.062063288858117 10 0.05919006044746389 23 0.05628316444358261 24 0.054677483445530285 16 0.05270602832168964 11 0.05244674667780081 12 0.050171034061171134 14 0.04329963144388569 17 0.04202098613697515 15 0.03439028911748796 13 0.030375907338024973 0 0.02857066534957198 9 0.02835451253957433 4 0.014852805908190474 5 0.014333368096750749 3 0.011993554099634875 6 0.009919929561220526 7 0.009294949620711092 8 0.00887849774515475 1 0.008710194924775427 2 0.008440083051214697 __DUMMY__ 0.00429038501858471 false 1.0 452 0 0.089157 17 0.085288 9 0.066242 22 0.061946 16 0.059438 18 0.055578 11 0.054296 10 0.054084 6 0.046352 8 0.043869 7 0.04356 1 0.043453 2 0.043199 4 0.042056 5 0.041516 19 0.038617 3 0.037892 21 0.028832 23 0.020657 12 0.019551 15 0.014445 13 0.006294 24 0.003061 20 6.18E-4 0 0.089157 17 0.085288 9 0.066242 22 0.061946 16 0.059438 18 0.055578 11 0.054296 10 0.054084 6 0.046352 8 0.043869 7 0.04356 1 0.043453 2 0.043199 4 0.042056 5 0.041516 19 0.038617 3 0.037892 21 0.028832 23 0.020657 12 0.019551 15 0.014445 13 0.006294 24 0.003061 20 6.18E-4 0 0.07209966743980382 17 0.07089735392794413 22 0.06376042036478013 9 0.05998456677787758 18 0.057053166096957375 11 0.05444033154445471 10 0.05169776435328269 16 0.04929162601944011 19 0.04509289985235647 21 0.04158832104774919 6 0.04036225219792363 4 0.03866719176792997 8 0.03825792932424589 5 0.038114672572320964 7 0.03808499789078901 1 0.03792603204196046 2 0.03752753181940071 3 0.03464132544430557 23 0.02776948062724359 12 0.02767212773273232 24 0.016803313134265165 15 0.015723167165412506 20 0.014189711270256023 13 0.013608298258161433 14 0.011523440752827989 __DUMMY__ 0.0032224105755785794 false 1.0 694 9 0.065666 22 0.059705 0 0.053534 3 0.051526 4 0.051143 17 0.05089 8 0.050802 5 0.050515 7 0.05049 1 0.050286 2 0.05003 6 0.049612 18 0.047866 10 0.046376 19 0.03742 11 0.037006 21 0.034808 23 0.0335 24 0.029831 16 0.029824 15 0.02581 20 0.019326 14 0.018374 12 0.00566 9 0.065666 22 0.059705 0 0.053534 3 0.051526 4 0.051143 17 0.05089 8 0.050802 5 0.050515 7 0.05049 1 0.050286 2 0.05003 6 0.049612 18 0.047866 10 0.046376 19 0.03742 11 0.037006 21 0.034808 23 0.0335 24 0.029831 16 0.029824 15 0.02581 20 0.019326 14 0.018374 12 0.00566 22 0.06256790161002185 9 0.06103323072961076 0 0.054171524006473334 18 0.05318072145513654 17 0.05311663912749233 10 0.04832449005260741 11 0.044549291944639524 4 0.044318309151047494 5 0.043710171694306334 21 0.043454122454867065 19 0.04332014651373331 6 0.043012089327287076 8 0.04289295723815116 3 0.04275860941374237 7 0.042720429399593106 1 0.04250627822829645 2 0.04210593640670543 23 0.033995107914920324 16 0.0328858012718333 24 0.02961069606089753 20 0.02264458393694204 15 0.021655954798771568 14 0.020587100386650146 12 0.018585469684304336 13 0.00908417338564936 __DUMMY__ 0.0032082638063196775 false 1.0 695 23 0.091809 24 0.069247 4 0.063251 5 0.06227 3 0.061231 7 0.060804 6 0.060671 8 0.060595 1 0.060527 2 0.059804 20 0.049123 21 0.041218 19 0.039137 22 0.034989 9 0.034839 12 0.033722 18 0.027619 17 0.025897 16 0.023966 15 0.011547 13 0.010349 0 0.009964 14 0.00464 11 0.002781 23 0.091809 24 0.069247 4 0.063251 5 0.06227 3 0.061231 7 0.060804 6 0.060671 8 0.060595 1 0.060527 2 0.059804 20 0.049123 21 0.041218 19 0.039137 22 0.034989 9 0.034839 12 0.033722 18 0.027619 17 0.025897 16 0.023966 15 0.011547 13 0.010349 0 0.009964 14 0.00464 11 0.002781 23 0.06701581867457006 21 0.0595871419273885 24 0.0582223007442612 19 0.054453845949965884 22 0.052589077471124894 20 0.05006841731644078 18 0.0476693189615674 12 0.046444077372401166 4 0.04200225648250017 5 0.04126587713026028 6 0.03897869686997753 3 0.03847553850385116 7 0.037867644197035616 8 0.03773051937709227 1 0.03758442221442312 2 0.037047516138799606 9 0.03689474953402993 17 0.035474743696853495 11 0.03339567229222324 16 0.030398125255303967 10 0.025286848163014738 13 0.02511513553784789 0 0.024201409155442184 14 0.0224958727165889 15 0.015069099014545896 __DUMMY__ 0.004665875302489933 false 1.0 453 9 0.076867 22 0.071081 0 0.060096 10 0.055614 4 0.054785 5 0.053869 6 0.053184 8 0.052267 7 0.051775 3 0.051155 1 0.051113 2 0.050841 18 0.050578 11 0.050451 17 0.047119 21 0.046438 23 0.029238 19 0.024938 24 0.018561 12 0.015861 14 0.015536 13 0.007507 16 0.007231 15 0.003893 9 0.076867 22 0.071081 0 0.060096 10 0.055614 4 0.054785 5 0.053869 6 0.053184 8 0.052267 7 0.051775 3 0.051155 1 0.051113 2 0.050841 18 0.050578 11 0.050451 17 0.047119 21 0.046438 23 0.029238 19 0.024938 24 0.018561 12 0.015861 14 0.015536 13 0.007507 16 0.007231 15 0.003893 22 0.06948568160760644 9 0.06273935970758573 18 0.05616073851202601 21 0.05562469951640281 11 0.054724401622721394 0 0.054245539077244755 10 0.052997731233382826 17 0.048806058511493985 4 0.042402684220162246 5 0.04167757829648922 19 0.04093133510584868 6 0.040609488457766386 8 0.03908559658654702 7 0.03885771513867935 1 0.03842742770182063 3 0.03833334478888395 2 0.03803937913906135 23 0.033364026962649625 12 0.03097867883696339 24 0.02747461352530831 14 0.023361864784517634 16 0.021310508949728288 13 0.018949650172200457 20 0.01763629569042985 15 0.010241489535929457 __DUMMY__ 0.003534112318549986 false 1.0 211 16 0.097265 17 0.095043 0 0.085439 12 0.076823 19 0.059282 18 0.058508 11 0.055597 13 0.055403 23 0.046308 10 0.042475 22 0.03631 6 0.033967 21 0.031002 9 0.028676 8 0.025168 4 0.024743 7 0.024652 1 0.024645 2 0.024543 5 0.024225 20 0.022679 15 0.015004 3 0.012037 14 2.06E-4 16 0.097265 17 0.095043 0 0.085439 12 0.076823 19 0.059282 18 0.058508 11 0.055597 13 0.055403 23 0.046308 10 0.042475 22 0.03631 6 0.033967 21 0.031002 9 0.028676 8 0.025168 4 0.024743 7 0.024652 1 0.024645 2 0.024543 5 0.024225 20 0.022679 15 0.015004 3 0.012037 14 2.06E-4 17 0.07694145274000928 16 0.07401226505289238 0 0.06813541108305282 12 0.06127990233460643 19 0.05988228983182278 18 0.05961352916228939 11 0.0547350889241176 22 0.048335464858968426 10 0.04417748358068786 21 0.04366687349017838 23 0.04256566360030926 13 0.04217706655152626 9 0.03582843618460814 20 0.0316781611602233 6 0.03086599550170821 4 0.026480048024847457 5 0.02597062199800958 8 0.025433555352776156 7 0.02515012260739832 1 0.025050467071399705 2 0.02477755174374564 15 0.01950885108054528 24 0.018427496914557487 3 0.01802767987603792 14 0.013628151630446601 __DUMMY__ 0.0036503696432353245 false 1.0 212 19 0.09872 18 0.09772 20 0.087544 10 0.080641 16 0.060294 14 0.05802 21 0.055852 15 0.052962 12 0.051419 22 0.051146 23 0.050003 11 0.048298 17 0.045786 13 0.0452 24 0.043509 0 0.033222 9 0.025453 4 0.005062 5 0.004451 3 0.002504 6 0.001344 7 5.65E-4 8 2.4E-4 2 4.5E-5 19 0.09872 18 0.09772 20 0.087544 10 0.080641 16 0.060294 14 0.05802 21 0.055852 15 0.052962 12 0.051419 22 0.051146 23 0.050003 11 0.048298 17 0.045786 13 0.0452 24 0.043509 0 0.033222 9 0.025453 4 0.005062 5 0.004451 3 0.002504 6 0.001344 7 5.65E-4 8 2.4E-4 2 4.5E-5 18 0.0839873694572504 19 0.08380479598126157 20 0.07020391405489315 10 0.06684283093276493 21 0.06397577968197608 22 0.05899519391374336 11 0.053583240413845254 12 0.05269617871600491 14 0.05020062478393758 16 0.04880975358713719 17 0.04584282995280214 23 0.04564907840725536 24 0.044544717416084983 13 0.041735367870004356 15 0.038951400773215544 0 0.03566202483309152 9 0.03276779357935028 4 0.013205611087680131 5 0.012654830056568414 3 0.009723693854667616 6 0.009696769271685316 7 0.008327820533525 8 0.008159685372434045 1 0.007925970896602836 2 0.007763981630886859 __DUMMY__ 0.004288742941331221 false 1.0 454 9 0.065438 22 0.059232 0 0.051985 3 0.051569 4 0.051169 17 0.050984 8 0.050928 1 0.050778 7 0.050745 5 0.050521 2 0.050097 6 0.049578 18 0.047687 10 0.045423 19 0.037691 11 0.03652 21 0.035389 23 0.033551 24 0.030205 16 0.029795 15 0.026057 20 0.019577 14 0.01872 12 0.006363 9 0.065438 22 0.059232 0 0.051985 3 0.051569 4 0.051169 17 0.050984 8 0.050928 1 0.050778 7 0.050745 5 0.050521 2 0.050097 6 0.049578 18 0.047687 10 0.045423 19 0.037691 11 0.03652 21 0.035389 23 0.033551 24 0.030205 16 0.029795 15 0.026057 20 0.019577 14 0.01872 12 0.006363 22 0.06234915699354546 9 0.06092776080175924 0 0.05345530944770723 17 0.053160049959927215 18 0.05309791344225049 10 0.04788383546639067 4 0.044330289007572556 11 0.04432455357122256 21 0.04372270174149994 5 0.04371290531564985 19 0.043445400562784925 6 0.04299632999910532 8 0.04295117240023997 7 0.04283828656517984 3 0.04277845049037703 1 0.042733710142444654 2 0.042136874243870345 23 0.03401865581399295 16 0.032872363006603546 24 0.02978358379399718 20 0.022760610306753772 15 0.02177013272324586 14 0.020747050947166477 12 0.0189104774313119 13 0.009084164985698176 __DUMMY__ 0.0032082608397031 false 1.0 696 21 0.085305 23 0.081428 24 0.069084 22 0.065923 12 0.062032 11 0.048959 4 0.048018 5 0.045786 6 0.043445 19 0.041369 7 0.040591 8 0.040115 3 0.040043 1 0.039855 2 0.038471 13 0.037945 20 0.034087 9 0.031842 14 0.030283 18 0.02985 17 0.020638 0 0.01034 15 0.007668 16 0.006924 21 0.085305 23 0.081428 24 0.069084 22 0.065923 12 0.062032 11 0.048959 4 0.048018 5 0.045786 6 0.043445 19 0.041369 7 0.040591 8 0.040115 3 0.040043 1 0.039855 2 0.038471 13 0.037945 20 0.034087 9 0.031842 14 0.030283 18 0.02985 17 0.020638 0 0.01034 15 0.007668 16 0.006924 21 0.0810618657605218 22 0.06724564200894242 23 0.0619895235426775 12 0.0608417030036247 24 0.058171586852970324 19 0.05562888475752489 11 0.05550723871310681 18 0.04866764759930644 20 0.04304452020152122 13 0.03902583171358136 9 0.0352881430687902 14 0.034761177024529556 4 0.03452413094248464 5 0.033205694466408406 17 0.03293142505827257 6 0.030580141173505285 3 0.028113882085618755 7 0.027993604140117236 8 0.02773123667999908 1 0.02750050878853944 2 0.026662183687810377 10 0.025219199422291918 0 0.02444273989896608 16 0.022318815320230324 15 0.012701035006201884 __DUMMY__ 0.004841639082456736 false 1.0 455 9 0.066074 22 0.057758 3 0.053892 4 0.053019 8 0.052288 5 0.052192 7 0.052136 1 0.052112 2 0.051254 6 0.050392 18 0.049751 10 0.048847 0 0.04636 17 0.043421 23 0.035826 19 0.035588 11 0.03451 21 0.033774 24 0.032828 15 0.029012 14 0.023586 20 0.022555 16 0.020449 12 0.002376 9 0.066074 22 0.057758 3 0.053892 4 0.053019 8 0.052288 5 0.052192 7 0.052136 1 0.052112 2 0.051254 6 0.050392 18 0.049751 10 0.048847 0 0.04636 17 0.043421 23 0.035826 19 0.035588 11 0.03451 21 0.033774 24 0.032828 15 0.029012 14 0.023586 20 0.022555 16 0.020449 12 0.002376 22 0.0628962376876864 18 0.05906561975405684 9 0.05717339798945622 10 0.05230198407599427 21 0.04931956053891154 19 0.04868915022781574 17 0.04627390728529687 0 0.045837235642399776 11 0.04583294649134256 4 0.039947152332334306 5 0.03926957436647386 3 0.03838628560483261 8 0.03737367164436316 7 0.03729714931077599 6 0.03727690040572874 1 0.037157221449327815 2 0.03652700131019853 23 0.03643165099477767 24 0.035162394586810586 20 0.03219299193863866 14 0.030184036244081856 16 0.02767993746629948 15 0.02586424138360191 12 0.02304275760173013 13 0.015146545586671762 __DUMMY__ 0.0036704480803927027 false 1.0 213 20 0.107819 23 0.0884 19 0.085467 24 0.076954 18 0.075499 16 0.058421 15 0.055308 12 0.049406 21 0.041806 17 0.036255 14 0.033896 13 0.03225 10 0.02848 4 0.026362 5 0.025781 3 0.024371 6 0.023675 22 0.023661 7 0.023313 2 0.022614 8 0.022572 1 0.022335 11 0.008284 9 0.007073 20 0.107819 23 0.0884 19 0.085467 24 0.076954 18 0.075499 16 0.058421 15 0.055308 12 0.049406 21 0.041806 17 0.036255 14 0.033896 13 0.03225 10 0.02848 4 0.026362 5 0.025781 3 0.024371 6 0.023675 22 0.023661 7 0.023313 2 0.022614 8 0.022572 1 0.022335 11 0.008284 9 0.007073 20 0.08107303334189739 19 0.0777081842346565 18 0.07492879387178614 23 0.0637053475444906 24 0.059605656610887056 21 0.05500428141746478 12 0.0501070410241985 16 0.048423141469321127 22 0.044376026471467454 10 0.04376914788411098 15 0.04354218881222383 17 0.041406631196635554 14 0.04056478322547303 13 0.03583311372944529 11 0.03272706541443371 9 0.023901606320607893 4 0.022962658644690076 5 0.022433700146413996 6 0.020006526874417903 3 0.01996956998305736 0 0.01955567626330702 7 0.01896045213153359 8 0.018610449509415084 1 0.018369998617749846 2 0.018340127554334135 __DUMMY__ 0.0041147977059811 false 1.0 697 9 0.063932 22 0.056494 3 0.053981 4 0.052776 8 0.052275 7 0.052057 1 0.051955 5 0.051941 2 0.051317 6 0.050218 18 0.047587 10 0.045854 0 0.044996 17 0.043917 23 0.037375 19 0.036782 24 0.034392 21 0.033321 11 0.032518 15 0.031857 20 0.024498 16 0.024174 14 0.023589 12 0.002193 9 0.063932 22 0.056494 3 0.053981 4 0.052776 8 0.052275 7 0.052057 1 0.051955 5 0.051941 2 0.051317 6 0.050218 18 0.047587 10 0.045854 0 0.044996 17 0.043917 23 0.037375 19 0.036782 24 0.034392 21 0.033321 11 0.032518 15 0.031857 20 0.024498 16 0.024174 14 0.023589 12 0.002193 22 0.061806269697272445 9 0.05837657350135586 18 0.05552420700179249 10 0.04948783162818015 17 0.04756626889160931 0 0.04713618526032537 19 0.0461107241817112 21 0.046102174309577776 11 0.04338186804834306 4 0.04269099393535347 5 0.04199575117149043 3 0.041474198555559665 8 0.040650724989688865 7 0.04053712938815665 1 0.040361335213008276 6 0.04035809162328158 2 0.039808008396038874 23 0.0367473940140148 24 0.03416516094745914 20 0.02925133007809173 16 0.029120204594540792 14 0.026739858984833255 15 0.025744816060579462 12 0.019587305499063627 13 0.011776241835441058 __DUMMY__ 0.0034993521932304363 false 1.0 214 17 0.055729 6 0.05391 8 0.053622 7 0.053152 1 0.052951 4 0.052896 2 0.052747 5 0.05255 23 0.051534 3 0.051267 9 0.050013 0 0.048678 22 0.046637 16 0.046279 19 0.040876 24 0.038977 18 0.038442 21 0.03267 20 0.029101 11 0.028567 12 0.025601 10 0.025014 15 0.012712 13 0.006075 17 0.055729 6 0.05391 8 0.053622 7 0.053152 1 0.052951 4 0.052896 2 0.052747 5 0.05255 23 0.051534 3 0.051267 9 0.050013 0 0.048678 22 0.046637 16 0.046279 19 0.040876 24 0.038977 18 0.038442 21 0.03267 20 0.029101 11 0.028567 12 0.025601 10 0.025014 15 0.012712 13 0.006075 22 0.05380199065674284 17 0.053282423838311783 19 0.05205978362464147 18 0.05043127484190528 23 0.04769587687874125 21 0.046823731147242205 9 0.04584477344752386 0 0.04575463512018277 16 0.04473751028267109 4 0.0407518467833487 24 0.040613581470838905 5 0.04032165798713148 6 0.04031747466230052 11 0.040205687694058155 8 0.03925879906831879 7 0.03904379797197322 1 0.03885399861222656 2 0.03852481366415944 3 0.0379365569241193 20 0.03777103551601063 12 0.03654225472945081 10 0.03540593708700079 13 0.01799055587514316 15 0.01710636947142766 14 0.014859478553710895 __DUMMY__ 0.004064154090818587 false 1.0 698 19 0.119545 20 0.112516 16 0.092672 18 0.083627 24 0.074495 23 0.061559 21 0.06022 17 0.059698 12 0.054971 15 0.051108 22 0.047916 10 0.040305 11 0.037421 14 0.035154 13 0.024863 0 0.021082 9 0.009924 4 0.004228 5 0.00392 3 0.003075 7 6.45E-4 8 4.42E-4 6 3.79E-4 1 2.32E-4 19 0.119545 20 0.112516 16 0.092672 18 0.083627 24 0.074495 23 0.061559 21 0.06022 17 0.059698 12 0.054971 15 0.051108 22 0.047916 10 0.040305 11 0.037421 14 0.035154 13 0.024863 0 0.021082 9 0.009924 4 0.004228 5 0.00392 3 0.003075 7 6.45E-4 8 4.42E-4 6 3.79E-4 1 2.32E-4 19 0.09489616056836975 20 0.08433550358541882 18 0.07667292221309177 21 0.06618015567034002 16 0.0657366328406029 24 0.0612124797471062 22 0.056362042791183606 12 0.055541269098588725 23 0.05265539039398027 17 0.052288117773966615 11 0.04725624988226731 10 0.045702732481874765 14 0.03909534495124456 15 0.03868480230680573 13 0.032439238649526025 0 0.02838970093348421 9 0.023603546686137792 4 0.012468271235370278 5 0.012063418884239396 3 0.009690193732608609 6 0.008899570061605118 7 0.008039886883166756 8 0.007933582747300712 1 0.007708710852030093 2 0.0074295126314355715 __DUMMY__ 0.004714562398254389 false 1.0 456 9 0.065338 22 0.059203 0 0.051956 3 0.051509 4 0.051129 17 0.050979 8 0.050925 1 0.050701 7 0.050687 5 0.050418 2 0.050038 6 0.049514 18 0.047845 10 0.045414 19 0.037708 11 0.036512 21 0.035337 23 0.033759 24 0.030257 16 0.029848 15 0.026074 20 0.019666 14 0.01875 12 0.006433 9 0.065338 22 0.059203 0 0.051956 3 0.051509 4 0.051129 17 0.050979 8 0.050925 1 0.050701 7 0.050687 5 0.050418 2 0.050038 6 0.049514 18 0.047845 10 0.045414 19 0.037708 11 0.036512 21 0.035337 23 0.033759 24 0.030257 16 0.029848 15 0.026074 20 0.019666 14 0.01875 12 0.006433 22 0.06233580677780855 9 0.06088158311015666 0 0.05344195100800199 18 0.05317101230876906 17 0.05315778741447837 10 0.047879718680915756 11 0.04432089583485192 4 0.04431183638680251 21 0.04369870047526717 5 0.04366532468489461 19 0.04345330052105889 6 0.04296677997757214 8 0.04294982509544646 7 0.04281151043932624 3 0.04275074962858774 1 0.042698149454130196 2 0.04210963512913115 23 0.0341148540534527 16 0.03289689743911044 24 0.029807653030066612 20 0.022801779640034738 15 0.021778012638820017 14 0.02076094034065854 12 0.018942858738688607 13 0.009084173385649364 __DUMMY__ 0.003208263806319679 false 1.0 215 19 0.107028 18 0.079612 20 0.079293 16 0.078148 21 0.075551 22 0.066748 11 0.063167 17 0.062652 12 0.061179 24 0.055353 10 0.053235 23 0.045819 0 0.042421 14 0.032158 13 0.029072 15 0.026406 9 0.025824 5 0.005656 4 0.005527 3 0.002457 6 0.002067 2 4.54E-4 7 1.64E-4 8 9.0E-6 19 0.107028 18 0.079612 20 0.079293 16 0.078148 21 0.075551 22 0.066748 11 0.063167 17 0.062652 12 0.061179 24 0.055353 10 0.053235 23 0.045819 0 0.042421 14 0.032158 13 0.029072 15 0.026406 9 0.025824 5 0.005656 4 0.005527 3 0.002457 6 0.002067 2 4.54E-4 7 1.64E-4 8 9.0E-6 19 0.08740189020046774 21 0.07555759496336566 18 0.07335516843932753 22 0.06692042521787721 20 0.06531855831380477 11 0.06206891726493722 12 0.060443036330842206 16 0.05724420968696837 17 0.05352214153369935 10 0.05159467304492645 24 0.05096786520874121 23 0.04459888405973004 0 0.04006429427083742 14 0.03656321640819059 13 0.035566818459265764 9 0.032065941901267644 15 0.023199294797313374 4 0.013587412564842043 5 0.013385782619826184 6 0.01028676219127732 3 0.009514887895089093 7 0.008141732484159928 8 0.008041514865323264 2 0.00795821770923831 1 0.007928045108084557 __DUMMY__ 0.0047027144605967216 false 1.0 457 9 0.065207 22 0.059492 0 0.052102 3 0.051634 4 0.051168 17 0.050896 8 0.050852 5 0.050657 7 0.050592 1 0.050559 2 0.05016 6 0.049591 18 0.04766 10 0.045452 19 0.037706 11 0.036589 21 0.035425 23 0.033451 24 0.03026 16 0.029853 15 0.026124 20 0.01947 14 0.018738 12 0.006359 9 0.065207 22 0.059492 0 0.052102 3 0.051634 4 0.051168 17 0.050896 8 0.050852 5 0.050657 7 0.050592 1 0.050559 2 0.05016 6 0.049591 18 0.04766 10 0.045452 19 0.037706 11 0.036589 21 0.035425 23 0.033451 24 0.03026 16 0.029853 15 0.026124 20 0.01947 14 0.018738 12 0.006359 22 0.062469509771953605 9 0.060821100890574326 0 0.05350952691110388 17 0.05311948684715059 18 0.053085552983446485 10 0.047897354047069456 11 0.04435655756167219 4 0.044329929145166494 5 0.04377588473543017 21 0.04373944708947766 19 0.04345243610988992 6 0.0430024398262028 8 0.04291613377888676 3 0.042808601542914916 7 0.04276764743014216 1 0.04263255626332079 2 0.0421660991313844 23 0.0339725003606312 16 0.03289925477258078 24 0.029809081396795445 20 0.02271119244150363 15 0.021801159892645326 14 0.020755421045222947 12 0.018908671782973917 13 0.00908418598560527 __DUMMY__ 0.0032082682562548336 false 1.0 699 0 0.085163 17 0.078395 9 0.061482 22 0.058196 11 0.058131 16 0.055664 10 0.050569 18 0.050094 6 0.047199 8 0.043688 1 0.043576 7 0.043516 2 0.043016 4 0.042743 5 0.04237 3 0.037161 19 0.03608 21 0.033491 12 0.033285 23 0.025056 13 0.019447 15 0.007067 24 0.002919 14 0.001689 0 0.085163 17 0.078395 9 0.061482 22 0.058196 11 0.058131 16 0.055664 10 0.050569 18 0.050094 6 0.047199 8 0.043688 1 0.043576 7 0.043516 2 0.043016 4 0.042743 5 0.04237 3 0.037161 19 0.03608 21 0.033491 12 0.033285 23 0.025056 13 0.019447 15 0.007067 24 0.002919 14 0.001689 0 0.07071485196334744 17 0.06854317025826949 22 0.06160046086823341 9 0.05719096029206158 11 0.05628087820223561 18 0.0546006977032523 10 0.04987091758360018 16 0.04900853201326447 19 0.04451221422977571 21 0.0434873696983934 6 0.04042345791546324 4 0.038510663217124944 5 0.03803264529968207 8 0.03778773664730051 7 0.037667897506835996 1 0.037586431413110875 2 0.03705636930214076 12 0.03465628184843772 3 0.033770608208623126 23 0.02982061681930548 13 0.020077634480616058 24 0.01661327982094908 20 0.014343911364505402 15 0.012564401160624558 14 0.012003015952127657 __DUMMY__ 0.0032749962307190325 false 1.0 216 21 0.103901 19 0.094711 12 0.080462 18 0.078731 20 0.076065 22 0.075907 24 0.066861 11 0.065128 23 0.055491 13 0.045179 10 0.044582 17 0.040826 14 0.039867 16 0.038939 9 0.026983 0 0.024062 5 0.010543 4 0.009208 15 0.007089 3 0.007061 2 0.003887 6 0.003063 1 0.001168 7 2.85E-4 21 0.103901 19 0.094711 12 0.080462 18 0.078731 20 0.076065 22 0.075907 24 0.066861 11 0.065128 23 0.055491 13 0.045179 10 0.044582 17 0.040826 14 0.039867 16 0.038939 9 0.026983 0 0.024062 5 0.010543 4 0.009208 15 0.007089 3 0.007061 2 0.003887 6 0.003063 1 0.001168 7 2.85E-4 21 0.08906223160497381 19 0.08034506072504047 18 0.0730363736684008 22 0.07154166292156369 12 0.06968934915878272 11 0.06354829418943811 20 0.06239192302027442 24 0.05519462096396774 10 0.048537545696096786 23 0.048236415245481286 13 0.0442028972971232 17 0.042837041934671964 14 0.04103113939607561 16 0.03724952314391716 9 0.033476506468928954 0 0.03198884223174464 5 0.01590929685007245 4 0.01554763825907043 15 0.013854235064496295 3 0.011795153990152737 6 0.011009526451686293 2 0.009747091319665772 1 0.008658009989487507 7 0.008371944467730052 8 0.008217904943013886 __DUMMY__ 0.004519770998143291 false 1.0 458 14 0.112753 15 0.089523 18 0.08694 10 0.080627 13 0.074489 21 0.067721 20 0.066564 19 0.057306 22 0.054733 12 0.046229 11 0.043305 24 0.042363 9 0.038713 23 0.038103 5 0.01535 4 0.014786 17 0.013045 3 0.012888 2 0.007955 6 0.007791 0 0.007435 1 0.007323 8 0.007212 7 0.006843 14 0.112753 15 0.089523 18 0.08694 10 0.080627 13 0.074489 21 0.067721 20 0.066564 19 0.057306 22 0.054733 12 0.046229 11 0.043305 24 0.042363 9 0.038713 23 0.038103 5 0.01535 4 0.014786 17 0.013045 3 0.012888 2 0.007955 6 0.007791 0 0.007435 1 0.007323 8 0.007212 7 0.006843 14 0.07997794857968304 18 0.07848588725444354 21 0.06963548749222719 10 0.06771562934614388 19 0.062414413110793494 13 0.06122784855186325 20 0.05996297891670619 22 0.05875477509780628 15 0.05843050852306416 12 0.053259054127890684 11 0.05109813520038736 24 0.04267898048887741 23 0.03997327734260649 9 0.03784578186201688 17 0.028636360523003165 0 0.02266572245971197 16 0.018790249111864166 5 0.017332581552512005 4 0.017306384809145776 3 0.01380033013813939 6 0.012464258771651889 2 0.010980494198108313 8 0.01089369860210335 1 0.010839508491263392 7 0.010728246074323308 __DUMMY__ 0.004101459373663506 false 1.0 217 21 0.104517 19 0.094561 12 0.080345 18 0.078299 22 0.075768 20 0.075125 24 0.067117 11 0.064795 23 0.055267 13 0.044616 10 0.043429 17 0.0414 14 0.039409 16 0.038236 9 0.027202 0 0.023271 5 0.011268 4 0.009532 3 0.008717 15 0.006758 2 0.005531 6 0.002992 1 0.001683 8 1.63E-4 21 0.104517 19 0.094561 12 0.080345 18 0.078299 22 0.075768 20 0.075125 24 0.067117 11 0.064795 23 0.055267 13 0.044616 10 0.043429 17 0.0414 14 0.039409 16 0.038236 9 0.027202 0 0.023271 5 0.011268 4 0.009532 3 0.008717 15 0.006758 2 0.005531 6 0.002992 1 0.001683 8 1.63E-4 21 0.08935066212056306 19 0.0802747304444943 18 0.07283397079912352 22 0.07147649292215541 12 0.06963448496389794 11 0.06339226852025906 20 0.06195159979225242 24 0.055314471159774024 23 0.04813145589965765 10 0.04799747331948119 13 0.04393916538752827 17 0.04310584434573238 14 0.04081658897061357 16 0.036920226397060295 9 0.03357904743756044 0 0.031618334135148196 5 0.01624884787067647 4 0.015699374535315603 15 0.013699192678992967 3 0.012570758346907228 6 0.010976262096541779 2 0.010517077193418971 1 0.008899210776533932 8 0.00829424103193724 7 0.00823845209005219 __DUMMY__ 0.004519766764322016 false 1.0 459 17 0.080257 0 0.073073 9 0.058707 16 0.058537 22 0.056559 18 0.055167 6 0.048489 8 0.045311 4 0.045268 7 0.045141 1 0.044643 2 0.044326 5 0.044324 19 0.042419 10 0.042018 11 0.040585 3 0.03952 23 0.035652 21 0.028636 12 0.01981 15 0.019691 24 0.015828 20 0.013127 13 0.002912 17 0.080257 0 0.073073 9 0.058707 16 0.058537 22 0.056559 18 0.055167 6 0.048489 8 0.045311 4 0.045268 7 0.045141 1 0.044643 2 0.044326 5 0.044324 19 0.042419 10 0.042018 11 0.040585 3 0.03952 23 0.035652 21 0.028636 12 0.01981 15 0.019691 24 0.015828 20 0.013127 13 0.002912 17 0.06736422073278427 0 0.06086997696474411 22 0.05891075044200151 18 0.0565560592984073 16 0.051555893330363194 9 0.05142462748401901 19 0.049972450365202974 11 0.047214728212827316 21 0.04342531844901952 10 0.0430180528569642 6 0.03948216770510056 23 0.03866513128388479 4 0.038298238129049166 5 0.03758050500182643 8 0.03682561000142452 7 0.036735088315530275 1 0.03639416337894267 2 0.03600118089145217 3 0.033250679407080104 12 0.033087947961081776 24 0.026781350332291128 20 0.025518800474015692 15 0.01919024070038503 13 0.015838172924478696 14 0.012661057084890908 __DUMMY__ 0.0033775882722325338 false 1.0 218 23 0.092713 21 0.065215 24 0.065041 18 0.062581 19 0.058933 20 0.058248 22 0.057713 3 0.04971 5 0.048996 4 0.048138 2 0.045913 1 0.043991 7 0.041992 6 0.041378 8 0.040643 9 0.040254 17 0.027931 12 0.025054 15 0.021848 10 0.017468 14 0.017116 11 0.013987 16 0.01178 0 0.003357 23 0.092713 21 0.065215 24 0.065041 18 0.062581 19 0.058933 20 0.058248 22 0.057713 3 0.04971 5 0.048996 4 0.048138 2 0.045913 1 0.043991 7 0.041992 6 0.041378 8 0.040643 9 0.040254 17 0.027931 12 0.025054 15 0.021848 10 0.017468 14 0.017116 11 0.013987 16 0.01178 0 0.003357 21 0.0687671697919036 18 0.06518856659938607 23 0.06486307808295122 22 0.06230938590249348 19 0.06180613872037827 24 0.05272201529967529 20 0.05238791431862423 12 0.041584806350550126 9 0.04100427694906144 11 0.03840706776957963 17 0.03705912480670056 10 0.036485813741892956 5 0.035029573039888504 4 0.03490073628211045 3 0.03303265561731327 2 0.030784297211488752 14 0.030242715390058208 6 0.030228062239026382 1 0.030076704191004996 7 0.029259799910784545 8 0.02862188973541211 16 0.023824972495385358 0 0.023186949612942067 13 0.022235675914892724 15 0.021665897597779767 __DUMMY__ 0.004324712428716162 false 1.0 219 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.08212789248726622 21 0.07500143122368833 19 0.07275490273014663 10 0.07104860663126365 22 0.07075321955611834 11 0.06852579158330413 12 0.057952145258086556 14 0.05000731470617061 17 0.04995819811169235 20 0.0496719627291473 0 0.048014238467009154 13 0.0477101475969006 9 0.04436873141560781 16 0.037745301956463966 24 0.0330150119610425 23 0.031372131918194386 15 0.026033020701212314 4 0.013569281041994147 5 0.013377892943982962 6 0.010696781498917693 3 0.008799137882664947 1 0.008419304976621134 7 0.008359776269109285 8 0.008332719999572111 2 0.007931211949260138 __DUMMY__ 0.004453844404562608 false 1.0 460 23 0.08268 24 0.06764 20 0.060781 5 0.057586 4 0.057145 3 0.056507 2 0.053647 1 0.052734 6 0.052632 8 0.052106 7 0.052085 18 0.045636 19 0.044823 21 0.038738 9 0.035237 22 0.033221 15 0.031664 12 0.02886 14 0.026151 10 0.020281 17 0.018559 13 0.01701 16 0.013148 0 0.001127 23 0.08268 24 0.06764 20 0.060781 5 0.057586 4 0.057145 3 0.056507 2 0.053647 1 0.052734 6 0.052632 8 0.052106 7 0.052085 18 0.045636 19 0.044823 21 0.038738 9 0.035237 22 0.033221 15 0.031664 12 0.02886 14 0.026151 10 0.020281 17 0.018559 13 0.01701 16 0.013148 0 0.001127 23 0.0629859970463359 20 0.059765695779207116 18 0.05887127459742211 19 0.05879217892360391 24 0.05775595764803441 21 0.055171428619848355 22 0.048963257159756815 12 0.0420069526645497 4 0.037976572526200215 5 0.03791770808801962 10 0.036758346644187145 9 0.035862226676397845 14 0.035860040533086765 3 0.03554004332680712 6 0.03402280093907128 2 0.033284735835895314 1 0.033026011622570205 7 0.032870564888093 8 0.032863669297696484 17 0.0319841065628987 15 0.03086840417091932 11 0.02864862290308417 13 0.02862415547023509 16 0.02699049716942271 0 0.018261215989758963 __DUMMY__ 0.004327534916897882 false 1.0 461 9 0.065432 22 0.059537 0 0.052262 3 0.051663 4 0.051234 17 0.050913 8 0.050909 5 0.050683 7 0.050618 1 0.050578 2 0.050181 6 0.04963 18 0.04762 10 0.045528 19 0.03779 11 0.036593 21 0.035395 23 0.033406 24 0.030072 16 0.029856 15 0.025945 20 0.019387 14 0.018593 12 0.006176 9 0.065432 22 0.059537 0 0.052262 3 0.051663 4 0.051234 17 0.050913 8 0.050909 5 0.050683 7 0.050618 1 0.050578 2 0.050181 6 0.04963 18 0.04762 10 0.045528 19 0.03779 11 0.036593 21 0.035395 23 0.033406 24 0.030072 16 0.029856 15 0.025945 20 0.019387 14 0.018593 12 0.006176 22 0.06249019954734416 9 0.060925014930568885 0 0.05358340236701891 17 0.053127248391598124 18 0.053066961205551016 10 0.04793240331440025 4 0.044360361609056924 11 0.044358324890770864 5 0.043787824620370154 21 0.0437254959967945 19 0.043491192318191374 6 0.04302039156268406 8 0.0429424077965892 3 0.04282193023697846 7 0.04277958917967625 1 0.04264126188206095 2 0.0421757302929508 23 0.03395163222921029 16 0.032900580950271575 24 0.029722106332244407 20 0.022672776212899863 15 0.021718360698431964 14 0.020688343347999034 12 0.018824028577655576 13 0.009084169185671826 __DUMMY__ 0.003208262323010704 false 1.0 220 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.08212789248726622 21 0.07500143122368833 19 0.07275490273014663 10 0.07104860663126365 22 0.07075321955611834 11 0.06852579158330413 12 0.057952145258086556 14 0.05000731470617061 17 0.04995819811169235 20 0.0496719627291473 0 0.048014238467009154 13 0.0477101475969006 9 0.04436873141560781 16 0.037745301956463966 24 0.0330150119610425 23 0.031372131918194386 15 0.026033020701212314 4 0.013569281041994147 5 0.013377892943982962 6 0.010696781498917693 3 0.008799137882664947 1 0.008419304976621134 7 0.008359776269109285 8 0.008332719999572111 2 0.007931211949260138 __DUMMY__ 0.004453844404562608 false 1.0 462 9 0.066216 22 0.058199 3 0.053886 4 0.052912 5 0.05215 8 0.052115 1 0.051971 7 0.051936 2 0.05125 18 0.050404 6 0.050196 10 0.048803 0 0.046094 17 0.043534 19 0.035961 23 0.035735 11 0.034195 21 0.033974 24 0.032478 15 0.029081 14 0.023506 20 0.022642 16 0.02037 12 0.002391 9 0.066216 22 0.058199 3 0.053886 4 0.052912 5 0.05215 8 0.052115 1 0.051971 7 0.051936 2 0.05125 18 0.050404 6 0.050196 10 0.048803 0 0.046094 17 0.043534 19 0.035961 23 0.035735 11 0.034195 21 0.033974 24 0.032478 15 0.029081 14 0.023506 20 0.022642 16 0.02037 12 0.002391 22 0.06310145612251979 18 0.0593694760984545 9 0.05723949457348145 10 0.05228153602226249 21 0.0494126397994884 19 0.04886272290590108 17 0.0463265056325913 0 0.045713492073204805 11 0.04568640412344377 4 0.0398973857915023 5 0.03925005081213304 3 0.03838351177587083 8 0.03729319532281684 7 0.03720411035135746 6 0.03718572256315067 1 0.037091634037166345 2 0.036525157179276985 23 0.036389327323295265 24 0.03499956239930915 20 0.03223348641364046 14 0.03014682776291968 16 0.02764319310159177 15 0.025896357845774244 12 0.023049747546582545 13 0.015146552634080204 __DUMMY__ 0.003670449788184531 false 1.0 221 21 0.098107 12 0.09567 11 0.084941 13 0.074996 22 0.07273 19 0.065598 18 0.065198 10 0.0557 14 0.048677 0 0.045468 20 0.044866 17 0.040744 24 0.040039 23 0.038082 9 0.033689 16 0.031126 4 0.013259 5 0.012515 6 0.011115 7 0.006252 1 0.006059 8 0.005862 2 0.005084 3 0.004224 21 0.098107 12 0.09567 11 0.084941 13 0.074996 22 0.07273 19 0.065598 18 0.065198 10 0.0557 14 0.048677 0 0.045468 20 0.044866 17 0.040744 24 0.040039 23 0.038082 9 0.033689 16 0.031126 4 0.013259 5 0.012515 6 0.011115 7 0.006252 1 0.006059 8 0.005862 2 0.005084 3 0.004224 21 0.08673166830549689 12 0.07768291509248458 11 0.07352329432687985 22 0.07018626379350552 18 0.06618034070686749 19 0.06617513575175712 13 0.0589370616009544 10 0.05360172917119891 20 0.04687571087238119 14 0.044974025159149195 17 0.04280874515374748 0 0.04247084599223144 24 0.04219070211737811 23 0.04004872199148901 9 0.03659735721776926 16 0.0334011273117603 4 0.017542744991437195 5 0.016930374238138788 6 0.014964735503347015 7 0.01123538936547321 8 0.011030964942611875 1 0.011018385105677136 3 0.01040591318681401 2 0.010374523777062715 15 0.009706271315398387 __DUMMY__ 0.004405053008989044 false 1.0 463 9 0.064012 22 0.058284 3 0.052276 4 0.051438 8 0.051082 5 0.050936 7 0.050839 1 0.0508 2 0.050547 0 0.049847 6 0.049638 17 0.049331 18 0.046788 10 0.044497 19 0.03774 23 0.034893 11 0.034789 21 0.034695 24 0.031778 16 0.030018 15 0.028702 20 0.021285 14 0.02003 12 0.005755 9 0.064012 22 0.058284 3 0.052276 4 0.051438 8 0.051082 5 0.050936 7 0.050839 1 0.0508 2 0.050547 0 0.049847 6 0.049638 17 0.049331 18 0.046788 10 0.044497 19 0.03774 23 0.034893 11 0.034789 21 0.034695 24 0.031778 16 0.030018 15 0.028702 20 0.021285 14 0.02003 12 0.005755 22 0.061818236176498384 9 0.06042691280401182 18 0.052529245866735554 0 0.052317887603060866 17 0.05218623458637229 10 0.04738343421891534 4 0.044721244707446046 5 0.04417000284582689 3 0.04341312968185807 8 0.04330006596807004 6 0.043270787039410924 11 0.04323405542283526 19 0.04321536913655961 21 0.04320056736088656 7 0.04316084138172079 1 0.0430222130550005 2 0.04262177980193622 23 0.03472643358800027 16 0.03267129568539805 24 0.030528919744764193 20 0.023434797507088517 15 0.023023664156564153 14 0.02130986933005402 12 0.018290428424261526 13 0.00886132927910267 __DUMMY__ 0.0031612546276214154 false 1.0 222 21 0.098506 12 0.095631 11 0.085425 13 0.075268 22 0.073631 18 0.066182 19 0.065797 10 0.056318 14 0.048502 0 0.045988 20 0.044803 17 0.041031 24 0.03985 23 0.037969 9 0.033725 16 0.03102 4 0.012827 5 0.012024 6 0.010641 7 0.005633 1 0.005394 8 0.005254 2 0.004724 3 0.00386 21 0.098506 12 0.095631 11 0.085425 13 0.075268 22 0.073631 18 0.066182 19 0.065797 10 0.056318 14 0.048502 0 0.045988 20 0.044803 17 0.041031 24 0.03985 23 0.037969 9 0.033725 16 0.03102 4 0.012827 5 0.012024 6 0.010641 7 0.005633 1 0.005394 8 0.005254 2 0.004724 3 0.00386 21 0.08691844381736273 12 0.07766457813939108 11 0.07374988878520565 22 0.07060814775200062 18 0.06664109836727633 19 0.06626826798759664 13 0.059064387439532365 10 0.05389109618352913 20 0.046846163270519166 14 0.04489202832176906 17 0.04294311078824925 0 0.04271432879042899 24 0.042102151509843096 23 0.03999576515150879 9 0.0366141821951217 16 0.03335145488662825 4 0.017340417496101778 5 0.016700416870075858 6 0.014742741291383605 7 0.010945493312408546 8 0.010746220520155007 1 0.010706946874011358 3 0.01023543763614602 2 0.01020592150639074 15 0.00970626222425912 __DUMMY__ 0.004405048883104955 false 1.0 464 9 0.060061 22 0.058411 17 0.057005 0 0.053378 4 0.050712 1 0.05039 8 0.050383 7 0.050351 6 0.050336 5 0.049952 2 0.049425 3 0.049087 18 0.047884 23 0.041822 19 0.040149 21 0.038227 11 0.037713 10 0.036863 16 0.036271 24 0.032099 20 0.021296 12 0.016442 15 0.015442 14 0.006301 9 0.060061 22 0.058411 17 0.057005 0 0.053378 4 0.050712 1 0.05039 8 0.050383 7 0.050351 6 0.050336 5 0.049952 2 0.049425 3 0.049087 18 0.047884 23 0.041822 19 0.040149 21 0.038227 11 0.037713 10 0.036863 16 0.036271 24 0.032099 20 0.021296 12 0.016442 15 0.015442 14 0.006301 22 0.06097084057048302 17 0.05726707376965705 9 0.057193550574204464 0 0.054746761009202206 18 0.05220926421018894 11 0.04480751053079289 19 0.044650427412808565 21 0.04460762481593655 4 0.04396040680191708 6 0.04353695014022828 5 0.04330220944908616 8 0.042715612289167613 7 0.04266852939420354 1 0.04258590648626859 10 0.04228029365026982 2 0.04185284087142247 3 0.0412758406079201 23 0.038394683527055995 16 0.03814176094542976 24 0.030735252379830397 12 0.025196585534202565 20 0.0236405858670478 15 0.016494793271552274 14 0.013729087599468667 13 0.009907999849345385 __DUMMY__ 0.0031276084423099908 false 1.0 223 22 0.073568 9 0.069489 0 0.060396 18 0.058713 17 0.055291 10 0.0509 11 0.050316 21 0.048717 5 0.047634 4 0.047495 6 0.045915 8 0.045356 1 0.045101 7 0.045065 3 0.045044 2 0.044376 19 0.041238 23 0.031497 24 0.027025 16 0.023797 12 0.017194 20 0.015293 14 0.008138 15 0.002442 22 0.073568 9 0.069489 0 0.060396 18 0.058713 17 0.055291 10 0.0509 11 0.050316 21 0.048717 5 0.047634 4 0.047495 6 0.045915 8 0.045356 1 0.045101 7 0.045065 3 0.045044 2 0.044376 19 0.041238 23 0.031497 24 0.027025 16 0.023797 12 0.017194 20 0.015293 14 0.008138 15 0.002442 22 0.07011470052042498 9 0.06082718900540132 18 0.0608184235172701 0 0.0564093819167221 17 0.05443830009028528 21 0.05375208379683333 11 0.05355742371781186 10 0.0523185551043831 19 0.04798646204972808 4 0.03947523585882678 5 0.03923920954370775 6 0.0379285631647553 8 0.03671626544947609 7 0.036557196744044264 1 0.03646122964584413 3 0.036191639294528476 2 0.03587083519397299 23 0.032962561648007406 16 0.03015885339310809 24 0.029160809484008596 12 0.028486246665281066 20 0.02352972491891544 14 0.019178045671055053 13 0.013459455987207231 15 0.011066235515286196 __DUMMY__ 0.003335372103114814 false 1.0 465 10 0.102731 18 0.088649 11 0.067946 14 0.067515 0 0.066115 22 0.064904 9 0.063377 17 0.050641 19 0.050259 13 0.049504 21 0.049213 15 0.04796 12 0.03103 16 0.025165 20 0.024605 4 0.019541 5 0.019289 6 0.018417 8 0.016732 7 0.016726 1 0.01666 2 0.016245 3 0.016199 23 0.010577 10 0.102731 18 0.088649 11 0.067946 14 0.067515 0 0.066115 22 0.064904 9 0.063377 17 0.050641 19 0.050259 13 0.049504 21 0.049213 15 0.04796 12 0.03103 16 0.025165 20 0.024605 4 0.019541 5 0.019289 6 0.018417 8 0.016732 7 0.016726 1 0.01666 2 0.016245 3 0.016199 23 0.010577 10 0.0823849341443089 18 0.08117586195143511 22 0.06569000815520394 11 0.06324826737732588 19 0.05721288629563361 21 0.057085505549703125 0 0.055604710057517846 14 0.05536441088582869 9 0.054910833425832674 17 0.0495801418023685 13 0.043042268405335427 12 0.03880671174791515 15 0.03772436101245821 20 0.03487682915318051 16 0.030105652091432192 23 0.023189895607202218 4 0.021283884808451396 5 0.02090330166314816 6 0.01937954972524612 24 0.01760330073954548 7 0.017572814704350494 8 0.017571997816815316 3 0.01747023953680318 1 0.01742572205400199 2 0.01702044956606721 __DUMMY__ 0.003765461722888776 false 1.0 466 20 0.101782 19 0.08163 24 0.08106 23 0.074845 18 0.066561 12 0.061321 21 0.060578 15 0.049147 16 0.048686 14 0.046168 13 0.042626 22 0.036118 17 0.031072 10 0.026866 4 0.023549 11 0.022517 5 0.022325 3 0.020463 6 0.019273 7 0.018715 8 0.018376 1 0.018134 2 0.017548 9 0.010642 20 0.101782 19 0.08163 24 0.08106 23 0.074845 18 0.066561 12 0.061321 21 0.060578 15 0.049147 16 0.048686 14 0.046168 13 0.042626 22 0.036118 17 0.031072 10 0.026866 4 0.023549 11 0.022517 5 0.022325 3 0.020463 6 0.019273 7 0.018715 8 0.018376 1 0.018134 2 0.017548 9 0.010642 20 0.0795727369563766 19 0.07609932613679975 18 0.06812997004686179 21 0.06607967323412652 24 0.06462762672318809 23 0.05972153426764177 12 0.05917312015868035 22 0.04977872186142358 14 0.04544186485257162 16 0.044036058304078446 13 0.04227854437125687 11 0.03929203767926074 10 0.038878255794166504 15 0.03874738860013737 17 0.037690395182052756 9 0.02335395976594209 4 0.021929623378040056 5 0.021097850534441912 6 0.018178080591223778 3 0.01817554384325324 0 0.017284355044671035 7 0.016881794586846414 8 0.016712045231683535 1 0.016471641184672106 2 0.016033056057162903 __DUMMY__ 0.004334795613440393 false 1.0 224 0 0.087016 17 0.079024 9 0.065287 22 0.062632 11 0.058851 10 0.055974 18 0.055 16 0.053903 6 0.045357 8 0.042845 7 0.042609 1 0.042551 2 0.042125 4 0.041681 5 0.041475 3 0.037372 19 0.037369 21 0.032759 12 0.024034 23 0.021336 13 0.011932 15 0.011644 14 0.00416 24 0.003063 0 0.087016 17 0.079024 9 0.065287 22 0.062632 11 0.058851 10 0.055974 18 0.055 16 0.053903 6 0.045357 8 0.042845 7 0.042609 1 0.042551 2 0.042125 4 0.041681 5 0.041475 3 0.037372 19 0.037369 21 0.032759 12 0.024034 23 0.021336 13 0.011932 15 0.011644 14 0.00416 24 0.003063 0 0.07026121644330251 17 0.06714456087864673 22 0.06459903729214836 9 0.058950344444941856 11 0.05738512312981334 18 0.05734065400521264 10 0.052911272346457976 16 0.04608235039757209 19 0.0453132917197253 21 0.045027797807546205 6 0.038946342910269695 4 0.03770999277297253 5 0.03731477593043936 8 0.03676921141180539 7 0.03664011120552555 1 0.03649956965401161 2 0.036025767854915895 3 0.03351637876153169 12 0.03119299044833615 23 0.028339047066744196 24 0.017546609763790976 13 0.01749345127046971 20 0.014859386769509486 14 0.014588540848925169 15 0.014197595636322011 __DUMMY__ 0.003344579229063271 false 1.0 225 20 0.104449 19 0.098034 21 0.092281 18 0.084993 24 0.080833 12 0.07314 22 0.066778 23 0.057493 11 0.056606 16 0.044337 14 0.044254 10 0.041424 13 0.039812 17 0.036303 15 0.02333 9 0.018692 0 0.010561 4 0.008622 5 0.007511 3 0.004898 6 0.00198 7 0.001508 8 0.00133 1 8.31E-4 20 0.104449 19 0.098034 21 0.092281 18 0.084993 24 0.080833 12 0.07314 22 0.066778 23 0.057493 11 0.056606 16 0.044337 14 0.044254 10 0.041424 13 0.039812 17 0.036303 15 0.02333 9 0.018692 0 0.010561 4 0.008622 5 0.007511 3 0.004898 6 0.00198 7 0.001508 8 0.00133 1 8.31E-4 21 0.08363028884044979 19 0.08288397790974462 20 0.07705271284558701 18 0.0761641305111171 22 0.06739148429684656 12 0.0654244184015172 24 0.06310249387394662 11 0.05891229622725703 23 0.049872903592293176 10 0.046374971549678096 14 0.04261714597841806 17 0.04063449733445038 16 0.04025623254953264 13 0.04019460040892723 9 0.029254462936178314 0 0.024732435111575194 15 0.02181538668394258 4 0.015261695047178924 5 0.014469886720320521 3 0.010939389842152283 6 0.010333510575611814 7 0.008921721323430817 8 0.008811491722482526 1 0.008463976052387419 2 0.00788536434523523 __DUMMY__ 0.004598525319738732 false 1.0 467 22 0.080177 18 0.070438 21 0.070178 11 0.063677 19 0.063635 9 0.061296 0 0.059513 17 0.05907 10 0.058551 12 0.037827 16 0.03325 24 0.03239 23 0.031117 20 0.030882 4 0.03029 5 0.02936 6 0.027663 8 0.026147 3 0.026127 7 0.025982 1 0.025597 2 0.025122 14 0.017342 13 0.014371 22 0.080177 18 0.070438 21 0.070178 11 0.063677 19 0.063635 9 0.061296 0 0.059513 17 0.05907 10 0.058551 12 0.037827 16 0.03325 24 0.03239 23 0.031117 20 0.030882 4 0.03029 5 0.02936 6 0.027663 8 0.026147 3 0.026127 7 0.025982 1 0.025597 2 0.025122 14 0.017342 13 0.014371 22 0.07406508150729242 21 0.0706834831900145 18 0.06786292084803418 19 0.06372652693364508 11 0.06227979578928389 10 0.054678922378786216 17 0.053263520339378256 9 0.052058603201751055 0 0.0511592607979824 12 0.045848149927573106 20 0.037669509361954304 24 0.03716041252283995 23 0.03570937014706725 16 0.03490873035269803 4 0.027508620469484994 14 0.027132608811882047 5 0.0267907166401432 13 0.025623089513199755 6 0.02485589673907652 3 0.023009281459690376 8 0.022932693284101306 7 0.022868340663098913 1 0.02255536755627535 2 0.02211589601571443 15 0.009311293624834679 __DUMMY__ 0.004221907924197853 false 1.0 468 22 0.073984 18 0.069778 11 0.066378 0 0.064593 9 0.06253 10 0.062219 21 0.060839 17 0.056104 12 0.045496 19 0.042381 4 0.036623 6 0.036578 5 0.036275 13 0.033545 1 0.032636 7 0.032467 8 0.032366 23 0.031578 2 0.031346 3 0.028477 14 0.022663 16 0.018265 24 0.013219 20 0.00966 22 0.073984 18 0.069778 11 0.066378 0 0.064593 9 0.06253 10 0.062219 21 0.060839 17 0.056104 12 0.045496 19 0.042381 4 0.036623 6 0.036578 5 0.036275 13 0.033545 1 0.032636 7 0.032467 8 0.032366 23 0.031578 2 0.031346 3 0.028477 14 0.022663 16 0.018265 24 0.013219 20 0.00966 22 0.07178207160310049 21 0.06833248285558298 18 0.06670670357037334 11 0.06451809335777352 10 0.055165561005719975 19 0.05381909174412514 0 0.05217221544933722 9 0.051732765325350726 12 0.05132444135575243 17 0.05053112461382662 23 0.03716004708840183 13 0.03561654224920433 4 0.03045346024658714 5 0.030001046621453316 14 0.029847246521013223 24 0.029692855603927638 6 0.028837538512013768 20 0.02807852716399558 16 0.026811771366066557 7 0.025614793748609664 1 0.025540464591471985 8 0.025534060065062345 2 0.024715539788990198 3 0.02388915931675041 15 0.007985075412082413 __DUMMY__ 0.004137320823427118 false 1.0 226 17 0.08353 0 0.083162 16 0.063211 22 0.059887 9 0.059535 11 0.055383 18 0.051993 10 0.047056 6 0.04448 19 0.042796 8 0.041546 1 0.041341 7 0.041286 2 0.040706 4 0.040052 5 0.039888 3 0.035143 21 0.03437 12 0.031623 23 0.025348 13 0.014337 15 0.009498 24 0.007851 20 0.005976 17 0.08353 0 0.083162 16 0.063211 22 0.059887 9 0.059535 11 0.055383 18 0.051993 10 0.047056 6 0.04448 19 0.042796 8 0.041546 1 0.041341 7 0.041286 2 0.040706 4 0.040052 5 0.039888 3 0.035143 21 0.03437 12 0.031623 23 0.025348 13 0.014337 15 0.009498 24 0.007851 20 0.005976 17 0.07087896213717548 0 0.06967420123796508 22 0.06266071817762897 9 0.05650016030606864 18 0.05555881949297881 11 0.05499889020184688 16 0.05231062727482468 10 0.04828453323212008 19 0.0476217015065783 21 0.043981566336214376 6 0.039163206000451596 4 0.03731442786139085 5 0.03693347774903194 8 0.03682215447161335 7 0.03666431127399264 1 0.036576592056862825 2 0.036006274899374455 12 0.033497073696298695 3 0.03291243824705481 23 0.029878158466989668 24 0.019020937818328875 13 0.017317382158383913 20 0.01705431582506066 15 0.01380856641610548 14 0.011303566527931883 __DUMMY__ 0.003256936627727008 false 1.0 469 9 0.065973 22 0.058375 3 0.054064 4 0.052995 5 0.052284 8 0.052115 7 0.051891 1 0.051737 2 0.051422 6 0.050278 18 0.050117 10 0.048924 0 0.046273 17 0.043196 19 0.035859 23 0.035724 11 0.03439 21 0.033814 24 0.032544 15 0.029221 14 0.023527 20 0.022463 16 0.02049 12 0.002324 9 0.065973 22 0.058375 3 0.054064 4 0.052995 5 0.052284 8 0.052115 7 0.051891 1 0.051737 2 0.051422 6 0.050278 18 0.050117 10 0.048924 0 0.046273 17 0.043196 19 0.035859 23 0.035724 11 0.03439 21 0.033814 24 0.032544 15 0.029221 14 0.023527 20 0.022463 16 0.02049 12 0.002324 22 0.06318331628001066 18 0.05923591272778564 9 0.05712640457320864 10 0.05233781073986617 21 0.049338171792870957 19 0.048815241473390905 17 0.046169218981775055 0 0.045796756165038005 11 0.045777112729464255 4 0.039935985579958644 5 0.03931238025058055 3 0.038466313996858154 8 0.037293177970988606 6 0.037223858331944346 7 0.03718315538027445 1 0.036982740943458124 2 0.03660516857682814 23 0.03638419229718111 24 0.0350302546836986 20 0.03215018605453195 14 0.03015658464449169 16 0.027699014001607892 15 0.025961485185539944 12 0.02301856297158286 13 0.015146545586671759 __DUMMY__ 0.003670448080392702 false 1.0 227 19 0.10115 23 0.086944 16 0.086233 20 0.0844 24 0.066826 18 0.062681 17 0.060637 21 0.049642 12 0.043882 22 0.043141 0 0.027888 4 0.026795 5 0.025843 7 0.025667 6 0.025447 8 0.025232 1 0.025143 3 0.024032 2 0.023388 11 0.020645 15 0.020235 10 0.019525 9 0.018878 13 0.005745 19 0.10115 23 0.086944 16 0.086233 20 0.0844 24 0.066826 18 0.062681 17 0.060637 21 0.049642 12 0.043882 22 0.043141 0 0.027888 4 0.026795 5 0.025843 7 0.025667 6 0.025447 8 0.025232 1 0.025143 3 0.024032 2 0.023388 11 0.020645 15 0.020235 10 0.019525 9 0.018878 13 0.005745 19 0.08441430340681436 20 0.06736921595197953 18 0.0647063958314771 23 0.06448569531559394 21 0.06282989681899441 16 0.06125019191851278 24 0.05675621255015944 22 0.055867247759739135 17 0.05269809989811005 12 0.051232253564373914 11 0.04162417170220695 10 0.03487221786366417 0 0.033131524079429577 9 0.02895606181470097 4 0.024275550397632555 5 0.02356026194862641 13 0.023056428673020466 6 0.021953185674353063 7 0.020879978840282806 8 0.0206410316933381 1 0.020485931555523296 3 0.020435857917401122 14 0.020328283768238913 15 0.020013603236301095 2 0.019473796590812786 __DUMMY__ 0.004702601228712781 false 1.0 228 18 0.094765 10 0.088199 19 0.077464 11 0.075848 21 0.075822 22 0.071771 12 0.059759 14 0.059156 0 0.055842 13 0.055528 17 0.053067 20 0.050575 9 0.046703 16 0.040383 15 0.030193 23 0.025407 24 0.022001 4 0.005735 5 0.005215 6 0.003393 7 0.001094 1 7.88E-4 8 7.63E-4 3 5.29E-4 18 0.094765 10 0.088199 19 0.077464 11 0.075848 21 0.075822 22 0.071771 12 0.059759 14 0.059156 0 0.055842 13 0.055528 17 0.053067 20 0.050575 9 0.046703 16 0.040383 15 0.030193 23 0.025407 24 0.022001 4 0.005735 5 0.005215 6 0.003393 7 0.001094 1 7.88E-4 8 7.63E-4 3 5.29E-4 18 0.08181278093469614 21 0.07476684689123926 19 0.07248333464235127 10 0.07075222675019589 22 0.07001255396619438 11 0.06861330581763163 12 0.05788329829618108 14 0.05001197291579051 20 0.049965008958612916 17 0.049442728234529804 0 0.048000171125111415 13 0.04750881555136236 9 0.04384249642657657 16 0.038202678671909115 23 0.03305796900710458 24 0.03293587710722785 15 0.025498835540310984 4 0.013815527961866506 5 0.01330766236370869 6 0.011057261319648144 3 0.008797729276896914 7 0.008764732584863072 8 0.00858880077541919 1 0.008492334324963194 2 0.00793120823616718 __DUMMY__ 0.00445384231944139 false 1.0 229 19 0.069591 17 0.068475 22 0.066679 18 0.06625 0 0.060649 16 0.059592 9 0.055121 10 0.053091 11 0.049829 21 0.043902 20 0.037066 23 0.033628 5 0.032233 4 0.032206 6 0.031074 24 0.03105 3 0.031003 8 0.030877 7 0.030766 1 0.030644 2 0.030422 15 0.022597 12 0.020129 14 0.013127 19 0.069591 17 0.068475 22 0.066679 18 0.06625 0 0.060649 16 0.059592 9 0.055121 10 0.053091 11 0.049829 21 0.043902 20 0.037066 23 0.033628 5 0.032233 4 0.032206 6 0.031074 24 0.03105 3 0.031003 8 0.030877 7 0.030766 1 0.030644 2 0.030422 15 0.022597 12 0.020129 14 0.013127 22 0.06733849883062279 19 0.0658008876172565 18 0.06517487992447914 17 0.060021492100573975 21 0.05535229153256951 11 0.05484784376688333 0 0.05389406457615887 10 0.051715607303700964 9 0.05037348980698885 16 0.049423677778977444 20 0.03874083951266528 23 0.03617028135182259 24 0.035015052571482234 12 0.034371921429613705 4 0.02955909514976339 5 0.02928419320615978 6 0.02792289592081202 8 0.026749265666993875 7 0.02669755572742564 3 0.0266572729148147 1 0.026505146367160812 2 0.026167695477366564 14 0.02245517777954511 15 0.020186924977395788 13 0.015543807128520572 __DUMMY__ 0.004030141580246563 false 1.0 470 0 0.087532 17 0.079611 9 0.066028 22 0.062974 11 0.059824 10 0.057522 18 0.054974 16 0.053645 6 0.045303 8 0.042609 7 0.042446 1 0.042276 2 0.041889 4 0.041583 5 0.041047 19 0.037701 3 0.037024 21 0.032691 12 0.02395 23 0.0203 13 0.011304 15 0.011238 14 0.003344 24 0.003184 0 0.087532 17 0.079611 9 0.066028 22 0.062974 11 0.059824 10 0.057522 18 0.054974 16 0.053645 6 0.045303 8 0.042609 7 0.042446 1 0.042276 2 0.041889 4 0.041583 5 0.041047 19 0.037701 3 0.037024 21 0.032691 12 0.02395 23 0.0203 13 0.011304 15 0.011238 14 0.003344 24 0.003184 0 0.07050157415789471 17 0.06741799106947159 22 0.06475834414949437 9 0.05929550930252485 11 0.05783835579705793 18 0.057328542957578166 10 0.05363234549023455 16 0.045962171540275994 19 0.04546794048182726 21 0.04499612275988677 6 0.038921189195951916 4 0.037664343439580986 5 0.037115409453994684 8 0.03665928036404617 7 0.03656418425304779 1 0.03637147203480067 2 0.03591583680715668 3 0.03335427704703929 12 0.03115386244828626 23 0.027856468399462205 24 0.017602972716243802 13 0.017200922889144328 20 0.01485938676950949 14 0.014208440277011937 15 0.014008476969414202 __DUMMY__ 0.0033445792290632717 false 1.0 471 11 0.077924 22 0.072055 21 0.067628 17 0.059488 0 0.058294 19 0.057149 18 0.054268 12 0.053347 23 0.04929 16 0.045566 10 0.04258 9 0.041148 24 0.035752 4 0.031131 5 0.030747 6 0.030704 1 0.027221 7 0.027109 2 0.027026 8 0.026891 3 0.024907 13 0.024446 20 0.023262 14 0.012066 11 0.077924 22 0.072055 21 0.067628 17 0.059488 0 0.058294 19 0.057149 18 0.054268 12 0.053347 23 0.04929 16 0.045566 10 0.04258 9 0.041148 24 0.035752 4 0.031131 5 0.030747 6 0.030704 1 0.027221 7 0.027109 2 0.027026 8 0.026891 3 0.024907 13 0.024446 20 0.023262 14 0.012066 21 0.07051884820262021 22 0.07050553880286572 11 0.06968413494308989 19 0.06209570622240653 18 0.060336086936218405 12 0.054155200330269014 17 0.05326817181906492 0 0.04980543204522542 10 0.0467132540603117 23 0.045267520100064 16 0.04167841953570534 9 0.04137342034481657 24 0.03992471477104822 20 0.03534919105387217 13 0.03058721922484597 4 0.02715592882645282 5 0.026701609211823484 6 0.025437149736823404 14 0.02484859819934108 7 0.022532040111633605 1 0.022433858103102895 8 0.022394223246992723 2 0.022129609876985375 3 0.021631465434845766 15 0.009360262986229268 __DUMMY__ 0.004112395873345498 false 1.0 230 11 0.106265 22 0.097962 21 0.089449 10 0.083984 18 0.080182 0 0.071848 19 0.068301 9 0.058836 12 0.058461 17 0.056399 14 0.037012 13 0.035674 16 0.030986 23 0.020546 20 0.018464 24 0.017008 4 0.013679 5 0.013012 6 0.010011 7 0.006861 1 0.006586 3 0.006565 8 0.00639 2 0.005517 11 0.106265 22 0.097962 21 0.089449 10 0.083984 18 0.080182 0 0.071848 19 0.068301 9 0.058836 12 0.058461 17 0.056399 14 0.037012 13 0.035674 16 0.030986 23 0.020546 20 0.018464 24 0.017008 4 0.013679 5 0.013012 6 0.010011 7 0.006861 1 0.006586 3 0.006565 8 0.00639 2 0.005517 11 0.08311194258068509 22 0.0821528385604465 21 0.0795052788706351 18 0.07331173163549629 10 0.06804924932169618 19 0.06622268653475859 0 0.05798444517338032 12 0.056311438705056414 17 0.05268431523282586 9 0.050694075687579075 14 0.037233477028231945 13 0.037051830228241704 16 0.034645188684724 20 0.03171581482103791 23 0.02991329872212612 24 0.028630334454864226 4 0.018830202410375262 5 0.018251398276814268 6 0.01584505408024234 7 0.013053855733978789 3 0.012839427101964902 8 0.012824973001976325 1 0.01280529538446086 2 0.012105690788708153 15 0.009987473485489213 __DUMMY__ 0.004238683494204535 false 1.0 472 4 0.056215 3 0.055676 5 0.055222 8 0.054859 7 0.054763 23 0.054734 1 0.054313 6 0.054185 2 0.054154 9 0.052964 22 0.050658 24 0.045304 17 0.042746 18 0.04047 19 0.038163 0 0.036146 21 0.035312 20 0.031536 16 0.029612 10 0.02766 11 0.025742 15 0.023267 12 0.014119 14 0.012181 4 0.056215 3 0.055676 5 0.055222 8 0.054859 7 0.054763 23 0.054734 1 0.054313 6 0.054185 2 0.054154 9 0.052964 22 0.050658 24 0.045304 17 0.042746 18 0.04047 19 0.038163 0 0.036146 21 0.035312 20 0.031536 16 0.029612 10 0.02766 11 0.025742 15 0.023267 12 0.014119 14 0.012181 22 0.05792178110688955 9 0.05173496228133499 18 0.04921240964185151 23 0.047581811254693816 21 0.04754692820780007 4 0.04576677988203177 19 0.04547795522629621 17 0.04538461044815379 5 0.04500811672828777 6 0.04369123345484385 3 0.04362347210166608 8 0.043252881286494696 7 0.04322855160124864 1 0.042893358984481184 2 0.04254228154487459 24 0.04155381433084353 0 0.04081612939971203 11 0.03897343703049124 10 0.03722188624691999 20 0.0327052955435946 16 0.030957014303825955 12 0.02676239634933549 15 0.020260756743408985 14 0.020147162710644383 13 0.012265386545670495 __DUMMY__ 0.0034695870446046643 false 1.0 231 22 0.073533 9 0.068976 0 0.059971 18 0.058655 17 0.054937 10 0.050826 11 0.049641 21 0.0491 4 0.047376 5 0.047081 6 0.045746 8 0.045223 7 0.045184 3 0.045184 1 0.044874 2 0.044524 19 0.041697 23 0.034239 24 0.025581 16 0.023711 12 0.017063 20 0.016195 14 0.008473 15 0.002209 22 0.073533 9 0.068976 0 0.059971 18 0.058655 17 0.054937 10 0.050826 11 0.049641 21 0.0491 4 0.047376 5 0.047081 6 0.045746 8 0.045223 7 0.045184 3 0.045184 1 0.044874 2 0.044524 19 0.041697 23 0.034239 24 0.025581 16 0.023711 12 0.017063 20 0.016195 14 0.008473 15 0.002209 22 0.07009845863842468 18 0.06079148265152462 9 0.060588679847793446 0 0.05621178940828928 17 0.05427372061920011 21 0.053930198147561045 11 0.05324358356681092 10 0.05228417052207128 19 0.0481999125997273 4 0.03941992096759982 5 0.03898209093737558 6 0.03784999829105841 8 0.03665443948164737 7 0.0366125469892321 1 0.03635569494444249 3 0.03625675406031926 2 0.03593966969272097 23 0.03423756657393178 16 0.0301188786836719 24 0.028489384319542628 12 0.02842534684114647 20 0.023949152569640884 14 0.019333824652606142 13 0.013459462245655952 15 0.010957899093991662 __DUMMY__ 0.0033353736540136978 false 1.0 473 23 0.094554 24 0.067661 20 0.059 4 0.056569 5 0.054247 6 0.05234 8 0.051276 1 0.05048 3 0.05023 7 0.050126 18 0.049905 2 0.049155 21 0.046017 19 0.044009 22 0.040563 12 0.037313 9 0.033726 15 0.027502 17 0.026749 13 0.017451 14 0.016973 16 0.011636 11 0.006549 10 0.005969 23 0.094554 24 0.067661 20 0.059 4 0.056569 5 0.054247 6 0.05234 8 0.051276 1 0.05048 3 0.05023 7 0.050126 18 0.049905 2 0.049155 21 0.046017 19 0.044009 22 0.040563 12 0.037313 9 0.033726 15 0.027502 17 0.026749 13 0.017451 14 0.016973 16 0.011636 11 0.006549 10 0.005969 23 0.06807518005137017 24 0.05241534708217832 18 0.05172486419512994 21 0.0492144881894829 22 0.04892303746328562 19 0.04823176766506509 20 0.047338086234739125 4 0.04636031083518613 5 0.045025851440313173 6 0.04394473545424902 8 0.042557181666014784 1 0.04210179184046435 7 0.04203033068206645 3 0.041481380542594516 2 0.04124970605256751 9 0.03984820589845964 17 0.039602479546900174 12 0.03929904725855053 11 0.027239012992139183 16 0.02708593251302696 0 0.023975463492327195 10 0.023963816874008007 15 0.023177431337760665 13 0.021571588798736975 14 0.020051508462338698 __DUMMY__ 0.003511453431044853 false 1.0 232 18 0.094915 10 0.088499 19 0.076946 11 0.076115 21 0.075506 22 0.071513 12 0.05976 14 0.058984 0 0.055985 13 0.055704 17 0.053184 20 0.050259 9 0.047064 16 0.040647 15 0.030521 23 0.024295 24 0.021978 4 0.0058 5 0.005322 6 0.003451 7 0.001147 1 9.72E-4 8 9.02E-4 3 5.3E-4 18 0.094915 10 0.088499 19 0.076946 11 0.076115 21 0.075506 22 0.071513 12 0.05976 14 0.058984 0 0.055985 13 0.055704 17 0.053184 20 0.050259 9 0.047064 16 0.040647 15 0.030521 23 0.024295 24 0.021978 4 0.0058 5 0.005322 6 0.003451 7 0.001147 1 9.72E-4 8 9.02E-4 3 5.3E-4 18 0.08188304358648663 21 0.07461894259665783 19 0.07224086048720971 10 0.07089270857397953 22 0.06989180086121491 11 0.06873833728302489 12 0.057883793557295324 14 0.04993147240803239 20 0.04981709305274517 17 0.049497526374852704 0 0.048067140810772256 13 0.04759123436401719 9 0.04401152355462341 16 0.038326291413189606 24 0.03292512479287867 23 0.032537387967984964 15 0.02565240472351857 4 0.01384596498149846 5 0.013357761963612937 6 0.01108441991162424 3 0.008798201557996575 7 0.008789549291892632 8 0.008653879360824155 1 0.008578480170244599 2 0.00793121194926014 __DUMMY__ 0.0044538444045626084 false 1.0 474 23 0.06747 6 0.065223 7 0.064832 4 0.064722 8 0.064673 1 0.063692 2 0.063442 5 0.063426 3 0.062351 9 0.048093 17 0.044112 24 0.043832 22 0.037755 0 0.034204 18 0.033701 16 0.031365 20 0.029417 19 0.028521 21 0.023675 15 0.019334 12 0.016667 10 0.014545 11 0.013628 13 0.00132 23 0.06747 6 0.065223 7 0.064832 4 0.064722 8 0.064673 1 0.063692 2 0.063442 5 0.063426 3 0.062351 9 0.048093 17 0.044112 24 0.043832 22 0.037755 0 0.034204 18 0.033701 16 0.031365 20 0.029417 19 0.028521 21 0.023675 15 0.019334 12 0.016667 10 0.014545 11 0.013628 13 0.00132 23 0.055735039139075855 22 0.050772587168200975 4 0.0492793147397356 5 0.04840449115346433 6 0.0482453201844373 7 0.04728437103502802 8 0.047180616857159935 9 0.04710301495377378 1 0.04664907499730417 2 0.04627777142097643 3 0.046221628244177256 18 0.0456286002570175 17 0.044521375585609785 24 0.043504997533687854 21 0.043354860101043106 19 0.04212698239968534 0 0.037284808769392656 20 0.03464591836814088 11 0.03253699474618232 16 0.03191342427562183 12 0.03053987081176982 10 0.029286393891471765 15 0.018375006047899357 14 0.015015630312694548 13 0.014632529671817102 __DUMMY__ 0.0034793773346325427 false 1.0 233 21 0.102453 19 0.088277 12 0.081161 22 0.076485 18 0.076321 20 0.072658 11 0.069589 24 0.061807 23 0.055692 13 0.047801 10 0.047164 17 0.039567 14 0.037168 16 0.036094 9 0.030314 0 0.029719 4 0.011246 5 0.010467 6 0.006231 3 0.005443 7 0.004395 1 0.003719 8 0.003686 2 0.002542 21 0.102453 19 0.088277 12 0.081161 22 0.076485 18 0.076321 20 0.072658 11 0.069589 24 0.061807 23 0.055692 13 0.047801 10 0.047164 17 0.039567 14 0.037168 16 0.036094 9 0.030314 0 0.029719 4 0.011246 5 0.010467 6 0.006231 3 0.005443 7 0.004395 1 0.003719 8 0.003686 2 0.002542 21 0.08836359685735536 19 0.0771579286676325 18 0.07201913237741868 22 0.07201246045949211 12 0.06993497657021239 11 0.0659801897040768 20 0.06031802042741047 24 0.052329240247362185 10 0.05015465039506187 23 0.04795377131825002 13 0.04544281106730314 17 0.042432183184512993 14 0.03971084523976624 16 0.03582860854656785 9 0.03534716723005012 0 0.03511547162819541 4 0.016492278018973405 5 0.015864057119989658 6 0.01251091710335826 3 0.01101122144841225 15 0.010317263261698328 7 0.010299265238907259 8 0.009946146256236724 1 0.00985722837755374 2 0.00912078639015578 __DUMMY__ 0.004479782864046305 false 1.0 475 17 0.087891 0 0.084265 16 0.072204 22 0.059676 9 0.056747 11 0.055609 18 0.053645 19 0.048267 10 0.046448 6 0.041319 8 0.038268 7 0.037823 1 0.03766 2 0.037441 4 0.036749 5 0.036176 21 0.03365 12 0.032085 3 0.031634 23 0.024886 15 0.013915 13 0.013005 20 0.010978 24 0.00966 17 0.087891 0 0.084265 16 0.072204 22 0.059676 9 0.056747 11 0.055609 18 0.053645 19 0.048267 10 0.046448 6 0.041319 8 0.038268 7 0.037823 1 0.03766 2 0.037441 4 0.036749 5 0.036176 21 0.03365 12 0.032085 3 0.031634 23 0.024886 15 0.013915 13 0.013005 20 0.010978 24 0.00966 17 0.07211932658049182 0 0.06928715497107395 22 0.06274049575219197 18 0.05618507545932823 16 0.05593720413108156 11 0.05533502046919344 9 0.05470829985421875 19 0.05043366300481738 10 0.04759862059723072 21 0.04466055266207799 6 0.037405097900974675 4 0.03560972114528634 5 0.03504662670590005 8 0.0349877703700363 7 0.03475945086077802 12 0.03460403953838184 1 0.034572863371910824 2 0.03418833035211384 3 0.031072947156585318 23 0.030204530316646036 24 0.020733451497868073 20 0.01999428098842288 13 0.017290002546731482 15 0.015497077709454075 14 0.011721907582902397 __DUMMY__ 0.0033064884743019235 false 1.0 234 20 0.104342 19 0.09779 21 0.082983 12 0.079734 18 0.078652 24 0.07678 23 0.058402 16 0.056724 22 0.053529 13 0.052205 14 0.049594 11 0.047776 10 0.041725 17 0.039309 15 0.033357 0 0.013654 9 0.012637 4 0.006837 5 0.006238 3 0.003522 6 0.002206 7 8.7E-4 8 7.22E-4 2 4.13E-4 20 0.104342 19 0.09779 21 0.082983 12 0.079734 18 0.078652 24 0.07678 23 0.058402 16 0.056724 22 0.053529 13 0.052205 14 0.049594 11 0.047776 10 0.041725 17 0.039309 15 0.033357 0 0.013654 9 0.012637 4 0.006837 5 0.006238 3 0.003522 6 0.002206 7 8.7E-4 8 7.22E-4 2 4.13E-4 19 0.08291012756653568 21 0.0789582868169528 20 0.07773221424150265 18 0.07356004832109675 12 0.06911742287244256 24 0.061065319518941744 22 0.06039680451110993 11 0.054397980067499366 23 0.050322496606486425 13 0.04731227273574151 10 0.046904740839475975 16 0.04634555877389346 14 0.04627200933633884 17 0.04187040509338095 15 0.02774702673797965 0 0.02583568480847578 9 0.025825558606072416 4 0.013971970091819335 5 0.01342778114875438 6 0.01004341988612005 3 0.009813355178806618 7 0.008188252390340623 8 0.008097970188883207 2 0.007660911739815085 1 0.007647021518599214 __DUMMY__ 0.004575360402935133 false 1.0 476 6 0.062237 8 0.061571 7 0.061516 1 0.061159 4 0.061106 2 0.060427 5 0.06014 3 0.058573 23 0.057754 9 0.050816 17 0.050403 0 0.04277 22 0.039863 24 0.037803 16 0.037649 18 0.034702 19 0.030598 20 0.025222 21 0.025041 10 0.020168 12 0.0199 11 0.01898 15 0.016809 13 0.004794 6 0.062237 8 0.061571 7 0.061516 1 0.061159 4 0.061106 2 0.060427 5 0.06014 3 0.058573 23 0.057754 9 0.050816 17 0.050403 0 0.04277 22 0.039863 24 0.037803 16 0.037649 18 0.034702 19 0.030598 20 0.025222 21 0.025041 10 0.020168 12 0.0199 11 0.01898 15 0.016809 13 0.004794 6 0.05152215609563499 17 0.051371478254014905 4 0.05116657299975361 8 0.050455497641273626 5 0.05045119714812464 7 0.05042338990716949 23 0.050369705814330194 1 0.05020084372556465 9 0.050009918669381793 2 0.049566024490401026 3 0.048234426732272934 22 0.04782296708334011 0 0.04533840232832714 18 0.04280960965246158 19 0.03862347390458312 16 0.03830227046300602 24 0.0365913647643262 21 0.03618967957864217 11 0.031105931587945116 10 0.0297394732911297 20 0.028156867026520697 12 0.027656119087578444 15 0.01793044063066908 13 0.012938347381906403 14 0.009843818564180762 __DUMMY__ 0.0031800231774614758 false 1.0 477 23 0.064947 8 0.060042 4 0.059907 7 0.059862 3 0.05982 1 0.059436 2 0.058976 6 0.05896 5 0.058902 24 0.057099 20 0.048904 9 0.04342 17 0.042356 19 0.040923 16 0.037863 18 0.036282 22 0.035736 0 0.026425 21 0.025317 15 0.021375 12 0.018478 10 0.013478 11 0.010283 14 0.001208 23 0.064947 8 0.060042 4 0.059907 7 0.059862 3 0.05982 1 0.059436 2 0.058976 6 0.05896 5 0.058902 24 0.057099 20 0.048904 9 0.04342 17 0.042356 19 0.040923 16 0.037863 18 0.036282 22 0.035736 0 0.026425 21 0.025317 15 0.021375 12 0.018478 10 0.013478 11 0.010283 14 0.001208 23 0.05630734896852881 19 0.05529685768056465 20 0.05432755772030586 24 0.05367709336165051 18 0.05219975547996589 22 0.04755102372184785 21 0.04587509256992697 17 0.04336585691816522 4 0.04162202249991553 5 0.0408664963072851 3 0.039650506810718765 6 0.039616495058024295 9 0.03942544010354784 8 0.03934269310655207 7 0.03924590247099674 16 0.03919946771396202 1 0.03892591234685581 2 0.03853510328099981 12 0.03607468360568687 10 0.030375686510949282 11 0.030220775694721362 0 0.029653895702130544 15 0.024853839973728392 14 0.020586996010637952 13 0.0187774943486781 __DUMMY__ 0.004426002033653715 false 1.0 235 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.08684414478702188 12 0.07795601463820363 11 0.0738155908311615 22 0.07032260876799541 18 0.06622723404578916 19 0.06620563811238521 13 0.05899987081551716 10 0.05387855267003774 20 0.046831733305973296 14 0.04500357103519107 17 0.0428378206882033 0 0.04252474182709259 24 0.04220010790485589 23 0.039868458794602116 9 0.036551028456746085 16 0.03345173645699389 4 0.01748796873987637 5 0.016879343921224893 6 0.014856100781634896 7 0.010945513816098826 8 0.010849269626330024 1 0.010675121611059065 3 0.010353003504808417 2 0.010323487319761923 15 0.009706280406554675 __DUMMY__ 0.004405057134880859 false 1.0 236 21 0.106972 19 0.090403 12 0.087965 20 0.079403 22 0.077513 18 0.075442 24 0.071219 11 0.06256 23 0.06052 13 0.052376 14 0.045349 10 0.039266 17 0.034798 16 0.034561 9 0.023992 0 0.01783 4 0.011455 5 0.010159 15 0.005902 6 0.005351 3 0.003478 7 0.001564 8 0.001409 2 5.14E-4 21 0.106972 19 0.090403 12 0.087965 20 0.079403 22 0.077513 18 0.075442 24 0.071219 11 0.06256 23 0.06052 13 0.052376 14 0.045349 10 0.039266 17 0.034798 16 0.034561 9 0.023992 0 0.01783 4 0.011455 5 0.010159 15 0.005902 6 0.005351 3 0.003478 7 0.001564 8 0.001409 2 5.14E-4 21 0.0909725230263738 19 0.07848840145738113 12 0.07342175060185514 22 0.07237992717795882 18 0.07056286640652075 20 0.06420201440824366 11 0.06214201664206267 24 0.05835484225334565 23 0.05158860061625858 13 0.04691736414477082 10 0.0445733875293688 14 0.04271274693827498 17 0.03972636438306845 16 0.035356079256525653 9 0.031602932501400005 0 0.02838299214801964 4 0.016966170288841922 5 0.016093137348913142 15 0.012541364750251936 6 0.012388974435496115 3 0.01049150778816257 7 0.009302068265929823 8 0.009197268390522933 2 0.008484816602538874 1 0.008432655430877808 __DUMMY__ 0.004717227207036085 false 1.0 478 0 0.085372 17 0.078665 9 0.065241 22 0.062413 11 0.058311 10 0.055199 18 0.054772 16 0.052783 6 0.045473 8 0.043 1 0.042865 7 0.042743 2 0.042605 5 0.041903 4 0.041887 3 0.037923 19 0.037539 21 0.033107 12 0.024417 23 0.021412 13 0.012242 15 0.012022 14 0.004506 24 0.0036 0 0.085372 17 0.078665 9 0.065241 22 0.062413 11 0.058311 10 0.055199 18 0.054772 16 0.052783 6 0.045473 8 0.043 1 0.042865 7 0.042743 2 0.042605 5 0.041903 4 0.041887 3 0.037923 19 0.037539 21 0.033107 12 0.024417 23 0.021412 13 0.012242 15 0.012022 14 0.004506 24 0.0036 0 0.06949539321356714 17 0.06697730406071976 22 0.06449699496298947 9 0.058928889757181205 18 0.05723442277330941 11 0.057133559373279345 10 0.052550245486640425 16 0.04556062250766829 19 0.045392458194634534 21 0.045189878472162825 6 0.039000358648361995 4 0.037805931924636486 5 0.03751412493244737 8 0.03684139472701538 7 0.036702512585415695 1 0.036645816774703834 2 0.03624933954134196 3 0.03377302407768173 12 0.03137138088309468 23 0.028374435373516627 24 0.0177967411885041 13 0.017637844007159065 20 0.014859379847868833 14 0.01474970407381614 15 0.014373664941156501 __DUMMY__ 0.003344577671127138 false 1.0 237 20 0.10477 19 0.09794 21 0.083767 18 0.080563 12 0.078166 24 0.07609 23 0.059935 16 0.055863 22 0.053492 13 0.051821 14 0.048948 11 0.046816 10 0.040825 17 0.039657 15 0.032805 0 0.013706 9 0.013354 4 0.006537 5 0.005881 3 0.003093 6 0.002121 7 0.001585 1 0.001288 8 9.78E-4 20 0.10477 19 0.09794 21 0.083767 18 0.080563 12 0.078166 24 0.07609 23 0.059935 16 0.055863 22 0.053492 13 0.051821 14 0.048948 11 0.046816 10 0.040825 17 0.039657 15 0.032805 0 0.013706 9 0.013354 4 0.006537 5 0.005881 3 0.003093 6 0.002121 7 0.001585 1 0.001288 8 9.78E-4 19 0.0829803950967846 21 0.0793255517750539 20 0.07793271092781294 18 0.07445525665646825 12 0.06838289295624028 24 0.06074208887979661 22 0.06037947185364852 11 0.05394826787390615 23 0.0510406307656306 13 0.0471323878583042 10 0.04648313565798232 14 0.04596939050606673 16 0.045942223150264534 17 0.04203342576355849 15 0.027488442226663544 9 0.026161437400662353 0 0.025860044218962076 4 0.013831435031321452 5 0.013260544426761897 6 0.010003601618978982 3 0.009612390042294644 7 0.008523194284527243 1 0.00825038537833679 8 0.008217893440508066 2 0.007467441806529668 __DUMMY__ 0.004575360402935134 false 1.0 479 0 0.087511 17 0.085207 16 0.065664 9 0.059516 22 0.058937 11 0.058253 18 0.052484 10 0.049543 6 0.04399 19 0.041937 8 0.040668 1 0.040197 7 0.04019 2 0.03983 4 0.039093 5 0.038662 3 0.033586 12 0.032868 21 0.032856 23 0.023677 13 0.016894 15 0.010613 24 0.004248 20 0.003576 0 0.087511 17 0.085207 16 0.065664 9 0.059516 22 0.058937 11 0.058253 18 0.052484 10 0.049543 6 0.04399 19 0.041937 8 0.040668 1 0.040197 7 0.04019 2 0.03983 4 0.039093 5 0.038662 3 0.033586 12 0.032868 21 0.032856 23 0.023677 13 0.016894 15 0.010613 24 0.004248 20 0.003576 17 0.07108933507271298 0 0.07104580938979826 22 0.06210188730957372 11 0.0562970142669666 9 0.05608133545159264 18 0.05570931481300001 16 0.05312454128691138 10 0.049208773324673945 19 0.047381546682307214 21 0.04375566669890551 6 0.038773873174228805 4 0.03677133264198294 5 0.03627327594658819 8 0.03624319641379849 7 0.03599342232071457 1 0.03588881415643495 2 0.0354396625657725 12 0.034678281102812854 3 0.03207845489029793 23 0.029523040242554022 13 0.019024649254322994 24 0.017868512746432533 20 0.016459868313093387 15 0.01423143053562043 14 0.011640911321127212 __DUMMY__ 0.003316050077775865 false 1.0 238 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.08684414478702188 12 0.07795601463820363 11 0.0738155908311615 22 0.07032260876799541 18 0.06622723404578916 19 0.06620563811238521 13 0.05899987081551716 10 0.05387855267003774 20 0.046831733305973296 14 0.04500357103519107 17 0.0428378206882033 0 0.04252474182709259 24 0.04220010790485589 23 0.039868458794602116 9 0.036551028456746085 16 0.03345173645699389 4 0.01748796873987637 5 0.016879343921224893 6 0.014856100781634896 7 0.010945513816098826 8 0.010849269626330024 1 0.010675121611059065 3 0.010353003504808417 2 0.010323487319761923 15 0.009706280406554675 __DUMMY__ 0.004405057134880859 false 1.0 239 21 0.115891 12 0.107304 13 0.079485 23 0.079233 11 0.076062 22 0.075763 24 0.069723 19 0.050603 14 0.049631 18 0.035531 20 0.032962 4 0.031634 5 0.029279 6 0.026818 17 0.019792 8 0.018163 7 0.017902 1 0.017006 2 0.016615 3 0.015505 9 0.014801 0 0.011536 16 0.007549 10 0.001211 21 0.115891 12 0.107304 13 0.079485 23 0.079233 11 0.076062 22 0.075763 24 0.069723 19 0.050603 14 0.049631 18 0.035531 20 0.032962 4 0.031634 5 0.029279 6 0.026818 17 0.019792 8 0.018163 7 0.017902 1 0.017006 2 0.016615 3 0.015505 9 0.014801 0 0.011536 16 0.007549 10 0.001211 21 0.09494780799047876 12 0.08242505665819959 22 0.07174238348638388 11 0.06895134441927893 13 0.05998120648552647 23 0.05972855833943134 19 0.058950532312619076 24 0.05654897889277275 18 0.051669890157467466 14 0.04469477227120139 20 0.041046638387311325 17 0.032902780061432914 9 0.027930465410032718 10 0.027251267169038976 4 0.02668513700304729 0 0.02633652653993714 5 0.025315308599131968 6 0.02281372890297301 16 0.02222256189302033 8 0.017348620436271105 7 0.01725503798146901 1 0.016702772041364687 2 0.0163300141379259 3 0.01631011783589884 15 0.009371682149644187 __DUMMY__ 0.004536810438140912 false 1.0 480 12 0.102267 20 0.091398 13 0.090094 19 0.079318 23 0.078138 21 0.071372 18 0.06931 24 0.062731 14 0.057899 16 0.04589 15 0.037984 11 0.03445 10 0.033015 17 0.028839 22 0.028647 4 0.015623 5 0.015446 6 0.014199 8 0.008272 1 0.008013 7 0.007949 2 0.007404 0 0.00644 3 0.005302 12 0.102267 20 0.091398 13 0.090094 19 0.079318 23 0.078138 21 0.071372 18 0.06931 24 0.062731 14 0.057899 16 0.04589 15 0.037984 11 0.03445 10 0.033015 17 0.028839 22 0.028647 4 0.015623 5 0.015446 6 0.014199 8 0.008272 1 0.008013 7 0.007949 2 0.007404 0 0.00644 3 0.005302 12 0.08132345445568179 19 0.07314748211637907 21 0.07211259407618159 20 0.0712852235033221 18 0.06701811119587231 13 0.06641761043651462 23 0.06129633929355925 24 0.05436108180355643 14 0.048530047572396706 11 0.046734916767943536 22 0.04641625819026955 16 0.04254374376356903 10 0.04050030140228596 17 0.037120756643578695 15 0.029065601121147304 0 0.02242693513684277 4 0.019064290650610095 5 0.01872078829156635 9 0.018541603174585215 6 0.01704240750363581 8 0.012838294998723552 7 0.012702881025903993 1 0.012605692392822637 2 0.012152659578396225 3 0.01143687573852289 __DUMMY__ 0.0045940491661322636 false 1.0 481 6 0.069267 8 0.069237 4 0.069094 7 0.068601 5 0.068127 2 0.067922 1 0.067842 3 0.066998 23 0.066592 9 0.049171 24 0.045463 17 0.041315 22 0.03475 0 0.031004 18 0.02974 20 0.02904 16 0.027527 19 0.023871 15 0.021375 21 0.019064 12 0.013845 10 0.011972 11 0.007161 13 0.001019 6 0.069267 8 0.069237 4 0.069094 7 0.068601 5 0.068127 2 0.067922 1 0.067842 3 0.066998 23 0.066592 9 0.049171 24 0.045463 17 0.041315 22 0.03475 0 0.031004 18 0.02974 20 0.02904 16 0.027527 19 0.023871 15 0.021375 21 0.019064 12 0.013845 10 0.011972 11 0.007161 13 0.001019 4 0.05682167172771771 6 0.05628158816728652 5 0.056106410554192576 23 0.05589583400745006 8 0.05575516358736253 7 0.05549224765544623 1 0.05509464494031475 2 0.05480205746634481 3 0.054391186360151667 9 0.050054892659013896 22 0.045289667696009145 17 0.043816538799766845 24 0.041881304530831914 18 0.03951252893455439 0 0.036930304399758716 19 0.0337188890289996 21 0.0335534586342024 20 0.030081576463030574 16 0.029318656333522975 10 0.025067409173529367 11 0.02350847831221111 12 0.023158674073680163 15 0.019965321141857523 14 0.010690964739599176 13 0.010219162663197121 __DUMMY__ 0.0025913679499680368 false 1.0 482 10 0.090123 18 0.084961 0 0.07688 22 0.076216 9 0.075244 11 0.065537 17 0.064887 19 0.049927 21 0.046473 14 0.03483 4 0.03003 5 0.029642 6 0.029202 16 0.028898 8 0.027487 7 0.027447 1 0.027271 2 0.027098 3 0.02651 15 0.022921 13 0.018518 12 0.017977 20 0.011703 23 0.010216 10 0.090123 18 0.084961 0 0.07688 22 0.076216 9 0.075244 11 0.065537 17 0.064887 19 0.049927 21 0.046473 14 0.03483 4 0.03003 5 0.029642 6 0.029202 16 0.028898 8 0.027487 7 0.027447 1 0.027271 2 0.027098 3 0.02651 15 0.022921 13 0.018518 12 0.017977 20 0.011703 23 0.010216 18 0.07570660882744014 10 0.07325354999206139 22 0.07138950991388585 0 0.06351748430792169 9 0.06288279706551383 11 0.06128206456280807 17 0.058463696413521365 19 0.05383343595584009 21 0.05342192159567551 14 0.03434760876924432 16 0.032511960939696515 12 0.02965153689477913 4 0.02948445333288328 5 0.029013433749988445 6 0.028130375834860114 8 0.02637050145277712 7 0.026336709719088906 1 0.026138070138362966 2 0.02580923044559381 3 0.02568072693767129 20 0.023987572313438184 13 0.0239080167627696 23 0.022519100779382645 15 0.022475436029857073 24 0.01635448793762352 __DUMMY__ 0.003529709327315081 false 1.0 240 21 0.081765 22 0.068755 12 0.061507 11 0.060644 18 0.055381 9 0.051272 10 0.050783 13 0.049981 23 0.044852 14 0.04349 19 0.041982 24 0.041774 4 0.036809 5 0.03566 0 0.034007 6 0.032536 20 0.030692 3 0.030079 7 0.030076 1 0.029784 8 0.029619 2 0.028248 17 0.025446 15 0.004859 21 0.081765 22 0.068755 12 0.061507 11 0.060644 18 0.055381 9 0.051272 10 0.050783 13 0.049981 23 0.044852 14 0.04349 19 0.041982 24 0.041774 4 0.036809 5 0.03566 0 0.034007 6 0.032536 20 0.030692 3 0.030079 7 0.030076 1 0.029784 8 0.029619 2 0.028248 17 0.025446 15 0.004859 21 0.07779875520107987 22 0.06762055849469009 11 0.06076668379554214 18 0.06065123336128706 12 0.06033022334856373 19 0.0536990809639316 10 0.05061956985595619 13 0.04632531972261139 9 0.04539955433780366 23 0.04353568214513225 24 0.04286050148986977 14 0.042001028576780675 20 0.039459739903266816 0 0.03680868055987088 17 0.035217588647801015 4 0.029816147591170055 5 0.02901589711713032 6 0.026280349329970823 3 0.023888257065283507 7 0.023770006252384228 8 0.02352961706601436 1 0.023512115491278046 2 0.02259236314671386 16 0.017991348610348526 15 0.012199188166317298 __DUMMY__ 0.004310509759201968 false 1.0 241 21 0.081937 12 0.070845 22 0.064103 11 0.058806 18 0.056681 24 0.055659 20 0.052062 13 0.052047 19 0.051413 23 0.04789 10 0.043727 9 0.041344 14 0.040452 4 0.034254 5 0.034159 3 0.029552 6 0.029056 8 0.026725 2 0.026624 7 0.02654 1 0.026293 0 0.023557 17 0.020591 16 0.005681 21 0.081937 12 0.070845 22 0.064103 11 0.058806 18 0.056681 24 0.055659 20 0.052062 13 0.052047 19 0.051413 23 0.04789 10 0.043727 9 0.041344 14 0.040452 4 0.034254 5 0.034159 3 0.029552 6 0.029056 8 0.026725 2 0.026624 7 0.02654 1 0.026293 0 0.023557 17 0.020591 16 0.005681 21 0.07940825141465117 22 0.06619870984179492 12 0.06618099440783905 18 0.0625625835499218 11 0.06130018686323652 19 0.0597004009776205 20 0.05068327489401499 24 0.049664738261357554 13 0.048444228363071946 10 0.04831554481790172 23 0.04456769830238103 14 0.041595376044399356 9 0.040146589086830636 17 0.03306370014338613 0 0.03188986201522064 4 0.027177354612950014 5 0.026872019408606337 6 0.023102756536667487 3 0.022092724591660815 16 0.02114015382312616 8 0.02055490847754679 7 0.020490882590803346 1 0.020250259925246022 2 0.020222890020493493 15 0.00990952585364985 __DUMMY__ 0.004464385175621992 false 1.0 483 15 0.184303 14 0.164313 10 0.094224 18 0.093434 13 0.076308 20 0.071678 19 0.044836 9 0.035413 22 0.032149 24 0.029734 23 0.025055 21 0.025033 17 0.018804 16 0.015238 11 0.014991 3 0.012144 5 0.01084 4 0.010678 2 0.007504 1 0.007367 8 0.007293 7 0.007149 12 0.005931 6 0.005581 15 0.184303 14 0.164313 10 0.094224 18 0.093434 13 0.076308 20 0.071678 19 0.044836 9 0.035413 22 0.032149 24 0.029734 23 0.025055 21 0.025033 17 0.018804 16 0.015238 11 0.014991 3 0.012144 5 0.01084 4 0.010678 2 0.007504 1 0.007367 8 0.007293 7 0.007149 12 0.005931 6 0.005581 15 0.11133566906927155 14 0.10760120842934831 18 0.08331230479419867 10 0.07477154767870071 20 0.06550344414544693 13 0.0601953678002567 19 0.05710584182820627 22 0.045954472380457925 21 0.045486537034796215 24 0.037523660792282344 9 0.03583379928028406 11 0.033721220565471145 23 0.033702136485686436 17 0.031720166708067564 12 0.029532049552023952 16 0.027498820762502915 0 0.017089683194618493 4 0.015032815525522509 5 0.014868647506277623 3 0.013709967296367195 6 0.011018438238470972 8 0.010973288698945444 7 0.010891245574692838 1 0.010863337139171233 2 0.010767935029283646 __DUMMY__ 0.003986394489648309 false 1.0 242 21 0.068718 12 0.060564 22 0.056434 11 0.051456 13 0.051269 24 0.049017 23 0.047452 18 0.046685 9 0.045141 4 0.043261 5 0.043081 14 0.042324 10 0.041956 20 0.039892 3 0.039327 6 0.039163 8 0.03728 7 0.037118 2 0.037079 1 0.036898 19 0.035264 0 0.024857 17 0.017351 15 0.008415 21 0.068718 12 0.060564 22 0.056434 11 0.051456 13 0.051269 24 0.049017 23 0.047452 18 0.046685 9 0.045141 4 0.043261 5 0.043081 14 0.042324 10 0.041956 20 0.039892 3 0.039327 6 0.039163 8 0.03728 7 0.037118 2 0.037079 1 0.036898 19 0.035264 0 0.024857 17 0.017351 15 0.008415 21 0.0724752307318616 22 0.06189172391366392 12 0.06118672945790172 11 0.05711706054427061 18 0.05681409310629558 19 0.05052245233315012 13 0.0484892388289465 10 0.04689760547327196 24 0.04619706631018463 23 0.044577376874362126 20 0.04396687603111984 14 0.042442615338624985 9 0.04217170239665702 4 0.032364569185457624 0 0.03231694113581654 5 0.03202465813599455 17 0.03096452003247414 6 0.028897209413176514 3 0.027625927088541523 8 0.026540155331925882 7 0.02648786717194556 1 0.026271204931462972 2 0.02616602576193096 16 0.01749819303287966 15 0.013846526299743533 __DUMMY__ 0.004246431138339989 false 1.0 484 18 0.110715 19 0.104105 21 0.098438 22 0.09525 20 0.08516 24 0.081553 10 0.061691 23 0.061021 11 0.053363 9 0.044387 12 0.043685 17 0.040208 14 0.035734 16 0.018256 0 0.013883 4 0.013771 5 0.011336 3 0.00764 15 0.00762 13 0.004146 6 0.002701 8 0.002551 7 0.001601 1 0.001186 18 0.110715 19 0.104105 21 0.098438 22 0.09525 20 0.08516 24 0.081553 10 0.061691 23 0.061021 11 0.053363 9 0.044387 12 0.043685 17 0.040208 14 0.035734 16 0.018256 0 0.013883 4 0.013771 5 0.011336 3 0.00764 15 0.00762 13 0.004146 6 0.002701 8 0.002551 7 0.001601 1 0.001186 18 0.0899590237062512 19 0.08506991519509866 21 0.08434036464268152 22 0.08076186063910709 20 0.06665244615317188 24 0.06076523170025019 10 0.059023977177249255 11 0.05726603520169288 23 0.04956111274786885 12 0.04879874087809808 17 0.043412972098161334 9 0.043085292220434515 14 0.039555373152119364 0 0.028075619238817955 16 0.02781859445991347 13 0.02252255162255245 4 0.01766008187528543 15 0.01635786474752097 5 0.016256589530699295 3 0.0123954702040849 6 0.010751562337167378 8 0.009580235085508272 7 0.009155253698307993 1 0.008827175388188302 2 0.008082401261151154 __DUMMY__ 0.004264255038617613 false 1.0 485 17 0.079132 16 0.074056 0 0.064212 19 0.059052 22 0.055822 18 0.052654 11 0.051367 9 0.042398 21 0.039849 6 0.037885 23 0.037241 4 0.035596 24 0.03554 8 0.035364 5 0.035252 12 0.03503 7 0.035005 20 0.034959 1 0.034832 2 0.034597 10 0.031693 3 0.031132 15 0.020173 13 0.007158 17 0.079132 16 0.074056 0 0.064212 19 0.059052 22 0.055822 18 0.052654 11 0.051367 9 0.042398 21 0.039849 6 0.037885 23 0.037241 4 0.035596 24 0.03554 8 0.035364 5 0.035252 12 0.03503 7 0.035005 20 0.034959 1 0.034832 2 0.034597 10 0.031693 3 0.031132 15 0.020173 13 0.007158 17 0.06471326986135228 22 0.061796095028331534 19 0.061394386081568206 18 0.058922260893095754 16 0.0565617690278325 11 0.05551448448239118 0 0.054738246063552584 21 0.054144230852666404 9 0.043338702203155235 12 0.042839380473896425 10 0.041244046712069535 20 0.03898864563232398 23 0.03841808856398523 24 0.03796843470763376 4 0.030539838985231122 6 0.030506885575453058 5 0.030095122285391674 8 0.028173167312540676 7 0.028007101570357476 1 0.027795385921940374 2 0.027460769369487697 3 0.02602001296559686 13 0.020232643269801787 15 0.019458289954410835 14 0.017021123757930703 __DUMMY__ 0.004107618448002957 false 1.0 243 12 0.12297 13 0.100359 21 0.093796 19 0.068545 11 0.068207 20 0.061903 18 0.059905 23 0.055473 22 0.050881 14 0.050451 24 0.048835 16 0.042406 10 0.039096 17 0.037948 0 0.031914 9 0.013115 4 0.011539 6 0.011499 5 0.011213 15 0.004486 8 0.00395 2 0.003867 7 0.003845 1 0.003796 12 0.12297 13 0.100359 21 0.093796 19 0.068545 11 0.068207 20 0.061903 18 0.059905 23 0.055473 22 0.050881 14 0.050451 24 0.048835 16 0.042406 10 0.039096 17 0.037948 0 0.031914 9 0.013115 4 0.011539 6 0.011499 5 0.011213 15 0.004486 8 0.00395 2 0.003867 7 0.003845 1 0.003796 12 0.09290108898050095 21 0.0849146928854689 13 0.07411742572494849 19 0.06710227522794522 11 0.06532522465456377 18 0.06344972656196911 22 0.05855099002853567 20 0.055502359484435625 23 0.0485890121431684 14 0.04739186957647999 24 0.046159338109158524 10 0.04565402589472539 17 0.040751899037138106 16 0.03850371191204964 0 0.03544054143177144 9 0.025745908691279545 4 0.01628933048734963 5 0.01588649346333662 6 0.01484990389319921 15 0.012527807749170766 8 0.009661556142944908 7 0.009624801227212817 1 0.009491759883434729 2 0.009357785096392799 3 0.007766196650160826 __DUMMY__ 0.004444275062658974 false 1.0 486 22 0.087274 19 0.084469 18 0.08225 21 0.072498 17 0.069709 11 0.066942 0 0.061617 10 0.059606 9 0.056963 16 0.051132 20 0.040661 12 0.037392 24 0.035134 23 0.031169 5 0.022969 4 0.022843 6 0.019076 3 0.017969 8 0.016633 2 0.016488 7 0.015959 1 0.015948 14 0.012179 13 0.003121 22 0.087274 19 0.084469 18 0.08225 21 0.072498 17 0.069709 11 0.066942 0 0.061617 10 0.059606 9 0.056963 16 0.051132 20 0.040661 12 0.037392 24 0.035134 23 0.031169 5 0.022969 4 0.022843 6 0.019076 3 0.017969 8 0.016633 2 0.016488 7 0.015959 1 0.015948 14 0.012179 13 0.003121 22 0.07706386958695922 19 0.07393160006406255 18 0.07353615622815002 21 0.071635729950814 11 0.06361314442241194 17 0.05836244899378821 10 0.05507926623634237 0 0.051961571440998736 9 0.04958444647740276 12 0.045866149220127016 16 0.043868811014847575 20 0.042849986475572754 24 0.0386506100512736 23 0.03598287195887474 14 0.024810161589178856 4 0.02377236788339785 5 0.023553013733943244 6 0.02060609579559871 13 0.020536069809949833 3 0.01894572944193277 8 0.01824590769224548 7 0.0179427437841294 2 0.017846784021036816 1 0.017805252301304798 15 0.009696192557189497 __DUMMY__ 0.0042530192684672894 false 1.0 244 12 0.103837 13 0.090238 21 0.086727 11 0.076274 22 0.057116 18 0.050193 14 0.04779 19 0.047314 23 0.046253 10 0.044928 0 0.04145 24 0.037024 20 0.036898 17 0.032809 9 0.027764 16 0.024644 4 0.023125 6 0.023033 5 0.022815 7 0.016701 8 0.016694 1 0.016636 2 0.016455 3 0.013284 12 0.103837 13 0.090238 21 0.086727 11 0.076274 22 0.057116 18 0.050193 14 0.04779 19 0.047314 23 0.046253 10 0.044928 0 0.04145 24 0.037024 20 0.036898 17 0.032809 9 0.027764 16 0.024644 4 0.023125 6 0.023033 5 0.022815 7 0.016701 8 0.016694 1 0.016636 2 0.016455 3 0.013284 12 0.08628882550166805 21 0.08201906907646492 13 0.0720361786638683 11 0.07025756048567719 22 0.061099360448889445 18 0.05795695181824548 19 0.05541897448890666 10 0.04843130083676691 14 0.046156810996780095 23 0.04419051221614657 20 0.0418789212617061 0 0.04076868240024771 24 0.03924474739241168 17 0.03799491166911563 9 0.03250538596941658 16 0.029168108784197882 4 0.022074785447382027 5 0.02167242714614316 6 0.020858160113055135 7 0.015944088521633128 8 0.01593148445676259 1 0.015808528070907005 2 0.015555920966192916 3 0.01393321454997998 15 0.008777476543331629 __DUMMY__ 0.004027612174103291 false 1.0 487 19 0.102903 20 0.092331 18 0.085464 21 0.07041 16 0.0687 12 0.063133 24 0.061175 22 0.056325 10 0.052737 17 0.052736 11 0.050783 23 0.049487 14 0.045744 15 0.040927 13 0.039961 0 0.027998 9 0.019813 5 0.006596 4 0.006118 3 0.003214 6 0.002052 2 7.97E-4 8 4.41E-4 1 1.52E-4 19 0.102903 20 0.092331 18 0.085464 21 0.07041 16 0.0687 12 0.063133 24 0.061175 22 0.056325 10 0.052737 17 0.052736 11 0.050783 23 0.049487 14 0.045744 15 0.040927 13 0.039961 0 0.027998 9 0.019813 5 0.006596 4 0.006118 3 0.003214 6 0.002052 2 7.97E-4 8 4.41E-4 1 1.52E-4 19 0.08542379755831236 18 0.07690309286901871 21 0.07218182948736905 20 0.07216619544997963 22 0.06142527648747673 12 0.060365239767519056 11 0.055275630324751385 24 0.05354428226437667 16 0.052548764659034145 10 0.05217595026203113 17 0.04860415964591161 23 0.04612760379001182 14 0.044195862173849215 13 0.04076485924550112 0 0.032775840165464046 15 0.031945790677915475 9 0.029323026261550925 4 0.013761873608024878 5 0.013722599014602514 6 0.01013918354145561 3 0.009894903556061775 8 0.008200077625614876 2 0.00807076579060953 7 0.008013589293050384 1 0.007949673288162177 __DUMMY__ 0.004500133192345064 false 1.0 245 12 0.129113 13 0.125235 21 0.084668 14 0.070148 20 0.062671 23 0.062635 18 0.059617 19 0.055559 11 0.054467 24 0.043558 10 0.038985 22 0.034931 16 0.031789 17 0.028322 15 0.022995 0 0.021298 6 0.015324 4 0.013795 5 0.013217 8 0.006773 7 0.0065 1 0.006489 9 0.006068 2 0.005845 12 0.129113 13 0.125235 21 0.084668 14 0.070148 20 0.062671 23 0.062635 18 0.059617 19 0.055559 11 0.054467 24 0.043558 10 0.038985 22 0.034931 16 0.031789 17 0.028322 15 0.022995 0 0.021298 6 0.015324 4 0.013795 5 0.013217 8 0.006773 7 0.0065 1 0.006489 9 0.006068 2 0.005845 12 0.09709383228262203 13 0.08828723575765805 21 0.08045686703732649 18 0.06291480854961448 19 0.06002476308063841 14 0.05839854969891862 11 0.05822489663449393 20 0.05613547435261196 23 0.05236712326319293 22 0.04987048741790719 10 0.04537764992069425 24 0.04366025871849486 17 0.03517517935594497 16 0.03265622415614357 0 0.029478025423457323 15 0.02246880109270274 9 0.021645619394590004 4 0.017365389996783366 5 0.016848622958366394 6 0.01673916053295481 8 0.010975564431916426 7 0.010849581878411122 1 0.01074374422529812 2 0.010289139211940941 3 0.007649458666939091 __DUMMY__ 0.004303541960377913 false 1.0 488 19 0.103636 20 0.093361 21 0.088341 18 0.088259 24 0.071832 12 0.070045 22 0.068962 23 0.052957 16 0.052374 11 0.051669 17 0.04887 10 0.044219 14 0.036203 13 0.034009 9 0.024885 0 0.021997 15 0.018764 5 0.009916 4 0.009411 3 0.004581 6 0.003452 2 0.001119 8 0.001 7 1.39E-4 19 0.103636 20 0.093361 21 0.088341 18 0.088259 24 0.071832 12 0.070045 22 0.068962 23 0.052957 16 0.052374 11 0.051669 17 0.04887 10 0.044219 14 0.036203 13 0.034009 9 0.024885 0 0.021997 15 0.018764 5 0.009916 4 0.009411 3 0.004581 6 0.003452 2 0.001119 8 0.001 7 1.39E-4 19 0.08509396775216672 21 0.08110401965562598 18 0.07789403534152574 20 0.0715748477327893 22 0.06795491093347715 12 0.0637926803459854 24 0.058148878543729035 11 0.05634905583740392 10 0.04827410205820501 23 0.04736077691073061 17 0.046634995094996474 16 0.04403012141579757 14 0.039470298973006974 13 0.03805471327760406 9 0.03228635403570447 0 0.030387151878313604 15 0.020505930267815612 4 0.015604213689820578 5 0.015573213955688843 6 0.011082753518366656 3 0.010755173836770668 8 0.008701468246725162 2 0.008455832729247261 7 0.008316938613893585 1 0.008117968863300257 __DUMMY__ 0.004475596491309492 false 1.0 246 12 0.111537 13 0.101407 21 0.085875 19 0.067752 18 0.065495 20 0.063345 11 0.062498 14 0.062033 23 0.049107 10 0.048717 22 0.047334 24 0.043144 16 0.041606 17 0.038098 0 0.032391 15 0.020673 9 0.016429 6 0.009774 4 0.009766 5 0.009615 2 0.003453 1 0.003412 8 0.003278 7 0.00326 12 0.111537 13 0.101407 21 0.085875 19 0.067752 18 0.065495 20 0.063345 11 0.062498 14 0.062033 23 0.049107 10 0.048717 22 0.047334 24 0.043144 16 0.041606 17 0.038098 0 0.032391 15 0.020673 9 0.016429 6 0.009774 4 0.009766 5 0.009615 2 0.003453 1 0.003412 8 0.003278 7 0.00326 12 0.08667480220407787 21 0.08086447581012181 13 0.07391549630410431 19 0.06721651758447468 18 0.06659925857431749 11 0.06209723278015537 20 0.05698923622949819 22 0.056838856826980325 14 0.05317649274482777 10 0.05035906587992164 23 0.04566908043644215 24 0.0439041113028863 17 0.040779268093156705 16 0.03826372239895279 0 0.035183065862392664 9 0.027291690592394505 15 0.021097207149537243 4 0.015329282016784428 5 0.01500607633559051 6 0.013823557056008002 7 0.009235384366250462 8 0.009231499531553857 1 0.009190319781451274 2 0.00903912253458916 3 0.007764695178703096 __DUMMY__ 0.0044604824248273426 false 1.0 489 20 0.10482 19 0.104471 18 0.079421 21 0.078621 24 0.07732 12 0.07445 16 0.064891 23 0.059316 22 0.052409 14 0.046007 13 0.045647 11 0.045 17 0.044264 10 0.038506 15 0.037708 0 0.013904 9 0.01117 5 0.007531 4 0.007035 3 0.004021 6 0.002047 2 8.32E-4 8 4.44E-4 1 1.63E-4 20 0.10482 19 0.104471 18 0.079421 21 0.078621 24 0.07732 12 0.07445 16 0.064891 23 0.059316 22 0.052409 14 0.046007 13 0.045647 11 0.045 17 0.044264 10 0.038506 15 0.037708 0 0.013904 9 0.01117 5 0.007531 4 0.007035 3 0.004021 6 0.002047 2 8.32E-4 8 4.44E-4 1 1.63E-4 19 0.08630592286961171 20 0.0783763097810021 21 0.0766123019192177 18 0.07401187434900985 12 0.06637981278756762 24 0.061515011250108734 22 0.05964498598961519 11 0.052734084630612285 23 0.050894346654649134 16 0.05056087664060895 10 0.04528904265693997 14 0.04458803108352876 17 0.04430830669568571 13 0.04398896416504619 15 0.030231717116267803 0 0.02578839905960193 9 0.024971362463586184 4 0.014011987937370091 5 0.013981504447984747 3 0.010047727678887577 6 0.009916059000413832 8 0.007951621350809072 2 0.007840645143414772 7 0.0077631471405550274 1 0.007705258032370891 __DUMMY__ 0.00458069915553413 false 1.0 247 12 0.108269 13 0.098944 21 0.082715 11 0.073431 18 0.064008 19 0.062454 14 0.057747 10 0.052631 22 0.051573 20 0.051045 17 0.044059 16 0.043697 23 0.043656 0 0.043421 24 0.033392 9 0.020125 15 0.017491 6 0.011747 4 0.010554 5 0.010339 8 0.004783 7 0.004726 2 0.004608 1 0.004585 12 0.108269 13 0.098944 21 0.082715 11 0.073431 18 0.064008 19 0.062454 14 0.057747 10 0.052631 22 0.051573 20 0.051045 17 0.044059 16 0.043697 23 0.043656 0 0.043421 24 0.033392 9 0.020125 15 0.017491 6 0.011747 4 0.010554 5 0.010339 8 0.004783 7 0.004726 2 0.004608 1 0.004585 12 0.08532115944314843 21 0.07918957993692916 13 0.07276295174590867 11 0.06752003008114683 18 0.06505138684161732 19 0.06383806412381601 22 0.05883345380776487 10 0.05176578946522355 14 0.05032413285927988 20 0.0499119984115321 17 0.0438191628407541 23 0.04302713262328525 0 0.04105950723195998 16 0.03913890665115368 24 0.038744302231650485 9 0.029333164837824655 15 0.0186187646108323 4 0.016242898380705754 5 0.01588710538203227 6 0.015415092572060465 8 0.010528767230279292 7 0.01051253664709499 1 0.01033504846706723 2 0.010170907733832682 3 0.008214133309169059 __DUMMY__ 0.004434022533930936 false 1.0 248 12 0.116335 13 0.10319 21 0.075802 19 0.072838 20 0.069802 18 0.064012 23 0.063398 16 0.055 14 0.054107 11 0.047996 24 0.044168 17 0.041809 10 0.039148 22 0.035141 0 0.027928 15 0.022734 6 0.013378 4 0.011661 5 0.011569 9 0.007747 7 0.005632 1 0.005588 8 0.005564 2 0.005455 12 0.116335 13 0.10319 21 0.075802 19 0.072838 20 0.069802 18 0.064012 23 0.063398 16 0.055 14 0.054107 11 0.047996 24 0.044168 17 0.041809 10 0.039148 22 0.035141 0 0.027928 15 0.022734 6 0.013378 4 0.011661 5 0.011569 9 0.007747 7 0.005632 1 0.005588 8 0.005564 2 0.005455 12 0.08923725177931457 21 0.07564199331482183 13 0.07528128482172444 19 0.06931570274000595 18 0.06547904670537655 20 0.06012743150747972 11 0.05486265222428996 23 0.052713035586750306 22 0.050403364164622155 14 0.049543376334553024 10 0.04543077898861474 16 0.044895468153583945 24 0.04440412011101001 17 0.04249253496499003 0 0.032919451462758556 9 0.022757603216434715 15 0.02251405092655375 4 0.01634209513681848 5 0.016047156695270893 6 0.015730340844851125 7 0.010529561406794376 8 0.01049059428404232 1 0.010397538957789984 2 0.010168190916053714 3 0.007860453342623043 __DUMMY__ 0.0044149214128720365 false 1.0 249 12 0.10587 13 0.0961 11 0.069663 21 0.069327 18 0.065768 0 0.062745 17 0.062233 16 0.057327 19 0.056969 10 0.055572 22 0.047212 14 0.044074 23 0.038852 20 0.036056 9 0.025484 6 0.01743 24 0.014979 15 0.014175 4 0.012747 5 0.012453 8 0.008926 7 0.00878 1 0.008772 2 0.008485 12 0.10587 13 0.0961 11 0.069663 21 0.069327 18 0.065768 0 0.062745 17 0.062233 16 0.057327 19 0.056969 10 0.055572 22 0.047212 14 0.044074 23 0.038852 20 0.036056 9 0.025484 6 0.01743 24 0.014979 15 0.014175 4 0.012747 5 0.012453 8 0.008926 7 0.00878 1 0.008772 2 0.008485 12 0.08186525498141542 21 0.07013464274070148 13 0.06989603498596914 18 0.06492816458480985 11 0.06433657946863314 19 0.05934145471500327 22 0.05578130092418926 17 0.05339039411229646 10 0.05288424354956175 0 0.05145203606152563 16 0.04593723324357105 14 0.042609926350501044 20 0.04094222666756729 23 0.04020132300318708 9 0.032971365308158834 24 0.028546173485425107 6 0.019808391990799288 4 0.018704058227739927 5 0.018312515632866334 15 0.017731906054008494 8 0.014276991300199507 7 0.01420806814832736 1 0.014106537640808693 2 0.013783685379617272 3 0.009788233186368171 __DUMMY__ 0.0040612582567492285 false 1.0 490 18 0.090226 19 0.087579 20 0.07556 21 0.073405 10 0.069722 12 0.065425 22 0.06084 11 0.059954 14 0.058899 13 0.05425 16 0.048121 17 0.047513 24 0.045299 15 0.039111 23 0.036745 0 0.035653 9 0.030508 5 0.007367 4 0.006911 6 0.003113 3 0.002452 2 7.76E-4 8 4.22E-4 1 1.51E-4 18 0.090226 19 0.087579 20 0.07556 21 0.073405 10 0.069722 12 0.065425 22 0.06084 11 0.059954 14 0.058899 13 0.05425 16 0.048121 17 0.047513 24 0.045299 15 0.039111 23 0.036745 0 0.035653 9 0.030508 5 0.007367 4 0.006911 6 0.003113 3 0.002452 2 7.76E-4 8 4.22E-4 1 1.51E-4 18 0.07972036036413437 19 0.07765405563779286 21 0.07333753379413584 22 0.06399252086747519 20 0.06327729094537626 10 0.06147384203433452 12 0.060729911122327125 11 0.06005091881368255 14 0.05078882117699664 13 0.047410447530713475 17 0.04627547607436042 24 0.04493400426128043 16 0.04211848258338001 23 0.03916073769989026 0 0.03717285301725431 9 0.03530257559081327 15 0.031167826303795727 4 0.014181178584237532 5 0.014131510095680271 6 0.010688207141313058 3 0.009587577406184022 8 0.008246815903178916 2 0.008114349897756098 7 0.00806620865020835 1 0.008005970268827002 __DUMMY__ 0.004410524234871269 false 1.0 491 18 0.094639 10 0.084895 19 0.081473 21 0.068308 11 0.065854 22 0.064009 20 0.063652 14 0.063135 12 0.058071 13 0.055237 17 0.051387 0 0.047176 16 0.044407 15 0.042057 9 0.039607 24 0.030067 23 0.026564 5 0.006104 4 0.005969 6 0.003053 3 0.002293 2 0.001341 8 6.97E-4 7 5.0E-6 18 0.094639 10 0.084895 19 0.081473 21 0.068308 11 0.065854 22 0.064009 20 0.063652 14 0.063135 12 0.058071 13 0.055237 17 0.051387 0 0.047176 16 0.044407 15 0.042057 9 0.039607 24 0.030067 23 0.026564 5 0.006104 4 0.005969 6 0.003053 3 0.002293 2 0.001341 8 6.97E-4 7 5.0E-6 18 0.08226718815772295 19 0.07465476032392221 21 0.07044762751133463 10 0.06944924176213542 22 0.06576414074990827 11 0.06293019082564981 20 0.05714276733756256 12 0.056272416268480376 14 0.05267858150857883 17 0.04845835374858799 13 0.047165609400116666 0 0.0432386751441897 9 0.040283666693330646 16 0.040270962992417066 24 0.037053766133598204 23 0.03375566453998091 15 0.03269438856131862 4 0.013815470334938254 5 0.013613981280623862 6 0.010740927010819658 3 0.009656051549839543 8 0.008506015736519866 2 0.008503308086822418 7 0.00819821949519346 1 0.008065365247649994 __DUMMY__ 0.004372659598758196 false 1.0 492 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.08083658723564335 21 0.07438850225055345 19 0.07247109457091915 10 0.07096330141940721 22 0.07052699809445404 11 0.06890771526800997 12 0.058379027314279686 14 0.0507094869866352 17 0.0495157151617076 20 0.049496800498548515 0 0.04811388946885851 13 0.04776579182823501 9 0.04351193323210156 16 0.03796856206351908 24 0.03330194869974481 23 0.030620688365466 15 0.025800775946601257 4 0.014193789660806042 5 0.014056240424412437 6 0.011216894098217092 3 0.009379177841788834 8 0.008512950541905585 2 0.008510784965696346 7 0.008274090941099944 1 0.008123414972184429 __DUMMY__ 0.004453838149204816 false 1.0 250 12 0.10755 13 0.083541 21 0.081772 11 0.062207 23 0.058646 19 0.054865 20 0.050907 24 0.050898 22 0.04839 18 0.045288 16 0.037673 14 0.036335 17 0.035696 0 0.032228 10 0.027924 6 0.025459 4 0.025291 5 0.025127 8 0.019443 2 0.019096 7 0.019073 1 0.018959 9 0.017937 3 0.015696 12 0.10755 13 0.083541 21 0.081772 11 0.062207 23 0.058646 19 0.054865 20 0.050907 24 0.050898 22 0.04839 18 0.045288 16 0.037673 14 0.036335 17 0.035696 0 0.032228 10 0.027924 6 0.025459 4 0.025291 5 0.025127 8 0.019443 2 0.019096 7 0.019073 1 0.018959 9 0.017937 3 0.015696 12 0.09020535581850232 21 0.0798076194742944 13 0.07105790938419852 11 0.06289905482442341 19 0.058881288696773074 22 0.05562290343038265 18 0.055016777277870764 23 0.050895451772752 20 0.04942455841102824 24 0.04626287670532155 14 0.04105845795005905 10 0.039356635029764185 17 0.039001141316443395 16 0.03580345281514522 0 0.03573440180339758 9 0.026597764674400726 4 0.022949314393699672 5 0.022629363591784926 6 0.02201707350037363 8 0.017107156348205022 7 0.0169410148351394 1 0.01679305806514192 2 0.016710902386717647 3 0.014782055651425072 15 0.008732132856189654 __DUMMY__ 0.0037122789865660193 false 1.0 493 19 0.097845 20 0.096297 18 0.094072 21 0.068525 10 0.06361 24 0.059749 12 0.05955 14 0.056132 22 0.054731 16 0.052798 17 0.046086 15 0.045876 23 0.044967 13 0.044862 11 0.044404 9 0.025914 0 0.023842 5 0.006317 4 0.00607 3 0.004907 2 0.001405 6 0.001177 8 7.7E-4 7 9.3E-5 19 0.097845 20 0.096297 18 0.094072 21 0.068525 10 0.06361 24 0.059749 12 0.05955 14 0.056132 22 0.054731 16 0.052798 17 0.046086 15 0.045876 23 0.044967 13 0.044862 11 0.044404 9 0.025914 0 0.023842 5 0.006317 4 0.00607 3 0.004907 2 0.001405 6 0.001177 8 7.7E-4 7 9.3E-5 19 0.0829563270063426 18 0.08238097270827238 20 0.07413940314402515 21 0.06960447463128112 22 0.06037171431424707 10 0.05914242495367785 12 0.05641579548741858 24 0.05177329737531377 11 0.05150707442612971 14 0.05022626283923355 17 0.04591783272113231 16 0.04507357369785346 23 0.0429718907973444 13 0.0422313204910101 15 0.03668610585854844 9 0.03302078468020671 0 0.031231922666328307 4 0.013589879056794926 5 0.013444728499785175 3 0.010751272772601154 6 0.00957611881994518 8 0.00835328823801872 2 0.008347928293246498 7 0.008047286858207402 1 0.007871479395828744 __DUMMY__ 0.004366840267206776 false 1.0 251 11 0.095569 19 0.081797 22 0.076798 18 0.075252 17 0.07433 21 0.072533 0 0.072433 16 0.071694 10 0.068788 12 0.063793 13 0.042094 9 0.037941 20 0.037746 14 0.034248 24 0.023994 23 0.022949 15 0.019935 6 0.006352 4 0.006201 5 0.006125 1 0.002494 7 0.00235 8 0.002294 2 0.002288 11 0.095569 19 0.081797 22 0.076798 18 0.075252 17 0.07433 21 0.072533 0 0.072433 16 0.071694 10 0.068788 12 0.063793 13 0.042094 9 0.037941 20 0.037746 14 0.034248 24 0.023994 23 0.022949 15 0.019935 6 0.006352 4 0.006201 5 0.006125 1 0.002494 7 0.00235 8 0.002294 2 0.002288 11 0.07807747258592945 19 0.0744067870155887 21 0.07333363783267403 22 0.07221351631642571 18 0.07060918061548166 12 0.060650945097676864 17 0.060235918704294567 10 0.059083575798055246 0 0.056182795819770974 16 0.05453692132668558 20 0.04326986935219456 13 0.040436759038941034 9 0.03897834564865463 14 0.035878814470153654 24 0.03461144889258606 23 0.032976885010584774 15 0.018912532236964624 4 0.014651752990219678 5 0.014352086206198239 6 0.013249693024951187 7 0.010064242732485802 8 0.010011996720819821 1 0.009996064711594267 2 0.009704227733701788 3 0.009049257540518158 __DUMMY__ 0.004525272576848844 false 1.0 494 18 0.086381 21 0.082176 19 0.081304 10 0.076184 11 0.07469 22 0.072732 12 0.068304 20 0.056637 13 0.055639 14 0.055633 17 0.050339 0 0.048868 16 0.041807 9 0.040139 24 0.034679 23 0.027688 15 0.02456 5 0.007337 4 0.007046 6 0.00365 3 0.002323 2 0.001259 8 5.88E-4 7 3.6E-5 18 0.086381 21 0.082176 19 0.081304 10 0.076184 11 0.07469 22 0.072732 12 0.068304 20 0.056637 13 0.055639 14 0.055633 17 0.050339 0 0.048868 16 0.041807 9 0.040139 24 0.034679 23 0.027688 15 0.02456 5 0.007337 4 0.007046 6 0.00365 3 0.002323 2 0.001259 8 5.88E-4 7 3.6E-5 21 0.07851648976664816 18 0.07735237103312315 19 0.07446253610566805 22 0.07048749208747156 11 0.0682075433261335 10 0.06420914670158857 12 0.06289142046808295 20 0.053163244169681226 14 0.04822186052897762 13 0.048044634980204344 17 0.04782063588835298 0 0.044178392120694646 9 0.04019064548081975 24 0.039655607243259505 16 0.038877557420004774 23 0.03472197887162665 15 0.02228641023178856 4 0.014386457810829152 5 0.014257786842072863 6 0.011105872123536892 3 0.009516993992344389 2 0.00839936861549348 8 0.00838260700768354 7 0.008148165238625013 1 0.007999696845045456 __DUMMY__ 0.0045150851002430615 false 1.0 252 12 0.088079 19 0.085914 21 0.077805 18 0.074207 11 0.067218 20 0.066949 13 0.066217 23 0.057988 16 0.057816 22 0.055642 17 0.05039 10 0.049658 24 0.046547 14 0.043468 0 0.036141 15 0.022793 9 0.016467 4 0.009268 5 0.008766 6 0.008166 1 0.002913 7 0.002868 8 0.002531 2 0.00219 12 0.088079 19 0.085914 21 0.077805 18 0.074207 11 0.067218 20 0.066949 13 0.066217 23 0.057988 16 0.057816 22 0.055642 17 0.05039 10 0.049658 24 0.046547 14 0.043468 0 0.036141 15 0.022793 9 0.016467 4 0.009268 5 0.008766 6 0.008166 1 0.002913 7 0.002868 8 0.002531 2 0.00219 19 0.07672590230041812 21 0.07639929584348458 12 0.07343475280971898 18 0.06972273814026253 11 0.06344670535356602 22 0.061149534429486695 20 0.05918467550786443 13 0.05320504542882804 23 0.051208416342774586 10 0.04876163905703593 16 0.047362913461216155 17 0.0472715539013363 24 0.047184824101990194 14 0.04132081365314002 0 0.03663736514861355 9 0.02733169308991844 15 0.020988029772970897 4 0.016045942342410285 5 0.015541644230636028 6 0.013904754006977084 7 0.010126261133242507 1 0.010005900536310678 8 0.00993860466100509 2 0.009480430809204582 3 0.009002601738473007 __DUMMY__ 0.004617962199115347 false 1.0 495 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.08083658723564335 21 0.07438850225055345 19 0.07247109457091915 10 0.07096330141940721 22 0.07052699809445404 11 0.06890771526800997 12 0.058379027314279686 14 0.0507094869866352 17 0.0495157151617076 20 0.049496800498548515 0 0.04811388946885851 13 0.04776579182823501 9 0.04351193323210156 16 0.03796856206351908 24 0.03330194869974481 23 0.030620688365466 15 0.025800775946601257 4 0.014193789660806042 5 0.014056240424412437 6 0.011216894098217092 3 0.009379177841788834 8 0.008512950541905585 2 0.008510784965696346 7 0.008274090941099944 1 0.008123414972184429 __DUMMY__ 0.004453838149204816 false 1.0 253 12 0.096608 23 0.080935 21 0.079829 20 0.068865 13 0.068668 24 0.067951 19 0.063445 18 0.048507 22 0.040988 11 0.037894 4 0.032201 5 0.03151 16 0.030512 6 0.030125 14 0.02957 17 0.026417 7 0.025003 8 0.024993 1 0.02491 2 0.024066 3 0.022825 10 0.016964 9 0.014732 0 0.012482 12 0.096608 23 0.080935 21 0.079829 20 0.068865 13 0.068668 24 0.067951 19 0.063445 18 0.048507 22 0.040988 11 0.037894 4 0.032201 5 0.03151 16 0.030512 6 0.030125 14 0.02957 17 0.026417 7 0.025003 8 0.024993 1 0.02491 2 0.024066 3 0.022825 10 0.016964 9 0.014732 0 0.012482 12 0.07806602069230599 21 0.07791271942633568 19 0.0655324889398579 23 0.06112355806089621 20 0.058721252468967804 18 0.057801770844929816 24 0.05610869579135894 13 0.055168117220295715 22 0.05491369223112793 11 0.05086245726224941 17 0.03619970035747437 14 0.0349493471142015 10 0.03427625859448738 16 0.033865407520150395 9 0.027152537623397092 4 0.026715539930095525 0 0.026551944335223558 5 0.026127538004254307 6 0.024183757302362517 7 0.020367031280720205 8 0.020332637015731264 1 0.02018823537983391 2 0.01960647538428523 3 0.019460366404161586 15 0.009366744934111444 __DUMMY__ 0.004445705881184551 false 1.0 496 18 0.089204 19 0.087329 20 0.075896 21 0.07338 10 0.07008 12 0.065347 22 0.061013 11 0.059821 14 0.058908 13 0.05441 16 0.048311 17 0.047536 24 0.045311 15 0.039415 23 0.036358 0 0.035814 9 0.030748 5 0.006765 4 0.006494 3 0.002989 6 0.002835 2 0.001313 8 6.62E-4 7 6.1E-5 18 0.089204 19 0.087329 20 0.075896 21 0.07338 10 0.07008 12 0.065347 22 0.061013 11 0.059821 14 0.058908 13 0.05441 16 0.048311 17 0.047536 24 0.045311 15 0.039415 23 0.036358 0 0.035814 9 0.030748 5 0.006765 4 0.006494 3 0.002989 6 0.002835 2 0.001313 8 6.62E-4 7 6.1E-5 18 0.07924114945601597 19 0.0775368863782628 21 0.07332587837069186 22 0.06407371241754546 20 0.06343492366997423 10 0.06164179037169429 12 0.06069338854977645 11 0.05998860234357298 14 0.05079308952908708 13 0.04748552693895334 17 0.046286305750489504 24 0.04493967402705238 16 0.042207626079386204 23 0.038979283668483196 0 0.037248391791654505 9 0.03541516111275436 15 0.03131042192369896 4 0.013985632072289153 5 0.013849204387495059 6 0.010557843957510712 3 0.009839422416901202 2 0.008366193526679054 8 0.008359376048528619 7 0.008094823286767886 1 0.007935163553070538 __DUMMY__ 0.004410528371664048 false 1.0 254 11 0.100289 12 0.08793 13 0.079644 21 0.077763 10 0.069671 18 0.069528 22 0.068799 0 0.066231 17 0.057428 19 0.056477 14 0.051525 16 0.04386 9 0.033075 23 0.026919 20 0.024632 15 0.017593 24 0.015088 6 0.012049 5 0.010547 4 0.010495 1 0.005218 2 0.005135 8 0.005117 7 0.004984 11 0.100289 12 0.08793 13 0.079644 21 0.077763 10 0.069671 18 0.069528 22 0.068799 0 0.066231 17 0.057428 19 0.056477 14 0.051525 16 0.04386 9 0.033075 23 0.026919 20 0.024632 15 0.017593 24 0.015088 6 0.012049 5 0.010547 4 0.010495 1 0.005218 2 0.005135 8 0.005117 7 0.004984 11 0.08057892117190821 21 0.07736961385425987 12 0.07390566868903418 22 0.068500654896016 18 0.06664878040915986 19 0.06093868825678898 13 0.06020583336706084 10 0.0584822331687743 0 0.05171706180765279 17 0.050093991465282456 14 0.045018398397888064 16 0.038710815026942784 20 0.03650961177423956 9 0.03631640106534348 23 0.035879469826366535 24 0.031261412282380587 4 0.017348099703913704 5 0.01709648938041347 15 0.016676926848774483 6 0.016480826979684386 8 0.01174517394475531 7 0.011722204586427221 1 0.011687045163285791 2 0.01144531456986178 3 0.009485996214471047 __DUMMY__ 0.004174367149314377 false 1.0 497 20 0.115754 19 0.10942 24 0.089732 18 0.078108 21 0.073202 23 0.069909 16 0.062913 12 0.058342 22 0.052082 15 0.048411 14 0.047262 11 0.037436 10 0.035514 17 0.0351 13 0.029563 3 0.010258 4 0.010096 5 0.009783 9 0.008939 8 0.004232 2 0.003984 7 0.003815 1 0.003329 6 0.002815 20 0.115754 19 0.10942 24 0.089732 18 0.078108 21 0.073202 23 0.069909 16 0.062913 12 0.058342 22 0.052082 15 0.048411 14 0.047262 11 0.037436 10 0.035514 17 0.0351 13 0.029563 3 0.010258 4 0.010096 5 0.009783 9 0.008939 8 0.004232 2 0.003984 7 0.003815 1 0.003329 6 0.002815 19 0.08921822986729226 20 0.08468771435547014 18 0.07376785366240259 21 0.07295135917643361 24 0.06836164791105513 22 0.05933413783847215 12 0.05649746368424558 23 0.05638874275862791 16 0.05000012389583081 11 0.047867172565961305 14 0.044969377098641725 10 0.0436590914132078 17 0.039947536704222984 15 0.0367462712113936 13 0.03410706569456701 9 0.02401095532412158 0 0.018332995211349165 4 0.01579697644360499 5 0.015378007741517912 3 0.013628229119847131 6 0.010459901829059886 8 0.01015038564520363 7 0.009977816956459346 2 0.009723612620179413 1 0.009600259692662748 __DUMMY__ 0.004437071578169578 false 1.0 255 12 0.136774 13 0.130285 21 0.083677 23 0.071949 20 0.065311 14 0.062903 19 0.05737 18 0.056967 11 0.04638 24 0.04257 16 0.037468 10 0.034245 17 0.029129 22 0.027384 0 0.021373 6 0.017733 15 0.014897 4 0.014865 5 0.014277 7 0.008267 8 0.008257 1 0.007941 2 0.007357 9 0.002623 12 0.136774 13 0.130285 21 0.083677 23 0.071949 20 0.065311 14 0.062903 19 0.05737 18 0.056967 11 0.04638 24 0.04257 16 0.037468 10 0.034245 17 0.029129 22 0.027384 0 0.021373 6 0.017733 15 0.014897 4 0.014865 5 0.014277 7 0.008267 8 0.008257 1 0.007941 2 0.007357 9 0.002623 12 0.10002300786937984 13 0.09005688142737577 21 0.0795791593134463 18 0.061754234585133856 19 0.060766676908026236 20 0.05708529418037572 23 0.056521415443730405 14 0.05476324781452812 11 0.054385940088158176 22 0.046400770653519816 10 0.043391884495769494 24 0.042923721670206944 17 0.03579366907763907 16 0.03540102666533992 0 0.029814483536492818 9 0.020349622229655983 15 0.018796239082997344 6 0.018025934562152037 4 0.018015077763237762 5 0.0174917715689219 7 0.011870285254905305 8 0.011865147678166318 1 0.011616347765893199 2 0.011182593043688668 3 0.007842675891205598 __DUMMY__ 0.0042828914300535835 false 1.0 256 19 0.095345 20 0.092496 21 0.088517 12 0.080661 18 0.077765 24 0.070473 22 0.060199 11 0.056482 23 0.053949 13 0.053734 16 0.052794 14 0.047155 10 0.043993 17 0.041977 15 0.025575 0 0.021644 9 0.018551 4 0.006544 5 0.006195 3 0.002779 6 0.001963 8 5.2E-4 1 3.48E-4 7 3.39E-4 19 0.095345 20 0.092496 21 0.088517 12 0.080661 18 0.077765 24 0.070473 22 0.060199 11 0.056482 23 0.053949 13 0.053734 16 0.052794 14 0.047155 10 0.043993 17 0.041977 15 0.025575 0 0.021644 9 0.018551 4 0.006544 5 0.006195 3 0.002779 6 0.001963 8 5.2E-4 1 3.48E-4 7 3.39E-4 21 0.08197158869100078 19 0.08151884143125436 18 0.07278045536943092 20 0.07155521541267604 12 0.06993678288477347 22 0.06384938888582582 11 0.05894800408083349 24 0.05797099366965179 23 0.048219140228561344 13 0.04808112703591579 10 0.04774751572645375 14 0.044641966411651295 16 0.044293165368050495 17 0.04315194065466578 0 0.029904307019148427 9 0.028756732778181873 15 0.023140328058449393 4 0.013990718004572248 5 0.013561975179295487 6 0.010106323939606487 3 0.009548264347601141 8 0.008127785146592749 7 0.008067588904922528 1 0.00793750791118516 2 0.007591492061143363 __DUMMY__ 0.004600850798556189 false 1.0 498 19 0.097901 18 0.086036 20 0.078805 16 0.075257 21 0.070476 17 0.068284 12 0.064589 22 0.061627 11 0.058649 10 0.054818 24 0.051442 0 0.044272 23 0.04093 13 0.037137 14 0.035826 15 0.034547 9 0.025968 5 0.004757 4 0.004629 6 0.00291 2 4.26E-4 3 3.16E-4 8 3.0E-4 1 9.7E-5 19 0.097901 18 0.086036 20 0.078805 16 0.075257 21 0.070476 17 0.068284 12 0.064589 22 0.061627 11 0.058649 10 0.054818 24 0.051442 0 0.044272 23 0.04093 13 0.037137 14 0.035826 15 0.034547 9 0.025968 5 0.004757 4 0.004629 6 0.00291 2 4.26E-4 3 3.16E-4 8 3.0E-4 1 9.7E-5 19 0.0824142780640399 18 0.07707728730667313 21 0.07161015065903942 20 0.0644575312018875 22 0.06413112988910193 12 0.060461716718627094 11 0.05933387199306089 17 0.056743076559432254 16 0.0558484857985074 10 0.053575863574290054 24 0.047840123462496276 0 0.04170740595013502 23 0.04136376483071227 13 0.03892671430413859 14 0.038801110861993025 9 0.032975068625536424 15 0.02849084636397934 4 0.013359872795412293 5 0.013156025367798667 6 0.010981457491548422 3 0.00879723814696743 8 0.008540259407075227 7 0.00841546455741564 1 0.00833092042187961 2 0.008296979349015843 __DUMMY__ 0.004363356299236382 false 1.0 499 18 0.125146 10 0.101639 19 0.092167 22 0.085705 17 0.071829 9 0.064195 21 0.06415 11 0.064086 0 0.063036 20 0.055713 14 0.040701 16 0.039915 12 0.028154 15 0.026922 23 0.018458 24 0.016626 13 0.016117 4 0.008014 5 0.006253 6 0.003842 8 0.002132 7 0.002003 1 0.001675 3 0.001522 18 0.125146 10 0.101639 19 0.092167 22 0.085705 17 0.071829 9 0.064195 21 0.06415 11 0.064086 0 0.063036 20 0.055713 14 0.040701 16 0.039915 12 0.028154 15 0.026922 23 0.018458 24 0.016626 13 0.016117 4 0.008014 5 0.006253 6 0.003842 8 0.002132 7 0.002003 1 0.001675 3 0.001522 18 0.09604559389582899 19 0.07823817283701942 10 0.07733325576098686 22 0.07602795485363689 21 0.06641604282118262 11 0.06132567596461926 17 0.05917693996332594 9 0.05350088503362105 0 0.05217586856408939 20 0.05135480683401017 14 0.04043302294822053 12 0.03938992657245338 16 0.038222568873665305 24 0.02942858385527754 23 0.02912279333958581 13 0.026221584548012745 15 0.025476074785263245 4 0.016130378083648724 5 0.015028065862871804 6 0.012618878999580953 3 0.010816933535088384 8 0.010808204769953424 7 0.010754416820844805 1 0.010466769325533525 2 0.009472974695587113 __DUMMY__ 0.004013626456092123 false 1.0 257 19 0.112591 20 0.098641 21 0.079603 16 0.078289 12 0.07739 18 0.075312 24 0.074187 23 0.065844 22 0.055482 17 0.052626 11 0.051049 13 0.039111 10 0.03539 14 0.03042 15 0.024454 0 0.022624 9 0.009717 5 0.006077 4 0.006039 6 0.002225 3 0.002004 1 3.61E-4 7 3.49E-4 8 2.15E-4 19 0.112591 20 0.098641 21 0.079603 16 0.078289 12 0.07739 18 0.075312 24 0.074187 23 0.065844 22 0.055482 17 0.052626 11 0.051049 13 0.039111 10 0.03539 14 0.03042 15 0.024454 0 0.022624 9 0.009717 5 0.006077 4 0.006039 6 0.002225 3 0.002004 1 3.61E-4 7 3.49E-4 8 2.15E-4 19 0.08972177363190692 21 0.07771020697931753 20 0.07443307232004737 18 0.07104864356031429 12 0.06879103982780417 22 0.061377267828158194 24 0.059939299084962254 16 0.05694126146564384 11 0.05639336841806854 23 0.05427525507428835 17 0.04838514944228113 10 0.04298516450942815 13 0.04109532278727497 14 0.036000054779873114 0 0.030458845371058283 9 0.0242107527413677 15 0.02208039055694409 4 0.01388654066497662 5 0.013642536905550515 6 0.010433290059108738 3 0.009288833588163951 7 0.008247314266909608 8 0.008156213456946502 1 0.008116555264337036 2 0.0077681671366324305 __DUMMY__ 0.004613680278635564 false 1.0 258 12 0.095334 21 0.094808 11 0.085937 13 0.077745 22 0.071845 18 0.060559 19 0.058986 10 0.055726 14 0.049109 0 0.047969 17 0.03973 20 0.037547 23 0.036507 24 0.036018 9 0.034801 16 0.028598 4 0.016299 5 0.01569 6 0.01463 7 0.008993 8 0.008825 1 0.008602 2 0.008597 3 0.007148 12 0.095334 21 0.094808 11 0.085937 13 0.077745 22 0.071845 18 0.060559 19 0.058986 10 0.055726 14 0.049109 0 0.047969 17 0.03973 20 0.037547 23 0.036507 24 0.036018 9 0.034801 16 0.028598 4 0.016299 5 0.01569 6 0.01463 7 0.008993 8 0.008825 1 0.008602 2 0.008597 3 0.007148 21 0.08490519976925541 12 0.07745969258963663 11 0.07428595051879337 22 0.06981378519950872 18 0.06384607051809521 19 0.0625274111469005 13 0.06034442610878081 10 0.05387873407704388 14 0.04495299127997387 0 0.04436717937512437 17 0.042661584815615675 20 0.04255084780415548 24 0.039532302963211065 23 0.038874293563411426 9 0.03749401722862252 16 0.03217804549470979 4 0.01913752904701065 5 0.01858935648533723 6 0.016878907523151375 7 0.012742198577845677 8 0.012643581474330028 1 0.0124355583562609 2 0.012244287262838214 3 0.011897883610992933 15 0.009425540337613269 __DUMMY__ 0.004332624871780852 false 1.0 259 13 0.103997 14 0.09685 12 0.089758 21 0.083109 18 0.076046 10 0.074241 11 0.066693 19 0.059423 20 0.057547 22 0.053052 15 0.051846 23 0.03557 24 0.033765 0 0.027469 9 0.027143 17 0.024303 16 0.019232 4 0.007323 5 0.007153 6 0.004738 2 2.79E-4 7 2.55E-4 1 1.25E-4 3 8.2E-5 13 0.103997 14 0.09685 12 0.089758 21 0.083109 18 0.076046 10 0.074241 11 0.066693 19 0.059423 20 0.057547 22 0.053052 15 0.051846 23 0.03557 24 0.033765 0 0.027469 9 0.027143 17 0.024303 16 0.019232 4 0.007323 5 0.007153 6 0.004738 2 2.79E-4 7 2.55E-4 1 1.25E-4 3 8.2E-5 21 0.07958733924273595 12 0.07544825602267777 13 0.07421567834779437 18 0.07190324559475056 14 0.06972140429233806 11 0.06423933060204533 19 0.0635383551261553 10 0.06279076607028324 22 0.060082179944835556 20 0.054209084521831395 24 0.039541036342443395 23 0.03902216394536725 15 0.036127168908336754 17 0.03431174728636577 0 0.03287093246864639 9 0.032747313952142004 16 0.02757591465249823 4 0.014137621640724905 5 0.013803501079435237 6 0.011307182214979547 3 0.007864557219534935 7 0.007763657443644719 8 0.007626401066008548 1 0.007581365716082177 2 0.007477743545992876 __DUMMY__ 0.0045060527523498135 false 1.0 260 12 0.140224 13 0.127715 21 0.104031 23 0.075141 11 0.06707 14 0.062806 24 0.061043 20 0.050964 22 0.042596 19 0.04232 18 0.037509 4 0.025362 6 0.024849 5 0.024737 10 0.017334 8 0.015198 7 0.014914 1 0.01457 2 0.014441 3 0.009913 0 0.009396 17 0.008771 16 0.00652 9 0.002576 12 0.140224 13 0.127715 21 0.104031 23 0.075141 11 0.06707 14 0.062806 24 0.061043 20 0.050964 22 0.042596 19 0.04232 18 0.037509 4 0.025362 6 0.024849 5 0.024737 10 0.017334 8 0.015198 7 0.014914 1 0.01457 2 0.014441 3 0.009913 0 0.009396 17 0.008771 16 0.00652 9 0.002576 12 0.1007535469332696 21 0.09008664253627693 13 0.08645372271046317 11 0.0646738441232039 23 0.05836505496020873 22 0.05495914794575521 19 0.05434388606865703 14 0.05290342383945356 24 0.0524751177388514 18 0.052229396601183864 20 0.04998616528631371 10 0.034631980620472506 17 0.026470331883228584 0 0.024313237312062922 4 0.02331808279512999 5 0.022765670457353372 6 0.021567816675630905 9 0.020905815497883614 16 0.02087564253007417 8 0.015416551174400819 7 0.015305999112540965 1 0.01502584432544619 2 0.014786598608235396 3 0.012969215950001351 15 0.0099344230244465 __DUMMY__ 0.004482841289455423 false 1.0 261 12 0.104412 13 0.088228 21 0.075915 11 0.064912 23 0.051032 19 0.04665 22 0.045385 18 0.0446 20 0.041473 0 0.040889 24 0.038585 14 0.038368 17 0.036726 10 0.036421 16 0.034615 6 0.028608 4 0.027194 5 0.027079 9 0.023108 2 0.02215 8 0.022024 7 0.021999 1 0.021957 3 0.01767 12 0.104412 13 0.088228 21 0.075915 11 0.064912 23 0.051032 19 0.04665 22 0.045385 18 0.0446 20 0.041473 0 0.040889 24 0.038585 14 0.038368 17 0.036726 10 0.036421 16 0.034615 6 0.028608 4 0.027194 5 0.027079 9 0.023108 2 0.02215 8 0.022024 7 0.021999 1 0.021957 3 0.01767 12 0.08610624320693086 21 0.07698172834265271 13 0.07136656507181541 11 0.06414036203725923 18 0.05562549684978243 22 0.05539325090586647 19 0.05523153767539296 23 0.0465380452462836 20 0.04490438270297442 10 0.044554404621844526 14 0.043158293510087195 24 0.040600016078713407 0 0.039420086029139094 17 0.039079029613303715 16 0.033267220548609346 9 0.03018420667673138 4 0.02382679241153323 5 0.02352465081666986 6 0.02317906844024657 8 0.01824246589737052 7 0.01823799892504996 1 0.01811907711520283 2 0.018046111983220783 3 0.0159740724496995 15 0.010284843317703195 __DUMMY__ 0.004014049525916827 false 1.0 262 12 0.139438 13 0.127186 21 0.103535 23 0.074405 11 0.066698 14 0.062511 24 0.058651 20 0.050917 22 0.043039 19 0.042819 18 0.038373 4 0.025159 5 0.024701 6 0.024462 10 0.017423 8 0.015265 1 0.015048 7 0.015007 2 0.014596 3 0.010105 0 0.009952 17 0.009834 16 0.00739 9 0.003487 12 0.139438 13 0.127186 21 0.103535 23 0.074405 11 0.066698 14 0.062511 24 0.058651 20 0.050917 22 0.043039 19 0.042819 18 0.038373 4 0.025159 5 0.024701 6 0.024462 10 0.017423 8 0.015265 1 0.015048 7 0.015007 2 0.014596 3 0.010105 0 0.009952 17 0.009834 16 0.00739 9 0.003487 12 0.10038691966720045 21 0.08985527250976429 13 0.08620696360335464 11 0.06450031795170881 23 0.058021766819560325 22 0.05516573180744693 19 0.05457658789598995 14 0.052765814965730996 18 0.05263233071329826 24 0.05135949527533209 20 0.04996422177879442 10 0.034673472922196705 17 0.026966089045815836 0 0.02457253721111406 4 0.023223395334621744 5 0.022748869903436567 6 0.021387314801439586 9 0.021330684413528415 16 0.021281389587892496 8 0.015447791921325208 7 0.015349365976131932 1 0.015248770360698211 2 0.014858881715475938 3 0.013058756228266577 15 0.009934418391159567 __DUMMY__ 0.004482839198715987 false 1.0 263 12 0.14445 13 0.132629 21 0.086043 23 0.061873 11 0.061299 20 0.056926 14 0.054185 19 0.053228 18 0.05319 16 0.038788 24 0.037468 10 0.034697 17 0.033675 22 0.032317 0 0.031954 6 0.018498 5 0.014974 4 0.01491 8 0.008464 1 0.008324 7 0.008297 2 0.008222 9 0.004048 15 0.001541 12 0.14445 13 0.132629 21 0.086043 23 0.061873 11 0.061299 20 0.056926 14 0.054185 19 0.053228 18 0.05319 16 0.038788 24 0.037468 10 0.034697 17 0.033675 22 0.032317 0 0.031954 6 0.018498 5 0.014974 4 0.01491 8 0.008464 1 0.008324 7 0.008297 2 0.008222 9 0.004048 15 0.001541 12 0.10503226370183491 13 0.09288536426830826 21 0.08111872126466294 11 0.061642292659458815 18 0.05956373419429122 19 0.05818425058808279 20 0.05274841963569288 23 0.05184870885490343 14 0.05120633738296794 22 0.048379404874408186 10 0.04352841290628673 24 0.04021770204246617 17 0.03744763433790218 16 0.035441614113193486 0 0.034745327750010664 9 0.020756309212093434 6 0.018478796295081753 4 0.01804952485554867 5 0.017836117720167993 15 0.012063548849330134 8 0.011930771698257884 7 0.011849429673426302 1 0.011767905810803156 2 0.011568903091823499 3 0.007696989385532765 __DUMMY__ 0.004011514833463875 false 1.0 264 13 0.127685 12 0.106898 14 0.096374 21 0.075638 18 0.067622 10 0.066076 11 0.060258 20 0.053579 15 0.049959 19 0.04859 23 0.040665 22 0.038003 0 0.028905 24 0.026937 17 0.024156 16 0.02231 9 0.019014 6 0.010834 4 0.010221 5 0.009937 8 0.00416 7 0.004154 1 0.004135 2 0.003891 13 0.127685 12 0.106898 14 0.096374 21 0.075638 18 0.067622 10 0.066076 11 0.060258 20 0.053579 15 0.049959 19 0.04859 23 0.040665 22 0.038003 0 0.028905 24 0.026937 17 0.024156 16 0.02231 9 0.019014 6 0.010834 4 0.010221 5 0.009937 8 0.00416 7 0.004154 1 0.004135 2 0.003891 13 0.08941044730611167 12 0.08586932542478584 21 0.075775688683456 14 0.07162492728755047 18 0.06708934899428017 11 0.06070598738511695 10 0.05881610266650763 19 0.056515247265703866 20 0.051777552658090385 22 0.05127637940795386 23 0.04166571527249747 15 0.03626282012230006 24 0.03549030954030743 17 0.03305497101803465 0 0.032963618804509175 9 0.028049082093562664 16 0.02780529082270184 4 0.015655113894961204 5 0.015277115291528403 6 0.014562400405745095 8 0.009734463308683949 7 0.009730403210823706 1 0.009621855408809124 2 0.009350173130303467 3 0.007683144597869013 __DUMMY__ 0.0042325159978058215 false 1.0 265 13 0.127776 12 0.107116 14 0.096765 21 0.075743 18 0.067484 10 0.066541 11 0.060318 20 0.054032 15 0.050092 19 0.048613 23 0.04056 22 0.037914 0 0.028402 24 0.026932 17 0.024102 16 0.0221 9 0.018774 6 0.010708 4 0.010121 5 0.009809 8 0.004152 7 0.004021 1 0.004015 2 0.00391 13 0.127776 12 0.107116 14 0.096765 21 0.075743 18 0.067484 10 0.066541 11 0.060318 20 0.054032 15 0.050092 19 0.048613 23 0.04056 22 0.037914 0 0.028402 24 0.026932 17 0.024102 16 0.0221 9 0.018774 6 0.010708 4 0.010121 5 0.009809 8 0.004152 7 0.004021 1 0.004015 2 0.00391 13 0.08945272216672631 12 0.08597053971174282 21 0.0758244546569034 14 0.07180642476736679 18 0.06702533392882627 11 0.06073386173364512 10 0.059031937817177756 19 0.056525947861564035 20 0.05198781530720842 22 0.05123509804632858 23 0.041617003803947596 15 0.03632456263923803 24 0.03548800549690488 17 0.03302992480171057 0 0.032730190338430026 9 0.027937710412412702 16 0.027707842115758972 4 0.015608710869374052 5 0.015217717208983088 6 0.014503930197321945 8 0.009730755003183027 7 0.00966868203947461 1 0.00956616752493492 2 0.009358995425068555 3 0.007683148163638794 __DUMMY__ 0.004232517962128822 false 1.0 266 12 0.136505 13 0.12954 21 0.082567 14 0.060729 11 0.059581 23 0.05793 20 0.057542 18 0.055745 19 0.053724 10 0.03964 16 0.039192 24 0.03608 17 0.033687 22 0.032548 0 0.031914 6 0.017135 5 0.013953 4 0.013818 15 0.011362 8 0.007818 7 0.007624 1 0.007555 2 0.007517 9 0.006294 12 0.136505 13 0.12954 21 0.082567 14 0.060729 11 0.059581 23 0.05793 20 0.057542 18 0.055745 19 0.053724 10 0.03964 16 0.039192 24 0.03608 17 0.033687 22 0.032548 0 0.031914 6 0.017135 5 0.013953 4 0.013818 15 0.011362 8 0.007818 7 0.007624 1 0.007555 2 0.007517 9 0.006294 12 0.10105056987815197 13 0.09134002721626076 21 0.07925319682249116 18 0.06090212442700739 11 0.06064525006687478 19 0.05847160113212143 14 0.054451292909932 20 0.05319259346591765 23 0.04995386754344225 22 0.04837684249815441 10 0.04592622351075176 24 0.03955312005822585 17 0.03755016870906676 16 0.03578704981054284 0 0.03468067545771571 9 0.02178688247804799 6 0.017788972132122032 4 0.01748212600104953 5 0.01729970154998258 15 0.017147423297378776 8 0.01159694632888463 7 0.011501478446286281 1 0.011374771815857112 2 0.011204130032486995 3 0.007666487471472593 __DUMMY__ 0.0040164769397745765 false 1.0 267 12 0.106538 21 0.09736 13 0.089123 11 0.081115 19 0.066814 18 0.066252 22 0.065851 10 0.054822 14 0.054769 20 0.050086 0 0.041982 23 0.041285 24 0.040312 17 0.03966 16 0.033718 9 0.026991 4 0.010215 5 0.009648 6 0.00892 15 0.004544 7 0.002775 8 0.002639 1 0.002471 2 0.002111 12 0.106538 21 0.09736 13 0.089123 11 0.081115 19 0.066814 18 0.066252 22 0.065851 10 0.054822 14 0.054769 20 0.050086 0 0.041982 23 0.041285 24 0.040312 17 0.03966 16 0.033718 9 0.026991 4 0.010215 5 0.009648 6 0.00892 15 0.004544 7 0.002775 8 0.002639 1 0.002471 2 0.002111 21 0.08647052971948732 12 0.08343726724805287 11 0.0714589432866696 18 0.06676838543165861 19 0.06676795663324804 13 0.06656271872354227 22 0.06649466957688588 10 0.05317393028476649 20 0.0498829699353818 14 0.04857275446593781 24 0.042496810044098984 17 0.04192251985669898 23 0.04172723109817841 0 0.04033497343518267 16 0.03448796873293002 9 0.0330011553300323 4 0.01589375976743134 5 0.015369012447922456 6 0.013719315007948046 15 0.012365243131092715 7 0.009355009843633405 8 0.009273489271260281 1 0.009090844481354547 2 0.008741469222978861 3 0.008166565493664133 __DUMMY__ 0.004464507529962198 false 1.0 268 13 0.125811 12 0.106454 14 0.096089 21 0.0757 18 0.068572 10 0.066499 11 0.060208 20 0.054408 15 0.049512 19 0.048858 23 0.041552 22 0.038219 0 0.028258 24 0.027471 17 0.024314 16 0.022224 9 0.018937 6 0.010757 4 0.010197 5 0.009568 7 0.004323 1 0.004183 8 0.004024 2 0.003862 13 0.125811 12 0.106454 14 0.096089 21 0.0757 18 0.068572 10 0.066499 11 0.060208 20 0.054408 15 0.049512 19 0.048858 23 0.041552 22 0.038219 0 0.028258 24 0.027471 17 0.024314 16 0.022224 9 0.018937 6 0.010757 4 0.010197 5 0.009568 7 0.004323 1 0.004183 8 0.004024 2 0.003862 13 0.08854075994521424 12 0.08566330358419014 21 0.07580449823169984 14 0.07149269119905015 18 0.0675302778967678 11 0.06068281041335691 10 0.05901244549488589 19 0.056639653074933224 20 0.05216231800201174 22 0.05137664943440042 23 0.04207739389236488 15 0.036055382950445664 24 0.035738156966317096 17 0.03312831461899329 0 0.03266335951914364 9 0.028013359187021594 16 0.02776539087681113 4 0.015643982690664086 5 0.015105868407260742 6 0.014526671239995782 7 0.009808841118811326 8 0.009671349830484023 1 0.009644136814102365 2 0.009336718485306424 3 0.007683148163638794 __DUMMY__ 0.004232517962128821 false 1.0 269 21 0.082259 23 0.078622 12 0.077777 19 0.076773 20 0.073848 24 0.07341 18 0.056913 22 0.051826 13 0.042465 16 0.040459 17 0.03525 11 0.034473 4 0.028614 5 0.028547 6 0.025443 3 0.023406 1 0.023397 7 0.023309 9 0.023067 8 0.023012 2 0.02245 10 0.01965 14 0.018839 0 0.016193 21 0.082259 23 0.078622 12 0.077777 19 0.076773 20 0.073848 24 0.07341 18 0.056913 22 0.051826 13 0.042465 16 0.040459 17 0.03525 11 0.034473 4 0.028614 5 0.028547 6 0.025443 3 0.023406 1 0.023397 7 0.023309 9 0.023067 8 0.023012 2 0.02245 10 0.01965 14 0.018839 0 0.016193 21 0.07884178881143321 19 0.07228935963834617 12 0.06771435045240384 18 0.06203345500090128 20 0.061386824551199384 22 0.06051120690389035 23 0.06003004832470055 24 0.05917119031682227 11 0.048957897101099185 13 0.04105905150614053 17 0.04047996457965303 16 0.038630667147981905 10 0.035551403107592305 9 0.031489857131201164 14 0.029480658703036428 0 0.028098666995733382 4 0.02518361253517819 5 0.024883009455557117 6 0.021996753006305294 3 0.020075092392649804 7 0.019736994739993373 1 0.01963461882308851 8 0.019563439995030903 2 0.018999570952286503 15 0.009643582069308144 __DUMMY__ 0.004556935758467152 false 1.0 270 13 0.117572 14 0.104264 12 0.090261 10 0.083604 11 0.074156 18 0.073742 21 0.072939 15 0.058059 22 0.048158 19 0.045027 20 0.040839 0 0.038602 9 0.029882 17 0.026735 23 0.026619 16 0.016632 24 0.016021 4 0.008744 6 0.0085 5 0.008465 7 0.002891 1 0.002806 8 0.002797 2 0.002685 13 0.117572 14 0.104264 12 0.090261 10 0.083604 11 0.074156 18 0.073742 21 0.072939 15 0.058059 22 0.048158 19 0.045027 20 0.040839 0 0.038602 9 0.029882 17 0.026735 23 0.026619 16 0.016632 24 0.016021 4 0.008744 6 0.0085 5 0.008465 7 0.002891 1 0.002806 8 0.002797 2 0.002685 13 0.08531755360708007 12 0.07801110183144122 14 0.07578612390016265 21 0.07459869154659675 18 0.06972660606274914 11 0.0678652799972733 10 0.06773111234474696 22 0.05645709384793681 19 0.053636574096655114 20 0.044133929500983056 15 0.03965203500320762 0 0.038211762386146444 23 0.034337002778951936 17 0.034017601706089924 9 0.03399024906924543 24 0.029233679572298558 16 0.023927193194446614 4 0.015314802461095508 5 0.014936995277586948 6 0.013860197067130998 7 0.009462982172948355 8 0.009424324202377668 1 0.009331694912520339 2 0.009112155418460928 3 0.007944199877592196 __DUMMY__ 0.003979058164275365 false 1.0 271 21 0.09845 12 0.096381 11 0.085832 13 0.075412 22 0.073694 19 0.065533 18 0.064966 10 0.055812 14 0.048694 0 0.045869 20 0.043913 24 0.040823 17 0.040815 23 0.037439 9 0.033311 16 0.030966 4 0.012908 5 0.0125 6 0.010579 2 0.005467 1 0.005426 7 0.005418 8 0.005196 3 0.004596 21 0.09845 12 0.096381 11 0.085832 13 0.075412 22 0.073694 19 0.065533 18 0.064966 10 0.055812 14 0.048694 0 0.045869 20 0.043913 24 0.040823 17 0.040815 23 0.037439 9 0.033311 16 0.030966 4 0.012908 5 0.0125 6 0.010579 2 0.005467 1 0.005426 7 0.005418 8 0.005196 3 0.004596 21 0.0868923403873665 12 0.078015922233651 11 0.073940595915287 22 0.0706377506905424 19 0.06614472637750363 18 0.06607172301279511 13 0.05913190753764536 10 0.05365420536397753 20 0.04642943024340093 14 0.04498200754730135 17 0.04284201544644415 0 0.042658659517970626 24 0.042557879508474415 23 0.03974761529048571 9 0.036420351926781024 16 0.0333262128248447 4 0.017378375236207475 5 0.016923357467254457 6 0.014713726579020045 7 0.010844821329180203 1 0.01072194794245005 8 0.01071907344614757 3 0.010580130610217679 2 0.010553892632142481 15 0.009706275860974401 __DUMMY__ 0.0044050550719339845 false 1.0 272 12 0.138185 13 0.122362 21 0.101637 23 0.06715 11 0.065357 20 0.063495 14 0.061992 24 0.056401 19 0.055786 18 0.053769 22 0.043748 10 0.033576 5 0.018053 4 0.017194 6 0.015906 17 0.01512 16 0.014398 0 0.013308 2 0.008971 1 0.00803 7 0.007254 8 0.007242 9 0.005647 3 0.005421 12 0.138185 13 0.122362 21 0.101637 23 0.06715 11 0.065357 20 0.063495 14 0.061992 24 0.056401 19 0.055786 18 0.053769 22 0.043748 10 0.033576 5 0.018053 4 0.017194 6 0.015906 17 0.01512 16 0.014398 0 0.013308 2 0.008971 1 0.00803 7 0.007254 8 0.007242 9 0.005647 3 0.005421 12 0.0999461335964567 21 0.08890131037301215 13 0.0841975601252848 11 0.06389780720966166 19 0.061013189671132416 18 0.060271391010848274 20 0.05632588386951306 22 0.05537573079213139 23 0.05441906775061807 14 0.05282332867441254 24 0.05024917738540748 10 0.042610670476223224 17 0.029604298599878575 0 0.026185110526486918 16 0.02490863627925041 9 0.02219574827697423 5 0.019294689225201087 4 0.019149808694340867 6 0.017043181665823005 2 0.01189269210383124 1 0.011626581048337368 7 0.011379832622990324 8 0.011357195263110714 3 0.010529879243454504 15 0.010317064858803052 __DUMMY__ 0.004484030656815945 false 1.0 273 13 0.112275 14 0.095569 12 0.090189 10 0.083066 11 0.07879 18 0.072954 21 0.072701 22 0.051446 15 0.051439 19 0.046186 0 0.045158 20 0.036295 17 0.033031 9 0.031399 23 0.024042 16 0.021634 24 0.013803 5 0.009091 6 0.009079 4 0.00878 1 0.003368 8 0.003317 2 0.003282 7 0.003108 13 0.112275 14 0.095569 12 0.090189 10 0.083066 11 0.07879 18 0.072954 21 0.072701 22 0.051446 15 0.051439 19 0.046186 0 0.045158 20 0.036295 17 0.033031 9 0.031399 23 0.024042 16 0.021634 24 0.013803 5 0.009091 6 0.009079 4 0.00878 1 0.003368 8 0.003317 2 0.003282 7 0.003108 13 0.08268213461958157 12 0.07784451937766497 21 0.07440741751150176 14 0.0715106655799032 11 0.0702320814710659 18 0.06930305935134778 10 0.0675411024789 22 0.05815483230119372 19 0.05406803597030509 0 0.04165289611336344 20 0.041617068227531216 17 0.03722447073592026 15 0.0363870131068469 9 0.03489998797473354 23 0.03292327342702041 24 0.027916573650270973 16 0.026393288525642943 4 0.01538413027337764 5 0.015276788851263413 6 0.014217372158359215 8 0.009742356360622846 1 0.009667178675055422 7 0.009638897722455155 2 0.009461909466768673 3 0.007981102040897683 __DUMMY__ 0.003871844028406592 false 1.0 274 12 0.131928 13 0.111574 21 0.10519 11 0.069263 20 0.068063 19 0.065722 23 0.062991 14 0.059821 18 0.059717 24 0.059579 22 0.050595 10 0.037306 16 0.021514 17 0.020517 0 0.016888 4 0.012758 5 0.012312 6 0.010771 9 0.008969 2 0.003516 7 0.003412 8 0.003354 1 0.00311 3 0.001128 12 0.131928 13 0.111574 21 0.10519 11 0.069263 20 0.068063 19 0.065722 23 0.062991 14 0.059821 18 0.059717 24 0.059579 22 0.050595 10 0.037306 16 0.021514 17 0.020517 0 0.016888 4 0.012758 5 0.012312 6 0.010771 9 0.008969 2 0.003516 7 0.003412 8 0.003354 1 0.00311 3 0.001128 12 0.09630796675174434 21 0.09048503878177204 13 0.07816709954968808 19 0.06610100770728619 11 0.06575196614121767 18 0.06334411056800632 22 0.05891638293979101 20 0.05864448371476895 23 0.05237966722129847 24 0.051878903500793626 14 0.05142270693929796 10 0.04450641174825061 17 0.03241348621936481 16 0.028532527665222716 0 0.027986676636540548 9 0.02397349551525919 4 0.0170306058429848 5 0.01656564842657466 6 0.014543552494340509 15 0.010308564506713074 7 0.009557176392841342 8 0.009508649375013637 2 0.009309641231782944 1 0.009295993278903594 3 0.00856960099085972 __DUMMY__ 0.004498635859683237 false 1.0 275 12 0.066692 13 0.065576 21 0.063189 11 0.050119 23 0.048915 22 0.048013 14 0.047444 4 0.045345 5 0.044897 6 0.043747 9 0.042427 24 0.041375 10 0.041193 8 0.040058 1 0.039774 7 0.039761 2 0.039659 18 0.039351 3 0.038996 0 0.030303 20 0.026071 19 0.023364 17 0.019035 15 0.014696 12 0.066692 13 0.065576 21 0.063189 11 0.050119 23 0.048915 22 0.048013 14 0.047444 4 0.045345 5 0.044897 6 0.043747 9 0.042427 24 0.041375 10 0.041193 8 0.040058 1 0.039774 7 0.039761 2 0.039659 18 0.039351 3 0.038996 0 0.030303 20 0.026071 19 0.023364 17 0.019035 15 0.014696 21 0.06920217749646174 12 0.06438860515149446 22 0.05709163494121457 13 0.05627676635336505 11 0.055888694249850164 18 0.052293389387818294 10 0.04599863748989946 23 0.04546859996277058 14 0.045056923679164834 19 0.043313511051793416 24 0.04196966893729519 9 0.040964220476927354 20 0.036310368975589195 0 0.03485752265207811 4 0.03413922171667428 5 0.03367248186002764 6 0.0319954750974112 17 0.03127486345076368 8 0.028709319258617087 7 0.028589614339187452 1 0.02849197357548449 2 0.028240950905175838 3 0.02816194469576101 15 0.016852200142428223 16 0.016690222247459408 __DUMMY__ 0.004101011905287244 false 1.0 276 12 0.120852 13 0.115975 21 0.086622 11 0.070322 14 0.065364 18 0.060625 19 0.054422 10 0.051288 20 0.04884 22 0.047086 23 0.046153 0 0.037978 17 0.035532 16 0.03363 24 0.032629 9 0.017925 15 0.014555 6 0.013723 4 0.012292 5 0.011688 7 0.005827 1 0.005685 8 0.005564 2 0.005421 12 0.120852 13 0.115975 21 0.086622 11 0.070322 14 0.065364 18 0.060625 19 0.054422 10 0.051288 20 0.04884 22 0.047086 23 0.046153 0 0.037978 17 0.035532 16 0.03363 24 0.032629 9 0.017925 15 0.014555 6 0.013723 4 0.012292 5 0.011688 7 0.005827 1 0.005685 8 0.005564 2 0.005421 12 0.09303932095228086 13 0.08373962697866634 21 0.0812596499256513 11 0.06605191043138109 18 0.06321893922126003 19 0.05897127739220311 22 0.05584973797748514 14 0.05564602498244032 10 0.05142033655352863 20 0.04864089956698796 23 0.044254148556387235 17 0.0388025562245585 0 0.03803496682000036 24 0.03784835305686965 16 0.033256436902150924 9 0.02776703992172433 15 0.01776754671890168 4 0.016955512103975116 5 0.016423575783267752 6 0.016339055865133942 7 0.010850418887307646 8 0.010729582090137394 1 0.010685193395336249 2 0.010400111576851329 3 0.007897034059952363 __DUMMY__ 0.004150744055560635 false 1.0 277 13 0.127286 12 0.107504 14 0.096766 21 0.075639 18 0.067395 10 0.066254 11 0.060459 20 0.053617 15 0.049998 19 0.048593 23 0.040532 22 0.0378 0 0.027975 24 0.027444 17 0.024362 16 0.021952 9 0.018938 6 0.010866 4 0.01028 5 0.010149 8 0.004141 1 0.004124 7 0.004017 2 0.003909 13 0.127286 12 0.107504 14 0.096766 21 0.075639 18 0.067395 10 0.066254 11 0.060459 20 0.053617 15 0.049998 19 0.048593 23 0.040532 22 0.0378 0 0.027975 24 0.027444 17 0.024362 16 0.021952 9 0.018938 6 0.010866 4 0.01028 5 0.010149 8 0.004141 1 0.004124 7 0.004017 2 0.003909 13 0.08922531173998795 12 0.08615061164148667 21 0.07577618795408546 14 0.07180688887027849 18 0.06698402876968398 11 0.06079930024419636 10 0.0588987402815167 19 0.056516665803329806 20 0.05179521259884835 22 0.05118219031439352 23 0.04160400892241969 15 0.0362809369655372 24 0.0357256261877009 17 0.03315059155875542 0 0.03253201839512944 9 0.028013823289933307 16 0.027639154884825747 4 0.015682503232336095 5 0.015375512198964821 6 0.014577258457372282 8 0.009725649871154207 7 0.009666825627827764 1 0.009616754742311417 2 0.009358531322156843 3 0.007683148163638794 __DUMMY__ 0.004232517962128821 false 1.0 278 18 0.067188 22 0.066778 0 0.063063 21 0.062258 12 0.059405 11 0.058366 17 0.058311 10 0.057807 9 0.056907 13 0.048352 19 0.045267 6 0.034207 4 0.033242 5 0.032397 23 0.031946 8 0.029154 7 0.028718 1 0.028692 2 0.028463 16 0.027286 14 0.026364 3 0.024409 20 0.017486 24 0.013932 18 0.067188 22 0.066778 0 0.063063 21 0.062258 12 0.059405 11 0.058366 17 0.058311 10 0.057807 9 0.056907 13 0.048352 19 0.045267 6 0.034207 4 0.033242 5 0.032397 23 0.031946 8 0.029154 7 0.028718 1 0.028692 2 0.028463 16 0.027286 14 0.026364 3 0.024409 20 0.017486 24 0.013932 22 0.06652856265597218 21 0.06556975915230798 18 0.06521348532547587 11 0.059558286285916286 12 0.05674674821339866 10 0.05447723364499604 0 0.054069112613831564 17 0.053069755950341004 19 0.05245290160068482 9 0.050399056628765794 13 0.04385906971687573 23 0.03540549178696592 14 0.03185097020052783 16 0.031451901191729796 4 0.029712272630681817 6 0.029145194814943414 5 0.029039444796266405 20 0.028943808209118505 24 0.026272515632699934 8 0.025348344849672022 7 0.025138211324683968 1 0.025011299720240993 2 0.024689680770996546 3 0.02276515618448556 15 0.00956334243988489 __DUMMY__ 0.003718393658536659 false 1.0 279 12 0.130465 13 0.111798 21 0.104732 11 0.069382 20 0.068007 19 0.065905 23 0.062943 18 0.059913 14 0.059863 24 0.059468 22 0.050216 10 0.03849 16 0.021519 17 0.020609 0 0.017833 4 0.013017 5 0.011986 6 0.011087 9 0.009383 7 0.00348 8 0.003381 1 0.003203 2 0.002351 15 9.7E-4 12 0.130465 13 0.111798 21 0.104732 11 0.069382 20 0.068007 19 0.065905 23 0.062943 18 0.059913 14 0.059863 24 0.059468 22 0.050216 10 0.03849 16 0.021519 17 0.020609 0 0.017833 4 0.013017 5 0.011986 6 0.011087 9 0.009383 7 0.00348 8 0.003381 1 0.003203 2 0.002351 15 9.7E-4 12 0.09562393258701857 21 0.09027081360252127 13 0.07827170175332578 19 0.06618646082871675 11 0.06580750208801624 18 0.06343564458120855 22 0.05873913164877725 20 0.058618223516192766 23 0.052357155516457025 24 0.05182694229759586 14 0.051442268291663706 10 0.04505982611918586 17 0.03245644740517854 16 0.028534824968986544 0 0.02842839039763028 9 0.02416699178486249 4 0.017151655006428974 5 0.016413232093432057 6 0.014691250565215629 15 0.010761989646968072 7 0.00958895050808026 8 0.00952125755472658 1 0.009339454347971891 2 0.008765033196262928 3 0.008042290142737126 __DUMMY__ 0.004498629550839016 false 1.0 280 12 0.134675 13 0.12902 21 0.088477 14 0.068669 23 0.061014 20 0.060325 11 0.059608 18 0.059273 19 0.054511 24 0.04285 10 0.042467 22 0.037159 16 0.026204 17 0.024786 0 0.022773 6 0.015241 4 0.014142 15 0.013882 5 0.013691 9 0.00757 8 0.006195 7 0.005923 1 0.005821 2 0.005725 12 0.134675 13 0.12902 21 0.088477 14 0.068669 23 0.061014 20 0.060325 11 0.059608 18 0.059273 19 0.054511 24 0.04285 10 0.042467 22 0.037159 16 0.026204 17 0.024786 0 0.022773 6 0.015241 4 0.014142 15 0.013882 5 0.013691 9 0.00757 8 0.006195 7 0.005923 1 0.005821 2 0.005725 12 0.10209415419882939 13 0.09290261035133289 21 0.08248491723774601 18 0.06198678423564464 11 0.061085093505589154 19 0.058307638798250266 14 0.05810810691591556 20 0.054126992854183605 23 0.051833139339817175 22 0.05001779550877687 10 0.046935032741509904 24 0.042405050907633 17 0.033008555814065116 0 0.030462966008488804 16 0.029436084171304066 9 0.021826460906763958 4 0.017678667433081524 15 0.01725996510765641 5 0.017234623423855466 6 0.017076083136459048 8 0.010831466202994865 7 0.010704116223427023 1 0.010568429259552639 2 0.010380085191429009 3 0.007489514327789948 __DUMMY__ 0.003755666197903588 false 1.0 281 12 0.106791 21 0.103498 13 0.079413 19 0.076211 20 0.068391 11 0.067781 18 0.067056 22 0.063669 24 0.060861 23 0.05979 14 0.048714 10 0.042485 17 0.027482 16 0.024899 0 0.021093 9 0.020835 4 0.014294 5 0.013879 6 0.010191 3 0.004888 7 0.00466 1 0.004508 2 0.00434 8 0.004272 12 0.106791 21 0.103498 13 0.079413 19 0.076211 20 0.068391 11 0.067781 18 0.067056 22 0.063669 24 0.060861 23 0.05979 14 0.048714 10 0.042485 17 0.027482 16 0.024899 0 0.021093 9 0.020835 4 0.014294 5 0.013879 6 0.010191 3 0.004888 7 0.00466 1 0.004508 2 0.00434 8 0.004272 21 0.0900447118776214 12 0.08557970509744878 19 0.07147078296760986 18 0.06669929356298826 11 0.06520244456200236 22 0.06482937925791546 13 0.06344767300392468 20 0.05922273510465817 24 0.05271647886113202 23 0.05129648054392291 10 0.0465356617599227 14 0.045477938108006585 17 0.0358813896498868 16 0.03068698666988944 0 0.030038928025068894 9 0.029042979382511977 4 0.01757398531499403 5 0.01712673622464249 6 0.014151178246668054 3 0.010072766381602408 7 0.009953387919753214 1 0.009762241784065229 8 0.009748828072870497 2 0.009517287006201532 15 0.00933001921690305 __DUMMY__ 0.004590001397789209 false 1.0 282 12 0.094607 21 0.093945 19 0.077907 11 0.070973 22 0.065223 20 0.063671 13 0.062511 18 0.061541 24 0.058991 23 0.050696 16 0.04428 17 0.042679 10 0.039155 14 0.035967 0 0.034576 9 0.02405 4 0.014978 5 0.0144 6 0.011983 7 0.007715 1 0.007601 8 0.007568 3 0.007525 2 0.007461 12 0.094607 21 0.093945 19 0.077907 11 0.070973 22 0.065223 20 0.063671 13 0.062511 18 0.061541 24 0.058991 23 0.050696 16 0.04428 17 0.042679 10 0.039155 14 0.035967 0 0.034576 9 0.02405 4 0.014978 5 0.0144 6 0.011983 7 0.007715 1 0.007601 8 0.007568 3 0.007525 2 0.007461 21 0.08554899719045632 12 0.07838599827548634 19 0.07274842262662198 11 0.0668942277322035 22 0.06643813536548701 18 0.06441109080160708 20 0.056865934086217824 13 0.05371389610008041 24 0.05203625743214833 23 0.04658932912267435 10 0.04517948393714797 17 0.04346172996418409 16 0.04000365097179377 14 0.03902844783977226 0 0.03665893345897637 9 0.03121035630669561 4 0.017917784819162653 5 0.017389832334416187 6 0.014900045925273215 3 0.011493436876543172 7 0.011424192151920103 8 0.011330229979210526 1 0.011245966859078568 2 0.011004857250106777 15 0.009409138333066041 __DUMMY__ 0.004709624259669441 false 1.0 283 13 0.111758 12 0.102981 14 0.086053 21 0.081242 18 0.070019 10 0.063702 11 0.063249 20 0.057745 19 0.05754 22 0.045216 23 0.042205 15 0.041531 24 0.033449 0 0.029063 17 0.028296 16 0.027064 9 0.020563 4 0.009072 5 0.009057 6 0.008844 7 0.003159 1 0.002873 8 0.002681 2 0.002639 13 0.111758 12 0.102981 14 0.086053 21 0.081242 18 0.070019 10 0.063702 11 0.063249 20 0.057745 19 0.05754 22 0.045216 23 0.042205 15 0.041531 24 0.033449 0 0.029063 17 0.028296 16 0.027064 9 0.020563 4 0.009072 5 0.009057 6 0.008844 7 0.003159 1 0.002873 8 0.002681 2 0.002639 12 0.08244589079472973 13 0.07900630024656392 21 0.07856871212942129 18 0.0688497549794672 14 0.06507091751929846 11 0.06238823985026302 19 0.06223816094411913 10 0.057706444175368944 22 0.05580184317675635 20 0.05430837350906995 23 0.042270666584528466 24 0.039204547181231446 17 0.035985623528021544 0 0.03349379728437548 15 0.03149855233913613 16 0.031159722035987283 9 0.02931176977451367 4 0.014965555018853771 5 0.014706241010948404 6 0.013329994294566357 7 0.009143640642438203 8 0.00890874366852295 1 0.008894362055246583 2 0.008614357574615126 3 0.0077434890748338025 __DUMMY__ 0.004384300607122675 false 1.0 284 13 0.117137 12 0.10043 14 0.08741 21 0.074311 11 0.072084 10 0.07154 18 0.068415 19 0.049107 22 0.045138 20 0.04344 15 0.043296 0 0.041062 17 0.033156 23 0.032549 16 0.027405 9 0.024776 24 0.020186 6 0.01103 4 0.010059 5 0.009859 8 0.004554 1 0.004462 7 0.004349 2 0.004246 13 0.117137 12 0.10043 14 0.08741 21 0.074311 11 0.072084 10 0.07154 18 0.068415 19 0.049107 22 0.045138 20 0.04344 15 0.043296 0 0.041062 17 0.033156 23 0.032549 16 0.027405 9 0.024776 24 0.020186 6 0.01103 4 0.010059 5 0.009859 8 0.004554 1 0.004462 7 0.004349 2 0.004246 13 0.08384557422850733 12 0.08230222720520879 21 0.07505773148767769 18 0.0672004403652633 11 0.06679548231285022 14 0.06674666075132157 10 0.061596702838033875 19 0.056147651321472716 22 0.05518282487378413 20 0.04569121297162252 0 0.03958341945502284 17 0.037668680477418205 23 0.03730691016699638 15 0.032336557763350836 24 0.03158535508747663 9 0.03153647644005083 16 0.02992032181342424 4 0.015948725609252812 5 0.015604336405620471 6 0.015070074507927729 8 0.010321044607123896 7 0.010223516172468613 1 0.010177602553781568 2 0.009910892667077335 3 0.008030882412334399 __DUMMY__ 0.004208695504931114 false 1.0 285 12 0.111935 13 0.101805 21 0.086301 19 0.068717 18 0.06491 20 0.063601 11 0.062375 14 0.062182 10 0.048414 23 0.048277 22 0.046346 24 0.043813 16 0.041777 17 0.037939 0 0.031721 15 0.020433 9 0.01644 6 0.009798 5 0.009699 4 0.009684 1 0.00367 2 0.003478 7 0.0034 8 0.003286 12 0.111935 13 0.101805 21 0.086301 19 0.068717 18 0.06491 20 0.063601 11 0.062375 14 0.062182 10 0.048414 23 0.048277 22 0.046346 24 0.043813 16 0.041777 17 0.037939 0 0.031721 15 0.020433 9 0.01644 6 0.009798 5 0.009699 4 0.009684 1 0.00367 2 0.003478 7 0.0034 8 0.003286 12 0.0868605969442848 21 0.08106335265977711 13 0.07410130296212479 19 0.06766713331665497 18 0.06632598711174241 11 0.062039730780977666 20 0.05710874123713158 22 0.05637738366055678 14 0.0532460297063109 10 0.050217510458418754 23 0.04528140755337043 24 0.04421650959688934 17 0.040704973128727964 16 0.03834354782579908 0 0.03487012667274307 9 0.0272968023686798 15 0.020985101595257363 4 0.015290971700264019 5 0.015045292366144925 6 0.01383475272897801 1 0.009310803484339387 7 0.009300759151553133 8 0.009235227103832047 2 0.009050789700822773 3 0.007764687926099368 __DUMMY__ 0.004460478258519367 false 1.0 286 12 0.141585 13 0.128367 21 0.104478 23 0.074976 11 0.067685 14 0.063178 24 0.060005 20 0.050251 22 0.042818 19 0.042485 18 0.037287 4 0.025054 6 0.024274 5 0.0238 10 0.017605 8 0.014767 7 0.014435 2 0.014244 1 0.014152 3 0.009679 0 0.009377 17 0.009054 16 0.00707 9 0.003372 12 0.141585 13 0.128367 21 0.104478 23 0.074976 11 0.067685 14 0.063178 24 0.060005 20 0.050251 22 0.042818 19 0.042485 18 0.037287 4 0.025054 6 0.024274 5 0.0238 10 0.017605 8 0.014767 7 0.014435 2 0.014244 1 0.014152 3 0.009679 0 0.009377 17 0.009054 16 0.00707 9 0.003372 12 0.10138839467145175 21 0.09029520190099291 13 0.08675788817974726 11 0.06496073292918461 23 0.0582881554193191 22 0.055062737295695774 19 0.05442089074169047 14 0.05307696943766997 18 0.05212590723409627 24 0.051991056178987145 20 0.04965367743072636 10 0.034758404010558144 17 0.026602344313592288 0 0.024304398623187454 4 0.023174457111881052 5 0.022328686350218646 6 0.021299663824643586 9 0.021277079664855696 16 0.021132175276981403 8 0.0152155524248363 7 0.015082613646798578 1 0.014830908252476314 2 0.014694734009722365 3 0.01286009330871298 15 0.009934432291033343 __DUMMY__ 0.0044828454709401454 false 1.0 287 12 0.10662 13 0.08375 21 0.082074 11 0.062083 19 0.061806 20 0.056828 23 0.055497 18 0.052014 24 0.048753 22 0.046932 16 0.041383 17 0.039001 14 0.036731 0 0.035088 10 0.034501 6 0.021593 4 0.021303 5 0.0209 9 0.018705 7 0.015727 1 0.015695 8 0.01561 2 0.015393 3 0.012013 12 0.10662 13 0.08375 21 0.082074 11 0.062083 19 0.061806 20 0.056828 23 0.055497 18 0.052014 24 0.048753 22 0.046932 16 0.041383 17 0.039001 14 0.036731 0 0.035088 10 0.034501 6 0.021593 4 0.021303 5 0.0209 9 0.018705 7 0.015727 1 0.015695 8 0.01561 2 0.015393 3 0.012013 12 0.08470845023890582 21 0.07958758602966065 13 0.06560916743744097 19 0.06443656220536975 11 0.0624378624161566 18 0.060095894034519495 22 0.057041849933450225 20 0.05357291611377202 23 0.048624529011090455 24 0.04651134474763441 10 0.043656413090118265 17 0.04117427136890009 14 0.040949943576982145 16 0.03800328403201858 0 0.036674682642750166 9 0.028472835619106376 4 0.020749589259670596 5 0.020310160748425503 6 0.019356610298739373 7 0.015047506285474967 8 0.014976520571620055 1 0.014917662674534198 2 0.014607825707747097 3 0.013372116007005552 15 0.010548482985453746 __DUMMY__ 0.004555932963453036 false 1.0 288 13 0.125483 12 0.11559 14 0.083435 21 0.07643 18 0.063432 11 0.058626 10 0.056384 20 0.055496 19 0.051633 23 0.046845 15 0.038687 22 0.03583 16 0.030837 24 0.030749 0 0.029915 17 0.029297 9 0.0148 6 0.012952 4 0.011475 5 0.011062 8 0.00543 1 0.005244 7 0.005239 2 0.005127 13 0.125483 12 0.11559 14 0.083435 21 0.07643 18 0.063432 11 0.058626 10 0.056384 20 0.055496 19 0.051633 23 0.046845 15 0.038687 22 0.03583 16 0.030837 24 0.030749 0 0.029915 17 0.029297 9 0.0148 6 0.012952 4 0.011475 5 0.011062 8 0.00543 1 0.005244 7 0.005239 2 0.005127 12 0.0907429446734502 13 0.0891083393952175 21 0.07622270996042824 14 0.06540311134574867 18 0.06484232446416616 11 0.06005736608044951 19 0.057735153899896266 10 0.054027489666685906 20 0.05251594265033763 22 0.04997976634952131 23 0.04467530393533983 24 0.03711973962162068 17 0.03552526315016701 0 0.03360720113344893 16 0.03195070819055201 15 0.030565591224904695 9 0.025817091023615003 4 0.01624861918373314 5 0.015812342347659745 6 0.01565055803766176 8 0.010346831857513667 7 0.010254263140473417 1 0.010159399496804142 2 0.009949465655212545 3 0.0075909320791556194 __DUMMY__ 0.004091541436236345 false 1.0 289 12 0.106581 13 0.084342 21 0.083009 19 0.062163 11 0.061829 20 0.056844 23 0.056444 18 0.052083 24 0.048325 22 0.046689 16 0.041466 17 0.038661 14 0.036346 0 0.035476 10 0.034275 6 0.021173 4 0.020609 5 0.020561 9 0.018664 1 0.015772 7 0.01568 8 0.015617 2 0.015395 3 0.011997 12 0.106581 13 0.084342 21 0.083009 19 0.062163 11 0.061829 20 0.056844 23 0.056444 18 0.052083 24 0.048325 22 0.046689 16 0.041466 17 0.038661 14 0.036346 0 0.035476 10 0.034275 6 0.021173 4 0.020609 5 0.020561 9 0.018664 1 0.015772 7 0.01568 8 0.015617 2 0.015395 3 0.011997 12 0.08469020471236643 21 0.08002402564692453 13 0.06588549429430489 19 0.0646031868919486 11 0.06231926096979871 18 0.060128076565741075 22 0.05692838602688691 20 0.05358036022606307 23 0.049066584923433784 24 0.04631152404300343 10 0.043550891373424605 17 0.04101553332234298 14 0.04077019873176007 16 0.038042012357567344 0 0.03685579171146408 9 0.02845368270433039 4 0.02042560644113116 5 0.02015189926172932 6 0.019160536831085474 7 0.0150255587174608 8 0.014979781320806252 1 0.014953600856463044 2 0.014608752528671273 3 0.013364640643429558 15 0.010548478061210122 __DUMMY__ 0.004555930836652066 false 1.0 290 21 0.104224 12 0.09771 11 0.085539 22 0.076398 19 0.075637 13 0.072605 18 0.070113 10 0.05589 20 0.052211 14 0.048438 24 0.044963 0 0.04248 17 0.041866 23 0.039655 16 0.035034 9 0.031769 5 0.008638 4 0.008615 6 0.00572 7 8.22E-4 2 5.59E-4 3 4.94E-4 1 3.52E-4 8 2.67E-4 21 0.104224 12 0.09771 11 0.085539 22 0.076398 19 0.075637 13 0.072605 18 0.070113 10 0.05589 20 0.052211 14 0.048438 24 0.044963 0 0.04248 17 0.041866 23 0.039655 16 0.035034 9 0.031769 5 0.008638 4 0.008615 6 0.00572 7 8.22E-4 2 5.59E-4 3 4.94E-4 1 3.52E-4 8 2.67E-4 21 0.08962044120374152 12 0.07849898930101 11 0.0736284412815214 22 0.07190474541042724 19 0.07120482579802262 18 0.06863051082499035 13 0.05754831935728347 10 0.05361084625987003 20 0.05073874804969751 14 0.04482606367194166 24 0.04480126691680616 17 0.043330860177191774 23 0.04092163696632707 0 0.0408502758275803 9 0.03558998751700237 16 0.03538863385083026 4 0.015282567836791109 5 0.015029041771133443 6 0.012314870991618982 15 0.009840685537636649 3 0.008615576862235401 7 0.008602159718853041 8 0.008319501568464636 1 0.008253901204462066 2 0.008164788812950562 __DUMMY__ 0.004482313281610305 false 1.0 291 12 0.110399 13 0.100792 21 0.085326 19 0.06879 18 0.065344 20 0.063424 11 0.062185 14 0.062015 23 0.049161 10 0.048709 22 0.046933 24 0.043231 16 0.042187 17 0.037801 0 0.032431 15 0.021237 9 0.016537 6 0.010109 4 0.009811 5 0.009678 7 0.003628 8 0.003536 2 0.003404 1 0.003331 12 0.110399 13 0.100792 21 0.085326 19 0.06879 18 0.065344 20 0.063424 11 0.062185 14 0.062015 23 0.049161 10 0.048709 22 0.046933 24 0.043231 16 0.042187 17 0.037801 0 0.032431 15 0.021237 9 0.016537 6 0.010109 4 0.009811 5 0.009678 7 0.003628 8 0.003536 2 0.003404 1 0.003331 12 0.08614332797620634 21 0.08060807919228219 13 0.07362827604914739 19 0.06770128933186544 18 0.06652873782879147 11 0.06195105401625046 20 0.05702613118907802 22 0.05665157988025231 14 0.05316808629834122 10 0.05035532968148317 23 0.04569429977590178 24 0.043944742460904594 17 0.04064056172612872 16 0.03853506381054625 0 0.035201746854584985 9 0.027342129271313777 15 0.021360609139448972 4 0.015350298133000788 5 0.015035498898293418 6 0.013980010365618694 7 0.00940724949441982 8 0.00935199193119433 1 0.009152490772261823 2 0.009016238319153566 3 0.007764695178703095 __DUMMY__ 0.0044604824248273426 false 1.0 292 12 0.103174 13 0.091873 0 0.078249 17 0.075664 11 0.069965 16 0.066748 18 0.057441 21 0.056618 10 0.05124 19 0.046869 22 0.044089 23 0.036026 9 0.029882 6 0.027339 14 0.027008 4 0.019513 5 0.019315 8 0.017965 1 0.017581 7 0.017448 20 0.017444 2 0.017252 15 0.005791 3 0.005504 12 0.103174 13 0.091873 0 0.078249 17 0.075664 11 0.069965 16 0.066748 18 0.057441 21 0.056618 10 0.05124 19 0.046869 22 0.044089 23 0.036026 9 0.029882 6 0.027339 14 0.027008 4 0.019513 5 0.019315 8 0.017965 1 0.017581 7 0.017448 20 0.017444 2 0.017252 15 0.005791 3 0.005504 12 0.08256311135618001 13 0.07051191547955273 11 0.06483572648203204 21 0.06381549205390256 18 0.06062284532430489 17 0.06034626533570984 0 0.05944544556135856 19 0.05405439829465656 22 0.053279345231704654 16 0.05148098913506276 10 0.050721615337631885 23 0.03864926586446123 14 0.03535231430526883 9 0.03412989215119867 20 0.031780015555084536 6 0.024302657094609995 4 0.02138841542008372 5 0.021040492664561344 24 0.02056042933998049 8 0.01812877773702737 7 0.017867178652187017 1 0.01783535343997895 2 0.0175053716639992 15 0.014471440133884033 3 0.011587607363183445 __DUMMY__ 0.0037236390223948936 false 1.0 293 12 0.107242 21 0.102822 13 0.078991 19 0.075941 11 0.06725 20 0.067212 18 0.067076 22 0.06531 24 0.061416 23 0.059534 14 0.048458 10 0.041244 17 0.028723 16 0.024876 0 0.020786 9 0.020756 5 0.014427 4 0.014207 6 0.009981 8 0.005273 3 0.005118 2 0.004571 1 0.004403 7 0.004384 12 0.107242 21 0.102822 13 0.078991 19 0.075941 11 0.06725 20 0.067212 18 0.067076 22 0.06531 24 0.061416 23 0.059534 14 0.048458 10 0.041244 17 0.028723 16 0.024876 0 0.020786 9 0.020756 5 0.014427 4 0.014207 6 0.009981 8 0.005273 3 0.005118 2 0.004571 1 0.004403 7 0.004384 21 0.08973019306501909 12 0.08578953939402222 19 0.07134516154837521 18 0.06670859885330194 22 0.06559287832815272 11 0.06495538910417423 13 0.06325133137830609 20 0.05867418824066688 24 0.05297470066733657 23 0.05117737282790784 10 0.045958268495959 14 0.04535883039199152 17 0.036458782913850504 16 0.03067628558602872 0 0.029896091818753943 9 0.029006223485772954 4 0.01753350730212953 5 0.017381701179237263 6 0.014053472698374437 8 0.010214557853070069 3 0.010179777220209704 7 0.009824974913424461 1 0.009713389009918421 2 0.00962476310932451 15 0.009330019216903055 __DUMMY__ 0.00459000139778921 false 1.0 294 21 0.095089 12 0.094922 11 0.085857 13 0.077782 22 0.072072 18 0.061696 19 0.059365 10 0.055616 14 0.048452 0 0.047972 17 0.040449 20 0.037756 23 0.037199 24 0.035787 9 0.035256 16 0.028385 4 0.015776 5 0.015001 6 0.014136 7 0.00899 1 0.008723 8 0.008719 2 0.008221 3 0.006779 21 0.095089 12 0.094922 11 0.085857 13 0.077782 22 0.072072 18 0.061696 19 0.059365 10 0.055616 14 0.048452 0 0.047972 17 0.040449 20 0.037756 23 0.037199 24 0.035787 9 0.035256 16 0.028385 4 0.015776 5 0.015001 6 0.014136 7 0.00899 1 0.008723 8 0.008719 2 0.008221 3 0.006779 21 0.08503683219460742 12 0.07726697770303316 11 0.07424861333606819 22 0.06992012343374873 18 0.06437829725763838 19 0.06270487797090162 13 0.060361827522218775 10 0.05382732768482539 14 0.04464556620637744 0 0.04436864572477635 17 0.04299815005531315 20 0.04264872342573859 24 0.03942424618274856 23 0.039198216984578226 9 0.03770701831446309 16 0.03207840272243575 4 0.018892782213328844 5 0.018266917801996227 6 0.016647730056310546 7 0.012740812412939197 8 0.012593989259878766 1 0.012492206061533197 2 0.012068329478126187 3 0.01172520146979018 15 0.009425553571596551 __DUMMY__ 0.004332630955027336 false 1.0 295 21 0.098551 12 0.096606 11 0.086468 13 0.075805 22 0.073454 19 0.0661 18 0.063682 10 0.055673 14 0.048921 0 0.045867 20 0.043307 17 0.040873 24 0.040306 23 0.037766 9 0.033267 16 0.031333 4 0.013461 5 0.012705 6 0.011176 7 0.005554 8 0.00528 1 0.005032 2 0.00484 3 0.003974 21 0.098551 12 0.096606 11 0.086468 13 0.075805 22 0.073454 19 0.0661 18 0.063682 10 0.055673 14 0.048921 0 0.045867 20 0.043307 17 0.040873 24 0.040306 23 0.037766 9 0.033267 16 0.031333 4 0.013461 5 0.012705 6 0.011176 7 0.005554 8 0.00528 1 0.005032 2 0.00484 3 0.003974 21 0.08693959931639468 12 0.07812125614248532 11 0.0742384084116567 22 0.07052532246893348 19 0.06641022892173615 18 0.06547037806605432 13 0.05931592688882898 10 0.05358908471783351 20 0.04614561076880088 14 0.04508829355252545 17 0.04286915754204886 0 0.04265770291418688 24 0.04231574171176933 23 0.03990073505580499 9 0.036399729094798834 16 0.033498068120895085 4 0.01763734423513394 5 0.017019353724784237 6 0.01499330260169108 7 0.010908506830323081 8 0.010758406725624232 1 0.010537427564704096 3 0.010288834914912098 2 0.01026025538368645 15 0.009706271315398385 __DUMMY__ 0.004405053008989044 false 1.0 296 0 0.095487 17 0.089997 16 0.075489 11 0.072708 22 0.059386 18 0.056955 10 0.055174 12 0.054866 9 0.050257 19 0.049354 21 0.042437 13 0.034814 6 0.034522 8 0.02897 7 0.028612 1 0.028502 4 0.028462 2 0.02835 5 0.028115 23 0.02371 3 0.020114 20 0.005776 15 0.005242 14 0.002699 0 0.095487 17 0.089997 16 0.075489 11 0.072708 22 0.059386 18 0.056955 10 0.055174 12 0.054866 9 0.050257 19 0.049354 21 0.042437 13 0.034814 6 0.034522 8 0.02897 7 0.028612 1 0.028502 4 0.028462 2 0.02835 5 0.028115 23 0.02371 3 0.020114 20 0.005776 15 0.005242 14 0.002699 0 0.07150959616893353 17 0.07081909311612905 11 0.06522046494215542 22 0.062425399258931376 18 0.05964138162450218 16 0.057375855752123534 19 0.05433529408673052 21 0.053302760225531244 10 0.05233461285175036 12 0.05176215467149926 9 0.04801298950673462 13 0.033703540915243524 23 0.031150026426444485 6 0.03058597038179606 4 0.028402162680016278 5 0.027965062805352166 8 0.0266982834783525 7 0.02652410593811734 1 0.02636518184949564 2 0.026058469661279095 20 0.02234797619612769 3 0.02193528965529272 24 0.018737260761390703 14 0.01717242027489113 15 0.011917489251184072 __DUMMY__ 0.003697157519995234 false 1.0 297 0 0.082367 17 0.075362 9 0.066619 22 0.062842 11 0.056352 10 0.052197 18 0.051508 16 0.048388 6 0.048241 8 0.045723 7 0.04541 4 0.045105 1 0.045002 2 0.044692 5 0.044248 3 0.040283 19 0.036227 21 0.034773 12 0.025495 23 0.023924 13 0.01151 15 0.005876 24 0.005788 14 0.002068 0 0.082367 17 0.075362 9 0.066619 22 0.062842 11 0.056352 10 0.052197 18 0.051508 16 0.048388 6 0.048241 8 0.045723 7 0.04541 4 0.045105 1 0.045002 2 0.044692 5 0.044248 3 0.040283 19 0.036227 21 0.034773 12 0.025495 23 0.023924 13 0.01151 15 0.005876 24 0.005788 14 0.002068 0 0.0688364013019629 17 0.06620818022684953 22 0.06447091488072793 9 0.060007569748290704 11 0.05579492067630654 18 0.05563508485181924 10 0.05121030728148175 21 0.04490066864895781 19 0.044527900964428435 16 0.04416714189797538 6 0.0406819694205058 4 0.03958844887040401 5 0.038882491899686594 8 0.03855252333216261 7 0.03837055762140663 1 0.03806697809620351 2 0.03765359459923593 3 0.03523393531821891 12 0.03084338102304428 23 0.02914503748724256 24 0.018209426592633537 13 0.01645283118797695 20 0.01434376976401083 14 0.013029295233893635 15 0.011899069553995976 __DUMMY__ 0.0032875995205781583 false 1.0 298 13 0.12671 12 0.10678 14 0.09632 21 0.075692 18 0.067672 10 0.066276 11 0.060339 20 0.053706 15 0.050008 19 0.048794 23 0.040775 22 0.038113 0 0.028522 24 0.027349 17 0.024359 16 0.022344 9 0.019094 6 0.010755 4 0.010213 5 0.009832 8 0.004218 7 0.00414 1 0.004117 2 0.003872 13 0.12671 12 0.10678 14 0.09632 21 0.075692 18 0.067672 10 0.066276 11 0.060339 20 0.053706 15 0.050008 19 0.048794 23 0.040775 22 0.038113 0 0.028522 24 0.027349 17 0.024359 16 0.022344 9 0.019094 6 0.010755 4 0.010213 5 0.009832 8 0.004218 7 0.00414 1 0.004117 2 0.003872 13 0.08895798846284239 12 0.08581460113340791 21 0.07580078540840612 14 0.0715998989716554 18 0.06711258527622793 11 0.06074360789479104 10 0.058908950545574344 19 0.056609950488583714 20 0.051836517757990634 22 0.05132745452575906 23 0.04171678592996545 15 0.0362855779946543 24 0.03568153641108835 17 0.033149199250020286 0 0.03278588268783535 9 0.02808622334416022 16 0.027821083226216452 4 0.01565140833725146 5 0.015228391575952443 6 0.014525743034172364 8 0.009761385795355952 7 0.009723910285968217 1 0.00961350602192944 2 0.009341359514423534 3 0.007683148163638794 __DUMMY__ 0.004232517962128821 false 1.0 299 21 0.10236 12 0.09733 19 0.087795 11 0.074779 22 0.071581 18 0.069732 20 0.069555 13 0.062077 24 0.060629 23 0.050905 16 0.046419 17 0.04357 10 0.043545 14 0.039351 0 0.033726 9 0.024147 4 0.008433 5 0.007996 6 0.004511 3 9.82E-4 7 3.62E-4 8 1.53E-4 15 4.4E-5 2 1.6E-5 21 0.10236 12 0.09733 19 0.087795 11 0.074779 22 0.071581 18 0.069732 20 0.069555 13 0.062077 24 0.060629 23 0.050905 16 0.046419 17 0.04357 10 0.043545 14 0.039351 0 0.033726 9 0.024147 4 0.008433 5 0.007996 6 0.004511 3 9.82E-4 7 3.62E-4 8 1.53E-4 15 4.4E-5 2 1.6E-5 21 0.08939985556502884 12 0.07899155434065916 19 0.07756561995078348 22 0.06969575537465511 11 0.06864571928923202 18 0.06841099272229414 20 0.05969959244062089 24 0.05295928174417531 13 0.05273660829149866 10 0.04731480006906338 23 0.046599190312462076 17 0.043984341556543204 16 0.04104384649723704 14 0.04045545400531851 0 0.03624736805747796 9 0.03148096026525559 4 0.014897168351160834 5 0.014431162997952753 6 0.011388400229726883 15 0.009565646129049931 3 0.008547051961498308 7 0.008030394798345832 8 0.007906162378041547 1 0.007732357167518451 2 0.007559545123756054 __DUMMY__ 0.004711170380643884 false 1.0 900 21 0.0761703395044693 22 0.06746578158842394 18 0.0665720068452753 19 0.06621245271149227 11 0.06301820503217605 12 0.06140296696521438 10 0.051387991143004526 20 0.048302259813488804 13 0.0444758542486258 17 0.04431215378045137 24 0.04377452758074017 23 0.04148589688200558 14 0.041417780936851584 0 0.039549583223825964 9 0.03888245079548337 16 0.03515498487361041 4 0.021165326120159107 5 0.02067240181979629 6 0.01822594880862179 15 0.0181266635237332 3 0.015739014636653652 7 0.015514421425866115 8 0.015473742492740411 __DUMMY__ 0.015291037342610184 1 0.015277956253017118 2 0.014928251651663246 false 0.0 901 21 0.0761703395044693 22 0.06746578158842394 18 0.0665720068452753 19 0.06621245271149227 11 0.06301820503217605 12 0.06140296696521438 10 0.051387991143004526 20 0.048302259813488804 13 0.0444758542486258 17 0.04431215378045137 24 0.04377452758074017 23 0.04148589688200558 14 0.041417780936851584 0 0.039549583223825964 9 0.03888245079548337 16 0.03515498487361041 4 0.021165326120159107 5 0.02067240181979629 6 0.01822594880862179 15 0.0181266635237332 3 0.015739014636653652 7 0.015514421425866115 8 0.015473742492740411 __DUMMY__ 0.015291037342610184 1 0.015277956253017118 2 0.014928251651663246 false 0.0 902 21 0.07617263286650411 22 0.06748459374269619 18 0.06675910178661179 19 0.06657846425732988 11 0.06281217034108852 12 0.06119092939418313 10 0.051320033764295496 20 0.04874911368913205 17 0.044337519331639375 13 0.04411306363987851 24 0.0440893085542121 23 0.04162395629322565 14 0.041337397806539514 0 0.039335834981103504 9 0.03879991131451925 16 0.035331260208766535 4 0.021083404982581253 5 0.020588531848945532 15 0.01825711141232674 6 0.01810189263193533 3 0.015705445264839437 7 0.01542932044953413 8 0.015387751219459816 __DUMMY__ 0.015378363595609623 1 0.015191048663296033 2 0.01484183795974668 false 0.0 903 21 0.07487832814809985 19 0.06930329703015504 18 0.0685843447769183 22 0.06597967091240176 11 0.05980813500393896 12 0.059338729109281174 20 0.05389757749231046 10 0.051105809572601094 24 0.04688238102360652 17 0.04381585022892491 14 0.043038006107128754 23 0.04289674445569556 13 0.04269642455354613 9 0.0371838308335538 16 0.03693620229531786 0 0.03631280822807495 15 0.022641832560532295 4 0.02011675784103455 5 0.019624378359522132 6 0.016830662262324957 __DUMMY__ 0.015615710002681516 3 0.015249320835560944 7 0.014534303385739657 8 0.014495165972623267 1 0.014284591429639025 2 0.013949137578786552 false 0.0 904 21 0.0761703395044693 22 0.06746578158842394 18 0.0665720068452753 19 0.06621245271149227 11 0.06301820503217605 12 0.06140296696521438 10 0.051387991143004526 20 0.048302259813488804 13 0.0444758542486258 17 0.04431215378045137 24 0.04377452758074017 23 0.04148589688200558 14 0.041417780936851584 0 0.039549583223825964 9 0.03888245079548337 16 0.03515498487361041 4 0.021165326120159107 5 0.02067240181979629 6 0.01822594880862179 15 0.0181266635237332 3 0.015739014636653652 7 0.015514421425866115 8 0.015473742492740411 __DUMMY__ 0.015291037342610184 1 0.015277956253017118 2 0.014928251651663246 false 0.0 905 21 0.0761703395044693 22 0.06746578158842394 18 0.0665720068452753 19 0.06621245271149227 11 0.06301820503217605 12 0.06140296696521438 10 0.051387991143004526 20 0.048302259813488804 13 0.0444758542486258 17 0.04431215378045137 24 0.04377452758074017 23 0.04148589688200558 14 0.041417780936851584 0 0.039549583223825964 9 0.03888245079548337 16 0.03515498487361041 4 0.021165326120159107 5 0.02067240181979629 6 0.01822594880862179 15 0.0181266635237332 3 0.015739014636653652 7 0.015514421425866115 8 0.015473742492740411 __DUMMY__ 0.015291037342610184 1 0.015277956253017118 2 0.014928251651663246 false 0.0 906 21 0.07744051137398467 22 0.06919897428568435 19 0.06852200449640278 18 0.06711569355568435 11 0.0631872680822095 12 0.05968299372396996 10 0.05043756307369142 20 0.05017139747672994 24 0.046246093906417866 17 0.04447531707325578 23 0.04215208466558777 13 0.04061852868357165 14 0.03971584919732809 9 0.038986133155448105 0 0.03852831700600822 16 0.03579987744234003 4 0.020945848851963662 5 0.02044010004928423 6 0.01759221859019763 15 0.0171955000737811 __DUMMY__ 0.015940210564965068 3 0.015847796383848197 7 0.015182420605166344 8 0.015115385360233246 1 0.014914311778757586 2 0.014547600543488682 false 0.0 907 21 0.07765425813446757 19 0.06775634639955462 22 0.06702830413407118 18 0.06645343108274115 12 0.06374244445680977 11 0.06288140723011688 20 0.05055456515388451 10 0.050097414593980295 13 0.04569376844970625 24 0.04562868644367082 17 0.04383722261892817 23 0.04269457834792801 14 0.04141495386316585 0 0.038211830953727925 9 0.037213133555371786 16 0.03600762639618285 4 0.02034653749413874 5 0.019865770750516654 15 0.017518644341699512 6 0.01733019147890134 __DUMMY__ 0.01578001345996259 3 0.014860995217522323 7 0.014566982162832627 8 0.014519762270067882 1 0.01433420165090905 2 0.014006929359141298 false 0.0 908 21 0.07458259838922619 12 0.06575318395450508 18 0.06520314991105375 22 0.06333911853159392 19 0.061662011735108185 11 0.06158973337788375 13 0.053612672984879824 10 0.05199989225112274 14 0.04697787213105942 20 0.046766579042012674 17 0.042102916592439046 23 0.04122925482612223 24 0.040955352780545344 0 0.03875809073712566 9 0.03734362978661125 16 0.03268274665173755 15 0.02186725706977866 4 0.021351510519314144 5 0.02088310291758424 6 0.019010615767473257 8 0.015773652912934803 7 0.015766682472246676 1 0.015584868741483442 3 0.015330939599690509 2 0.0152711551818901 __DUMMY__ 0.01460141113457756 false 0.0 909 21 0.07533339995030797 12 0.06708431852395155 18 0.06623645660115245 19 0.06298092093273784 22 0.06235967381414699 11 0.060668451614953336 13 0.055814329530380194 10 0.0522519716591495 14 0.04990771540767979 20 0.04989254276505772 24 0.04257557208492683 23 0.042189973196471865 17 0.04049865095513516 0 0.0362378340551326 9 0.03565710110051204 16 0.03235778918211437 15 0.024342372735418193 4 0.020190922650456605 5 0.019735127475811142 6 0.017632531153586564 __DUMMY__ 0.014763590844883889 8 0.014434537532897508 7 0.014432690512317629 1 0.014247261215123295 3 0.014220783269130842 2 0.013953481236563954 false 0.0 910 21 0.07745758984240195 12 0.070786876034793 11 0.06466456809092233 18 0.064158252281516 22 0.06406653491876868 19 0.0619274200118231 13 0.05607623239443681 10 0.0510771532534562 20 0.04582521616473309 14 0.044453371832085406 17 0.042141958884747276 23 0.042135711851343155 24 0.04086353610659294 0 0.039910958419342946 9 0.03631222296516039 16 0.03281312871733591 4 0.021031404504735545 5 0.02055331389599271 6 0.018867423194529494 15 0.01617631075738597 7 0.01519186742427068 8 0.015174587365208212 1 0.014997273607547582 2 0.01468554403707016 3 0.014389629067211685 __DUMMY__ 0.014261914376588854 false 0.0 911 21 0.07671921826510446 18 0.06642903775328511 22 0.06605345492111395 19 0.06452192468214532 12 0.06432483526376115 11 0.06312287025001397 10 0.052318364204825475 13 0.049913749898484384 20 0.04813665067317949 14 0.04548596286047214 24 0.04282636595919851 17 0.042376065924264475 23 0.041266042970757054 0 0.038469421155096786 9 0.03789974760751271 16 0.033128067565588844 4 0.020606099496927256 5 0.020131273623843676 15 0.020093160295569217 6 0.01777883318414911 __DUMMY__ 0.015108001207219028 3 0.014856727552576316 7 0.014806143718402874 8 0.014776526529358338 1 0.014592000265177065 2 0.014259454171973166 false 0.0 912 21 0.07681096403518436 12 0.06923118791743353 18 0.06568903114425133 19 0.0642929097790824 22 0.062472517622555415 11 0.06117359115148112 13 0.055685929125345854 20 0.05120485500023805 10 0.05064551652228132 14 0.04764311162477346 24 0.04418140194805606 23 0.04349591445757923 17 0.040514237907796506 0 0.03583842233015088 9 0.03458408954904002 16 0.033259051059615186 15 0.021291163978151353 4 0.020037620361049127 5 0.01958136560980854 6 0.017450821971658405 __DUMMY__ 0.014889589193916381 7 0.014187247096813765 8 0.014174052600508136 1 0.013995643151311748 3 0.013965258208965188 2 0.013704506652952659 false 0.0 913 21 0.0756557360987957 22 0.06754703982034851 18 0.06626724291895399 19 0.06518006467072575 11 0.06358418201845724 12 0.061299164762644257 10 0.051885060605997034 20 0.04662190916979605 17 0.04492162337367731 13 0.04471843733649993 24 0.042323448850401894 14 0.041005445928884006 0 0.04090788088431186 23 0.040668100865101864 9 0.03958209742661216 16 0.03507848717304994 4 0.021482181331785078 5 0.02099101104861765 6 0.01872442015226442 15 0.01759282255977535 3 0.01596327247353232 7 0.015927476532365085 8 0.015890164907404945 1 0.015696692046238567 2 0.015344051294700246 __DUMMY__ 0.015141985749059013 false 0.0 914 21 0.07752272662688695 12 0.0669844183737884 22 0.06475900115649444 18 0.06459110883013587 19 0.06401829591087684 11 0.062209478526781894 13 0.051774400135077774 10 0.0495893073017045 20 0.04891080997654539 14 0.04490094956977311 24 0.04444828745334798 23 0.04339417694823926 17 0.04119955580787441 0 0.03684742591064352 9 0.03621902240713002 16 0.032849082172006355 4 0.0211528966280507 5 0.020673068623061834 15 0.0188157444297522 6 0.018403412468475426 7 0.015274324744446198 8 0.015239047951130779 __DUMMY__ 0.015237521150977568 3 0.015186585153098993 1 0.015062183656495682 2 0.014737168087204025 false 0.0 915 21 0.07696539103096271 12 0.069042780004774 18 0.0660386226319388 19 0.06541603384545505 22 0.06258833908897983 11 0.061143206258363586 13 0.05480924439611208 20 0.05223202370309823 10 0.05047024864072356 14 0.047086084430779836 24 0.04487633502445073 23 0.043847910756481874 17 0.04078514404387099 0 0.03559888571789302 9 0.034229446737540505 16 0.03412095397200055 15 0.021191666616568725 4 0.019708936153329405 5 0.019254502197810545 6 0.017050432854875067 __DUMMY__ 0.01507387526553875 7 0.013862704025454113 8 0.013840168120775539 3 0.013729487874699062 1 0.013665156241200889 2 0.013372420366322541 false 0.0 916 21 0.07592559618845102 18 0.06671361559268321 19 0.06574881122554217 12 0.06465938201291725 22 0.06462997955112394 11 0.061418618607082434 10 0.05135159569059005 20 0.050519590532605185 13 0.04984641903329598 14 0.0451229097409104 24 0.04399777232388059 17 0.042669259983920044 23 0.042321870278677856 0 0.03748752812101263 9 0.03663574527893054 16 0.03476831195034912 15 0.0210897722455545 4 0.02027378913105753 5 0.019804687212619045 6 0.017500885392724826 __DUMMY__ 0.015316183811136225 3 0.014632240513642703 7 0.01458238636516258 8 0.014560746413478837 1 0.014369128856155714 2 0.014053173946495459 false 0.0 917 21 0.07651355074038962 22 0.0674569960115513 19 0.06740486055486765 18 0.06688773017925197 11 0.062463287687838716 12 0.06126392185113901 10 0.050787433431250605 20 0.04992116792329605 24 0.045119341580114346 17 0.04418770894683229 13 0.04372465142729402 23 0.04213220249078922 14 0.04128008122897242 0 0.03858287115190741 9 0.038292359352571075 16 0.035732257302261275 4 0.020836979819855817 5 0.020344444915505744 15 0.018460202940125618 6 0.017758654439106698 __DUMMY__ 0.015592022831754544 3 0.015536969828105792 7 0.015149303627874441 8 0.015103873109230758 1 0.014906087932023027 2 0.014561038696090524 false 0.0 918 21 0.07536902541798295 12 0.06718905193759547 18 0.0661663657979305 19 0.06293956645299802 22 0.062336544757894526 11 0.060670613584954555 13 0.05587369597602492 10 0.052164827063877824 20 0.049869470371935884 14 0.04984371181875365 24 0.04260046996305519 23 0.042237640492072216 17 0.04047928544313879 0 0.036225727262150696 9 0.03562514363374884 16 0.0323387216792816 15 0.024232441107153033 4 0.02022012420508514 5 0.019763903460338843 6 0.017668021001062458 __DUMMY__ 0.014773521397143979 8 0.014461204565467914 7 0.014458840971992364 1 0.014274031712950119 3 0.014237625435886546 2 0.013980424489524225 false 0.0 919 21 0.07503046452024537 19 0.06964521803835154 18 0.06737347656350733 22 0.06659903674502407 11 0.06067216120510105 12 0.05937399993124833 20 0.052653456893773966 10 0.04979822636207146 24 0.04677869153499605 17 0.045171200933877054 23 0.04321876370957689 13 0.04098815222346791 14 0.04015259185259858 16 0.038584384389529235 0 0.03772352713881459 9 0.03729111957140339 4 0.02053105633325999 15 0.020235134883283656 5 0.020042096412910056 6 0.017392850919180546 __DUMMY__ 0.015829377834958327 3 0.015611710340767292 7 0.015051575624477549 8 0.0149999084068868 1 0.014796001412447413 2 0.014455816218241426 false 0.0 920 21 0.07535671951632143 12 0.06883146768217713 18 0.06468962443457364 22 0.06206734745437285 19 0.06163304937051272 11 0.06127384532515598 13 0.05664166852726426 10 0.051018180113205996 20 0.0479524167230475 14 0.04765061979297489 23 0.042389841198539745 24 0.04167186788695291 17 0.04113783487484972 0 0.03763103811367085 9 0.03576924761869377 16 0.0325238738680766 15 0.021350211225356876 4 0.021062476037191077 5 0.0206026600573553 6 0.018820595899937474 8 0.015386496552498869 7 0.01537498994851799 1 0.01520149928815057 2 0.014908251880100285 3 0.014788986656372507 __DUMMY__ 0.01426518995412905 false 0.0 921 21 0.07430306748489625 19 0.06881077683394034 18 0.0685352680216489 22 0.0658582040050565 11 0.05959990972600549 12 0.05872109267163621 20 0.053360490843804245 10 0.05136115375356031 24 0.046398710614215584 17 0.04388865554306108 14 0.04308640268843478 23 0.0427000269227703 13 0.04247162613537566 9 0.037534455046288544 16 0.03673850505313422 0 0.03657129674660666 15 0.02297887434202938 4 0.020394094472188085 5 0.019900586743924656 6 0.017145265749216675 3 0.015551064143960992 __DUMMY__ 0.01550985869277868 7 0.014863200057567697 8 0.01482707154408335 1 0.014613804111509976 2 0.014276538052305356 false 0.0 922 18 0.07522456670396828 19 0.06553065153535625 21 0.06411602804193196 22 0.06282509588568688 10 0.06230764860265704 11 0.05497777567278239 14 0.052210036830058294 20 0.05165507011502798 12 0.04714492394475748 17 0.04493262581558593 9 0.042249666720679535 13 0.04149845292115806 0 0.03886514268679068 24 0.038165846376450915 15 0.03801576905839773 23 0.0367870312440203 16 0.03478621621257441 4 0.020213246339696317 5 0.01975176494831208 6 0.017181767106224908 3 0.016308719423155055 8 0.015502067053271852 7 0.015488628882278392 1 0.015265435613835195 2 0.014934295082559468 __DUMMY__ 0.014061527182782705 false 0.0 923 21 0.07314266441211628 19 0.06939492105967779 18 0.06854729915295536 22 0.06664783614550582 11 0.058702234944281714 12 0.05518158519025148 20 0.053547709328672685 10 0.050808332526709625 24 0.047355602180488204 17 0.044525586317859224 23 0.04298854950457809 14 0.04119938107671882 9 0.03847787872400555 13 0.03803784318187211 16 0.03734276381686192 0 0.03646019487055857 15 0.023185081502539527 4 0.021257838932327227 5 0.020748664167359706 6 0.01781523845661876 3 0.01680557260545331 7 0.01585010778936787 8 0.015807182642079764 1 0.015577594451677248 __DUMMY__ 0.01536894524862146 2 0.015223391770841801 false 0.0 924 21 0.07646420393606553 19 0.07124706426068358 18 0.06881657568805591 22 0.06870221618167278 11 0.060671238456781934 12 0.057044504802079773 20 0.05506310607626082 10 0.04968394348313936 24 0.049573317139583815 17 0.044219227986682604 23 0.04326278676019771 14 0.040452864561380544 9 0.03784820199488976 13 0.03765373296724576 16 0.03723900292892417 0 0.03556447143106936 15 0.02078171192527241 4 0.02031696850926986 5 0.019783818283917447 6 0.01656876866260345 __DUMMY__ 0.016040180001875334 3 0.015726638831391443 7 0.014583131464876024 8 0.014520053830045369 1 0.014279223868845605 2 0.01389304596718949 false 0.0 925 18 0.06325111762590564 22 0.061058454069746235 19 0.06002064712587916 21 0.05539475546847394 17 0.053598355239952676 11 0.0492557833669098 10 0.04766412896910366 9 0.044463443573855496 0 0.04435309654330761 16 0.04408691066529888 20 0.04362020104350705 24 0.03937190429189344 23 0.03878348895231887 12 0.038564108048413676 14 0.03456246422922694 15 0.032991515548879385 4 0.028485359295889415 5 0.02794926105480835 6 0.026842566221206298 13 0.02625951644668575 8 0.02549257719340901 7 0.025413161302786487 1 0.025166852841994176 3 0.0251049116635635 2 0.0247641271996262 __DUMMY__ 0.013481292017358431 false 0.0 926 21 0.07389980854777115 19 0.07017469301696894 18 0.06927232966618911 22 0.06505497350522008 12 0.05839565279756766 11 0.05829049022856506 20 0.05588828891749076 10 0.05105798550269378 24 0.047792244162905353 14 0.04394423403458961 17 0.04370548120852372 23 0.04336519354610508 13 0.04225616972691274 16 0.03772025611015801 9 0.03652019252316297 0 0.035146481601461395 15 0.024966594795566177 4 0.019790967735213095 5 0.019303008890057993 6 0.016433337147742234 __DUMMY__ 0.01559322234184834 3 0.015141469303506416 7 0.014288394009607295 8 0.014253731765022502 1 0.014036796157294529 2 0.013708002757856108 false 0.0 927 21 0.07389980854777115 19 0.07017469301696894 18 0.06927232966618911 22 0.06505497350522008 12 0.05839565279756766 11 0.05829049022856506 20 0.05588828891749076 10 0.05105798550269378 24 0.047792244162905353 14 0.04394423403458961 17 0.04370548120852372 23 0.04336519354610508 13 0.04225616972691274 16 0.03772025611015801 9 0.03652019252316297 0 0.035146481601461395 15 0.024966594795566177 4 0.019790967735213095 5 0.019303008890057993 6 0.016433337147742234 __DUMMY__ 0.01559322234184834 3 0.015141469303506416 7 0.014288394009607295 8 0.014253731765022502 1 0.014036796157294529 2 0.013708002757856108 false 0.0 928 18 0.07180216572221151 21 0.07151531531658427 22 0.06797207743299193 19 0.06704140535119398 11 0.06201965369133609 10 0.05830927484534335 12 0.053788766126343535 20 0.04775379024284469 17 0.04683392698545493 14 0.042733891046787244 0 0.04270239650475437 9 0.042617029887090076 13 0.03995536275781949 24 0.039353879456602466 23 0.037555165472720704 16 0.03576199252655758 15 0.022794089504593756 4 0.020516873530192947 5 0.020032187316548204 6 0.017544128091205882 3 0.015783721566752708 7 0.015315721046038117 8 0.015277750402532979 __DUMMY__ 0.015222572678094425 1 0.015080468874045294 2 0.014716393623359365 false 0.0 929 21 0.07487832814809983 19 0.06930329703015504 18 0.0685843447769183 22 0.06597967091240176 11 0.05980813500393896 12 0.059338729109281174 20 0.053897577492310465 10 0.05110580957260109 24 0.046882381023606534 17 0.04381585022892491 14 0.04303800610712875 23 0.042896744455695565 13 0.04269642455354613 9 0.03718383083355378 16 0.03693620229531786 0 0.036312808228074936 15 0.022641832560532295 4 0.020116757841034547 5 0.019624378359522132 6 0.01683066226232496 __DUMMY__ 0.01561571000268152 3 0.015249320835560944 7 0.014534303385739654 8 0.014495165972623266 1 0.014284591429639023 2 0.013949137578786554 false 0.0 930 22 0.06448391593286659 18 0.061310762359652306 19 0.060114168250968186 17 0.05859213830501785 21 0.05819430357235334 11 0.056717160863593664 0 0.05251240118956756 16 0.04758317651086391 10 0.047568600336457004 9 0.04607025505197029 12 0.04317399302269164 23 0.0371758939190813 20 0.0368262394539926 24 0.03520408778003688 4 0.028644055942471377 5 0.028116934514876967 6 0.02777376583092403 8 0.025712007073115342 7 0.025672289703621624 1 0.02544572786279266 13 0.025086695196992796 2 0.024994678070508244 14 0.024912547787748315 3 0.024362979307540507 15 0.019757704548441692 __DUMMY__ 0.013993517611853419 false 0.0 931 19 0.07079477750894568 18 0.06926060733265657 21 0.06604447511153262 22 0.06015511023829413 20 0.05891212098455857 12 0.05222851618191639 11 0.05187531209781252 10 0.04979796924076439 24 0.04785057879959442 17 0.046010551196767537 23 0.04456599769722397 14 0.04404114578440561 16 0.04311585138871272 13 0.03845055682947749 9 0.035202561401686844 0 0.03423510635603034 15 0.03364903840573086 4 0.02059346363031909 5 0.020114185392085874 6 0.01764349715572963 3 0.01675029337816806 8 0.015986602217237335 7 0.015986523178163944 1 0.015738816073065556 __DUMMY__ 0.015575218230818368 2 0.015421124188301355 false 0.0 932 19 0.07147937487799681 18 0.0692980231798325 21 0.06748942095694539 22 0.061360230051078 20 0.05848838704560668 11 0.05336854516104125 12 0.05322074808817859 10 0.049755010547198816 24 0.04795060821201143 17 0.04638517576415865 23 0.044462302251181675 16 0.04329350174178031 14 0.04286162935449705 13 0.038176913549204494 9 0.035354695172758084 0 0.03493741224250729 15 0.03135938285102265 4 0.020302844819290705 5 0.019822417457381062 6 0.017305573789941704 3 0.016335602912023378 7 0.015567791184097261 8 0.015562620945249269 __DUMMY__ 0.01553373447086931 1 0.015320684211297123 2 0.015007369162850432 false 0.0 933 22 0.062129458789423005 18 0.06125834846909718 17 0.061227879030997606 19 0.060736367695754155 11 0.0553643396589374 0 0.055209018253946626 21 0.054544594454178946 16 0.05158629756063313 10 0.04799238629078394 9 0.04586389543706049 12 0.042374961622443405 23 0.037005115806601735 20 0.03650194855090395 24 0.032670287449946926 4 0.02886627352659604 6 0.02856415142114164 5 0.02836003922443305 8 0.026484321023625468 7 0.026425691606600122 1 0.026224470500156388 2 0.0257994273360755 3 0.024683539184920156 13 0.024290230442153303 14 0.022174655680410296 15 0.019685970741374542 __DUMMY__ 0.013976330241804898 false 0.0 934 19 0.06586721370299171 18 0.06328108977465392 22 0.06197481444666437 17 0.05891370569379143 21 0.05841647027721915 11 0.05565976422015363 16 0.05265618693233491 0 0.050654245684440595 10 0.04754956311766454 12 0.04648047134991002 20 0.043334368741759915 9 0.0419102693800333 23 0.039569706213736726 24 0.03723172384172139 13 0.027323402105371597 4 0.025715612198211217 14 0.025622023077293096 5 0.025227603769446504 6 0.02482536741712772 8 0.022759448775035038 7 0.02271888809816334 1 0.02251139416238794 2 0.022119122561292795 3 0.021516427076068233 15 0.02141574848412589 __DUMMY__ 0.014745368898400921 false 0.0 935 19 0.06328447564144059 18 0.061672117811773404 22 0.061296952730157034 17 0.06091171477295682 21 0.05559528340341259 11 0.05492642765215773 16 0.053560834643807474 0 0.05327075630482741 10 0.0468489404706995 12 0.04441697513969174 9 0.04347341145340937 20 0.03999101107160633 23 0.03855621390080191 24 0.03493513218313718 4 0.027485148116800966 6 0.02707655849788208 5 0.026987390955255097 13 0.025470606064718647 8 0.02498955492133198 7 0.02493496230902178 1 0.024734757760260632 2 0.02432168781122727 3 0.023295929905180934 14 0.022921892319404162 15 0.02068751050786159 __DUMMY__ 0.014353753651176028 false 0.0 936 17 0.06186789697140875 22 0.0617698348648388 18 0.0605513742908559 19 0.059452448276490946 0 0.05609822126722915 11 0.05559597891364594 21 0.05407225977495203 16 0.05183388837210537 10 0.047673783694571654 9 0.04595477840396195 12 0.04290969871288496 23 0.03651966488418519 20 0.03521299590990295 24 0.031818220714930116 4 0.029140401054814316 6 0.029083775407688285 5 0.028635017532187754 8 0.026879130286644567 7 0.026809109246679282 1 0.026617683158336545 2 0.02619097546678885 13 0.025115757919591183 3 0.024803578356385036 14 0.022006125266144663 15 0.01971983212398981 __DUMMY__ 0.013667569128786104 false 0.0 937 19 0.0658672137029917 18 0.06328108977465391 22 0.06197481444666437 17 0.05891370569379144 21 0.05841647027721915 11 0.055659764220153625 16 0.052656186932334904 0 0.05065424568444059 10 0.04754956311766454 12 0.04648047134991002 20 0.04333436874175991 9 0.041910269380033296 23 0.03956970621373672 24 0.03723172384172139 13 0.027323402105371594 4 0.02571561219821121 14 0.025622023077293093 5 0.0252276037694465 6 0.024825367417127715 8 0.022759448775035034 7 0.022718888098163338 1 0.022511394162387937 2 0.02211912256129279 3 0.021516427076068236 15 0.02141574848412589 __DUMMY__ 0.014745368898400921 false 0.0 938 19 0.0658672137029917 18 0.06328108977465391 22 0.06197481444666437 17 0.05891370569379144 21 0.05841647027721915 11 0.055659764220153625 16 0.052656186932334904 0 0.05065424568444059 10 0.04754956311766454 12 0.04648047134991002 20 0.04333436874175991 9 0.041910269380033296 23 0.03956970621373672 24 0.03723172384172139 13 0.027323402105371594 4 0.02571561219821121 14 0.025622023077293093 5 0.0252276037694465 6 0.024825367417127715 8 0.022759448775035034 7 0.022718888098163338 1 0.022511394162387937 2 0.02211912256129279 3 0.021516427076068236 15 0.02141574848412589 __DUMMY__ 0.014745368898400921 false 0.0 939 17 0.06651226791650532 0 0.06178151755978153 22 0.06012680069450915 18 0.057745182735962804 16 0.05421565755673992 19 0.05413384517435566 11 0.05385779940853548 9 0.04919605112050848 21 0.047616084230223836 10 0.046763103978778364 12 0.03820662993899517 23 0.0341297476707355 6 0.033546268743121915 4 0.03253094320368033 5 0.0320065620334872 8 0.031280056657476615 7 0.03117555069795045 1 0.03099913103050076 2 0.030521455394322425 20 0.028292824143191515 3 0.02818420930739036 24 0.02656095046510338 13 0.021391324676657445 15 0.01940878016275683 14 0.016991194523022064 __DUMMY__ 0.012826060975707787 false 0.0 940 19 0.0658672137029917 18 0.06328108977465391 22 0.06197481444666437 17 0.05891370569379144 21 0.05841647027721915 11 0.055659764220153625 16 0.052656186932334904 0 0.05065424568444059 10 0.04754956311766454 12 0.04648047134991001 20 0.04333436874175991 9 0.041910269380033296 23 0.03956970621373672 24 0.03723172384172139 13 0.027323402105371594 4 0.02571561219821121 14 0.025622023077293093 5 0.0252276037694465 6 0.024825367417127715 8 0.022759448775035034 7 0.022718888098163338 1 0.022511394162387937 2 0.02211912256129279 3 0.021516427076068236 15 0.02141574848412589 __DUMMY__ 0.014745368898400921 false 0.0 941 22 0.06242461571598938 18 0.0621987082872284 19 0.06170362819442014 17 0.06080633273301692 11 0.056353768970564024 21 0.05619548852520613 0 0.054145164727740475 16 0.0517237445205957 10 0.04843594335152891 9 0.04460735879966306 12 0.04430895212455391 20 0.03804618138315815 23 0.03691205820933009 24 0.03359399890098026 4 0.027299922804007046 6 0.026895579025006954 5 0.026795921069047032 13 0.026589108017928482 14 0.0247219067138697 8 0.024705457589906686 7 0.02464808010640345 1 0.0244482367742249 2 0.02402442025949921 3 0.02294095353596338 15 0.021399335370871696 __DUMMY__ 0.014075134289295943 false 0.0 700 0 0.08507 17 0.078732 9 0.061128 11 0.058337 22 0.058316 16 0.055872 10 0.05053 18 0.049478 6 0.04695 8 0.043814 7 0.043324 1 0.043242 2 0.042861 4 0.04243 5 0.041969 3 0.03703 19 0.036255 12 0.033582 21 0.033448 23 0.024669 13 0.019646 15 0.007674 24 0.003562 14 0.002081 0 0.08507 17 0.078732 9 0.061128 11 0.058337 22 0.058316 16 0.055872 10 0.05053 18 0.049478 6 0.04695 8 0.043814 7 0.043324 1 0.043242 2 0.042861 4 0.04243 5 0.041969 3 0.03703 19 0.036255 12 0.033582 21 0.033448 23 0.024669 13 0.019646 15 0.007674 24 0.003562 14 0.002081 0 0.07067160953295692 17 0.06869941392363292 22 0.06165604483114537 9 0.057026655097072554 11 0.05637636618330266 18 0.054314850612745866 10 0.04985275552529391 16 0.04910495794381192 19 0.044593337251946176 21 0.04346736086784509 6 0.0403078870395408 4 0.038365404499382076 5 0.037846562804302424 8 0.037846137236133934 7 0.0375787735710134 1 0.03743143178505595 2 0.03698441103999693 12 0.034794016110658445 3 0.03370978845838895 23 0.02964104055069025 13 0.02016992544840321 24 0.0169115534812943 20 0.014343891401476176 15 0.012845979547500726 14 0.012184853583641157 __DUMMY__ 0.0032749916727680102 false 1.0 942 17 0.0648653422204522 22 0.06074870457359694 0 0.059587056397727926 18 0.05889403549525215 19 0.056471082221851245 11 0.05428640909010243 16 0.0536037435664957 21 0.04978471982528096 9 0.04801907934984668 10 0.04707965310231555 12 0.03942036003994833 23 0.03513219264898424 6 0.031873623127681466 4 0.031291551260041066 20 0.031128218220421756 5 0.030774823821644648 8 0.02968446608699039 7 0.02959678218063754 1 0.02941048644854009 2 0.028952749331343598 24 0.028642141689084473 3 0.0270271507411052 13 0.02212193639234102 15 0.019619697024905278 14 0.01859741769909994 __DUMMY__ 0.013386577444309327 false 0.0 701 0 0.085152 17 0.078901 9 0.061625 11 0.058468 22 0.057856 16 0.055903 10 0.050639 18 0.049657 6 0.047193 8 0.043928 7 0.043711 1 0.04356 4 0.042759 2 0.042757 5 0.041762 3 0.036886 19 0.036261 21 0.033375 12 0.033323 23 0.024937 13 0.019484 15 0.007089 24 0.003084 14 0.00169 0 0.085152 17 0.078901 9 0.061625 11 0.058468 22 0.057856 16 0.055903 10 0.050639 18 0.049657 6 0.047193 8 0.043928 7 0.043711 1 0.04356 4 0.042759 2 0.042757 5 0.041762 3 0.036886 19 0.036261 21 0.033375 12 0.033323 23 0.024937 13 0.019484 15 0.007089 24 0.003084 14 0.00169 0 0.07070965049112732 17 0.06877781541059383 22 0.061442644334091995 9 0.057257220416715 11 0.056437138933550464 18 0.05439789124094707 10 0.04990332216481307 16 0.04911933928165682 19 0.044596120736690344 21 0.04343349513679098 6 0.040420618171679856 4 0.03851803224618763 8 0.03789902344627325 7 0.037758308337012644 5 0.03775053258062842 1 0.03757895647649719 2 0.03693616397109792 12 0.03467386235253492 3 0.03364298482452876 23 0.029765369535930036 13 0.0200947713603105 24 0.016689802530008412 20 0.014343891401476176 15 0.012574589784943725 14 0.012003463161145797 __DUMMY__ 0.0032749916727680102 false 1.0 943 22 0.06209291891484459 17 0.060259408923750445 18 0.05796116752632782 0 0.056701636685711605 9 0.05196713424424496 11 0.05172681352082273 19 0.05162070905323365 21 0.04940408277745101 10 0.047850798752751514 16 0.045057036459766844 4 0.034507769319173966 6 0.03437600100149118 23 0.03425493057813398 12 0.03406563817391858 5 0.03395118711648715 8 0.032660189904453824 7 0.0325748436897747 1 0.032372214606549085 2 0.0318754450578514 3 0.030761755759495076 24 0.029038682489475758 20 0.028358505392971852 14 0.02194158550086517 15 0.021624771205530753 13 0.02005931104779262 __DUMMY__ 0.012935462297129672 false 0.0 944 21 0.07734975302111521 22 0.06774425867734685 19 0.06699171871221092 18 0.06463519704597062 11 0.06207991337767268 12 0.061382946790088384 20 0.04909938946338401 10 0.04777501697669928 24 0.04661523788085366 23 0.0441077735981274 17 0.043708427265848886 13 0.042286649761469015 14 0.039053700660737954 9 0.03790544999724604 0 0.03781730975118368 16 0.0354949901522701 4 0.022060711853466242 5 0.021544929120729965 6 0.018944443510498545 3 0.01671722202606916 7 0.016354871631684885 15 0.016308175352690957 8 0.01626858220766473 1 0.016086719175295184 __DUMMY__ 0.015952428483317377 2 0.015714183506358104 false 0.0 702 17 0.087465 0 0.08736 16 0.070635 11 0.057287 9 0.056184 22 0.054715 18 0.050577 10 0.047335 6 0.043815 19 0.042159 8 0.040118 1 0.040015 7 0.03994 2 0.039141 4 0.038107 5 0.037413 12 0.036671 3 0.032088 21 0.031363 23 0.025143 13 0.020504 15 0.012718 20 0.005127 24 0.004122 17 0.087465 0 0.08736 16 0.070635 11 0.057287 9 0.056184 22 0.054715 18 0.050577 10 0.047335 6 0.043815 19 0.042159 8 0.040118 1 0.040015 7 0.03994 2 0.039141 4 0.038107 5 0.037413 12 0.036671 3 0.032088 21 0.031363 23 0.025143 13 0.020504 15 0.012718 20 0.005127 24 0.004122 17 0.07408272560668909 0 0.07275491030267707 22 0.059304396891163604 16 0.05751789290808657 11 0.05534008617979491 9 0.05480713100061087 18 0.0544403797153607 10 0.04796876212474787 19 0.046996313543629896 21 0.04101492033163422 6 0.03941821061246378 8 0.036687501355595176 4 0.03667255713247236 7 0.03656219194983976 1 0.036490276065781355 5 0.03604872541480315 2 0.0358064358924455 12 0.0354680327082936 3 0.03174869053830085 23 0.029662082878462656 13 0.01974421265718084 24 0.01645144061727313 20 0.016158758691127692 15 0.015584563738341436 14 0.010080885876597787 __DUMMY__ 0.0031879152666260293 false 1.0 703 21 0.078775 22 0.077441 18 0.064239 11 0.063231 9 0.057038 10 0.05413 19 0.052864 12 0.05123 0 0.046424 17 0.041819 23 0.037153 24 0.03687 4 0.033742 5 0.033245 13 0.031943 14 0.030698 6 0.02975 20 0.029207 3 0.028114 7 0.02711 1 0.027055 8 0.027001 2 0.026579 16 0.014342 21 0.078775 22 0.077441 18 0.064239 11 0.063231 9 0.057038 10 0.05413 19 0.052864 12 0.05123 0 0.046424 17 0.041819 23 0.037153 24 0.03687 4 0.033742 5 0.033245 13 0.031943 14 0.030698 6 0.02975 20 0.029207 3 0.028114 7 0.02711 1 0.027055 8 0.027001 2 0.026579 16 0.014342 21 0.07556258214075277 22 0.07209171325258536 18 0.0648504934921232 11 0.06189607837733287 19 0.05865074803227623 12 0.05396626788603867 10 0.05235991273590099 9 0.048978982849614834 17 0.04381406419592151 0 0.0436096598549459 24 0.039994391491679736 23 0.03937690758099613 20 0.03793362165850325 13 0.03610837180871863 14 0.03487192135373359 4 0.02879184212317275 5 0.028288337381338333 6 0.025435533553010675 16 0.025189845952116482 3 0.023482773623748072 7 0.022913574019388715 8 0.022841584536655753 1 0.022762454111317776 2 0.0223310805103633 15 0.009684434730183903 __DUMMY__ 0.004212822747580576 false 1.0 945 17 0.0635945961624175 22 0.06132893008354388 18 0.06018833068517845 19 0.05875889449125404 0 0.05755547925358425 11 0.05489551813236797 16 0.05335200505646124 21 0.05207034417602917 10 0.04742325386355854 9 0.04664546852132124 12 0.04109194666981878 23 0.03589930567499273 20 0.03400542297465898 24 0.030683801422522854 6 0.029955787284518944 4 0.02973913306930589 5 0.029228381959157463 8 0.0277904387981958 7 0.02771644914060388 1 0.027527765466033464 2 0.027076259936671274 3 0.025474328603257983 13 0.023409743393314073 14 0.020584338119073488 15 0.020314006110677494 __DUMMY__ 0.013690070951480813 false 0.0 946 18 0.07272951094720334 19 0.0694541121771554 21 0.0685223326729512 22 0.06371396293861978 10 0.05601715341079008 20 0.05600507430212376 11 0.05549870735902918 12 0.05151794697206126 14 0.04759931615995621 24 0.04474061650796029 17 0.04433873788620843 23 0.04101290289728438 13 0.039947217758170984 9 0.03870742977364576 16 0.037391225927034775 0 0.03576451964473495 15 0.03246972158449011 4 0.01983565109754714 5 0.019349476909527256 6 0.016453774145664506 3 0.015825918116761605 __DUMMY__ 0.014962586487012002 7 0.014743199392410698 8 0.014737617019554852 1 0.014494613978887908 2 0.014166673933214175 false 0.0 704 10 0.08239 18 0.070616 22 0.066437 9 0.065063 11 0.0636 21 0.059465 14 0.056224 0 0.05352 13 0.050158 12 0.040271 4 0.034925 17 0.03477 5 0.034326 6 0.032591 19 0.032278 1 0.029997 8 0.029975 7 0.029935 3 0.029755 2 0.029501 15 0.025013 23 0.024115 20 0.013851 24 0.011225 10 0.08239 18 0.070616 22 0.066437 9 0.065063 11 0.0636 21 0.059465 14 0.056224 0 0.05352 13 0.050158 12 0.040271 4 0.034925 17 0.03477 5 0.034326 6 0.032591 19 0.032278 1 0.029997 8 0.029975 7 0.029935 3 0.029755 2 0.029501 15 0.025013 23 0.024115 20 0.013851 24 0.011225 18 0.06895288141000398 10 0.06868366008057533 22 0.06616324176095453 21 0.06444850968123152 11 0.06174930721992286 9 0.05424422502772798 14 0.04890237352676058 0 0.0481448243381172 12 0.047256056884602785 19 0.046983241031407955 13 0.04584313710238355 17 0.040305707809137024 23 0.03156024125718321 4 0.02967249056018835 5 0.02913235532484386 20 0.028878218838623293 6 0.02725273704374597 24 0.024901417283505388 7 0.024717703505644485 8 0.02471632989319264 1 0.024639354680555642 3 0.024602846436611665 2 0.02419224352798059 15 0.02344344311299334 16 0.016844041052914697 __DUMMY__ 0.00376941160919157 false 1.0 947 21 0.06766571999695416 18 0.06506896659216599 22 0.05935222708863019 12 0.05863570773640551 19 0.05702362491154437 11 0.0553736999787328 10 0.05383926283556392 13 0.053051862309600996 14 0.05229100270672863 20 0.04596249653684725 23 0.04051437639476289 17 0.03990950510871173 9 0.03903770701110784 24 0.03893022148479607 0 0.03651734691652468 15 0.031450324334788664 16 0.029613528732069617 4 0.023862923383984585 5 0.023422488842344994 6 0.021577777038713553 8 0.018853504397355763 7 0.018837232135383682 1 0.018680339710057073 3 0.018574049392008962 2 0.018332712132467746 __DUMMY__ 0.013621392291748309 false 0.0 705 22 0.056322 3 0.056009 4 0.055587 9 0.055566 5 0.05488 7 0.053694 8 0.053474 23 0.053462 1 0.053313 2 0.052761 6 0.052064 24 0.050738 21 0.045127 19 0.040046 18 0.038888 17 0.036609 20 0.033953 0 0.031417 11 0.026585 10 0.025777 16 0.022928 15 0.019335 12 0.016125 14 0.01534 22 0.056322 3 0.056009 4 0.055587 9 0.055566 5 0.05488 7 0.053694 8 0.053474 23 0.053462 1 0.053313 2 0.052761 6 0.052064 24 0.050738 21 0.045127 19 0.040046 18 0.038888 17 0.036609 20 0.033953 0 0.031417 11 0.026585 10 0.025777 16 0.022928 15 0.019335 12 0.016125 14 0.01534 22 0.06182848510628034 21 0.05450412282218819 9 0.05204644603713433 18 0.050328142832946746 19 0.048967570662692174 23 0.04629469092541158 24 0.04516576224132809 4 0.04326374421755244 17 0.042892246343194794 5 0.04262438256753255 3 0.04152847064694977 11 0.04084217576031826 6 0.04028513962088196 7 0.04025140291114822 8 0.040164063159974235 1 0.03994888474829143 2 0.03948318175507078 0 0.03827999153134126 10 0.03706929355767369 20 0.036042876193283835 12 0.029436152757045947 16 0.028666387047630814 14 0.023305001724042207 15 0.01910750211354022 13 0.013562041287111009 __DUMMY__ 0.004111841429435422 false 1.0 948 21 0.07331675617612085 18 0.06991422494956925 22 0.06798130808906411 19 0.06761823995996061 11 0.061805380549519555 12 0.055835192176217685 10 0.05500325386231534 20 0.0490791073013426 17 0.04592585802298069 24 0.04226107709939253 14 0.04166649870996006 9 0.041032739316418355 0 0.04080709602235446 13 0.04016419020713776 23 0.039511981497627885 16 0.03602725517410272 15 0.021215852142212374 4 0.020780844231763435 5 0.020287170143051807 6 0.017678208800129273 3 0.015962968154983877 7 0.015407520717914597 __DUMMY__ 0.015374940337547114 8 0.015368369486725963 1 0.015166415351448912 2 0.014807551520138077 false 0.0 706 9 0.063578 22 0.063448 17 0.059714 0 0.058609 18 0.055261 10 0.046606 4 0.046182 8 0.045753 7 0.045611 6 0.045532 5 0.045472 1 0.045144 3 0.044961 2 0.044816 19 0.04369 11 0.042728 21 0.038724 16 0.037755 23 0.034401 24 0.027323 20 0.021429 15 0.017823 12 0.01378 14 0.011658 9 0.063578 22 0.063448 17 0.059714 0 0.058609 18 0.055261 10 0.046606 4 0.046182 8 0.045753 7 0.045611 6 0.045532 5 0.045472 1 0.045144 3 0.044961 2 0.044816 19 0.04369 11 0.042728 21 0.038724 16 0.037755 23 0.034401 24 0.027323 20 0.021429 15 0.017823 12 0.01378 14 0.011658 22 0.0641214689408829 18 0.058592157324756686 17 0.058136219425334194 9 0.05784497543640998 0 0.056211716703749165 19 0.049515621703797925 10 0.04911799718752712 11 0.04832163542554256 21 0.046557675916664355 4 0.03948273707467723 16 0.039358896411443065 5 0.03885327673208321 6 0.038597703626364256 8 0.037903006080167695 7 0.0378087425673524 1 0.03747603988910529 2 0.037065827682170496 3 0.03702612650499589 23 0.03475763842051549 24 0.029369643512438637 20 0.026846656162074493 12 0.024949069417532773 15 0.01902819998413353 14 0.018602058079727226 13 0.010969414368359602 __DUMMY__ 0.0034854954221937517 false 1.0 707 9 0.0673 22 0.066237 0 0.055448 18 0.054219 17 0.053746 4 0.049928 5 0.049112 8 0.048447 7 0.048408 1 0.048403 6 0.048344 3 0.04802 2 0.047337 10 0.046508 21 0.043224 11 0.042526 19 0.039681 23 0.035397 24 0.028281 16 0.025533 20 0.017365 12 0.014301 14 0.011254 15 0.01098 9 0.0673 22 0.066237 0 0.055448 18 0.054219 17 0.053746 4 0.049928 5 0.049112 8 0.048447 7 0.048408 1 0.048403 6 0.048344 3 0.04802 2 0.047337 10 0.046508 21 0.043224 11 0.042526 19 0.039681 23 0.035397 24 0.028281 16 0.025533 20 0.017365 12 0.014301 14 0.011254 15 0.01098 22 0.06678730048261443 18 0.06071415328207313 21 0.05578236875820145 9 0.05548728283039481 19 0.05228779108277473 17 0.05125303406076541 11 0.05075010030074775 10 0.04952703349803335 0 0.04934761600164612 23 0.03753726173469521 4 0.03729121111000568 5 0.03662329194207746 6 0.03515401546040839 24 0.034823036264042775 8 0.03419743344334532 7 0.034184659127079006 3 0.03414228832312734 1 0.034047820155827586 2 0.03332883163208455 12 0.032111933573937615 16 0.03178349368139813 20 0.03154818814423519 14 0.024069976143763484 13 0.016965027724312638 15 0.016277694049935666 __DUMMY__ 0.003977157192472787 false 1.0 949 21 0.07101200318161359 18 0.068403951023532 19 0.06788106956603887 22 0.06476311021911778 11 0.05704502218058656 12 0.05445634551670636 20 0.05304939446261509 10 0.05124645549958521 24 0.04609391883693554 17 0.044280012111432655 23 0.043127251847973655 14 0.043020592792196354 13 0.03949298225171692 9 0.038245440150521955 16 0.03712540890804825 0 0.036221548996147296 15 0.02625015465114573 4 0.021630244837630232 5 0.021132171221342408 6 0.01841812711338516 3 0.01716158824959681 7 0.016413409467266542 8 0.016374398606621016 1 0.016146913921706696 2 0.01579491344901339 __DUMMY__ 0.015213570937523985 false 0.0 708 9 0.066106 22 0.062773 0 0.057615 17 0.055794 18 0.050984 4 0.050501 8 0.049784 7 0.049586 5 0.049518 6 0.049489 1 0.049411 3 0.049192 2 0.048749 10 0.045428 11 0.040847 19 0.038179 21 0.037493 23 0.034444 16 0.030265 24 0.027339 15 0.017634 20 0.016885 14 0.011749 12 0.010233 9 0.066106 22 0.062773 0 0.057615 17 0.055794 18 0.050984 4 0.050501 8 0.049784 7 0.049586 5 0.049518 6 0.049489 1 0.049411 3 0.049192 2 0.048749 10 0.045428 11 0.040847 19 0.038179 21 0.037493 23 0.034444 16 0.030265 24 0.027339 15 0.017634 20 0.016885 14 0.011749 12 0.010233 22 0.0649963014874035 9 0.05926092658873006 18 0.05592215842341486 17 0.05433593241962551 0 0.05421688942103534 21 0.04821757115874857 11 0.04797331650905041 10 0.04781763743662724 19 0.046206749475107875 4 0.041882942645491826 5 0.0411094356870389 6 0.0405150159058719 8 0.03983127224687411 7 0.03971377889387061 1 0.03951007441205727 3 0.03929224286691289 2 0.03894595965448566 23 0.03525151230306115 16 0.03302401899194874 24 0.03063837695391173 20 0.024361891551091575 12 0.024209500940721763 14 0.01968577830079045 15 0.017840454258527635 13 0.011769024945831852 __DUMMY__ 0.0034712365217686573 false 1.0 709 9 0.070307 22 0.068167 0 0.065485 17 0.062052 18 0.054495 6 0.051101 4 0.051046 5 0.050341 7 0.049909 8 0.04978 1 0.049668 2 0.048721 3 0.047453 10 0.047106 11 0.045875 21 0.040064 19 0.034566 23 0.031586 16 0.028865 24 0.018984 12 0.01532 20 0.007583 15 0.006556 14 0.00497 9 0.070307 22 0.068167 0 0.065485 17 0.062052 18 0.054495 6 0.051101 4 0.051046 5 0.050341 7 0.049909 8 0.04978 1 0.049668 2 0.048721 3 0.047453 10 0.047106 11 0.045875 21 0.040064 19 0.034566 23 0.031586 16 0.028865 24 0.018984 12 0.01532 20 0.007583 15 0.006556 14 0.00497 22 0.06712809962871576 9 0.061989651340984955 0 0.06027090131998997 17 0.05931892595369188 18 0.05706041789367063 11 0.05041082639800906 10 0.048667895629284655 21 0.04760421254472438 19 0.043614078924578234 4 0.04267167366616349 6 0.04219396908537823 5 0.042029654651398976 7 0.04070814138729949 8 0.04068504461630371 1 0.04048043611084476 2 0.03977047537233723 3 0.038953803271385055 16 0.034053182101333575 23 0.03297092902241149 12 0.025710989671858635 24 0.024863811743517057 20 0.01810534043692747 14 0.014581336028729292 15 0.012125670635057005 13 0.01077315583369154 __DUMMY__ 0.003257376731713301 false 1.0 950 18 0.07200794006142276 19 0.06755310091350276 21 0.06389098734692918 20 0.05880255158299559 22 0.05805547630239779 10 0.05457966546207505 14 0.053647635488748506 12 0.05155277243682246 11 0.05048477150381529 24 0.04489352124611316 13 0.04474934747747328 17 0.0439863654711895 15 0.04306534845802811 23 0.041918723813783365 16 0.0395669350873556 9 0.03550642732672622 0 0.032873635148466175 4 0.01937184758496037 5 0.018915070762867872 6 0.016523634322477394 3 0.015423479142687685 8 0.014786332542035908 7 0.014756608648707132 1 0.014524349703542936 __DUMMY__ 0.014337050394704079 2 0.014226421770171879 false 0.0 951 22 0.06487508001976598 18 0.06045516659903499 17 0.05864722732825232 19 0.056639090943079395 21 0.05589326403355608 11 0.05527264455886012 0 0.0539260075369582 9 0.04936020316177979 10 0.048178738580378924 16 0.04491250210934915 12 0.03922684330542904 23 0.03569846581913241 24 0.03310807741854889 20 0.03304609220445945 4 0.03113919423990947 5 0.030579512522006688 6 0.030335568884113553 8 0.028438530062696157 7 0.028386309069901552 1 0.02816409527956842 2 0.02766495294178986 3 0.027037844551162878 14 0.023856036680250797 13 0.02248735626504575 15 0.019389862068434773 __DUMMY__ 0.01328133381653532 false 0.0 710 9 0.067187 22 0.065277 0 0.061619 17 0.059673 18 0.054849 10 0.049229 4 0.047447 8 0.046907 6 0.046885 7 0.046801 5 0.046724 1 0.046434 3 0.045965 2 0.045941 11 0.044801 19 0.040863 21 0.038902 16 0.034248 23 0.031263 24 0.023879 20 0.016314 15 0.014936 12 0.012736 14 0.011118 9 0.067187 22 0.065277 0 0.061619 17 0.059673 18 0.054849 10 0.049229 4 0.047447 8 0.046907 6 0.046885 7 0.046801 5 0.046724 1 0.046434 3 0.045965 2 0.045941 11 0.044801 19 0.040863 21 0.038902 16 0.034248 23 0.031263 24 0.023879 20 0.016314 15 0.014936 12 0.012736 14 0.011118 22 0.06564394073093856 9 0.060326624152494714 0 0.05836668504988024 17 0.05828409694343378 18 0.05795209880266083 10 0.050358065742409114 11 0.049907589223801695 19 0.04725901759521358 21 0.04689914973134307 4 0.04051566693498829 5 0.039870739071412906 6 0.03971360860424714 8 0.03886900185484203 7 0.03878680285152348 1 0.03850021526153346 2 0.038001777188951764 3 0.037838976677690844 16 0.03699800379473451 23 0.03274516342586538 24 0.02710432372778387 12 0.02433482342242447 20 0.02292093360383374 14 0.017919847385327738 15 0.01671750655510299 13 0.01079662514947491 __DUMMY__ 0.0033687165180871577 false 1.0 952 21 0.06832313330142749 18 0.06702627934991648 22 0.06546222664384738 11 0.05971032975782172 19 0.05941923959866064 10 0.056304692056000076 12 0.05298855354966278 17 0.04482875795893314 9 0.04447296670678432 0 0.04314165993660456 14 0.042204265453653085 13 0.04177650885782988 20 0.04172051286877361 23 0.037802132172154675 24 0.03659898473395692 16 0.03134772942432665 4 0.024905179473564514 5 0.024419925301517646 6 0.02242793348520612 15 0.02191678504138505 7 0.020015660405650667 8 0.019978381591484434 3 0.019958155783208153 1 0.01981602894913786 2 0.01941448765762565 __DUMMY__ 0.014019489940866652 false 0.0 953 18 0.0708456397604968 21 0.0698638244300594 19 0.0681728821928788 22 0.06600314157784969 11 0.057799105243438544 10 0.054670082845491894 20 0.05206717290851264 12 0.05177298816785158 17 0.045827362756544816 24 0.0437149385694069 14 0.043107572779949796 9 0.0406258035997282 23 0.04019741029752025 0 0.03860964651779711 13 0.03771380316439491 16 0.0370785250098759 15 0.026682008034641484 4 0.021182616894354106 5 0.02067863262103732 6 0.017958541167781755 3 0.016934611224917222 7 0.016096238491271158 8 0.016079166004954598 1 0.015843357320660056 2 0.015482931080321847 __DUMMY__ 0.014991997338263414 false 0.0 711 9 0.067925 22 0.06189 0 0.057161 17 0.053732 4 0.050707 3 0.050317 8 0.050253 7 0.050044 1 0.049947 5 0.049861 18 0.049674 6 0.049434 2 0.049304 10 0.048132 11 0.040207 19 0.037268 21 0.036133 23 0.031329 16 0.029438 24 0.026696 15 0.021269 20 0.0162 14 0.015943 12 0.007136 9 0.067925 22 0.06189 0 0.057161 17 0.053732 4 0.050707 3 0.050317 8 0.050253 7 0.050044 1 0.049947 5 0.049861 18 0.049674 6 0.049434 2 0.049304 10 0.048132 11 0.040207 19 0.037268 21 0.036133 23 0.031329 16 0.029438 24 0.026696 15 0.021269 20 0.0162 14 0.015943 12 0.007136 22 0.06406314158825145 9 0.061811895504101946 0 0.05600970668448519 17 0.054672401684947684 18 0.05456638857082202 10 0.04945274781842656 11 0.04682119857670197 21 0.044899263165194804 19 0.043935824627924586 4 0.04344505126221096 5 0.04273414767577441 6 0.04223974144649405 8 0.04188018661370199 7 0.041753172373450685 1 0.04158793826750343 3 0.04141994872033094 2 0.04100891301413273 16 0.033000727018435254 23 0.03281143158303101 24 0.028237319099198775 20 0.02153974152185929 12 0.02012443117105899 14 0.019765989735334017 15 0.019329860251922158 13 0.009663590563147207 __DUMMY__ 0.003225241461557798 false 1.0 712 21 0.087877 22 0.079538 19 0.068072 11 0.067262 18 0.066142 12 0.064369 23 0.048309 24 0.047651 17 0.047622 9 0.043808 10 0.04236 20 0.041877 0 0.041522 13 0.035019 16 0.028904 14 0.02777 4 0.025774 5 0.02447 6 0.021961 7 0.018388 8 0.018287 3 0.018032 1 0.017795 2 0.01719 21 0.087877 22 0.079538 19 0.068072 11 0.067262 18 0.066142 12 0.064369 23 0.048309 24 0.047651 17 0.047622 9 0.043808 10 0.04236 20 0.041877 0 0.041522 13 0.035019 16 0.028904 14 0.02777 4 0.025774 5 0.02447 6 0.021961 7 0.018388 8 0.018287 3 0.018032 1 0.017795 2 0.01719 21 0.08051409479519613 22 0.07348805895722661 19 0.06715936613169161 18 0.06657514432024791 11 0.06428190521163074 12 0.06055514847239253 10 0.047116093283713814 17 0.046905911608278984 24 0.04559462991595067 20 0.04502726183570278 23 0.04453750089383721 9 0.04228772823052148 0 0.041189538853425314 13 0.037574490029633534 14 0.03381885236400444 16 0.0328801469307968 4 0.024149916741126726 5 0.02326545838076322 6 0.02080446252031933 3 0.01785653489699832 7 0.017852048048057532 8 0.01778741527537002 1 0.017441765281383005 2 0.016959663935363984 15 0.00999832741327056 __DUMMY__ 0.0043785356730969395 false 1.0 954 21 0.07043059415891267 18 0.06941282698566441 19 0.06415384397563159 12 0.06043190920693089 22 0.06021820953879273 11 0.05615838201089084 10 0.05474137425562891 14 0.05457068911725551 20 0.05368981009535069 13 0.053098936403535746 24 0.0428771318527699 23 0.041430265239294634 17 0.04072744911227154 9 0.03575775426525913 15 0.0345770417989682 0 0.03401837348519079 16 0.03373091246842055 4 0.01949471569959324 5 0.01904928973020689 6 0.016726606634830186 __DUMMY__ 0.014474017824708479 3 0.01437746917279609 8 0.014148380942779587 7 0.014130834923815366 1 0.013931347572885939 2 0.013641833527615685 false 0.0 955 22 0.06458257816057851 18 0.05735380048105737 9 0.05665716148020998 17 0.05465293821808967 0 0.054343465893080374 11 0.05068492180198543 21 0.05053909974101919 10 0.04965620256206988 19 0.048060983142328276 4 0.03818527802262509 5 0.03759828494288594 6 0.0370800023906645 8 0.035843691422025176 7 0.03579145909637692 1 0.03557011141241177 16 0.03527444302718456 2 0.03504925465266955 3 0.03497723885824635 23 0.034184166972970005 12 0.029496013096485727 24 0.029218942617200306 20 0.025322940310512614 14 0.02233552243484192 15 0.017959488224216842 13 0.01677958629376735 __DUMMY__ 0.012802424744496853 false 0.0 713 17 0.09424 0 0.091465 16 0.083558 11 0.06215 18 0.053734 22 0.053602 19 0.049324 9 0.048684 12 0.048011 10 0.047606 6 0.038005 21 0.034525 7 0.032604 8 0.032594 1 0.032149 2 0.03192 4 0.031155 5 0.030503 13 0.027863 23 0.026624 3 0.023305 15 0.013788 20 0.009872 24 0.002722 17 0.09424 0 0.091465 16 0.083558 11 0.06215 18 0.053734 22 0.053602 19 0.049324 9 0.048684 12 0.048011 10 0.047606 6 0.038005 21 0.034525 7 0.032604 8 0.032594 1 0.032149 2 0.03192 4 0.031155 5 0.030503 13 0.027863 23 0.026624 3 0.023305 15 0.013788 20 0.009872 24 0.002722 17 0.07604220061355464 0 0.07313196693184079 16 0.06303411626334007 22 0.05818085903026191 11 0.057397484066263216 18 0.05569942484712331 19 0.0506240655933353 9 0.05002564532445667 10 0.04737310086455059 21 0.0435296557505451 12 0.04273977594687138 6 0.036278933237596726 4 0.033074804189116395 8 0.032660865822989917 7 0.0326307360575487 5 0.0324807224819273 1 0.032324998668643384 2 0.03194140258356679 23 0.031434794141497135 3 0.027170473045930392 13 0.025125283448957272 20 0.01969482872675755 24 0.016954110883367412 15 0.016160249850547287 14 0.011131193530438099 __DUMMY__ 0.0031583080989724933 false 1.0 714 9 0.070457 22 0.055659 4 0.055496 8 0.055238 3 0.055215 7 0.05487 1 0.054613 5 0.054557 2 0.054297 6 0.054268 0 0.052635 10 0.049947 18 0.049235 17 0.048956 23 0.032798 15 0.031993 19 0.029139 11 0.028878 21 0.028152 14 0.023094 24 0.022455 16 0.021874 20 0.013625 13 0.002548 9 0.070457 22 0.055659 4 0.055496 8 0.055238 3 0.055215 7 0.05487 1 0.054613 5 0.054557 2 0.054297 6 0.054268 0 0.052635 10 0.049947 18 0.049235 17 0.048956 23 0.032798 15 0.031993 19 0.029139 11 0.028878 21 0.028152 14 0.023094 24 0.022455 16 0.021874 20 0.013625 13 0.002548 9 0.06303566637933997 22 0.06009970397434323 18 0.05338265191864076 0 0.05330956690808633 17 0.05182096783192878 10 0.049565910370180065 4 0.046680373023799515 5 0.04593603346524387 6 0.045550035099211884 8 0.04532041871057224 7 0.04512683837075455 1 0.04490050715824117 3 0.044809223947910516 2 0.04446355806971831 11 0.040178822930986964 21 0.04001684956459298 19 0.038923170086205036 23 0.034044128475004105 16 0.028878411515193433 24 0.026304983554948903 15 0.02482908544623061 14 0.022976981670107165 20 0.019996183056767494 12 0.0160685029532583 13 0.010677877946522304 __DUMMY__ 0.0031035475722116955 false 1.0 956 22 0.06458257816057851 18 0.05735380048105737 9 0.05665716148020998 17 0.05465293821808967 0 0.054343465893080374 11 0.05068492180198543 21 0.05053909974101919 10 0.04965620256206988 19 0.048060983142328276 4 0.03818527802262509 5 0.03759828494288594 6 0.0370800023906645 8 0.035843691422025176 7 0.03579145909637692 1 0.03557011141241177 16 0.03527444302718456 2 0.03504925465266955 3 0.03497723885824635 23 0.034184166972970005 12 0.029496013096485727 24 0.029218942617200306 20 0.025322940310512614 14 0.02233552243484192 15 0.017959488224216842 13 0.01677958629376735 __DUMMY__ 0.012802424744496853 false 0.0 715 9 0.065482 22 0.059825 0 0.05326 3 0.051535 4 0.051109 17 0.050935 8 0.050917 7 0.050697 5 0.050486 1 0.050459 2 0.050038 6 0.049633 18 0.048072 10 0.046171 19 0.037386 11 0.03681 21 0.034917 23 0.033781 16 0.029724 24 0.029549 15 0.025808 20 0.019601 14 0.018288 12 0.005518 9 0.065482 22 0.059825 0 0.05326 3 0.051535 4 0.051109 17 0.050935 8 0.050917 7 0.050697 5 0.050486 1 0.050459 2 0.050038 6 0.049633 18 0.048072 10 0.046171 19 0.037386 11 0.03681 21 0.034917 23 0.033781 16 0.029724 24 0.029549 15 0.025808 20 0.019601 14 0.018288 12 0.005518 22 0.06262335349310728 9 0.06094813193504164 0 0.054044817776295336 18 0.053275938925984825 17 0.05313741987356614 10 0.04822968799192002 11 0.044458652690182655 4 0.04430256909787501 5 0.043696743622747454 21 0.043504497434034846 19 0.04330440692205141 6 0.04302177858295242 8 0.04294610651730484 7 0.042816114046743216 3 0.042762750705528166 1 0.04258624341141576 2 0.042109615660158674 23 0.03412500976275604 16 0.03283955205846347 24 0.029480302465459265 20 0.0227717169920433 15 0.021655020106176585 14 0.02054732962071516 12 0.01851980879879396 13 0.009084169185671825 __DUMMY__ 0.003208262323010703 false 1.0 957 22 0.0616946953607367 17 0.06145238323596162 0 0.05991931851427858 18 0.056079411547208476 9 0.05377752414570155 11 0.05227931082523067 19 0.04836803470807855 10 0.04769834008137606 21 0.047675801682409084 16 0.04440664568809822 6 0.037106412059660455 4 0.03672981098914978 5 0.03618271291073587 8 0.0351609840443163 7 0.0351027448187115 1 0.034932079221737695 2 0.03438052963592194 12 0.03389449445934169 23 0.03369961724428416 3 0.03271697112970651 24 0.02587611759481805 20 0.023726260615815255 13 0.01940111697609584 14 0.018057633160892473 15 0.01733490064406752 __DUMMY__ 0.012346148705665307 false 0.0 716 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.07085336779262123 21 0.06650428021693423 19 0.06372840207461275 20 0.06187297708724403 23 0.058487081669695615 22 0.05769461167103742 18 0.05246222267188136 12 0.04713469403420595 11 0.03926525903317472 17 0.03590323678647027 4 0.034689019909085184 9 0.03413299082231774 16 0.034014886621733624 5 0.03400505908174159 3 0.03234527913255578 14 0.030436048948117387 6 0.03022108879688307 8 0.029912555592249247 7 0.029763492136845385 1 0.02958874858496857 2 0.029222649111157278 10 0.02695117339204145 13 0.02386962703778938 15 0.022610888328866596 0 0.019802076315842066 __DUMMY__ 0.004528283149928186 false 1.0 958 22 0.06458257816057851 18 0.05735380048105737 9 0.05665716148020998 17 0.05465293821808967 0 0.054343465893080374 11 0.05068492180198543 21 0.05053909974101919 10 0.04965620256206988 19 0.048060983142328276 4 0.03818527802262509 5 0.03759828494288594 6 0.0370800023906645 8 0.035843691422025176 7 0.03579145909637692 1 0.03557011141241177 16 0.03527444302718456 2 0.03504925465266955 3 0.03497723885824635 23 0.034184166972970005 12 0.029496013096485727 24 0.029218942617200306 20 0.025322940310512614 14 0.02233552243484192 15 0.017959488224216842 13 0.01677958629376735 __DUMMY__ 0.012802424744496853 false 0.0 717 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.07128335377008953 21 0.06649164274385376 19 0.06377973181629279 20 0.061961660056509466 23 0.05860331358629427 22 0.05760867430222073 18 0.052441187473813176 12 0.047134205122288456 11 0.0392918542574593 17 0.03580797150182516 4 0.03471841869713242 16 0.034076969040655956 9 0.034066207539683764 5 0.033953216803351186 3 0.03223507456462552 14 0.03044303830512851 6 0.030222008495552212 8 0.02987939140530675 7 0.02971492017047366 1 0.029498622198262388 2 0.029103107910877304 10 0.02691334154262178 13 0.023831796627157616 15 0.022609943962708746 0 0.019802067070163205 __DUMMY__ 0.004528281035652331 false 1.0 959 22 0.06458257816057851 18 0.05735380048105737 9 0.05665716148020998 17 0.05465293821808967 0 0.054343465893080374 11 0.05068492180198543 21 0.05053909974101919 10 0.04965620256206988 19 0.048060983142328276 4 0.03818527802262509 5 0.03759828494288594 6 0.0370800023906645 8 0.035843691422025176 7 0.03579145909637692 1 0.03557011141241177 16 0.03527444302718456 2 0.03504925465266955 3 0.03497723885824635 23 0.034184166972970005 12 0.029496013096485727 24 0.029218942617200306 20 0.025322940310512614 14 0.02233552243484192 15 0.017959488224216842 13 0.01677958629376735 __DUMMY__ 0.012802424744496853 false 0.0 718 24 0.094962 23 0.075706 20 0.070914 21 0.057678 19 0.055927 4 0.049822 3 0.049736 5 0.048965 22 0.046973 8 0.045624 7 0.045427 1 0.045227 2 0.04488 6 0.044253 12 0.037325 18 0.034503 9 0.028924 16 0.028558 17 0.024777 15 0.023399 14 0.020034 11 0.016458 13 0.00893 10 9.96E-4 24 0.094962 23 0.075706 20 0.070914 21 0.057678 19 0.055927 4 0.049822 3 0.049736 5 0.048965 22 0.046973 8 0.045624 7 0.045427 1 0.045227 2 0.04488 6 0.044253 12 0.037325 18 0.034503 9 0.028924 16 0.028558 17 0.024777 15 0.023399 14 0.020034 11 0.016458 13 0.00893 10 9.96E-4 24 0.07023755324273617 21 0.06643240790550568 19 0.06374710802779879 20 0.061950979103025536 23 0.05844321991211669 22 0.05798085134450648 18 0.05263593580889277 12 0.04710436721974872 11 0.03927648308516631 17 0.03595507999954008 4 0.034705377778879956 9 0.034146080097835846 5 0.03402561877675957 16 0.03400182916479693 3 0.03229720302467192 14 0.030531311769065077 6 0.03026499197274603 8 0.02984580215043516 7 0.029771443417751054 1 0.0295341345207191 2 0.02917924059482189 10 0.027088456031562482 13 0.023899520099563722 15 0.02261463412561823 0 0.019802085561529546 __DUMMY__ 0.004528285264206011 false 1.0 719 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.07085336779262125 21 0.06650428021693425 19 0.06372840207461275 20 0.06187297708724403 23 0.05848708166969562 22 0.05769461167103743 18 0.05246222267188136 12 0.047134694034205955 11 0.03926525903317472 17 0.035903236786470276 4 0.034689019909085184 9 0.03413299082231774 16 0.034014886621733624 5 0.0340050590817416 3 0.03234527913255578 14 0.03043604894811738 6 0.030221088796883074 8 0.02991255559224925 7 0.029763492136845388 1 0.029588748584968575 2 0.02922264911115728 10 0.026951173392041443 13 0.02386962703778938 15 0.022610888328866596 0 0.019802076315842063 __DUMMY__ 0.0045282831499281855 false 1.0 960 21 0.07331675617612085 18 0.06991422494956925 22 0.06798130808906411 19 0.06761823995996061 11 0.061805380549519555 12 0.055835192176217685 10 0.05500325386231534 20 0.0490791073013426 17 0.04592585802298069 24 0.04226107709939253 14 0.04166649870996006 9 0.041032739316418355 0 0.04080709602235446 13 0.04016419020713776 23 0.039511981497627885 16 0.03602725517410272 15 0.021215852142212374 4 0.020780844231763435 5 0.020287170143051807 6 0.017678208800129273 3 0.015962968154983877 7 0.015407520717914597 __DUMMY__ 0.015374940337547114 8 0.015368369486725963 1 0.015166415351448912 2 0.014807551520138077 false 0.0 961 21 0.07016815019661575 18 0.0683039399731129 22 0.06640285075377987 19 0.06515482343630533 11 0.05934132794478207 10 0.05389194757051563 12 0.05317857456884019 20 0.04744704459740349 17 0.046116971081685554 9 0.04198602493725398 24 0.04141609338863018 0 0.041099789362750674 14 0.040397786817219394 23 0.0397077156722001 13 0.03845779123960662 16 0.035715198709193534 4 0.02288565375020662 5 0.022391951714114153 15 0.022107815436820204 6 0.02001515087472554 3 0.018284191256202495 7 0.017874008955871646 8 0.017844129954209233 1 0.017642357776452317 2 0.01726925556520664 __DUMMY__ 0.014899454466295821 false 0.0 962 21 0.07331675617612085 18 0.06991422494956925 22 0.06798130808906411 19 0.06761823995996061 11 0.061805380549519555 12 0.055835192176217685 10 0.05500325386231534 20 0.0490791073013426 17 0.04592585802298069 24 0.04226107709939253 14 0.04166649870996006 9 0.041032739316418355 0 0.04080709602235446 13 0.04016419020713776 23 0.039511981497627885 16 0.03602725517410272 15 0.021215852142212374 4 0.020780844231763435 5 0.020287170143051807 6 0.017678208800129273 3 0.015962968154983877 7 0.015407520717914597 __DUMMY__ 0.015374940337547114 8 0.015368369486725963 1 0.015166415351448912 2 0.014807551520138077 false 0.0 720 24 0.087795 23 0.076355 20 0.065249 21 0.062624 19 0.050559 22 0.0489 4 0.048058 5 0.047304 3 0.045572 12 0.043802 8 0.042591 6 0.042472 7 0.042126 1 0.04198 2 0.041591 18 0.039084 9 0.028887 14 0.027699 15 0.025423 11 0.024084 17 0.021234 13 0.020351 16 0.019149 10 0.007108 24 0.087795 23 0.076355 20 0.065249 21 0.062624 19 0.050559 22 0.0489 4 0.048058 5 0.047304 3 0.045572 12 0.043802 8 0.042591 6 0.042472 7 0.042126 1 0.04198 2 0.041591 18 0.039084 9 0.028887 14 0.027699 15 0.025423 11 0.024084 17 0.021234 13 0.020351 16 0.019149 10 0.007108 21 0.06919851346325501 24 0.06584227772224753 19 0.05952422156829086 22 0.058888332297129406 23 0.058685750555563396 20 0.05740782040529802 18 0.05384622944741166 12 0.05128695152118744 11 0.0435748088967528 9 0.03444511006243078 4 0.0344406963828574 14 0.03441567781870057 5 0.03381227336252586 17 0.033594497288513284 13 0.030898614671599746 3 0.0306593753697023 6 0.030100557100943018 10 0.029961000411907624 8 0.028910281680813082 7 0.028716963086361194 1 0.02850850431418475 2 0.02813043330526939 16 0.028059252545478027 15 0.022473480850507287 0 0.02019876622399129 __DUMMY__ 0.004419609647078228 false 1.0 721 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.08564184855660034 19 0.07962556781774557 24 0.06779236497349793 18 0.0676837683506883 21 0.06416777499914852 12 0.061388867337394605 23 0.05824770785473362 16 0.05188533734449273 22 0.04686333756294011 14 0.04493329081630019 13 0.043590253823714974 15 0.041259925472658096 17 0.03994767517898736 11 0.03980122641150678 10 0.037169759352652064 9 0.01929283815977168 4 0.01909286903540738 5 0.018450014288608024 0 0.017490281661422094 3 0.016484601949480128 6 0.015789423260882125 7 0.014961858611018362 8 0.014931849694558212 1 0.014616268051561042 2 0.014456101241901937 __DUMMY__ 0.004435188192327732 false 1.0 963 21 0.0693331527476215 18 0.06860194221677612 19 0.06538340737344611 22 0.06536112276119918 11 0.05815491416849283 10 0.05389147520410556 12 0.05297289858315784 20 0.0485896523181584 17 0.045833656075446316 24 0.04171565705572391 9 0.041496330504759954 14 0.04073152770410587 0 0.04037654633019206 23 0.04022599009288131 13 0.03863355145147614 16 0.03596955549416182 15 0.023066786200435167 4 0.022902293829319666 5 0.022410504454149244 6 0.020041925301996385 3 0.018399855422822728 7 0.017963562217594254 8 0.017932576145249096 1 0.017738548686999627 2 0.01736786452996518 __DUMMY__ 0.014904703129763892 false 0.0 722 20 0.086652 23 0.084587 24 0.082497 12 0.071309 19 0.065587 16 0.053278 21 0.052774 13 0.048437 18 0.040362 15 0.03871 5 0.034226 4 0.033632 6 0.032103 3 0.031897 2 0.03177 1 0.031076 7 0.030579 8 0.03056 14 0.030417 17 0.029538 11 0.028079 22 0.023592 10 0.005474 0 0.002863 20 0.086652 23 0.084587 24 0.082497 12 0.071309 19 0.065587 16 0.053278 21 0.052774 13 0.048437 18 0.040362 15 0.03871 5 0.034226 4 0.033632 6 0.032103 3 0.031897 2 0.03177 1 0.031076 7 0.030579 8 0.03056 14 0.030417 17 0.029538 11 0.028079 22 0.023592 10 0.005474 0 0.002863 20 0.07115576607372438 19 0.06839570605914777 24 0.06533449839731884 12 0.06466682632819645 23 0.0643204095839066 21 0.06366764839456941 18 0.05504961863830407 16 0.046024836460630526 22 0.045044378030944424 13 0.044512511278607905 11 0.04326283829275691 17 0.03730027940809128 14 0.03641698742951263 15 0.031200887845321996 10 0.028154976718793807 5 0.026962852045527636 4 0.026956194059519087 6 0.024506448219509775 3 0.023664040654628307 2 0.022889595663983003 1 0.022745103293185413 7 0.02265792764315383 8 0.022627785292136514 0 0.019460521847911385 9 0.018736196080614533 __DUMMY__ 0.004285166260003588 false 1.0 723 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.07128335377008953 21 0.06649164274385376 19 0.06377973181629279 20 0.061961660056509466 23 0.05860331358629427 22 0.05760867430222073 18 0.052441187473813176 12 0.047134205122288456 11 0.0392918542574593 17 0.03580797150182516 4 0.03471841869713242 16 0.034076969040655956 9 0.034066207539683764 5 0.033953216803351186 3 0.03223507456462552 14 0.03044303830512851 6 0.030222008495552212 8 0.02987939140530675 7 0.02971492017047366 1 0.029498622198262388 2 0.029103107910877304 10 0.02691334154262178 13 0.023831796627157616 15 0.022609943962708746 0 0.019802067070163205 __DUMMY__ 0.004528281035652331 false 1.0 965 21 0.07734975302111521 22 0.06774425867734686 19 0.06699171871221092 18 0.06463519704597062 11 0.06207991337767268 12 0.061382946790088384 20 0.04909938946338401 10 0.04777501697669928 24 0.04661523788085366 23 0.0441077735981274 17 0.043708427265848886 13 0.042286649761469015 14 0.039053700660737954 9 0.03790544999724604 0 0.03781730975118368 16 0.0354949901522701 4 0.022060711853466242 5 0.021544929120729965 6 0.018944443510498545 3 0.01671722202606916 7 0.016354871631684885 15 0.016308175352690957 8 0.01626858220766473 1 0.016086719175295184 __DUMMY__ 0.015952428483317377 2 0.015714183506358104 false 0.0 966 21 0.07560712115766285 19 0.07010420071344645 18 0.06702803834204461 22 0.06515366133942029 12 0.060995619301026205 11 0.05877699525233036 20 0.055777016375793326 24 0.04953242253511636 10 0.04790000386257807 23 0.04541272280046126 17 0.043155321360326175 13 0.042321092192688266 14 0.04091403306883852 16 0.03770093059981638 9 0.0354739287831478 0 0.03451329735190604 15 0.020704292211106288 4 0.020673590662042173 5 0.020174448938295952 6 0.017340569206864935 3 0.01578322967610193 __DUMMY__ 0.015688578506092076 7 0.015043478707697308 8 0.014994464208842383 1 0.014782113294631477 2 0.014448829551722536 false 0.0 724 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.07128335377008953 21 0.06649164274385376 19 0.06377973181629279 20 0.061961660056509466 23 0.05860331358629427 22 0.05760867430222073 18 0.052441187473813176 12 0.047134205122288456 11 0.0392918542574593 17 0.03580797150182516 4 0.03471841869713242 16 0.034076969040655956 9 0.034066207539683764 5 0.033953216803351186 3 0.03223507456462552 14 0.03044303830512851 6 0.030222008495552212 8 0.02987939140530675 7 0.02971492017047366 1 0.029498622198262388 2 0.029103107910877304 10 0.02691334154262178 13 0.023831796627157616 15 0.022609943962708746 0 0.019802067070163205 __DUMMY__ 0.004528281035652331 false 1.0 967 21 0.07331675617612085 18 0.06991422494956925 22 0.06798130808906411 19 0.06761823995996061 11 0.061805380549519555 12 0.055835192176217685 10 0.05500325386231534 20 0.0490791073013426 17 0.04592585802298069 24 0.04226107709939253 14 0.04166649870996006 9 0.041032739316418355 0 0.04080709602235446 13 0.04016419020713776 23 0.039511981497627885 16 0.03602725517410272 15 0.021215852142212374 4 0.020780844231763435 5 0.020287170143051807 6 0.017678208800129273 3 0.015962968154983877 7 0.015407520717914597 __DUMMY__ 0.015374940337547114 8 0.015368369486725963 1 0.015166415351448912 2 0.014807551520138077 false 0.0 725 21 0.118806 12 0.105273 19 0.080944 11 0.080485 22 0.076876 13 0.072447 24 0.068431 18 0.060451 20 0.060427 23 0.060081 14 0.048438 17 0.034488 16 0.032445 10 0.028254 0 0.02363 9 0.018677 4 0.010484 5 0.010002 6 0.00581 15 0.00152 3 7.08E-4 1 5.88E-4 7 4.35E-4 8 3.01E-4 21 0.118806 12 0.105273 19 0.080944 11 0.080485 22 0.076876 13 0.072447 24 0.068431 18 0.060451 20 0.060427 23 0.060081 14 0.048438 17 0.034488 16 0.032445 10 0.028254 0 0.02363 9 0.018677 4 0.010484 5 0.010002 6 0.00581 15 0.00152 3 7.08E-4 1 5.88E-4 7 4.35E-4 8 3.01E-4 21 0.09670974779529966 12 0.08177555618392299 19 0.07404613038972395 22 0.07226847466949708 11 0.0709688886177519 18 0.06374530412727605 24 0.056678475503058504 13 0.05667345653057049 20 0.05503451870753641 23 0.051044006920963406 14 0.044341632305167335 10 0.039846590760854554 17 0.03971196194014475 16 0.03431642433458541 0 0.031471494704108635 9 0.02924504004079194 4 0.01631630747939691 5 0.015823473263372655 6 0.012433152074087336 15 0.010337815389664697 3 0.00895252992496686 7 0.008565874105711493 1 0.008501254801813019 8 0.008471717509894096 2 0.008038427076887128 __DUMMY__ 0.004681744842952793 false 1.0 968 21 0.07331675617612085 18 0.06991422494956925 22 0.06798130808906411 19 0.06761823995996061 11 0.061805380549519555 12 0.055835192176217685 10 0.05500325386231534 20 0.0490791073013426 17 0.04592585802298069 24 0.04226107709939253 14 0.04166649870996006 9 0.041032739316418355 0 0.04080709602235446 13 0.04016419020713776 23 0.039511981497627885 16 0.03602725517410272 15 0.021215852142212374 4 0.020780844231763435 5 0.020287170143051807 6 0.017678208800129273 3 0.015962968154983877 7 0.015407520717914597 __DUMMY__ 0.015374940337547114 8 0.015368369486725963 1 0.015166415351448912 2 0.014807551520138077 false 0.0 726 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.07128335377008953 21 0.06649164274385376 19 0.06377973181629279 20 0.061961660056509466 23 0.05860331358629427 22 0.05760867430222073 18 0.052441187473813176 12 0.047134205122288456 11 0.0392918542574593 17 0.03580797150182516 4 0.03471841869713242 16 0.034076969040655956 9 0.034066207539683764 5 0.033953216803351186 3 0.03223507456462552 14 0.03044303830512851 6 0.030222008495552212 8 0.02987939140530675 7 0.02971492017047366 1 0.029498622198262388 2 0.029103107910877304 10 0.02691334154262178 13 0.023831796627157616 15 0.022609943962708746 0 0.019802067070163205 __DUMMY__ 0.004528281035652331 false 1.0 727 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.07128335377008953 21 0.06649164274385376 19 0.06377973181629279 20 0.061961660056509466 23 0.05860331358629427 22 0.05760867430222073 18 0.052441187473813176 12 0.047134205122288456 11 0.0392918542574593 17 0.03580797150182516 4 0.03471841869713242 16 0.034076969040655956 9 0.034066207539683764 5 0.033953216803351186 3 0.03223507456462552 14 0.03044303830512851 6 0.030222008495552212 8 0.02987939140530675 7 0.02971492017047366 1 0.029498622198262388 2 0.029103107910877304 10 0.02691334154262178 13 0.023831796627157616 15 0.022609943962708746 0 0.019802067070163205 __DUMMY__ 0.004528281035652331 false 1.0 969 21 0.06726841190498042 18 0.06638932700645671 22 0.06444784508882513 19 0.064353547007613 11 0.057257817488379145 12 0.05216106699390707 10 0.05113162669185265 17 0.04826141551542198 20 0.04724673908333623 0 0.041857183303814174 24 0.041546173368427544 9 0.041270949264335784 23 0.040242915739248285 16 0.03901758396340398 14 0.03805748844667593 13 0.03696021139149151 4 0.02388198114661104 5 0.023379362006791048 15 0.023337630752613 6 0.02148523537407265 3 0.01934378671662224 7 0.019341756384263338 8 0.019333072626149493 1 0.01911501215531202 2 0.01872372159021823 __DUMMY__ 0.014588138989177473 false 0.0 728 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.08569758869450511 19 0.07970590616668678 18 0.0679836535096025 24 0.06791632979849442 21 0.06421282926220702 12 0.06123664811178653 23 0.05844407875058751 16 0.05174007625582457 22 0.04702906796246618 14 0.0449068539898497 13 0.04359584409555167 15 0.04125158956644198 17 0.03996626051667436 11 0.03967684735833516 10 0.037163278227421985 9 0.019159166189634244 4 0.019067348554370405 5 0.01835672470677236 0 0.01749028977988403 3 0.016401059022828447 6 0.015743013601908273 7 0.014982289030559832 8 0.01478935647247105 1 0.01467800942996399 2 0.014370700694163387 __DUMMY__ 0.004435190251008501 false 1.0 729 16 0.115809 17 0.096155 19 0.087725 20 0.075418 18 0.064461 0 0.054793 24 0.051973 23 0.050876 12 0.045769 15 0.043946 22 0.039009 21 0.032891 11 0.032156 6 0.023024 10 0.021102 8 0.020954 7 0.020943 1 0.020656 2 0.020078 9 0.019444 4 0.018766 5 0.01777 3 0.015051 13 0.011232 16 0.115809 17 0.096155 19 0.087725 20 0.075418 18 0.064461 0 0.054793 24 0.051973 23 0.050876 12 0.045769 15 0.043946 22 0.039009 21 0.032891 11 0.032156 6 0.023024 10 0.021102 8 0.020954 7 0.020943 1 0.020656 2 0.020078 9 0.019444 4 0.018766 5 0.01777 3 0.015051 13 0.011232 16 0.07952491716511868 19 0.07808830796859566 17 0.07238028598913364 18 0.06665315613263514 20 0.06524990237835454 22 0.0501902441156229 24 0.04890043263024934 21 0.04857221541544448 12 0.047728361048071086 23 0.046917229577518135 0 0.04635675194548267 11 0.04238343144633742 15 0.03775572688303432 10 0.03568768072922934 9 0.028837805373127492 13 0.023273980439871295 6 0.02156970859828619 4 0.020749065846883148 14 0.020313658181976578 5 0.020014859076087743 8 0.019709785437586284 7 0.019686384080823783 1 0.019423113104367486 2 0.018963620917149496 3 0.01696776525550601 __DUMMY__ 0.004101610263507029 false 1.0 970 22 0.06433976929488383 17 0.05829932305005864 18 0.05804448522352887 0 0.056359370875532416 11 0.05425440552248576 21 0.05283012974895858 9 0.05275314042512574 19 0.05154749942368509 10 0.0486479750153425 16 0.041737115589904804 12 0.03607042177238954 4 0.03457641055285461 23 0.0343519328763679 6 0.034076964073742166 5 0.034024373972275805 8 0.0322325938156503 7 0.032183100473256204 1 0.03198379674532264 2 0.03146707611186361 3 0.030601845742029395 24 0.029369336348268917 20 0.02730539525609314 14 0.021683509290699572 13 0.020911385046589563 15 0.017216078576813475 __DUMMY__ 0.013132565176277028 false 0.0 971 22 0.06612635431996666 18 0.05902207338170802 17 0.058167888471014506 11 0.05639364673391657 0 0.05588015361482214 21 0.05574592506524721 19 0.05347143956367769 9 0.05206803557739392 10 0.048963908169209945 16 0.041929429601287385 12 0.03795740769675782 23 0.034232279307801025 4 0.032976991770197105 5 0.03241742561599716 6 0.03223808360725464 24 0.03059321291536728 8 0.03029587062026208 7 0.030253723436809165 1 0.030029587550996436 2 0.029515017177454857 3 0.028819143855514626 20 0.02847681901398601 14 0.02271753737942526 13 0.021799058146933423 15 0.016602260705966293 __DUMMY__ 0.013306726701032631 false 0.0 730 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.08564184855660034 19 0.07962556781774557 24 0.06779236497349793 18 0.0676837683506883 21 0.06416777499914852 12 0.061388867337394605 23 0.05824770785473362 16 0.05188533734449273 22 0.04686333756294011 14 0.04493329081630019 13 0.043590253823714974 15 0.041259925472658096 17 0.03994767517898736 11 0.03980122641150678 10 0.037169759352652064 9 0.01929283815977168 4 0.01909286903540738 5 0.018450014288608024 0 0.017490281661422094 3 0.016484601949480128 6 0.015789423260882125 7 0.014961858611018362 8 0.014931849694558212 1 0.014616268051561042 2 0.014456101241901937 __DUMMY__ 0.004435188192327732 false 1.0 972 21 0.07709232456046443 19 0.06859360770825793 22 0.06810481877020999 18 0.06706871409762337 11 0.062425187593536775 12 0.060706728804356735 20 0.05085772809621369 10 0.050233738440855796 24 0.04627457265941288 17 0.04439391682960303 23 0.04251019402000387 13 0.04211226869219595 14 0.04040602588325339 9 0.038208034073115286 0 0.038190918666515555 16 0.03631774044441136 4 0.02066233987038536 5 0.020164603075850687 15 0.017971098103902083 6 0.01742474427751483 __DUMMY__ 0.015928538153029744 3 0.015504862838618736 7 0.014939103924607499 8 0.014884156253362518 1 0.014686681142438597 2 0.0143373530202599 false 0.0 973 18 0.07165177695047376 21 0.07026531462567094 19 0.06901293159367716 22 0.06564609561289055 11 0.057949257893801454 10 0.055382674318588704 20 0.05329212580159315 12 0.05272114449033287 17 0.04547379017533914 14 0.04428881931951666 24 0.04392537115059264 23 0.04039038755016374 9 0.03985299511390903 13 0.03896768252468602 0 0.03807872728618585 16 0.0373251284097813 15 0.027479244619626485 4 0.02034115844937464 5 0.01984713663047506 6 0.017073406529994065 3 0.016067394673716973 7 0.015184970695086989 8 0.015163187412873265 __DUMMY__ 0.015092730911616435 1 0.01493598177222224 2 0.014590565487810785 false 0.0 731 16 0.105991 17 0.096778 19 0.079123 0 0.076846 18 0.061741 11 0.054192 22 0.05224 20 0.042535 10 0.041759 12 0.038745 9 0.035881 23 0.035662 21 0.034079 15 0.030098 24 0.026077 6 0.025664 8 0.023321 7 0.023082 1 0.022962 2 0.022798 4 0.021383 5 0.021059 3 0.017586 13 0.0104 16 0.105991 17 0.096778 19 0.079123 0 0.076846 18 0.061741 11 0.054192 22 0.05224 20 0.042535 10 0.041759 12 0.038745 9 0.035881 23 0.035662 21 0.034079 15 0.030098 24 0.026077 6 0.025664 8 0.023321 7 0.023082 1 0.022962 2 0.022798 4 0.021383 5 0.021059 3 0.017586 13 0.0104 17 0.07606480491062946 16 0.07563724027362181 19 0.07094370661307886 0 0.06289494651999547 18 0.0627079241207278 22 0.05868172499185222 11 0.055890732410800975 21 0.048245291658541155 10 0.045334318407099006 12 0.04299954919022758 20 0.04193514270526888 9 0.04007486649016002 23 0.03729882912672792 24 0.032110927462730685 6 0.025515781624422248 15 0.02535060040270135 4 0.02410207585923247 5 0.023677612084414674 8 0.023271063429299656 7 0.023145898061972682 1 0.022969241985928403 2 0.022665376095052647 3 0.019976149367455495 13 0.019926801047132653 14 0.014701570799910947 __DUMMY__ 0.003877824361015072 false 1.0 732 23 0.087809 24 0.084971 20 0.083019 12 0.074097 19 0.059565 21 0.056728 13 0.050055 16 0.044647 18 0.038137 4 0.038038 5 0.037181 6 0.03631 2 0.034687 3 0.034284 1 0.033796 8 0.033789 7 0.033769 15 0.032747 14 0.028343 17 0.027704 22 0.024496 11 0.023184 9 0.002414 10 2.3E-4 23 0.087809 24 0.084971 20 0.083019 12 0.074097 19 0.059565 21 0.056728 13 0.050055 16 0.044647 18 0.038137 4 0.038038 5 0.037181 6 0.03631 2 0.034687 3 0.034284 1 0.033796 8 0.033789 7 0.033769 15 0.032747 14 0.028343 17 0.027704 22 0.024496 11 0.023184 9 0.002414 10 2.3E-4 20 0.06895253484682362 24 0.06615778552379004 23 0.06555014755495564 19 0.06509783499788963 21 0.06467602293220472 12 0.064556238781465 18 0.05402167342144474 22 0.04544598649118004 13 0.04434127972786518 16 0.04188313111209524 11 0.040502645450690954 17 0.03666113507327592 14 0.03555128316782609 15 0.029360813596052922 4 0.029358961591143446 5 0.02868636058698583 6 0.026824113529052306 10 0.025891064739145278 3 0.025236265443976356 2 0.02468013715491211 7 0.02458100986770285 8 0.02456972626113027 1 0.024445972591670126 9 0.020379451636429336 0 0.018299514180445783 __DUMMY__ 0.004288909739846348 false 1.0 974 22 0.0658511002822993 18 0.05896692875064402 17 0.05638916727273239 11 0.055715008541088865 21 0.055336861799186454 0 0.05526248891563569 9 0.05305168552305806 19 0.05187576768943885 10 0.04988969105591727 16 0.03898857700975355 12 0.037174097524338506 23 0.03420505618592441 4 0.03400810572742187 5 0.03345180625907304 6 0.03312332533446453 8 0.03125136311972199 7 0.031215729256776785 1 0.031004696518911357 2 0.030492812397883883 24 0.02996542583028653 3 0.02994369514413336 20 0.02762235760242121 14 0.023516729691133813 13 0.02218693302816635 15 0.01630959244898636 __DUMMY__ 0.013200997090601413 false 0.0 733 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.08564184855660034 19 0.07962556781774557 24 0.06779236497349793 18 0.0676837683506883 21 0.06416777499914852 12 0.061388867337394605 23 0.05824770785473362 16 0.05188533734449273 22 0.04686333756294011 14 0.04493329081630019 13 0.043590253823714974 15 0.041259925472658096 17 0.03994767517898736 11 0.03980122641150678 10 0.037169759352652064 9 0.01929283815977168 4 0.01909286903540738 5 0.018450014288608024 0 0.017490281661422094 3 0.016484601949480128 6 0.015789423260882125 7 0.014961858611018362 8 0.014931849694558212 1 0.014616268051561042 2 0.014456101241901937 __DUMMY__ 0.004435188192327732 false 1.0 975 21 0.07412024447460093 19 0.0695728766874296 18 0.06865812638843811 22 0.06618143505347827 11 0.05895265669336296 12 0.057293107317504054 20 0.05420796603465844 10 0.05098010247814613 24 0.04741604108703304 17 0.04377843888525306 23 0.04312291541243691 14 0.04263492824337966 13 0.04059538003769929 9 0.0376509490157419 16 0.03696942273110378 0 0.03588162857662099 15 0.02332889388154584 4 0.0205786698269758 5 0.020078964680147086 6 0.01714960034640941 3 0.01595965237814098 __DUMMY__ 0.015588242598962628 7 0.015051391966974104 8 0.015010512607308044 1 0.014790311947427807 2 0.0144475406492214 false 0.0 734 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.08569758869450511 19 0.07970590616668678 18 0.0679836535096025 24 0.06791632979849442 21 0.06421282926220702 12 0.06123664811178653 23 0.05844407875058751 16 0.05174007625582457 22 0.04702906796246618 14 0.0449068539898497 13 0.04359584409555167 15 0.04125158956644198 17 0.03996626051667436 11 0.03967684735833516 10 0.037163278227421985 9 0.019159166189634244 4 0.019067348554370405 5 0.01835672470677236 0 0.01749028977988403 3 0.016401059022828447 6 0.015743013601908273 7 0.014982289030559832 8 0.01478935647247105 1 0.01467800942996399 2 0.014370700694163387 __DUMMY__ 0.004435190251008501 false 1.0 976 18 0.07649175757125393 10 0.0664112966696885 22 0.06626809530525367 21 0.06505444507431538 19 0.06490141926088842 11 0.060177686229752364 17 0.048034327080775784 12 0.04717120529038096 14 0.04707260733307664 9 0.046135412188620356 0 0.04571470906665633 20 0.0456298199027566 13 0.03958831749561134 16 0.03452401007470433 23 0.03346754386425512 24 0.0327704494408258 15 0.02987569392872825 4 0.0204695896129277 5 0.019996477039987214 6 0.017769644789418712 3 0.016162890740362697 7 0.01578927654005075 8 0.01578123428648484 1 0.015575258384889434 2 0.015208679006505382 __DUMMY__ 0.0139581538218292 false 0.0 977 21 0.07000182877666843 18 0.06877008635601392 19 0.06699247943401845 22 0.06677375328140231 11 0.057614546129447664 10 0.05219029060798465 12 0.05092504286201837 20 0.05051792266426751 17 0.046104858770349894 24 0.04458152891612444 9 0.041354334132105645 14 0.040668316799938854 23 0.04052874294547355 0 0.03878864437039324 16 0.03674806711766298 13 0.03551570863678015 15 0.02467709979383256 4 0.022668322765645007 5 0.022148891583819302 6 0.01944903802314335 3 0.018454519224072905 7 0.017627229609037683 8 0.017615040150127485 1 0.017365493337905585 2 0.016988997483285865 __DUMMY__ 0.014929216228480422 false 0.0 735 20 0.114497 19 0.089348 24 0.08727 23 0.07164 12 0.06869 18 0.0672 16 0.062245 21 0.059805 15 0.052949 13 0.048999 14 0.047429 17 0.034364 22 0.031419 10 0.024681 11 0.024475 4 0.016568 5 0.015599 3 0.015451 7 0.01338 1 0.013024 6 0.013004 8 0.012976 2 0.01272 9 0.002268 20 0.114497 19 0.089348 24 0.08727 23 0.07164 12 0.06869 18 0.0672 16 0.062245 21 0.059805 15 0.052949 13 0.048999 14 0.047429 17 0.034364 22 0.031419 10 0.024681 11 0.024475 4 0.016568 5 0.015599 3 0.015451 7 0.01338 1 0.013024 6 0.013004 8 0.012976 2 0.01272 9 0.002268 20 0.08688095933727452 19 0.0809342951135313 18 0.06977742366761525 24 0.06777183874250958 21 0.0650822185743439 12 0.061277754596606136 23 0.05763670587097541 16 0.05137373260209987 22 0.0476544881682696 14 0.04653251787501922 13 0.04414000810876109 15 0.042183276286371016 17 0.03988572447149165 11 0.03980731810981558 10 0.03873715707181248 9 0.01949955552989629 4 0.017991983107366494 5 0.017276334701783597 0 0.01723617504810375 3 0.015367289463539062 6 0.01449093007051994 7 0.013781451186238622 8 0.01358820558814488 1 0.01347415739076217 2 0.013166560448947035 __DUMMY__ 0.004451938868201494 false 1.0 736 16 0.096063 17 0.087494 19 0.073023 0 0.060377 18 0.05842 20 0.056802 23 0.04435 24 0.043085 22 0.041612 12 0.040404 11 0.038906 15 0.033217 6 0.031164 21 0.030861 9 0.0303 8 0.02935 7 0.029132 1 0.028759 10 0.02852 2 0.028444 4 0.027431 5 0.026726 3 0.024153 13 0.011408 16 0.096063 17 0.087494 19 0.073023 0 0.060377 18 0.05842 20 0.056802 23 0.04435 24 0.043085 22 0.041612 12 0.040404 11 0.038906 15 0.033217 6 0.031164 21 0.030861 9 0.0303 8 0.02935 7 0.029132 1 0.028759 10 0.02852 2 0.028444 4 0.027431 5 0.026726 3 0.024153 13 0.011408 16 0.07100863536052339 17 0.07065488057632593 19 0.06920534051314484 18 0.06276094172150806 0 0.052596734714072425 22 0.05219068370496046 20 0.05213874986995343 11 0.04656906053912521 21 0.045901491059019084 12 0.043248650045441595 23 0.0422552482843651 24 0.04173733431635792 10 0.03957120397546321 9 0.03610154095552088 15 0.030821939157668003 6 0.02707571854720619 4 0.02610769931007689 5 0.025503016505212688 8 0.025253481467890616 7 0.025127318819374973 1 0.024833313912796664 2 0.024473832176932338 3 0.022446566620167807 13 0.021196171252894334 14 0.017463637964235428 __DUMMY__ 0.0037568086297624023 false 1.0 978 18 0.07424022820090427 22 0.06590943722097704 10 0.06445477013748246 21 0.0634119323739187 19 0.06275445493778659 11 0.058804451718091 17 0.048334084761931226 9 0.04730818928678677 0 0.04625276921829127 12 0.045176984580259615 14 0.04461423056979056 20 0.04340352902719141 13 0.037231834602343084 16 0.034115316996285894 23 0.03379485124359793 24 0.03250563607982702 15 0.028729679287085277 4 0.02262507683538868 5 0.022137371300251896 6 0.020067860905388365 3 0.01843511729944155 7 0.018174768130854974 8 0.01816813907799421 1 0.0179594788033461 2 0.017565292893338712 __DUMMY__ 0.013824514511445486 false 0.0 737 20 0.117982 19 0.093783 24 0.089009 18 0.077092 23 0.067941 15 0.054975 16 0.052778 21 0.045349 14 0.039689 12 0.038074 17 0.035928 10 0.033201 22 0.031879 3 0.027554 4 0.023409 5 0.023123 8 0.021513 1 0.021278 7 0.021117 2 0.021048 9 0.02062 13 0.020497 6 0.017374 11 0.004788 20 0.117982 19 0.093783 24 0.089009 18 0.077092 23 0.067941 15 0.054975 16 0.052778 21 0.045349 14 0.039689 12 0.038074 17 0.035928 10 0.033201 22 0.031879 3 0.027554 4 0.023409 5 0.023123 8 0.021513 1 0.021278 7 0.021117 2 0.021048 9 0.02062 13 0.020497 6 0.017374 11 0.004788 20 0.08585019972005169 19 0.08138563683802642 18 0.07571816405564517 24 0.06512230042967407 21 0.05571410548353473 23 0.053700355579123046 22 0.047882201619259226 16 0.046604059485548854 10 0.04566826344506064 15 0.04455662601916775 12 0.04395956731524979 14 0.043146792576924414 17 0.042089835326435295 11 0.03054717457718395 9 0.030336313670979567 13 0.029725171986007687 4 0.021649307968591804 3 0.021563762751138384 5 0.02124994778028945 0 0.019850260346816175 8 0.018328178907826887 7 0.01814161318399368 1 0.018082490447595863 2 0.017794061892210104 6 0.01724158574917174 __DUMMY__ 0.004092022844493559 false 1.0 979 21 0.07447540942674581 19 0.06873061096877958 18 0.06803686493020891 22 0.06655568819690594 11 0.06048313352975199 12 0.0586112220985045 20 0.05200765193014965 10 0.051155038564589764 24 0.04576355541232098 17 0.04476199364959353 23 0.042425853427316904 13 0.04152082922058261 14 0.04143708986247242 9 0.03808694301043512 0 0.03788338494866757 16 0.03728794446606373 15 0.021228872077457786 4 0.020671879041570702 5 0.020177723161794642 6 0.017517914557089245 3 0.015770035240590948 __DUMMY__ 0.015535345499999461 7 0.015190984171212356 8 0.01514710206853212 1 0.014940193727280374 2 0.014596736811383387 false 0.0 738 19 0.113917 16 0.089703 18 0.082213 20 0.081639 17 0.06921 21 0.068783 22 0.065422 11 0.060341 24 0.055092 12 0.05313 10 0.052811 23 0.046646 0 0.044804 15 0.031155 14 0.027573 9 0.025176 13 0.020192 4 0.004219 5 0.004142 3 0.001959 6 0.001271 7 3.66E-4 1 1.67E-4 8 7.0E-5 19 0.113917 16 0.089703 18 0.082213 20 0.081639 17 0.06921 21 0.068783 22 0.065422 11 0.060341 24 0.055092 12 0.05313 10 0.052811 23 0.046646 0 0.044804 15 0.031155 14 0.027573 9 0.025176 13 0.020192 4 0.004219 5 0.004142 3 0.001959 6 0.001271 7 3.66E-4 1 1.67E-4 8 7.0E-5 19 0.09085112031303186 18 0.07452538268804376 21 0.0720454362657333 20 0.06669493867385869 22 0.06609750492745546 16 0.06315839582851755 11 0.060465784077021724 17 0.05680739718093653 12 0.05637858787267865 10 0.051185283199922944 24 0.05100634776985605 23 0.04512166320553945 0 0.04114867997953091 14 0.0341717272381816 9 0.031617546524379724 13 0.0310146761622795 15 0.025683304947802226 4 0.012988806019956532 5 0.012690158689222096 6 0.009945147851545977 3 0.009347401230038186 7 0.00830104242306404 8 0.00813521800674035 1 0.0080695473287869 2 0.007808707102433975 __DUMMY__ 0.004740194493442154 false 1.0 739 16 0.105061 17 0.091318 19 0.079843 0 0.062781 18 0.056437 20 0.05322 22 0.05025 11 0.046636 23 0.043598 24 0.042145 12 0.040706 21 0.037848 15 0.032807 9 0.029473 10 0.027784 6 0.02665 8 0.024949 1 0.024798 7 0.024654 2 0.024417 4 0.023352 5 0.023184 3 0.02034 13 0.00775 16 0.105061 17 0.091318 19 0.079843 0 0.062781 18 0.056437 20 0.05322 22 0.05025 11 0.046636 23 0.043598 24 0.042145 12 0.040706 21 0.037848 15 0.032807 9 0.029473 10 0.027784 6 0.02665 8 0.024949 1 0.024798 7 0.024654 2 0.024417 4 0.023352 5 0.023184 3 0.02034 13 0.00775 16 0.07642422118102261 17 0.07389362822938896 19 0.07085129352798691 18 0.059409406591574065 22 0.05617287624475903 0 0.05546176318276097 11 0.050076841318844045 21 0.04798714532162567 20 0.0478626546488991 12 0.0426075795189609 23 0.04204479440399396 24 0.0406405103036383 10 0.037147475253363385 9 0.03643338215842564 15 0.028314448835953524 6 0.026906605270388115 4 0.025829476815898336 5 0.025466361613372235 8 0.025087362548389905 7 0.02491839683016568 1 0.024865638302340367 2 0.024470403610535083 3 0.022252451338716655 13 0.017429132597154298 14 0.013962471615811723 __DUMMY__ 0.003483678736030601 false 1.0 980 18 0.07402536057503571 19 0.07024587055323554 21 0.0641773495603348 22 0.061211090850025664 20 0.05783741924098276 10 0.05599462308165009 11 0.05232140841322659 12 0.04868052647260126 17 0.04705942318169172 14 0.04580135488276847 24 0.04428872659873075 23 0.04117768480292468 16 0.04101467192563472 9 0.038420232940438004 13 0.037396686743292086 0 0.036655042136141576 15 0.03535890011704341 4 0.019998735291600882 5 0.019505372206081634 6 0.017010099741566028 3 0.016303223342102966 8 0.015484152720772774 7 0.015477610473590506 1 0.015231030476549702 2 0.01489471809357454 __DUMMY__ 0.014428685578403162 false 0.0 981 22 0.06585110028229929 18 0.05896692875064402 17 0.05638916727273239 11 0.055715008541088865 21 0.055336861799186454 0 0.05526248891563569 9 0.05305168552305806 19 0.05187576768943885 10 0.04988969105591727 16 0.03898857700975355 12 0.037174097524338506 23 0.03420505618592441 4 0.03400810572742187 5 0.03345180625907304 6 0.03312332533446453 8 0.03125136311972199 7 0.031215729256776785 1 0.031004696518911357 2 0.030492812397883883 24 0.02996542583028653 3 0.02994369514413336 20 0.02762235760242121 14 0.023516729691133813 13 0.02218693302816635 15 0.01630959244898636 __DUMMY__ 0.013200997090601413 false 0.0 740 20 0.102876 24 0.086679 23 0.079553 19 0.078412 12 0.069663 16 0.061838 21 0.05405 18 0.05229 13 0.046557 15 0.045118 14 0.035195 17 0.033965 22 0.026999 4 0.025439 5 0.025348 3 0.024243 11 0.024058 6 0.023353 8 0.023278 2 0.023038 7 0.022763 1 0.022602 10 0.011267 0 0.001418 20 0.102876 24 0.086679 23 0.079553 19 0.078412 12 0.069663 16 0.061838 21 0.05405 18 0.05229 13 0.046557 15 0.045118 14 0.035195 17 0.033965 22 0.026999 4 0.025439 5 0.025348 3 0.024243 11 0.024058 6 0.023353 8 0.023278 2 0.023038 7 0.022763 1 0.022602 10 0.011267 0 0.001418 20 0.0813445805356706 19 0.07605619392357806 24 0.0681960424011177 21 0.06234085599014801 23 0.06204488461602147 12 0.06185736985779558 18 0.06182556996682804 16 0.052206920892920276 22 0.04556348006078313 13 0.041743729112809186 17 0.04031253162216311 11 0.03946613490953021 14 0.038617070944464364 15 0.03683942539380685 10 0.030985489334546756 4 0.022660791231055553 5 0.02234719515789506 3 0.020004997639645625 6 0.019919672246997946 8 0.01899297550775794 7 0.018760307250689084 2 0.018577555561049522 1 0.018544765611431077 9 0.01822276843271176 0 0.018195776031392438 __DUMMY__ 0.00437291576719072 false 1.0 982 18 0.07380372082903942 19 0.07085203852744476 21 0.06516586960414554 22 0.06129695403751144 20 0.05878919459819143 10 0.05538300611268294 11 0.052520332704532685 12 0.04969841103694099 17 0.046386945554321886 14 0.046254281774674354 24 0.045324711822016715 23 0.04178216439350543 16 0.04096342593035393 13 0.03802631856288599 9 0.03763607966573423 0 0.03569376962261039 15 0.035238575123174146 4 0.01965176739714268 5 0.01915970902286301 6 0.01654818754284087 3 0.015923389134634827 8 0.015005259180200802 7 0.015001921971040097 1 0.014749410050688914 __DUMMY__ 0.014722891482255739 2 0.014421664318566911 false 0.0 983 21 0.07165341621006877 19 0.06989357092980424 18 0.06949232965983428 22 0.0653203297775611 11 0.057195451256902854 20 0.05498721141420268 12 0.05458949894996386 10 0.05136320002248239 24 0.04711404696126773 17 0.04500331435594275 23 0.04266351853897715 14 0.042531341280185736 13 0.03862417294028434 16 0.03845401755131042 9 0.03801541651498987 0 0.03616840141614025 15 0.025957911996017394 4 0.02071025373730936 5 0.020208546629157075 6 0.017370503355799566 3 0.016384996294441272 7 0.01546059322391579 8 0.015436986171989088 __DUMMY__ 0.01534426853387768 1 0.01519996149833818 2 0.014856740779236455 false 0.0 741 23 0.081055 12 0.069557 24 0.067324 21 0.064185 13 0.049211 4 0.048203 5 0.047798 6 0.047147 20 0.045366 1 0.0441 7 0.043949 8 0.04388 2 0.043751 3 0.04253 19 0.042493 22 0.03929 11 0.028989 16 0.028041 17 0.026467 18 0.024676 14 0.024228 9 0.02172 0 0.014601 15 0.011438 23 0.081055 12 0.069557 24 0.067324 21 0.064185 13 0.049211 4 0.048203 5 0.047798 6 0.047147 20 0.045366 1 0.0441 7 0.043949 8 0.04388 2 0.043751 3 0.04253 19 0.042493 22 0.03929 11 0.028989 16 0.028041 17 0.026467 18 0.024676 14 0.024228 9 0.02172 0 0.014601 15 0.011438 21 0.07080898577954997 12 0.0640653746390356 23 0.061617977148815416 24 0.05659892272428806 19 0.05561637396653666 22 0.054928670856054976 20 0.04722419278603433 11 0.04656875608851721 18 0.045982586595852054 13 0.044054594208330786 17 0.03606738029303565 4 0.034891395522435927 5 0.034421938312813 6 0.03269159465132638 16 0.03228263375720366 14 0.031453295225541925 9 0.030928496325469446 7 0.02990087562913382 8 0.029824403106366082 1 0.029819315298294673 3 0.029487312051061622 2 0.029448418116289326 0 0.027220427529806693 10 0.025400275769952196 15 0.01410641295631635 __DUMMY__ 0.004589390661938294 false 1.0 500 18 0.095989 10 0.089638 19 0.076946 11 0.075366 21 0.075166 22 0.072077 14 0.059803 12 0.059647 0 0.055699 13 0.055375 17 0.052917 20 0.052124 9 0.046384 16 0.039616 15 0.030572 24 0.022718 23 0.022434 4 0.005765 5 0.005497 6 0.003459 7 0.001011 1 7.34E-4 8 5.4E-4 3 5.24E-4 18 0.095989 10 0.089638 19 0.076946 11 0.075366 21 0.075166 22 0.072077 14 0.059803 12 0.059647 0 0.055699 13 0.055375 17 0.052917 20 0.052124 9 0.046384 16 0.039616 15 0.030572 24 0.022718 23 0.022434 4 0.005765 5 0.005497 6 0.003459 7 0.001011 1 7.34E-4 8 5.4E-4 3 5.24E-4 18 0.08238577279357169 21 0.07445969768458262 19 0.07224079284637329 10 0.07142587859480604 22 0.07015577872910993 11 0.06838761966170377 12 0.05783083706509288 20 0.05069016834354819 14 0.05031485024869577 17 0.049372480802953145 0 0.04793320150215586 13 0.04743716453948242 9 0.043693132256418916 16 0.0378435806127651 24 0.033271533767218954 23 0.031666108214305336 15 0.025676256961249304 4 0.013829566350837798 5 0.013439677788193754 6 0.011088154828184841 3 0.008795384348656123 7 0.008725871044194934 8 0.008484396651698707 1 0.00846704960680076 2 0.007931204523077696 __DUMMY__ 0.004453840234322127 false 1.0 984 21 0.0704054571902363 18 0.06872070472044986 19 0.06711594693746158 22 0.06683412197718523 11 0.05806075161000167 10 0.05231447106354224 12 0.051719723498510006 20 0.050333022396011395 17 0.046132887439652416 24 0.0443424604160655 9 0.041264353986044125 23 0.040547637580823186 14 0.040411324996600946 0 0.03909861395438228 16 0.036821317820073265 13 0.03606245030331372 15 0.023825195944550116 4 0.022534457865314994 5 0.022012618734786077 6 0.019351274619522203 3 0.01822438795082376 7 0.0174623320783514 8 0.017447439744549657 1 0.017201472384346432 2 0.016820363802067678 __DUMMY__ 0.014935210985333828 false 0.0 742 22 0.06360777873174248 18 0.060994604829034675 9 0.05583917495777059 10 0.05435221794083633 21 0.05154173869214032 0 0.050164126124983915 17 0.05006726833312821 11 0.04971357621489289 19 0.04902852744810741 4 0.03631788799739641 5 0.035742457011603605 6 0.034552225671318076 23 0.034539406368566186 8 0.03348279933035725 7 0.03345615077538879 3 0.033273824513017115 1 0.033232544872550444 2 0.03271314019766186 16 0.031033047515650492 14 0.030195274581298302 12 0.029823093119914233 24 0.029621637263863954 20 0.029063095166438128 15 0.02333272251552385 13 0.021149600883536342 __DUMMY__ 0.013162078943278121 false 0.0 743 22 0.06828141842230542 21 0.06607086697988436 18 0.06510780332241749 19 0.06139599777967235 11 0.058339860915066946 10 0.05199444687325374 17 0.04900282829525037 9 0.04680932365361849 12 0.04526031575542785 0 0.04497096071847596 20 0.04084110841310094 24 0.03928970241302695 23 0.03836126616094002 16 0.035771757403617405 14 0.03340373997478182 13 0.029106976335958892 4 0.02737169279768617 5 0.026828777451535495 6 0.02471928274755153 3 0.02321593424130902 7 0.022926991513330695 8 0.02290986434594064 1 0.022664411546008678 2 0.022225041569914117 15 0.01905814474287613 __DUMMY__ 0.014071485627048592 false 0.0 501 21 0.081885 22 0.069299 12 0.061897 11 0.061225 18 0.054969 10 0.050804 9 0.050797 13 0.049658 23 0.044322 14 0.043891 24 0.042414 19 0.041832 4 0.036915 5 0.035893 0 0.033933 6 0.032399 3 0.030622 20 0.030536 8 0.029426 7 0.029409 1 0.029167 2 0.028789 17 0.025361 15 0.004556 21 0.081885 22 0.069299 12 0.061897 11 0.061225 18 0.054969 10 0.050804 9 0.050797 13 0.049658 23 0.044322 14 0.043891 24 0.042414 19 0.041832 4 0.036915 5 0.035893 0 0.033933 6 0.032399 3 0.030622 20 0.030536 8 0.029426 7 0.029409 1 0.029167 2 0.028789 17 0.025361 15 0.004556 21 0.07785502901449384 22 0.06787539943148406 11 0.0610388469358132 12 0.060512932916072765 18 0.060458333609178745 19 0.05362888008704576 10 0.05062945243503494 13 0.046174088916020394 9 0.04517713480585277 23 0.04328750210284066 24 0.043160279986910306 14 0.04218887272855349 20 0.039386715641606916 0 0.036774057791151074 17 0.035177812635836615 4 0.02986581968370838 5 0.02912504778898881 6 0.026216211205684934 3 0.024142588697630377 7 0.023457644955307867 8 0.023439249259509142 1 0.023223171011262266 2 0.022845756882874886 16 0.017991365462527133 15 0.012057292217830307 __DUMMY__ 0.004310513796780357 false 1.0 985 19 0.07219343113269827 21 0.06992255470614384 18 0.06769896610483704 22 0.06387344905709672 11 0.056991283182206934 20 0.05540271854278758 12 0.05534345600633949 10 0.04849656245269637 17 0.048458764182918286 24 0.047111676040534324 16 0.044876982248732024 23 0.04412347414870996 0 0.03830598327068345 14 0.03753731713290416 13 0.03658373591786828 9 0.036120060288927426 15 0.024022978077456528 4 0.020543541332867322 5 0.020057456631485705 6 0.017743853925958813 __DUMMY__ 0.01631459278684933 3 0.016188105513877372 7 0.01574323509115947 8 0.015709922532406675 1 0.015489814869173911 2 0.015146084822680678 false 0.0 986 18 0.07310392463833508 19 0.07113465773185973 21 0.06616737841109095 22 0.06151354424279376 20 0.059282407467857186 10 0.054098589570080104 11 0.052624596955772436 12 0.05063915462929391 24 0.04651107291425483 17 0.04591750779340711 14 0.04548847339852948 23 0.042592743177847524 16 0.04080822753325156 13 0.037965861159265736 9 0.03713443664214388 0 0.03497027718656278 15 0.03393601970121734 4 0.019818575989183504 5 0.019323504534887598 6 0.016630035577502672 3 0.01605098937504692 8 0.015065266250271233 7 0.01506517578249898 __DUMMY__ 0.014856649256208436 1 0.014811470246638118 2 0.014489459834199095 false 0.0 744 21 0.07507372165610292 22 0.06715728581285207 18 0.06598453183092737 19 0.0656279237881479 11 0.06139533540605157 12 0.05918688217314621 10 0.050506999717891896 20 0.048433805440137784 24 0.04456457212050434 17 0.043783560151073334 13 0.042287007466430326 23 0.04214789254403358 14 0.04072093634266382 9 0.0393719148913815 0 0.03860986314012527 16 0.03449708008847514 4 0.022300238059341084 5 0.021810714971245725 6 0.019235563915599704 15 0.01869120769777441 3 0.017154164562410375 7 0.016745762911176486 8 0.016693577407475294 1 0.01650568307631456 2 0.016142316773777202 __DUMMY__ 0.015371458054940347 false 0.0 502 16 0.112164 17 0.094698 19 0.080653 0 0.068545 18 0.058443 20 0.052662 22 0.047498 11 0.045755 23 0.041333 12 0.039779 24 0.035899 15 0.035104 21 0.033088 10 0.031409 9 0.030385 6 0.026059 7 0.02412 8 0.024006 1 0.023772 2 0.023526 4 0.021751 5 0.021384 3 0.018792 13 0.009177 16 0.112164 17 0.094698 19 0.080653 0 0.068545 18 0.058443 20 0.052662 22 0.047498 11 0.045755 23 0.041333 12 0.039779 24 0.035899 15 0.035104 21 0.033088 10 0.031409 9 0.030385 6 0.026059 7 0.02412 8 0.024006 1 0.023772 2 0.023526 4 0.021751 5 0.021384 3 0.018792 13 0.009177 16 0.08127969254951166 17 0.07672287770975902 19 0.07187425657692062 18 0.06075569520760309 0 0.059501377068348904 22 0.05471370696065474 11 0.05020675942322897 20 0.047304593677328845 21 0.04537133711299876 12 0.04256026364090834 23 0.040381535970545855 10 0.039447936964405184 9 0.036785420002802195 24 0.03655325197656973 15 0.02924583177850715 6 0.026236043443313376 4 0.024490311256252107 7 0.02419429851886478 8 0.02417168255452446 5 0.02405217026698361 1 0.023926269099776964 2 0.023586165791258766 3 0.020864172305753544 13 0.018418146823307013 14 0.013484048306708223 __DUMMY__ 0.0038721550131638675 false 1.0 503 10 0.101153 18 0.100001 11 0.077802 19 0.07372 22 0.071728 21 0.068695 14 0.064231 0 0.062919 13 0.056313 17 0.055928 12 0.052718 9 0.052448 20 0.043798 16 0.038227 15 0.036499 23 0.015622 24 0.010972 4 0.005656 5 0.005052 6 0.003743 7 0.001051 1 8.54E-4 8 8.53E-4 3 1.8E-5 10 0.101153 18 0.100001 11 0.077802 19 0.07372 22 0.071728 21 0.068695 14 0.064231 0 0.062919 13 0.056313 17 0.055928 12 0.052718 9 0.052448 20 0.043798 16 0.038227 15 0.036499 23 0.015622 24 0.010972 4 0.005656 5 0.005052 6 0.003743 7 0.001051 1 8.54E-4 8 8.53E-4 3 1.8E-5 18 0.08523309427514972 10 0.07852424230989952 21 0.07046836143530838 19 0.07041079610105908 22 0.0699809461564645 11 0.0696189036024188 12 0.05349158402658659 14 0.05292762750206152 0 0.05229839564801872 17 0.051254539874967295 13 0.04774001741428399 9 0.04736567717889439 20 0.04608742636749533 16 0.037047092106884796 15 0.029276078962651757 23 0.027460260327551465 24 0.026256098507439426 4 0.013658484288009289 5 0.013116288532069495 6 0.011169133341549198 7 0.008715973575244652 8 0.008603173394613714 1 0.008497688016103839 3 0.008485211492392264 2 0.007903591293435293 __DUMMY__ 0.004409314269446966 false 1.0 987 18 0.07566900111660156 19 0.06771667024794993 21 0.06359835483156903 22 0.062264944552131045 10 0.06130956070123535 11 0.05454472008330808 20 0.05364632336552027 14 0.049419945144041355 12 0.04749261267154878 17 0.046526151723304904 9 0.04115446865627231 13 0.03981564451037396 0 0.039241118671822194 24 0.039226302599105686 23 0.03788966949226326 16 0.03780272903848087 15 0.03673756612874382 4 0.0197734033795885 5 0.019309130281532878 6 0.016859255770166094 3 0.015919396476265137 8 0.015198804118374685 7 0.015196630656332772 1 0.01495988205918643 2 0.014629927625751616 __DUMMY__ 0.014097786098529394 false 0.0 745 22 0.05934723147510138 9 0.05372318428119551 18 0.052174495589456554 17 0.0513321537948016 0 0.05053361652796072 21 0.04893440399401429 11 0.04612463802431786 10 0.043765654320971986 19 0.04353793567648863 4 0.04147602482686726 5 0.04095311884244113 6 0.040806687730246656 7 0.03927072291387451 8 0.03926624162327962 1 0.0391279080746711 23 0.03894865147514396 2 0.03856167363979985 3 0.03794834590930992 12 0.03335574321707996 16 0.033230390153518925 24 0.03126595724615829 20 0.025443206303970643 14 0.02122467940607099 13 0.020838857269209577 15 0.016765626415870913 __DUMMY__ 0.012042851268178171 false 0.0 988 21 0.07709232456046443 19 0.06859360770825793 22 0.06810481877020999 18 0.06706871409762337 11 0.062425187593536775 12 0.060706728804356735 20 0.05085772809621369 10 0.050233738440855796 24 0.04627457265941288 17 0.04439391682960303 23 0.04251019402000387 13 0.04211226869219595 14 0.04040602588325339 9 0.038208034073115286 0 0.038190918666515555 16 0.03631774044441136 4 0.02066233987038536 5 0.020164603075850687 15 0.017971098103902083 6 0.01742474427751483 __DUMMY__ 0.015928538153029744 3 0.015504862838618736 7 0.014939103924607499 8 0.014884156253362518 1 0.014686681142438597 2 0.0143373530202599 false 0.0 504 0 0.086362 17 0.079153 9 0.065464 22 0.062634 11 0.058844 10 0.055953 18 0.054683 16 0.05331 6 0.045879 8 0.042952 7 0.042872 1 0.042483 4 0.042216 2 0.041926 5 0.041447 19 0.037658 3 0.037161 21 0.033118 12 0.024042 23 0.021657 13 0.011864 15 0.011129 14 0.004095 24 0.003097 0 0.086362 17 0.079153 9 0.065464 22 0.062634 11 0.058844 10 0.055953 18 0.054683 16 0.05331 6 0.045879 8 0.042952 7 0.042872 1 0.042483 4 0.042216 2 0.041926 5 0.041447 19 0.037658 3 0.037161 21 0.033118 12 0.024042 23 0.021657 13 0.011864 15 0.011129 14 0.004095 24 0.003097 0 0.06995657701434263 17 0.06720465030729482 22 0.0645999689111972 9 0.0590327927307613 11 0.05738186246314252 18 0.05719299238597676 10 0.05290149034644551 16 0.045806125349600844 19 0.045447910672277915 21 0.04519502342680707 6 0.03918949548200833 4 0.0379592008685284 5 0.037301733263756076 8 0.03681905303091658 7 0.03676261911044368 1 0.0364678946063522 2 0.03593307175955962 3 0.033418092951882576 12 0.03119671692453138 23 0.028488571924077725 24 0.017562447287620696 13 0.017461776222810282 20 0.014859386769509491 14 0.014558263229838945 15 0.013957703731254224 __DUMMY__ 0.0033445792290632713 false 1.0 746 22 0.06413306290020997 18 0.057479020179941935 17 0.05560779080194615 9 0.05519885475076468 0 0.05496802079991558 11 0.05191575721732562 21 0.05117379481841641 10 0.049491962548055074 19 0.048721839743887135 16 0.037096591517495364 4 0.03706771027717603 5 0.03650544255502169 6 0.03622198792784771 8 0.03471928699033256 7 0.03467849633839981 1 0.0344772973693953 23 0.03432945545181149 2 0.03394444165998172 3 0.033525675439694855 12 0.03213957799659844 24 0.028939464644142467 20 0.025733010926616093 14 0.022425194120661778 13 0.018916167007838172 15 0.017742223510857233 __DUMMY__ 0.012847872505666729 false 0.0 747 21 0.07062591055413597 22 0.06817880426385912 18 0.06512309224713861 19 0.06335514323115202 11 0.060612761760310316 12 0.0525592898104301 10 0.05089481945857195 17 0.04779260574599343 9 0.043586652835269205 0 0.04346882271897416 20 0.04335647586374307 24 0.041081604507130595 23 0.03948466910355569 16 0.03611633626700915 14 0.03552855423182136 13 0.03531173419640734 4 0.024873843282364323 5 0.02434707692694397 6 0.02221735642300611 3 0.02011135979718086 7 0.01997497864172458 8 0.019950587999196207 1 0.0197274052461969 2 0.019322213828823622 15 0.01741309822392593 __DUMMY__ 0.014984802835135614 false 0.0 989 19 0.07219997836030284 18 0.07021218888097652 21 0.06774555580369675 22 0.062453647553874024 20 0.058382269283908335 11 0.05408019854309513 12 0.05236659306855161 10 0.05068294187963333 24 0.04781880702946492 17 0.04700386527990599 23 0.04377127210244499 16 0.043353256956674927 14 0.04160949425892571 13 0.03649559932322256 9 0.03625834319870913 0 0.035812232080729235 15 0.029880818165669377 4 0.020217120919230107 5 0.019732162593957683 6 0.01712366877733326 3 0.016319859552353377 __DUMMY__ 0.015501711046298534 7 0.015456063677546912 8 0.015450117815786 1 0.015197976755555414 2 0.01487425709215342 false 0.0 505 19 0.106709 18 0.080558 20 0.078883 16 0.078527 21 0.075543 22 0.06684 17 0.063312 11 0.062692 12 0.060501 24 0.055003 10 0.052279 23 0.046877 0 0.043172 14 0.031829 13 0.029375 9 0.026785 15 0.026602 4 0.004682 5 0.004352 3 0.001981 6 0.00149 8 7.15E-4 1 6.57E-4 7 6.34E-4 19 0.106709 18 0.080558 20 0.078883 16 0.078527 21 0.075543 22 0.06684 17 0.063312 11 0.062692 12 0.060501 24 0.055003 10 0.052279 23 0.046877 0 0.043172 14 0.031829 13 0.029375 9 0.026785 15 0.026602 4 0.004682 5 0.004352 3 0.001981 6 0.00149 8 7.15E-4 1 6.57E-4 7 6.34E-4 19 0.08725269404127155 21 0.07555392203073198 18 0.07379792345647213 22 0.06696353980025609 20 0.06512675749178862 11 0.06184669626242506 12 0.06012581874140302 16 0.05742161858136713 17 0.053831042576757214 10 0.051147355409970174 24 0.05080412831492546 23 0.045094023234004146 0 0.04041576671330017 14 0.036409293108606626 13 0.035708642410565726 9 0.032515677615127254 15 0.02329103588315171 4 0.013192002472929525 5 0.012775580541433726 6 0.010016761214610242 3 0.0092921497506452 8 0.008371899317893948 7 0.008361679417727644 1 0.008235499611122393 2 0.007745773139589647 __DUMMY__ 0.004702718861923489 false 1.0 506 19 0.102055 20 0.098746 21 0.096955 18 0.081026 12 0.080755 24 0.079612 23 0.065465 22 0.064879 11 0.051068 16 0.04603 13 0.04503 14 0.041853 10 0.037901 17 0.037124 15 0.018742 9 0.018033 0 0.011051 4 0.008429 5 0.00787 3 0.004057 6 0.001961 1 5.47E-4 7 5.14E-4 8 2.96E-4 19 0.102055 20 0.098746 21 0.096955 18 0.081026 12 0.080755 24 0.079612 23 0.065465 22 0.064879 11 0.051068 16 0.04603 13 0.04503 14 0.041853 10 0.037901 17 0.037124 15 0.018742 9 0.018033 0 0.011051 4 0.008429 5 0.00787 3 0.004057 6 0.001961 1 5.47E-4 7 5.14E-4 8 2.96E-4 21 0.08496940673566847 19 0.08454474480930539 20 0.07466895778651428 18 0.07448721432184381 12 0.06884036680756153 22 0.06565735781816708 24 0.06217561753388332 11 0.05563785897008205 23 0.05364671804101598 10 0.04507740620342938 13 0.0433073264489104 14 0.04231062858945841 16 0.041227166659638236 17 0.04093023388227907 9 0.028684813476874533 0 0.024779124722363818 15 0.020970095559683072 4 0.015108221612728052 5 0.014581007897453747 3 0.010509532551615838 6 0.01033450302551375 7 0.008466887624567519 1 0.008347215035994024 8 0.008343774750228614 2 0.007909169506592947 __DUMMY__ 0.004484649628626607 false 1.0 748 22 0.05934723147510139 9 0.05372318428119551 18 0.052174495589456554 17 0.0513321537948016 0 0.05053361652796073 21 0.048934403994014296 11 0.04612463802431786 10 0.04376565432097198 19 0.04353793567648863 4 0.04147602482686726 5 0.04095311884244113 6 0.040806687730246656 7 0.03927072291387451 8 0.03926624162327962 1 0.0391279080746711 23 0.03894865147514396 2 0.03856167363979985 3 0.03794834590930992 12 0.03335574321707996 16 0.033230390153518925 24 0.03126595724615829 20 0.025443206303970643 14 0.02122467940607099 13 0.020838857269209577 15 0.01676562641587091 __DUMMY__ 0.012042851268178171 false 0.0 749 21 0.07062591055413597 22 0.06817880426385912 18 0.06512309224713861 19 0.06335514323115202 11 0.060612761760310316 12 0.0525592898104301 10 0.05089481945857195 17 0.04779260574599343 9 0.043586652835269205 0 0.04346882271897416 20 0.04335647586374307 24 0.041081604507130595 23 0.03948466910355569 16 0.03611633626700915 14 0.03552855423182136 13 0.03531173419640734 4 0.024873843282364323 5 0.02434707692694397 6 0.02221735642300611 3 0.02011135979718086 7 0.01997497864172458 8 0.019950587999196207 1 0.0197274052461969 2 0.019322213828823622 15 0.01741309822392593 __DUMMY__ 0.014984802835135614 false 0.0 507 19 0.106503 18 0.080179 20 0.078844 16 0.078748 21 0.075148 22 0.067286 17 0.063327 11 0.063066 12 0.060626 24 0.055008 10 0.052747 23 0.046046 0 0.043885 14 0.03221 13 0.029751 15 0.026985 9 0.026312 4 0.004759 5 0.004324 3 0.001976 6 0.001432 8 4.43E-4 7 3.02E-4 1 9.4E-5 19 0.106503 18 0.080179 20 0.078844 16 0.078748 21 0.075148 22 0.067286 17 0.063327 11 0.063066 12 0.060626 24 0.055008 10 0.052747 23 0.046046 0 0.043885 14 0.03221 13 0.029751 15 0.026985 9 0.026312 4 0.004759 5 0.004324 3 0.001976 6 0.001432 8 4.43E-4 7 3.02E-4 1 9.4E-5 19 0.0871561727523083 21 0.07536897360800437 18 0.07362046478420294 22 0.06717215386936996 20 0.06510841580469898 11 0.062021624731178705 12 0.06018422874899657 16 0.057524956096925775 17 0.053837986335129685 10 0.05136628670013604 24 0.05080639676938506 23 0.04470508904923742 0 0.04074936212490199 14 0.036587532975371775 13 0.035884543484303144 9 0.032294289096627425 15 0.023470230076850975 4 0.013228016513496199 5 0.012762459857005169 6 0.009989605743309786 3 0.009289796929064785 8 0.008244603715249585 7 0.008206306509661613 1 0.007972029199085092 2 0.00774576226556218 __DUMMY__ 0.004702712259936425 false 1.0 508 20 0.117789 19 0.093035 24 0.088143 18 0.077732 23 0.067783 15 0.05492 16 0.052727 21 0.045051 14 0.040071 12 0.037572 17 0.035714 10 0.033246 22 0.032821 3 0.027845 5 0.023437 4 0.023229 8 0.021602 7 0.02152 1 0.021496 2 0.021358 9 0.020732 13 0.020028 6 0.017477 11 0.00467 20 0.117789 19 0.093035 24 0.088143 18 0.077732 23 0.067783 15 0.05492 16 0.052727 21 0.045051 14 0.040071 12 0.037572 17 0.035714 10 0.033246 22 0.032821 3 0.027845 5 0.023437 4 0.023229 8 0.021602 7 0.02152 1 0.021496 2 0.021358 9 0.020732 13 0.020028 6 0.017477 11 0.00467 20 0.08576111811543806 19 0.08104003943294678 18 0.07601406390758055 24 0.06472214329647329 21 0.05557645324889943 23 0.053627405679237836 22 0.048317641077857895 16 0.04658055295050077 10 0.045689124842363996 15 0.044531267927363276 12 0.0437276141690247 14 0.04332340496212948 17 0.04199098727736082 11 0.03049267975363535 9 0.030388119834957792 13 0.029508451026013745 3 0.02169828687816347 4 0.021566145680185684 5 0.021395101600187368 0 0.019850287869965053 8 0.01836933829407539 7 0.018327896667590254 1 0.018183270645823833 2 0.017937362202478227 6 0.017289214141506238 __DUMMY__ 0.004092028518240503 false 1.0 509 17 0.07745 16 0.069194 0 0.064353 19 0.054317 22 0.053449 18 0.0517 9 0.049823 6 0.041463 8 0.040986 7 0.040582 1 0.040529 11 0.040483 2 0.040343 4 0.039515 5 0.039056 3 0.038033 10 0.036021 23 0.035504 24 0.033493 20 0.032643 21 0.030647 15 0.027516 12 0.020565 14 0.002335 17 0.07745 16 0.069194 0 0.064353 19 0.054317 22 0.053449 18 0.0517 9 0.049823 6 0.041463 8 0.040986 7 0.040582 1 0.040529 11 0.040483 2 0.040343 4 0.039515 5 0.039056 3 0.038033 10 0.036021 23 0.035504 24 0.033493 20 0.032643 21 0.030647 15 0.027516 12 0.020565 14 0.002335 17 0.0676803111155615 22 0.05939597577230828 0 0.05900478106400553 18 0.056892709963468235 16 0.056339571566338995 19 0.05560858633207928 9 0.04996311197686229 11 0.047938870793096104 21 0.04355771816764529 10 0.043038117562773426 6 0.035793345201671524 23 0.035621738305192954 4 0.035298645180137596 5 0.03478193469875785 8 0.03460169635107475 7 0.03437492388811643 1 0.034234635500842096 2 0.033885422365885674 24 0.03310973440622669 20 0.03307082855598454 3 0.032473867686067574 12 0.029976967858520852 15 0.023961573833657213 14 0.01411747609953043 13 0.011877562347449428 __DUMMY__ 0.0033998934067455693 false 1.0 990 18 0.07583190579621196 19 0.06869415765008403 21 0.06389235651409994 22 0.06201402766048062 10 0.06033961941490335 20 0.05533852028955534 11 0.053762254072284105 14 0.04882646950646958 12 0.047744777080581696 17 0.046427113373736534 24 0.04080548067437341 9 0.04048744485117449 13 0.03923368539970507 23 0.03869971388290419 16 0.038303364981524875 0 0.03824482787598053 15 0.03650608304401713 4 0.01964879949436326 5 0.01917153553578905 6 0.016643394868467967 3 0.01587948190668078 8 0.01505556359023401 7 0.015052693957404828 1 0.014813047562119375 2 0.014481872868276225 __DUMMY__ 0.014101808148577628 false 0.0 991 18 0.07675009676774203 19 0.0680959958553151 21 0.06395471059894531 22 0.0628845268585862 10 0.06252215702992063 11 0.055215838845817204 20 0.0533535429084428 14 0.04921553152082044 12 0.04753161896679772 17 0.047017905291401735 9 0.0417670381201324 0 0.04011499253681676 13 0.039765490356840516 24 0.03842052456891683 16 0.037637921034962274 23 0.037161389228216116 15 0.03592895233763017 4 0.019367600794034073 5 0.018900862505404084 6 0.016456249503984104 3 0.015470762781591397 7 0.014764336107867364 8 0.014763643766781968 1 0.014534945935319456 2 0.014203126657589268 __DUMMY__ 0.014200239120124254 false 0.0 750 21 0.07062591055413597 22 0.06817880426385912 18 0.06512309224713861 19 0.06335514323115202 11 0.060612761760310316 12 0.0525592898104301 10 0.05089481945857195 17 0.04779260574599343 9 0.043586652835269205 0 0.04346882271897416 20 0.04335647586374307 24 0.041081604507130595 23 0.03948466910355569 16 0.03611633626700915 14 0.03552855423182136 13 0.03531173419640734 4 0.024873843282364323 5 0.02434707692694397 6 0.02221735642300611 3 0.02011135979718086 7 0.01997497864172458 8 0.019950587999196207 1 0.0197274052461969 2 0.019322213828823622 15 0.01741309822392593 __DUMMY__ 0.014984802835135614 false 0.0 992 18 0.07424022820090426 22 0.06590943722097706 10 0.06445477013748245 21 0.06341193237391869 19 0.06275445493778659 11 0.05880445171809099 17 0.04833408476193122 9 0.04730818928678677 0 0.04625276921829127 12 0.04517698458025961 14 0.04461423056979055 20 0.04340352902719142 13 0.03723183460234309 16 0.034115316996285894 23 0.03379485124359792 24 0.03250563607982702 15 0.02872967928708527 4 0.02262507683538867 5 0.022137371300251896 6 0.020067860905388365 3 0.018435117299441545 7 0.01817476813085497 8 0.01816813907799421 1 0.0179594788033461 2 0.017565292893338715 __DUMMY__ 0.013824514511445484 false 0.0 993 18 0.07685328819597806 10 0.06670974876376418 22 0.06638749931067504 21 0.06529103804044391 19 0.06520773597933438 11 0.06032836673539842 17 0.04807952193865431 12 0.047401474198222174 14 0.047139297894823504 9 0.04613718883879696 20 0.04585813020520409 0 0.04577526415975837 13 0.03975028964357453 16 0.0345505797104829 23 0.03335659348040176 24 0.03273601647492488 15 0.02968659507744008 4 0.020240916273833284 5 0.01976646517888248 6 0.01752590781578247 3 0.015916129120330677 7 0.015536382433494632 8 0.015526435599547493 1 0.0153230045199263 2 0.014953682689502144 __DUMMY__ 0.01396244772082284 false 0.0 751 22 0.06288672089130008 18 0.05622149837552237 9 0.05501739261696022 17 0.05338947408628207 0 0.052951049404014586 21 0.05081614781272547 11 0.050076981482284184 10 0.04843521719570333 19 0.04703637350748446 4 0.03839114650672398 5 0.03783749876883796 6 0.037429536213708696 8 0.03598715624998469 7 0.035964242964478754 1 0.035779466486029886 23 0.03570298448612499 2 0.03523421451474348 3 0.03493269306131336 16 0.03474680463528735 12 0.03212503063019847 24 0.02982028025225547 20 0.025850812272688067 14 0.023100283401502317 13 0.0196578780314389 15 0.01797052391997919 __DUMMY__ 0.01263859223242793 false 0.0 994 22 0.06684689666917017 21 0.06680051675747374 18 0.06399417533548665 19 0.061891440097830756 11 0.058635478929137175 10 0.05002829148741372 17 0.05001032638794399 12 0.049286213410904355 0 0.04531700841777271 9 0.04460540281537241 20 0.041615725893225194 24 0.0396026898830561 23 0.03903015166364586 16 0.038243531352137004 14 0.03297318370109019 13 0.032316775481433795 4 0.026432872555812986 5 0.025906506086619367 6 0.02419080080460048 7 0.02207209980990307 8 0.02206030429595051 3 0.021905913592411626 1 0.021835168642335354 2 0.021408982267572162 15 0.01838840534574849 __DUMMY__ 0.014601138315952153 false 0.0 510 19 0.103747 21 0.079957 18 0.078903 20 0.077416 16 0.071661 22 0.067967 12 0.065386 11 0.064648 17 0.058766 24 0.055314 10 0.052141 23 0.046646 0 0.040823 13 0.034748 14 0.034519 9 0.026781 15 0.023265 5 0.005999 4 0.005953 6 0.002411 3 0.00202 7 4.9E-4 8 2.36E-4 1 2.03E-4 19 0.103747 21 0.079957 18 0.078903 20 0.077416 16 0.071661 22 0.067967 12 0.065386 11 0.064648 17 0.058766 24 0.055314 10 0.052141 23 0.046646 0 0.040823 13 0.034748 14 0.034519 9 0.026781 15 0.023265 5 0.005999 4 0.005953 6 0.002411 3 0.00202 7 4.9E-4 8 2.36E-4 1 2.03E-4 19 0.08567894329808792 21 0.07779903662060844 18 0.07294331405115195 22 0.0676460612425137 20 0.06417951233682577 11 0.06289990743131287 12 0.06250172780724379 16 0.05391283460073041 17 0.05160862430906179 10 0.05109674920777794 24 0.050876092873150335 23 0.04490754506206039 0 0.03937420765226704 13 0.038309739771417405 14 0.03766411458718473 9 0.03265931273706447 15 0.021467575087570172 4 0.013862087333587281 5 0.013620409053084585 6 0.010514528383853304 3 0.009362411659372766 7 0.008346888300114005 8 0.008200957925819909 1 0.008076228412571782 2 0.0077977021784383874 __DUMMY__ 0.004693488077128738 false 1.0 752 21 0.0737799189769921 22 0.06615055303070538 18 0.06483250920515811 19 0.06356840445936435 11 0.06044468309532198 12 0.05887469356189222 10 0.05011899911389916 20 0.04684993182314734 17 0.04351579774902388 24 0.04350803844372959 13 0.04280048450678001 23 0.04207674995062681 14 0.040401921839393416 9 0.0399422982369317 0 0.0389992065280527 16 0.03360092239812552 4 0.023488988651941302 5 0.022999436245387517 6 0.02062298634798575 15 0.01853332125540935 3 0.01830456747350693 7 0.01808634445805538 8 0.0180371188353261 1 0.017860110350251618 2 0.01748587572108754 __DUMMY__ 0.015116137741903957 false 0.0 995 21 0.07166955564940518 22 0.06706291554709724 18 0.06579338452684698 19 0.0649415407846128 11 0.05977851306384544 12 0.054505695111435264 10 0.050436375683364836 20 0.04694255038615465 17 0.04602608227629394 24 0.04340068003696729 9 0.041309631588891865 23 0.041154869208931515 0 0.04053832948410216 14 0.03789919209247776 13 0.03752520679383962 16 0.03609084187696557 4 0.02376143894719071 5 0.023248437738326137 6 0.020876536787493936 15 0.019288295915110408 3 0.019014510513246218 7 0.018658037514548077 8 0.01862224974267135 1 0.01841134547162593 2 0.018024618955797742 __DUMMY__ 0.015019164302757569 false 0.0 511 19 0.113421 16 0.089618 18 0.08261 20 0.081627 17 0.069393 21 0.06873 22 0.065418 11 0.060008 24 0.053678 12 0.052822 10 0.052746 23 0.047685 0 0.045292 15 0.031294 14 0.027133 9 0.025876 13 0.020399 4 0.004051 5 0.003605 3 0.001947 6 0.001111 7 6.42E-4 1 5.05E-4 8 3.9E-4 19 0.113421 16 0.089618 18 0.08261 20 0.081627 17 0.069393 21 0.06873 22 0.065418 11 0.060008 24 0.053678 12 0.052822 10 0.052746 23 0.047685 0 0.045292 15 0.031294 14 0.027133 9 0.025876 13 0.020399 4 0.004051 5 0.003605 3 0.001947 6 0.001111 7 6.42E-4 1 5.05E-4 8 3.9E-4 19 0.09061928072757407 18 0.07471094784011378 21 0.07202066308422267 20 0.06668932965162988 22 0.06609563525337918 16 0.06311866525439674 11 0.06031013371017205 17 0.056892934769926 12 0.05623462296880567 10 0.051154900996183514 24 0.050345417983893734 23 0.04560731104685121 0 0.04137678021683614 14 0.03396606308979163 9 0.03194473948772739 13 0.031111431795726594 15 0.025748276121952695 4 0.012910279708753091 5 0.012439154944482517 6 0.00987036088849508 3 0.009341792207809368 7 0.008430049934326838 8 0.008284791932842143 1 0.008227534788231919 2 0.007808707102433973 __DUMMY__ 0.004740194493442152 false 1.0 753 21 0.07172749313390288 22 0.06605120639286506 18 0.06454036358062445 19 0.06283737448185306 11 0.059356922273678885 12 0.055985540357048995 10 0.050122764168181434 20 0.045642792201314474 17 0.044582935703525874 24 0.04264975806576713 23 0.04159496169648662 9 0.04128298770278284 0 0.040090211391509166 13 0.03993716290113939 14 0.03865159591226474 16 0.03412136263814745 4 0.024612319194106225 5 0.024116014619906995 6 0.021840690714702533 3 0.019670588039427596 7 0.01947252155774992 8 0.019426223493720553 1 0.019244935171875418 2 0.01885474369498943 15 0.01863333695044187 __DUMMY__ 0.01495319396198698 false 0.0 996 21 0.07639519284615338 19 0.06767312108580982 22 0.06763389764830277 18 0.06619964321582761 11 0.06174588612601357 12 0.06014320741098396 20 0.050369031979347306 10 0.04946237098550605 24 0.04640748603168036 17 0.04399286531755588 23 0.04296682892170256 13 0.04190479056662288 14 0.04035267725550772 9 0.038198626090249266 0 0.03777029866448783 16 0.03590200359935154 4 0.021402335679046664 5 0.020900204451272778 15 0.01838323531412068 6 0.018196301420553115 3 0.016274521310198915 7 0.015732818949458723 __DUMMY__ 0.015710469630997474 8 0.015679968031594323 1 0.015477273179595906 2 0.015124944288058937 false 0.0 754 22 0.0642252891762472 18 0.05754391313649647 9 0.05416081252131426 21 0.05333536149844638 17 0.05326722842644484 0 0.052564634196075946 11 0.052020089534443245 10 0.04919022637990774 19 0.049137584074888406 4 0.03662644771535543 5 0.03607403582927169 23 0.03553120096629457 6 0.03546108391133378 16 0.035121597901052466 12 0.03413750804995309 8 0.033922675193817975 7 0.03390472359086145 1 0.033706592010594914 2 0.033176038058500015 3 0.0330103467576781 24 0.030715935444621402 20 0.027354006310790747 14 0.024291257709113244 13 0.02091901833858178 15 0.017577034949964727 __DUMMY__ 0.013025358317950193 false 0.0 512 17 0.089114 0 0.087269 16 0.07227 22 0.058616 11 0.057885 9 0.056787 18 0.053778 10 0.048736 19 0.046415 6 0.04164 8 0.038087 7 0.038003 1 0.037895 2 0.037536 4 0.036512 5 0.036042 12 0.03293 21 0.032532 3 0.031186 23 0.023811 13 0.015129 15 0.013884 20 0.007815 24 0.006126 17 0.089114 0 0.087269 16 0.07227 22 0.058616 11 0.057885 9 0.056787 18 0.053778 10 0.048736 19 0.046415 6 0.04164 8 0.038087 7 0.038003 1 0.037895 2 0.037536 4 0.036512 5 0.036042 12 0.03293 21 0.032532 3 0.031186 23 0.023811 13 0.015129 15 0.013884 20 0.007815 24 0.006126 17 0.07273353197637003 0 0.07079949662121665 22 0.062114104552364206 11 0.05624060670531034 18 0.0561590680814093 16 0.055925319405711944 9 0.05484205708896299 19 0.049333593825358936 10 0.048675698861829125 21 0.0438626074849723 6 0.03773746203284364 4 0.03565375214867519 5 0.035138393915110686 8 0.035091465787941443 7 0.03503013926813449 1 0.03487056163911951 12 0.03479978953764673 2 0.034420412644925145 3 0.03102939173908846 23 0.029653628285081605 24 0.0189032567162913 20 0.018317553014615465 13 0.018198436927569596 15 0.015529459342342318 14 0.01162942462223149 __DUMMY__ 0.003310787774877086 false 1.0 513 0 0.084093 17 0.078163 9 0.068252 22 0.06458 11 0.057364 10 0.055681 18 0.054974 16 0.048662 6 0.046597 8 0.04454 7 0.044232 1 0.04422 4 0.043617 2 0.043252 5 0.042985 3 0.039231 19 0.037305 21 0.03372 23 0.020985 12 0.020717 15 0.009974 13 0.008332 24 0.00478 14 0.003744 0 0.084093 17 0.078163 9 0.068252 22 0.06458 11 0.057364 10 0.055681 18 0.054974 16 0.048662 6 0.046597 8 0.04454 7 0.044232 1 0.04422 4 0.043617 2 0.043252 5 0.042985 3 0.039231 19 0.037305 21 0.03372 23 0.020985 12 0.020717 15 0.009974 13 0.008332 24 0.00478 14 0.003744 0 0.06872698022314815 17 0.06656637240794826 22 0.06568206687507229 9 0.06040392254949888 18 0.057530876697312716 11 0.056730324160036795 10 0.052934651277440896 21 0.04567718459974948 19 0.045415125110988046 16 0.043376128730570736 6 0.03939932923495761 4 0.03854399238906914 5 0.03794821752420539 8 0.03745126481100426 7 0.03728834846712847 1 0.03716756336649753 2 0.03644059809145037 3 0.03432730157818495 12 0.029583676866043983 23 0.02815909660927921 24 0.018471182441476226 13 0.01577949380368153 20 0.015012833242828174 14 0.014598320952417275 15 0.013447247897080503 __DUMMY__ 0.0033379000929291327 false 1.0 997 21 0.07639777686013849 19 0.06827938805274775 22 0.06757896128950493 18 0.06683352083324777 11 0.06158984020744794 12 0.06010091448451256 20 0.0511700873006362 10 0.04986770629802294 24 0.04660188736585345 17 0.044048229703618484 23 0.04289865875756263 13 0.04186943367821759 14 0.04063774646164145 9 0.038064315520431345 0 0.0375769445169393 16 0.03616418907492987 4 0.021035459434649746 5 0.020534985552605793 15 0.018798319611557132 6 0.017782704041829474 3 0.015953966953833915 __DUMMY__ 0.015712813818358422 7 0.015353300583763434 8 0.015302346012962082 1 0.015098125149414084 2 0.014748378435573351 false 0.0 755 22 0.05934723147510139 9 0.05372318428119551 18 0.052174495589456554 17 0.0513321537948016 0 0.05053361652796073 21 0.048934403994014296 11 0.04612463802431786 10 0.04376565432097198 19 0.04353793567648863 4 0.04147602482686726 5 0.04095311884244113 6 0.040806687730246656 7 0.03927072291387451 8 0.03926624162327962 1 0.0391279080746711 23 0.03894865147514396 2 0.03856167363979985 3 0.03794834590930992 12 0.03335574321707996 16 0.033230390153518925 24 0.03126595724615829 20 0.025443206303970643 14 0.02122467940607099 13 0.020838857269209577 15 0.01676562641587091 __DUMMY__ 0.012042851268178171 false 0.0 514 18 0.099994 19 0.086219 10 0.081226 20 0.079494 14 0.065323 21 0.061309 22 0.055243 12 0.055022 13 0.054137 11 0.054055 15 0.05352 17 0.049731 16 0.049485 24 0.037802 0 0.037465 23 0.034506 9 0.032755 4 0.004641 5 0.004072 6 0.001737 3 0.001399 7 3.22E-4 8 2.79E-4 1 2.63E-4 18 0.099994 19 0.086219 10 0.081226 20 0.079494 14 0.065323 21 0.061309 22 0.055243 12 0.055022 13 0.054137 11 0.054055 15 0.05352 17 0.049731 16 0.049485 24 0.037802 0 0.037465 23 0.034506 9 0.032755 4 0.004641 5 0.004072 6 0.001737 3 0.001399 7 3.22E-4 8 2.79E-4 1 2.63E-4 18 0.0861252978426122 19 0.07741185572040389 10 0.06863707068799546 20 0.06658602808021438 21 0.06530210318542642 22 0.0602497385312744 14 0.05545925707894905 11 0.055430574320438145 12 0.053251592876121814 17 0.04748582735965727 13 0.046519345489014034 16 0.04311438064150516 15 0.041605203496157976 24 0.04090028308216322 23 0.03765122155854159 0 0.03755481731663201 9 0.03660366567330917 4 0.012845938615485369 5 0.012319503169107014 6 0.009737276106256219 3 0.009140164258651806 7 0.008124349816647222 8 0.008099778573993792 1 0.007966365183272553 2 0.007667281663545008 __DUMMY__ 0.004211079672624981 false 1.0 998 21 0.07490230682904762 19 0.06894128547064224 18 0.06775675872552997 22 0.06756094080989077 11 0.060576759748303885 12 0.05724523174920836 20 0.05197240840639606 10 0.05069144402309807 24 0.04676923970775361 17 0.04437374638438336 23 0.04279932900966449 14 0.0404087842621537 13 0.03926267984790705 9 0.03865916864226028 0 0.03740780565844521 16 0.03666271380917769 4 0.021241933714518626 5 0.020741274454682875 15 0.020336878194384227 6 0.01785205705627094 3 0.01652302221650762 7 0.01569140176761886 8 0.015635310292199337 __DUMMY__ 0.015486929604966237 1 0.015424346893556614 2 0.015076242721432438 false 0.0 756 17 0.06311057199994816 22 0.0629002652200873 0 0.06038574841706502 18 0.05757658376365585 11 0.05367518660377725 9 0.05301697644805025 19 0.051318099440516095 21 0.04887010978172621 10 0.04815333668521086 16 0.04720517594766115 6 0.03507696823128012 4 0.034775029476371885 12 0.034353932622536554 5 0.03421795480503806 8 0.03314186429859394 23 0.0331073665465716 7 0.033065911844649166 1 0.03286833493002778 2 0.03234344613178757 3 0.030761470384536315 24 0.026675100334466226 20 0.025541762081993078 13 0.01876846457392139 14 0.01823789069953614 15 0.018087149303232023 __DUMMY__ 0.012765299427760078 false 0.0 999 21 0.07295424912499485 22 0.06836873626164051 18 0.0655641241089778 19 0.06528508837005378 11 0.0611942950129857 12 0.05496957215501314 10 0.050208590385980155 17 0.04637333027635497 20 0.04617439368524279 24 0.043536703558572525 9 0.0415984476911864 0 0.041144211244766755 23 0.0409964899894099 14 0.036992664287190745 13 0.0369364334738674 16 0.03612114262178066 4 0.023617483999510844 5 0.023096257541303258 6 0.020672781274783593 3 0.01876154030570362 7 0.01839786054007458 8 0.018356543731968055 1 0.01813825606112265 2 0.017747210673242454 15 0.01762746411720236 __DUMMY__ 0.015166129507070485 false 0.0 515 17 0.084337 0 0.075054 16 0.070499 22 0.056415 9 0.055032 18 0.053199 19 0.0503 11 0.047088 6 0.042362 10 0.041194 8 0.040804 7 0.040609 1 0.040487 2 0.039691 4 0.038958 5 0.038211 3 0.035561 21 0.031031 23 0.029818 12 0.023815 15 0.020797 20 0.020403 24 0.02016 13 0.004174 17 0.084337 0 0.075054 16 0.070499 22 0.056415 9 0.055032 18 0.053199 19 0.0503 11 0.047088 6 0.042362 10 0.041194 8 0.040804 7 0.040609 1 0.040487 2 0.039691 4 0.038958 5 0.038211 3 0.035561 21 0.031031 23 0.029818 12 0.023815 15 0.020797 20 0.020403 24 0.02016 13 0.004174 17 0.07030127548014527 0 0.064238660728497 22 0.06173857341988182 18 0.05729412887831385 16 0.05564796389051757 19 0.05321882084695678 9 0.05298660343068005 11 0.05214081138004717 10 0.04575297425550011 21 0.04487810960943855 6 0.03630047481505896 4 0.03521629966483085 5 0.03456676522584776 8 0.03455204368316888 7 0.03443709859231032 1 0.034258718742555296 2 0.03361885767284171 23 0.03263233940017202 12 0.031973551864589805 3 0.03141654670315774 24 0.026574027561056306 20 0.02628140580600127 15 0.019374556409249347 13 0.014128477623882646 14 0.013027780533916752 __DUMMY__ 0.0034431337813824892 false 1.0 757 21 0.07248250986375226 22 0.0699133214145335 18 0.06443142992163362 11 0.06389029673248646 19 0.06309386124348094 12 0.05408030658893229 10 0.05118207416648292 17 0.04799583762210608 0 0.0447519107246991 9 0.043632475970031594 20 0.0412595414499504 24 0.040379626226742404 23 0.03926706763135049 16 0.03594440816296333 13 0.035909917052385706 14 0.03503164951367174 4 0.024560683227856327 5 0.024035574353295844 6 0.021923654715047675 7 0.019476028372122423 3 0.019465023802583498 8 0.019423419356951223 1 0.019211830557036142 2 0.018792578008728498 15 0.015284632651405365 __DUMMY__ 0.014580340669770205 false 0.0 758 21 0.07331675617612085 18 0.06991422494956925 22 0.06798130808906411 19 0.06761823995996061 11 0.061805380549519555 12 0.055835192176217685 10 0.05500325386231533 20 0.0490791073013426 17 0.04592585802298069 24 0.04226107709939253 14 0.04166649870996006 9 0.04103273931641836 0 0.04080709602235446 13 0.04016419020713776 23 0.039511981497627885 16 0.03602725517410272 15 0.021215852142212374 4 0.020780844231763435 5 0.020287170143051807 6 0.017678208800129273 3 0.015962968154983877 7 0.015407520717914597 __DUMMY__ 0.015374940337547114 8 0.015368369486725963 1 0.015166415351448912 2 0.014807551520138077 false 0.0 516 20 0.118528 19 0.111364 24 0.090782 18 0.080371 21 0.07394 23 0.071169 16 0.063556 12 0.058567 22 0.052773 15 0.048474 14 0.046961 11 0.038132 10 0.036293 17 0.034977 13 0.029702 3 0.008786 4 0.008705 5 0.00799 9 0.007659 8 0.002843 7 0.002613 2 0.002362 1 0.002141 6 0.001312 20 0.118528 19 0.111364 24 0.090782 18 0.080371 21 0.07394 23 0.071169 16 0.063556 12 0.058567 22 0.052773 15 0.048474 14 0.046961 11 0.038132 10 0.036293 17 0.034977 13 0.029702 3 0.008786 4 0.008705 5 0.00799 9 0.007659 8 0.002843 7 0.002613 2 0.002362 1 0.002141 6 0.001312 19 0.09012451874477322 20 0.08598096742972354 18 0.07482287372504484 21 0.07329539506678787 24 0.06885114638746533 22 0.05965626776662653 23 0.05697615288662555 12 0.05660233670430499 16 0.05029987964549206 11 0.048191638937132054 14 0.04482902409997189 10 0.04402225595472335 17 0.03989017309629196 15 0.03677562590044597 13 0.034171854286871056 9 0.023414183324646905 0 0.01833298666415152 4 0.01514845792257901 5 0.01454206922547091 3 0.012941947840235318 6 0.00975916922583509 8 0.009502802195485672 7 0.009417416611066626 1 0.009046386594600346 2 0.008967400254127591 __DUMMY__ 0.004437069509520822 false 1.0 517 20 0.114183 19 0.089596 24 0.087761 18 0.075178 23 0.068754 15 0.052647 16 0.049324 21 0.04616 14 0.039065 12 0.038289 17 0.034081 22 0.033473 10 0.031737 3 0.029295 5 0.025206 4 0.025061 8 0.023339 7 0.023333 1 0.023309 2 0.022944 9 0.021342 13 0.020857 6 0.019374 11 0.005694 20 0.114183 19 0.089596 24 0.087761 18 0.075178 23 0.068754 15 0.052647 16 0.049324 21 0.04616 14 0.039065 12 0.038289 17 0.034081 22 0.033473 10 0.031737 3 0.029295 5 0.025206 4 0.025061 8 0.023339 7 0.023333 1 0.023309 2 0.022944 9 0.021342 13 0.020857 6 0.019374 11 0.005694 20 0.08390824612983572 19 0.07946464990144225 18 0.07425830676045295 24 0.06507626144994133 21 0.05695899009135013 23 0.054479845332195506 22 0.04901744289245913 12 0.044814815632502156 16 0.044754742107382964 10 0.04419597367463179 14 0.042164706078040355 15 0.042150588381841 17 0.04100884578736151 11 0.03144031711628839 9 0.030508867165368023 13 0.029901832459328367 4 0.02257311636822395 3 0.022455373943295828 5 0.02236818802868522 0 0.01969755800697338 7 0.01924773279178231 8 0.01924752837967619 1 0.01910195403790126 2 0.01874915028100488 6 0.018289458724121473 __DUMMY__ 0.004165508477914074 false 1.0 759 21 0.07207591324420312 22 0.06726283834805881 18 0.06472778026513679 19 0.06461156479057646 11 0.0615429296821783 12 0.05626456448630052 10 0.04999149035291974 17 0.04731882079271879 20 0.045082993095421624 0 0.042511741511498474 24 0.04213183300958215 9 0.041069766922837224 23 0.040976087279278796 13 0.03827916028951068 16 0.037510157819081784 14 0.03615354963932467 4 0.02368369106487691 5 0.023192968043278764 6 0.021118112271106822 7 0.018655721145981588 3 0.01864312569653527 8 0.018608173435917957 1 0.018418644008467027 2 0.018035758922273288 15 0.017072808382130385 __DUMMY__ 0.015059805500804133 false 0.0 518 18 0.099769 19 0.08586 10 0.081173 20 0.079526 14 0.065323 21 0.061114 22 0.054983 12 0.054682 13 0.05404 15 0.05387 11 0.053641 16 0.050081 17 0.049486 24 0.038284 0 0.037992 23 0.034432 9 0.032466 4 0.004611 5 0.004413 6 0.001878 3 0.001399 7 4.7E-4 8 3.41E-4 1 1.65E-4 18 0.099769 19 0.08586 10 0.081173 20 0.079526 14 0.065323 21 0.061114 22 0.054983 12 0.054682 13 0.05404 15 0.05387 11 0.053641 16 0.050081 17 0.049486 24 0.038284 0 0.037992 23 0.034432 9 0.032466 4 0.004611 5 0.004413 6 0.001878 3 0.001399 7 4.7E-4 8 3.41E-4 1 1.65E-4 18 0.08602042302251624 19 0.07724452211856189 10 0.06861236684148396 20 0.06660094361018357 21 0.06521121167467658 22 0.060128549850274625 14 0.05545925707894905 11 0.055237604651461575 12 0.05309311537019903 17 0.04737163033333057 13 0.046474132788794885 16 0.04339218238718155 15 0.04176834210519612 24 0.04112494825232433 0 0.03780045745081231 23 0.037616729395487804 9 0.03646895979327481 4 0.012831955306139241 5 0.012478446785341329 6 0.009802997660183017 3 0.009140164258651806 7 0.008193334142754785 8 0.008128677413309122 1 0.00792068637274187 2 0.007667281663545007 __DUMMY__ 0.004211079672624981 false 1.0 519 17 0.086004 16 0.082947 0 0.0712 19 0.057488 22 0.051612 18 0.051228 9 0.045804 11 0.045226 6 0.038554 8 0.036996 7 0.036522 1 0.036286 2 0.035999 4 0.034637 10 0.03441 23 0.034364 5 0.034041 3 0.031502 21 0.031334 20 0.03133 12 0.030645 24 0.028214 15 0.025978 13 0.007676 17 0.086004 16 0.082947 0 0.0712 19 0.057488 22 0.051612 18 0.051228 9 0.045804 11 0.045226 6 0.038554 8 0.036996 7 0.036522 1 0.036286 2 0.035999 4 0.034637 10 0.03441 23 0.034364 5 0.034041 3 0.031502 21 0.031334 20 0.03133 12 0.030645 24 0.028214 15 0.025978 13 0.007676 17 0.07353253993674122 16 0.06441184182936442 0 0.06430898243232948 22 0.058069981769046625 19 0.05591859189319496 18 0.05560785651377606 11 0.0501615537270542 9 0.04869573124680024 21 0.04215234353056602 10 0.04178333918315283 6 0.035579228481862124 23 0.034439706771567095 12 0.03386726566048929 8 0.03380888408198006 4 0.03377116023696182 7 0.03355234541774162 1 0.03333136506352848 5 0.03319729462957264 2 0.03291831820928533 20 0.030376945710966993 3 0.030123258403387133 24 0.028984145202497976 15 0.022692304252524987 13 0.014446562240740337 14 0.011011570846604524 __DUMMY__ 0.0032568827282635415 false 1.0 760 21 0.0737226369242885 22 0.06777422217263411 18 0.06644490776028808 19 0.06429147896174513 11 0.06340861915511485 12 0.05865942321411901 10 0.05289337776016076 17 0.04623975027982517 20 0.0447592070186527 0 0.04272240914170413 13 0.04254924739291434 9 0.04115282158477412 24 0.040562137799765044 14 0.03986540326223234 23 0.039520034196523425 16 0.03548598093490586 4 0.022225926138380786 5 0.02172835746899301 6 0.019615957328737693 15 0.01787659004953087 7 0.016911203920493927 8 0.01687995960983134 3 0.016847306897695747 1 0.01667809276177793 2 0.016309306501567866 __DUMMY__ 0.014875641763343177 false 0.0 761 21 0.07235788229720709 22 0.06829280863074004 19 0.06586995091479035 18 0.06512377166996759 11 0.06270419955463057 12 0.05573357652450634 10 0.05017347889202379 17 0.048588660188234475 20 0.04503006722964005 0 0.04342911749660724 24 0.04213001649769766 9 0.04110559190718261 23 0.04058727334188425 16 0.03916997861731965 13 0.03694130742074282 14 0.035438562844663415 4 0.02304515904954769 5 0.022537892980571336 6 0.02047120864472313 7 0.01802363969411943 3 0.01799954469318143 8 0.017976441129313743 1 0.017767062534687517 2 0.01737141251000498 15 0.017015053693224313 __DUMMY__ 0.015116341042788656 false 0.0 762 21 0.0756557360987957 22 0.06754703982034851 18 0.06626724291895399 19 0.06518006467072575 11 0.06358418201845724 12 0.061299164762644257 10 0.051885060605997034 20 0.04662190916979605 17 0.04492162337367731 13 0.04471843733649993 24 0.042323448850401894 14 0.041005445928884006 0 0.04090788088431186 23 0.040668100865101864 9 0.03958209742661216 16 0.03507848717304994 4 0.021482181331785078 5 0.02099101104861765 6 0.01872442015226442 15 0.01759282255977535 3 0.015963272473532325 7 0.015927476532365085 8 0.015890164907404945 1 0.015696692046238567 2 0.015344051294700246 __DUMMY__ 0.015141985749059013 false 0.0 520 17 0.085021 0 0.079726 16 0.072436 22 0.054683 18 0.052856 9 0.052788 11 0.051317 19 0.049243 10 0.044139 6 0.041551 8 0.039566 7 0.039202 1 0.039106 2 0.038701 4 0.037526 5 0.036907 3 0.033966 21 0.029289 23 0.029225 12 0.025909 15 0.022096 20 0.018828 24 0.018184 13 0.007733 17 0.085021 0 0.079726 16 0.072436 22 0.054683 18 0.052856 9 0.052788 11 0.051317 19 0.049243 10 0.044139 6 0.041551 8 0.039566 7 0.039202 1 0.039106 2 0.038701 4 0.037526 5 0.036907 3 0.033966 21 0.029289 23 0.029225 12 0.025909 15 0.022096 20 0.018828 24 0.018184 13 0.007733 17 0.07084477403571625 0 0.06654661933157471 22 0.06070907006483872 18 0.057462181800370354 16 0.05703068700635321 11 0.054296190434315425 19 0.05303134102880376 9 0.051571414510533646 10 0.04741871960835841 21 0.04407860059117995 6 0.0355528046033335 4 0.03412331281239055 8 0.0335519994529379 5 0.03353658362995894 12 0.03349612381288176 7 0.03335748463951024 1 0.03319437791580279 2 0.03274064756656192 23 0.0323213846075744 3 0.030183289992592365 20 0.025855134486236605 24 0.025461518810329598 15 0.02036527203603075 13 0.016456783025786403 14 0.013395870082967174 __DUMMY__ 0.0034178141130607304 false 1.0 521 18 0.078804 17 0.075978 19 0.073891 16 0.061291 0 0.059821 22 0.055959 20 0.053442 10 0.051909 9 0.051768 23 0.039355 24 0.037855 21 0.037077 11 0.036396 8 0.030526 4 0.030322 1 0.029912 6 0.029892 7 0.029861 5 0.029369 2 0.029057 3 0.028719 12 0.022806 15 0.021722 14 0.004267 18 0.078804 17 0.075978 19 0.073891 16 0.061291 0 0.059821 22 0.055959 20 0.053442 10 0.051909 9 0.051768 23 0.039355 24 0.037855 21 0.037077 11 0.036396 8 0.030526 4 0.030322 1 0.029912 6 0.029892 7 0.029861 5 0.029369 2 0.029057 3 0.028719 12 0.022806 15 0.021722 14 0.004267 18 0.07487844027585636 19 0.07039882497146988 17 0.061909059121281876 22 0.060600096561707735 10 0.05386785691927715 20 0.05192562267862107 21 0.05192443312673446 0 0.05023995009515236 16 0.05017761926911567 11 0.04682476645259448 9 0.04672081923197467 24 0.039672732043917434 23 0.03931489158584152 12 0.03606380898304515 4 0.02619367500255846 15 0.025783337496876876 5 0.025479063635232637 6 0.02456723015413204 8 0.02393323637216064 14 0.023843478748953522 7 0.023616780219187217 1 0.023510699422279725 3 0.023312670009019584 2 0.02291676109715854 13 0.01840490634480672 __DUMMY__ 0.003919240181044204 false 1.0 763 21 0.07199014574931152 18 0.07057040704959097 22 0.06456159173090693 19 0.06450581135611619 11 0.0603178635191786 12 0.05856707889654581 10 0.05755917933707062 14 0.04938808872515333 20 0.049206148008719586 13 0.048537490860112685 17 0.042969072379861056 24 0.03991445757259327 9 0.03971813310059281 23 0.03897290718107558 0 0.03890311835746546 16 0.03291679044952268 15 0.027227752393157965 4 0.020061676138304806 5 0.01959384165421852 6 0.01720873086592957 3 0.014882686233016256 __DUMMY__ 0.014700293279042376 7 0.014619624722660369 8 0.01461128704425399 1 0.014412595105753538 2 0.014083228289845377 false 0.0 522 18 0.067769 19 0.062451 22 0.057039 9 0.055212 20 0.054615 17 0.050936 24 0.049672 23 0.045088 10 0.044406 21 0.043515 3 0.040877 4 0.040178 5 0.039645 8 0.039172 7 0.038893 1 0.038601 0 0.038298 2 0.037638 6 0.036859 16 0.034777 11 0.027788 15 0.023527 12 0.016908 14 0.016136 18 0.067769 19 0.062451 22 0.057039 9 0.055212 20 0.054615 17 0.050936 24 0.049672 23 0.045088 10 0.044406 21 0.043515 3 0.040877 4 0.040178 5 0.039645 8 0.039172 7 0.038893 1 0.038601 0 0.038298 2 0.037638 6 0.036859 16 0.034777 11 0.027788 15 0.023527 12 0.016908 14 0.016136 18 0.06857867463739933 19 0.06495828540802347 22 0.06261028625915471 21 0.057574668468548584 20 0.05171785384703566 17 0.04919126040340649 10 0.049039250648761176 9 0.04846280002029198 24 0.04631406051893484 11 0.044231870859904925 23 0.04262797244135544 0 0.039781745375619626 16 0.036231554671539025 12 0.03504507130742572 4 0.031183229089843282 5 0.030652639470449158 3 0.029204511389589093 14 0.028105822619511278 8 0.028067706012590437 6 0.028015079426946053 7 0.027950108980556543 1 0.02767485189663199 2 0.0270183380598988 15 0.02297961613947372 13 0.01850180497576391 __DUMMY__ 0.004280937071344719 false 1.0 764 18 0.07180216572221151 21 0.07151531531658427 22 0.06797207743299193 19 0.06704140535119398 11 0.06201965369133609 10 0.05830927484534335 12 0.053788766126343535 20 0.04775379024284469 17 0.04683392698545493 14 0.042733891046787244 0 0.04270239650475437 9 0.042617029887090076 13 0.03995536275781949 24 0.039353879456602466 23 0.037555165472720704 16 0.03576199252655758 15 0.022794089504593756 4 0.020516873530192947 5 0.020032187316548204 6 0.017544128091205882 3 0.015783721566752708 7 0.015315721046038117 8 0.015277750402532979 __DUMMY__ 0.015222572678094425 1 0.015080468874045294 2 0.014716393623359365 false 0.0 765 21 0.07399400187182674 22 0.06851879026381653 18 0.0680166524674356 19 0.06709856883359805 11 0.0624023879368656 12 0.056321791359319105 10 0.05282920747867134 20 0.0480487038783561 17 0.04598628557173866 24 0.04317645359539946 0 0.04083212007226945 9 0.04081074230234245 23 0.040499682561129124 14 0.0395424677216388 13 0.03908058728568494 16 0.036226216452384934 4 0.021661039206918187 5 0.021159208826160472 15 0.019039061036776817 6 0.01858354050752646 3 0.016734780917463842 7 0.01625565426840631 8 0.016205828524348702 1 0.016000401444443563 2 0.01563160679106965 __DUMMY__ 0.015344218824409044 false 0.0 523 20 0.108148 19 0.097666 18 0.092074 24 0.066672 21 0.065047 12 0.064045 14 0.059804 16 0.058436 15 0.056651 10 0.055983 23 0.05378 13 0.052567 22 0.044558 17 0.042452 11 0.037859 9 0.015318 0 0.014668 4 0.004719 5 0.004297 3 0.002805 6 9.01E-4 7 6.65E-4 8 4.95E-4 1 3.88E-4 20 0.108148 19 0.097666 18 0.092074 24 0.066672 21 0.065047 12 0.064045 14 0.059804 16 0.058436 15 0.056651 10 0.055983 23 0.05378 13 0.052567 22 0.044558 17 0.042452 11 0.037859 9 0.015318 0 0.014668 4 0.004719 5 0.004297 3 0.002805 6 9.01E-4 7 6.65E-4 8 4.95E-4 1 3.88E-4 19 0.08379845437387519 18 0.08192084636103676 20 0.08186005088073255 21 0.06778099626564124 12 0.058622178484989684 24 0.05629575270440785 10 0.055212189000001397 22 0.05477634089661817 14 0.05288274366635065 16 0.048076702694263486 23 0.04791558582997136 11 0.047257553444562034 13 0.04614711995470683 17 0.04361511815947235 15 0.04326346868351456 9 0.027057859484438614 0 0.025406508715293805 4 0.012561020511922647 5 0.012102935279907315 3 0.009491076515278486 6 0.008940290040843742 7 0.00789523316930467 8 0.007809274009748399 1 0.00763092760917684 2 0.007279694553828991 __DUMMY__ 0.0044000787101124515 false 1.0 524 0 0.08847 17 0.079603 9 0.065431 22 0.062643 11 0.060342 10 0.057198 18 0.05451 16 0.053414 6 0.045174 8 0.042598 7 0.042185 1 0.041961 2 0.041679 4 0.041393 5 0.040662 19 0.03759 3 0.036861 21 0.032654 12 0.023999 23 0.020764 13 0.012441 15 0.011305 14 0.003663 24 0.003458 0 0.08847 17 0.079603 9 0.065431 22 0.062643 11 0.060342 10 0.057198 18 0.05451 16 0.053414 6 0.045174 8 0.042598 7 0.042185 1 0.041961 2 0.041679 4 0.041393 5 0.040662 19 0.03759 3 0.036861 21 0.032654 12 0.023999 23 0.020764 13 0.012441 15 0.011305 14 0.003663 24 0.003458 0 0.07093853653563113 17 0.06741429599549753 22 0.06460419129016445 9 0.059017448507345596 11 0.05807967218476341 18 0.05711243394177065 10 0.053481448116495744 16 0.04585459089964398 19 0.045416256779943445 21 0.04497890875908795 6 0.0388611178691827 4 0.03757585713313648 5 0.03693608999228185 8 0.036654173533140884 7 0.03644262494250027 1 0.036224758908451296 2 0.035818033491413104 3 0.033278365595941176 12 0.031176701637386596 23 0.02807261709527784 24 0.017730612785018668 13 0.017730556577453215 20 0.014859393691156604 14 0.014357040202942718 15 0.014039692747371841 __DUMMY__ 0.0033445807870008584 false 1.0 766 22 0.0668865107185778 21 0.06169179807274176 18 0.061492003602054035 11 0.05918042271553571 19 0.0571642081758063 17 0.05411304313843603 0 0.05174101269433321 10 0.050573288300510125 9 0.04860228785156896 12 0.04456200118348094 16 0.03967880510651732 23 0.03605997249523526 24 0.03375357647607352 20 0.033669260475591344 4 0.02955133267524128 5 0.029020786629448028 6 0.02814968612451985 13 0.028130044058051452 14 0.02787153775419505 7 0.025971746169103273 8 0.02597095836816801 1 0.02575082764802501 2 0.025275193668252677 3 0.025036656430658496 15 0.016357343064412947 __DUMMY__ 0.013745696403461537 false 0.0 525 17 0.082388 16 0.081694 0 0.062293 19 0.059873 18 0.050892 22 0.047984 9 0.042432 20 0.040597 23 0.039642 6 0.039173 8 0.038766 7 0.038747 1 0.038677 24 0.038307 11 0.038208 2 0.037859 4 0.036285 5 0.035634 3 0.034877 15 0.033309 10 0.029644 21 0.028711 12 0.02396 14 4.6E-5 17 0.082388 16 0.081694 0 0.062293 19 0.059873 18 0.050892 22 0.047984 9 0.042432 20 0.040597 23 0.039642 6 0.039173 8 0.038766 7 0.038747 1 0.038677 24 0.038307 11 0.038208 2 0.037859 4 0.036285 5 0.035634 3 0.034877 15 0.033309 10 0.029644 21 0.028711 12 0.02396 14 4.6E-5 17 0.07130389755912987 16 0.06687886037385157 19 0.0610299762280604 18 0.05704570176113013 0 0.056673474132590246 22 0.05432696996451534 11 0.04540230871869038 9 0.04299627763391827 21 0.04169662786618694 20 0.04124998856215262 23 0.0392420218578543 10 0.03845719065301189 24 0.037472401971722226 12 0.03345149729279691 6 0.03317467214819059 4 0.03201065397252188 8 0.031993402280263566 7 0.03193169831985844 1 0.03179414107953302 5 0.031424533671887855 2 0.031185704713674565 15 0.029822287460787463 3 0.02925541709552301 14 0.013481285538403161 13 0.01314852112962194 __DUMMY__ 0.0035504880141232517 false 1.0 767 18 0.06872796201452039 22 0.06529603136585527 10 0.05955427790242303 21 0.05931136029063475 19 0.05810615409391451 11 0.05740762549587724 17 0.05206619277665393 0 0.05067700046294394 9 0.049811328691212686 12 0.041919118663750435 20 0.03682265867037529 16 0.036313410472813265 14 0.03611682841924027 23 0.03348435222235023 13 0.031670796714608505 24 0.030374445672695895 4 0.027112993584539245 5 0.026608284445287792 6 0.025386124563938614 15 0.0239134813906392 8 0.02345897639767284 7 0.023455809379696574 1 0.023262515642998506 3 0.022954483416824326 2 0.022810334611929217 __DUMMY__ 0.01337745263660374 false 0.0 768 21 0.07417467046854584 19 0.06915532994443843 18 0.06770765594391777 22 0.06649530021375064 11 0.06011654717079641 12 0.0580653243452679 20 0.05244023821031181 10 0.05036994821835309 24 0.04645992813602256 17 0.044996022479838915 23 0.04304740991321394 14 0.04038757867470431 13 0.04025163298305795 16 0.03798078121441794 9 0.03785123476482061 0 0.03764421615332486 15 0.02097116484683865 4 0.020934317326269877 5 0.02043881093193869 6 0.017753636585064465 3 0.016120829182883184 __DUMMY__ 0.015565832365619847 7 0.015494376356785505 8 0.015446285086303704 1 0.0152357887842949 2 0.014895139699218077 false 0.0 526 17 0.086124 16 0.082537 0 0.07058 19 0.057356 22 0.052041 18 0.05181 9 0.04562 11 0.044742 6 0.038652 8 0.036811 1 0.036657 7 0.036588 2 0.036402 4 0.034834 5 0.034581 10 0.034124 23 0.033964 3 0.031921 21 0.031604 20 0.030958 12 0.030644 24 0.028277 15 0.02579 13 0.007385 17 0.086124 16 0.082537 0 0.07058 19 0.057356 22 0.052041 18 0.05181 9 0.04562 11 0.044742 6 0.038652 8 0.036811 1 0.036657 7 0.036588 2 0.036402 4 0.034834 5 0.034581 10 0.034124 23 0.033964 3 0.031921 21 0.031604 20 0.030958 12 0.030644 24 0.028277 15 0.02579 13 0.007385 17 0.07358782849778002 16 0.06422220985586885 0 0.06402229836033432 22 0.058268111640884544 18 0.0558767016342387 19 0.05585745835259412 11 0.049937755288040266 9 0.048610582389513345 21 0.042277027701292685 10 0.041651066592667 6 0.03562443735667076 23 0.03425476559659762 12 0.033866725247049076 4 0.03386212653400116 8 0.03372330747078979 7 0.03358277004879214 1 0.033502747169671436 5 0.03344678106845053 2 0.033104490197303035 3 0.030316831313854188 20 0.03020495423559472 24 0.0290131939276626 15 0.022605366867247397 13 0.014312042049346933 14 0.01101154540139796 __DUMMY__ 0.003256875202356936 false 1.0 527 19 0.087783 18 0.087474 21 0.080397 20 0.075727 12 0.068952 10 0.065831 22 0.064054 11 0.06252 14 0.054703 13 0.05432 24 0.047981 16 0.04757 17 0.046752 23 0.039998 0 0.035862 15 0.031734 9 0.030723 4 0.006092 5 0.005867 6 0.002604 3 0.001778 7 6.47E-4 8 3.38E-4 1 2.93E-4 19 0.087783 18 0.087474 21 0.080397 20 0.075727 12 0.068952 10 0.065831 22 0.064054 11 0.06252 14 0.054703 13 0.05432 24 0.047981 16 0.04757 17 0.046752 23 0.039998 0 0.035862 15 0.031734 9 0.030723 4 0.006092 5 0.005867 6 0.002604 3 0.001778 7 6.47E-4 8 3.38E-4 1 2.93E-4 18 0.0779312701872946 19 0.07763336820989743 21 0.07724057437200312 22 0.06565326455192078 12 0.06320063971349418 20 0.06312285314226476 11 0.06162171883275623 10 0.059104774621335905 14 0.048483719436235626 13 0.04784421589191414 24 0.0464295463263727 17 0.0457295701257149 16 0.04169096770739935 23 0.040961616678311705 0 0.037212655043453655 9 0.035203547614249674 15 0.02680420771891844 4 0.01387569226145054 5 0.0135058966819942 6 0.010535055813800747 3 0.00926045320891704 7 0.008394301765044368 8 0.008228423394584001 1 0.008096832674274699 2 0.007774460230864433 __DUMMY__ 0.004460373795532798 false 1.0 769 19 0.06859412808371884 21 0.06757084762973016 18 0.06408898868465966 22 0.062417576200266806 11 0.05541741855817081 12 0.05479498270346784 20 0.052009069756506016 17 0.049408142424477504 24 0.046455970636168985 23 0.04547546688395978 16 0.04514353872119699 10 0.045006400846971925 0 0.039423589510456804 9 0.036577628215914065 13 0.03528830546321164 14 0.0336382005767227 4 0.023487873838674216 5 0.022982772401525964 15 0.02186602650676712 6 0.02121256741698985 7 0.01903612428460746 8 0.0190198384019561 3 0.01892127882192293 1 0.018785334634110817 2 0.01841672689364069 __DUMMY__ 0.014961201904204378 false 0.0 528 17 0.11124 16 0.102037 0 0.097348 18 0.080832 19 0.071027 10 0.067599 11 0.063564 22 0.059267 9 0.049838 15 0.035844 12 0.033837 21 0.029847 20 0.024945 6 0.02208 8 0.018007 1 0.017575 7 0.01756 2 0.017024 13 0.016442 23 0.016162 4 0.015856 5 0.015135 3 0.00914 14 0.007792 17 0.11124 16 0.102037 0 0.097348 18 0.080832 19 0.071027 10 0.067599 11 0.063564 22 0.059267 9 0.049838 15 0.035844 12 0.033837 21 0.029847 20 0.024945 6 0.02208 8 0.018007 1 0.017575 7 0.01756 2 0.017024 13 0.016442 23 0.016162 4 0.015856 5 0.015135 3 0.00914 14 0.007792 17 0.08170561297526831 0 0.07277118804263086 18 0.07224948845069881 16 0.0704910987390936 19 0.0647438355005434 22 0.062071677219600316 10 0.05957797028902772 11 0.0595550128769088 9 0.04879762652510371 21 0.045000476590191164 12 0.038333161360139124 20 0.03171635233279566 15 0.02879296434063846 23 0.026922158402142276 6 0.02492243313913147 4 0.02268629595568226 13 0.02247043084423259 5 0.022069800368792164 8 0.02198434145976631 7 0.021763782880383435 1 0.021659752051292006 2 0.02115239182823983 14 0.019674119725521737 24 0.018095080511031807 3 0.017329460783802455 __DUMMY__ 0.0034634868073414767 false 1.0 529 18 0.121983 10 0.120978 14 0.074379 22 0.072888 19 0.068972 9 0.064789 11 0.060432 21 0.054042 15 0.052892 0 0.05236 17 0.046071 20 0.041744 13 0.040812 12 0.023244 23 0.019111 5 0.014021 4 0.012359 16 0.012116 3 0.01115 2 0.009179 6 0.00795 1 0.006666 7 0.0061 8 0.005763 18 0.121983 10 0.120978 14 0.074379 22 0.072888 19 0.068972 9 0.064789 11 0.060432 21 0.054042 15 0.052892 0 0.05236 17 0.046071 20 0.041744 13 0.040812 12 0.023244 23 0.019111 5 0.014021 4 0.012359 16 0.012116 3 0.01115 2 0.009179 6 0.00795 1 0.006666 7 0.0061 8 0.005763 18 0.09686129466333152 10 0.08822926888651923 19 0.069055110981651 22 0.0683580352649055 21 0.06123110683335806 14 0.06012396863121614 11 0.05827438923438093 9 0.052042683445429554 20 0.04853855810408543 17 0.045768522354034995 0 0.04487239778676781 15 0.041899099427546625 13 0.04021623853969039 12 0.03763368163175613 23 0.03008691675887132 16 0.025342689190472816 24 0.022383013300488534 5 0.01704016088335657 4 0.016526168151887857 3 0.013812167287349597 6 0.01272944538163864 2 0.012069140276497279 1 0.011076929180461218 7 0.010945705706356786 8 0.010783269666532322 __DUMMY__ 0.00410003843141365 false 1.0 770 19 0.07080247203614679 21 0.0704679947297131 18 0.06860473883305909 22 0.06487214773710864 11 0.05661408638705238 20 0.05542820377173918 12 0.053563278266324454 10 0.04985480365691656 24 0.047943460586596126 17 0.04602622818687543 23 0.04397331036785427 16 0.04067598820631116 14 0.03956152888171924 9 0.037470783591696276 0 0.03645372547001882 13 0.035945987654318445 15 0.024835222750493064 4 0.021345088220069513 5 0.020845453134879795 6 0.01808002653003897 3 0.017178529497747085 7 0.016268349432774137 8 0.016237726771611127 1 0.01599919478150237 2 0.015669806031042472 __DUMMY__ 0.015281864486391539 false 0.0 771 21 0.07503046452024537 19 0.06964521803835154 18 0.06737347656350733 22 0.06659903674502407 11 0.06067216120510105 12 0.05937399993124833 20 0.052653456893773966 10 0.04979822636207146 24 0.04677869153499605 17 0.045171200933877054 23 0.04321876370957689 13 0.04098815222346791 14 0.040152591852598576 16 0.038584384389529235 0 0.03772352713881459 9 0.03729111957140339 4 0.02053105633325999 15 0.020235134883283656 5 0.020042096412910056 6 0.017392850919180546 __DUMMY__ 0.015829377834958327 3 0.015611710340767292 7 0.015051575624477549 8 0.0149999084068868 1 0.014796001412447413 2 0.014455816218241426 false 0.0 530 19 0.101254 21 0.094264 18 0.082104 20 0.079929 22 0.076179 12 0.070527 11 0.064355 24 0.064274 16 0.058141 17 0.05532 23 0.053258 10 0.045747 0 0.034447 13 0.031217 14 0.029461 9 0.028859 15 0.010309 4 0.007295 5 0.006371 6 0.002825 3 0.002609 7 8.59E-4 8 3.76E-4 1 2.2E-5 19 0.101254 21 0.094264 18 0.082104 20 0.079929 22 0.076179 12 0.070527 11 0.064355 24 0.064274 16 0.058141 17 0.05532 23 0.053258 10 0.045747 0 0.034447 13 0.031217 14 0.029461 9 0.028859 15 0.010309 4 0.007295 5 0.006371 6 0.002825 3 0.002609 7 8.59E-4 8 3.76E-4 1 2.2E-5 19 0.08456522198115393 21 0.08320215049790572 18 0.0751903509589596 22 0.07121464768925818 20 0.06536904931124361 12 0.06336606187034739 11 0.06214653030578554 24 0.054304075299303256 17 0.05057952761279493 10 0.04909134001446557 16 0.04797188663850255 23 0.047356302705555374 0 0.03695763753548211 13 0.035672856631318466 14 0.035262973888547836 9 0.0342571702786519 15 0.016375671553398932 4 0.014548468958487486 5 0.013854155432625038 6 0.010800194159369452 3 0.009867188237814198 7 0.008718759884459979 8 0.008472805605672575 1 0.008196695804351626 2 0.008004469235395923 __DUMMY__ 0.004653807909148868 false 1.0 772 21 0.07147375308741624 19 0.07030767225465624 18 0.06899628211258471 22 0.06509293791003495 11 0.057718076104980885 12 0.05511493563656222 20 0.05465465879900938 10 0.0510055574376991 24 0.04686359828440116 17 0.04556874899900331 23 0.0433114558679973 14 0.04122700069776125 16 0.039684149086145815 13 0.03838972721967521 9 0.037503148240148054 0 0.03683496854610566 15 0.024886091262034605 4 0.020721095822972775 5 0.02022943137202119 6 0.017508548455689756 3 0.016328275616634406 7 0.015535089231668436 8 0.01549732844244203 __DUMMY__ 0.015338688547682725 1 0.015271102700375041 2 0.014937678264297498 false 0.0 773 21 0.0761703395044693 22 0.06746578158842394 18 0.0665720068452753 19 0.06621245271149227 11 0.06301820503217605 12 0.06140296696521438 10 0.051387991143004526 20 0.048302259813488804 13 0.0444758542486258 17 0.04431215378045137 24 0.04377452758074017 23 0.041485896882005595 14 0.041417780936851584 0 0.039549583223825964 9 0.03888245079548337 16 0.03515498487361041 4 0.021165326120159103 5 0.02067240181979629 6 0.01822594880862179 15 0.0181266635237332 3 0.015739014636653652 7 0.015514421425866115 8 0.015473742492740411 __DUMMY__ 0.015291037342610184 1 0.015277956253017118 2 0.014928251651663246 false 0.0 531 18 0.137033 10 0.127644 14 0.078308 22 0.077366 19 0.073812 9 0.068863 15 0.057381 21 0.05482 11 0.052818 20 0.048312 0 0.042504 17 0.040253 13 0.033231 23 0.029034 12 0.015639 5 0.013913 4 0.013537 3 0.008247 6 0.006503 1 0.004528 2 0.004517 7 0.004119 8 0.003903 24 0.003714 18 0.137033 10 0.127644 14 0.078308 22 0.077366 19 0.073812 9 0.068863 15 0.057381 21 0.05482 11 0.052818 20 0.048312 0 0.042504 17 0.040253 13 0.033231 23 0.029034 12 0.015639 5 0.013913 4 0.013537 3 0.008247 6 0.006503 1 0.004528 2 0.004517 7 0.004119 8 0.003903 24 0.003714 18 0.10348698989555845 10 0.09054161008752548 19 0.07144588319176963 22 0.07007473153273408 14 0.061971019814267905 21 0.06159135291396284 11 0.05419432576076579 9 0.05342184012309397 20 0.05222541477500955 15 0.04432503513779523 17 0.04277768702604906 0 0.03957251738136991 13 0.03669189230171947 23 0.035331043109228744 12 0.03425923124220059 24 0.02486782882144384 16 0.019892746871538056 4 0.01716078204465522 5 0.017080023755706362 3 0.012583626317078498 6 0.01211743472055138 1 0.010165299944944174 7 0.010108531483364791 8 0.010001447960557857 2 0.009990371104416708 __DUMMY__ 0.004121332682692354 false 1.0 774 21 0.07688306469617845 22 0.06816873727683237 18 0.06744244250795978 19 0.06601410716857803 11 0.06427834752662034 12 0.06191706605229882 10 0.052925481676128594 20 0.04778586806869535 13 0.045438490328153204 17 0.04415259194114784 24 0.042879405137651365 14 0.04236235573694261 23 0.04043949303193973 0 0.040142521124131754 9 0.039415874617309346 16 0.03423125395043479 4 0.020669278527613865 5 0.020186174190063383 15 0.017884505131720897 6 0.01768829578775632 3 0.015164715714817617 __DUMMY__ 0.015111517181070849 7 0.014914468567366543 8 0.01487232864852936 1 0.014684935406142212 2 0.014346680003916536 false 0.0 532 19 0.102857 21 0.093281 20 0.083001 18 0.07719 22 0.074946 24 0.069263 12 0.066467 11 0.066345 23 0.054755 16 0.051757 10 0.049364 14 0.042144 17 0.039896 13 0.032848 9 0.024815 0 0.023197 15 0.020107 5 0.008923 4 0.008094 3 0.006994 2 0.001669 1 8.94E-4 6 8.15E-4 7 3.78E-4 19 0.102857 21 0.093281 20 0.083001 18 0.07719 22 0.074946 24 0.069263 12 0.066467 11 0.066345 23 0.054755 16 0.051757 10 0.049364 14 0.042144 17 0.039896 13 0.032848 9 0.024815 0 0.023197 15 0.020107 5 0.008923 4 0.008094 3 0.006994 2 0.001669 1 8.94E-4 6 8.15E-4 7 3.78E-4 19 0.08507320897639686 21 0.08378596910686716 18 0.07242725440657183 22 0.0712722180367638 20 0.06668912977069788 11 0.06350502713565842 12 0.06177704043960168 24 0.05747229131766325 10 0.050261818058770204 23 0.04855591606085896 16 0.04386487293604389 17 0.04244601209995357 14 0.04137351721532395 13 0.03640921202243051 9 0.032326676072841336 0 0.030899010514981097 15 0.02030615981441997 5 0.015289115443385017 4 0.015169432207178627 3 0.012126212605188784 6 0.009946769300831867 2 0.00885909232162013 1 0.008682938106790635 7 0.008584559612491638 8 0.008377614094157488 __DUMMY__ 0.0045189323225114965 false 1.0 533 10 0.111629 18 0.105287 14 0.071454 22 0.069655 9 0.066279 11 0.062663 0 0.057947 19 0.057482 21 0.051763 15 0.050898 17 0.046719 13 0.043766 20 0.031965 12 0.024641 4 0.017729 5 0.017697 23 0.016212 16 0.014995 6 0.014688 3 0.014416 2 0.013138 7 0.013058 1 0.01299 8 0.012927 10 0.111629 18 0.105287 14 0.071454 22 0.069655 9 0.066279 11 0.062663 0 0.057947 19 0.057482 21 0.051763 15 0.050898 17 0.046719 13 0.043766 20 0.031965 12 0.024641 4 0.017729 5 0.017697 23 0.016212 16 0.014995 6 0.014688 3 0.014416 2 0.013138 7 0.013058 1 0.01299 8 0.012927 18 0.08902127910911888 10 0.08415139174602816 22 0.06668571137828312 19 0.06323297311183897 21 0.05979721772312722 11 0.0592731047358349 14 0.05908695302205551 9 0.05293436057490063 0 0.04774396287922129 17 0.0461297380856074 20 0.0434877682117397 13 0.041853755039178 15 0.04140600506695825 12 0.03807994890945399 23 0.028462197247208245 16 0.026551064863207647 24 0.021861705550262827 4 0.01912319476605783 5 0.01885448420667853 6 0.016021090722010904 3 0.015420537066841686 7 0.014322528201631315 8 0.014257492029560817 1 0.014162213794666976 2 0.01405604909141004 __DUMMY__ 0.004023272867117169 false 1.0 775 21 0.07649290961810726 12 0.0707505715836142 18 0.064591500767159 19 0.06207356589815405 22 0.06180740288354787 11 0.06154670672192116 13 0.05835046106356326 10 0.05072767792072422 20 0.048897607683464385 14 0.048331538961533395 23 0.0429893708313275 24 0.04239528043713292 17 0.040326337575683574 0 0.03679515755372046 9 0.03483731970109516 16 0.03228090992847324 15 0.020880553502994618 4 0.020582891155926743 5 0.020134208690733187 6 0.018294799545821187 8 0.014767678257673007 7 0.014761270508465393 1 0.014587005630563062 2 0.014306753016805715 __DUMMY__ 0.014299975225570118 3 0.014190545336225213 false 0.0 776 21 0.07551069134456946 12 0.06741194561930068 18 0.0666469679636009 19 0.06254336880266034 22 0.06215052597490854 11 0.06081575504333977 13 0.0573440810314322 10 0.053294402087417585 14 0.051874306211170014 20 0.05000963991361844 24 0.042232871781730935 23 0.0417996742552645 17 0.039551016300274085 0 0.03572048982480145 9 0.03564160562343354 16 0.031229413919788764 15 0.025510644579862993 4 0.019887346727325974 5 0.019437285611723892 6 0.01726434363236478 __DUMMY__ 0.014602843439020968 8 0.014064716660454413 7 0.014063649009271784 3 0.013918156923254928 1 0.013881289980794352 2 0.01359296773861476 false 0.0 534 10 0.102682 18 0.090441 11 0.068572 14 0.066671 0 0.066247 22 0.064952 9 0.06194 19 0.053179 17 0.052489 13 0.050456 21 0.049928 15 0.047645 12 0.033324 16 0.028415 20 0.026827 4 0.017678 5 0.01739 6 0.016672 1 0.015036 7 0.01503 8 0.014918 2 0.014362 3 0.014106 23 0.01104 10 0.102682 18 0.090441 11 0.068572 14 0.066671 0 0.066247 22 0.064952 9 0.06194 19 0.053179 17 0.052489 13 0.050456 21 0.049928 15 0.047645 12 0.033324 16 0.028415 20 0.026827 4 0.017678 5 0.01739 6 0.016672 1 0.015036 7 0.01503 8 0.014918 2 0.014362 3 0.014106 23 0.01104 10 0.08337472905130808 18 0.08320464449673835 22 0.06590728927742658 11 0.06426980667829486 19 0.059739283024762765 21 0.05832396526071024 14 0.05628006817368692 0 0.055347566134924475 9 0.053590837289112535 17 0.05026563381496379 13 0.04474404686280228 12 0.04096399860914571 15 0.03817634976349335 20 0.03713285998339768 16 0.031836420678371606 23 0.02325484486056588 4 0.019258868852567765 5 0.018869319707950943 24 0.01778813307830175 6 0.01732964724661423 7 0.015497887535388085 8 0.015441901462021788 1 0.015384481697511342 3 0.015274818706097678 2 0.014874852948823339 __DUMMY__ 0.0038677448050180143 false 1.0 777 21 0.07651070940730784 18 0.06646712576795664 22 0.06511138146251289 12 0.06501579712814491 19 0.06423283259960343 11 0.06239914802520466 10 0.05234232869954922 13 0.051533020354253126 20 0.048898487153682745 14 0.04702267635998702 24 0.04301798381518903 17 0.04160842450140817 23 0.04155362978146583 0 0.0375358449633468 9 0.0372413527766507 16 0.03272489387743088 15 0.021485222546928542 4 0.020413432002222606 5 0.01993871332795339 6 0.017597536081966715 __DUMMY__ 0.015103281731185492 3 0.014634001115670177 7 0.014594227548732606 8 0.014571746079597608 1 0.01438619281957387 2 0.014060010072474996 false 0.0 535 10 0.101235 18 0.087754 11 0.067091 14 0.066807 0 0.065085 22 0.06461 9 0.063149 17 0.050835 19 0.050324 13 0.04919 21 0.049105 15 0.047503 12 0.031215 16 0.025233 20 0.024765 4 0.02016 5 0.019713 6 0.018996 7 0.017596 1 0.017486 8 0.017318 2 0.016797 3 0.016751 23 0.011283 10 0.101235 18 0.087754 11 0.067091 14 0.066807 0 0.065085 22 0.06461 9 0.063149 17 0.050835 19 0.050324 13 0.04919 21 0.049105 15 0.047503 12 0.031215 16 0.025233 20 0.024765 4 0.02016 5 0.019713 6 0.018996 7 0.017596 1 0.017486 8 0.017318 2 0.016797 3 0.016751 23 0.011283 10 0.0816934825258036 18 0.08076217796318962 22 0.06555409839558733 11 0.06285307866787194 19 0.05724290121707924 21 0.05703556428482614 0 0.05512864428587348 14 0.05503716551976897 9 0.05480543218670852 17 0.049669780804251815 13 0.04289712561637973 12 0.0388921961555572 15 0.03751312968094212 20 0.034950761006422484 16 0.03013706606564228 23 0.02351618031778341 4 0.02156996118993155 5 0.021099254129119723 6 0.019647139993753386 7 0.017974898682750443 8 0.017842824144521582 1 0.017807470407964977 3 0.017725351967397232 24 0.01760329260374299 2 0.017275562204542863 __DUMMY__ 0.0037654599825871528 false 1.0 536 20 0.098723 18 0.09523 19 0.093438 10 0.065141 21 0.063838 14 0.061557 12 0.060717 24 0.056398 15 0.055328 16 0.055148 13 0.052825 22 0.047672 23 0.047411 17 0.044499 11 0.04361 0 0.022391 9 0.021483 4 0.004849 5 0.004209 3 0.002309 6 0.001439 7 7.71E-4 8 5.18E-4 1 4.94E-4 20 0.098723 18 0.09523 19 0.093438 10 0.065141 21 0.063838 14 0.061557 12 0.060717 24 0.056398 15 0.055328 16 0.055148 13 0.052825 22 0.047672 23 0.047411 17 0.044499 11 0.04361 0 0.022391 9 0.021483 4 0.004849 5 0.004209 3 0.002309 6 0.001439 7 7.71E-4 8 5.18E-4 1 4.94E-4 18 0.08348496174400116 19 0.08138305943649198 20 0.07660228185992916 21 0.06700844307662637 10 0.06005097996059518 12 0.05670350383378671 22 0.056472019375459405 14 0.05360096984914055 24 0.050737923238998284 11 0.0502647900652704 16 0.04624341340672971 13 0.04613979479671108 17 0.044777833995696875 23 0.04443879101747103 15 0.04239576149034585 9 0.030505022746038384 0 0.029666312969335702 4 0.012777922086768274 5 0.012218520995177657 3 0.009398079897932688 6 0.009386583599956335 7 0.008123732684946195 8 0.007999923261852906 1 0.00786222271492036 2 0.007459185690997419 __DUMMY__ 0.0042979662048202175 false 1.0 778 21 0.0773535437856058 12 0.06579169892977775 22 0.06530426316641266 18 0.06463947859353027 19 0.06439886471376428 11 0.06214135860936271 13 0.050037752994935465 10 0.04940236595820714 20 0.04878748593512912 24 0.04467162021487419 14 0.04393854854792984 23 0.04339655013969754 17 0.04164619964863665 0 0.037089634404282895 9 0.03666784337774014 16 0.033188703511063185 4 0.021380890164606214 5 0.020895344697302143 6 0.018569058707464385 15 0.018486928592204823 7 0.015539037273020199 3 0.015530886380440274 8 0.015498280035888837 __DUMMY__ 0.015344403402186103 1 0.015316255369499498 2 0.01498300284643776 false 0.0 537 20 0.118033 19 0.093586 24 0.089602 18 0.076984 23 0.066638 15 0.054725 16 0.052531 21 0.045975 14 0.03964 12 0.037606 17 0.036043 10 0.033336 22 0.031777 3 0.027884 4 0.023117 5 0.02303 8 0.021621 1 0.021576 2 0.021408 7 0.021328 9 0.020937 13 0.020515 6 0.017288 11 0.004821 20 0.118033 19 0.093586 24 0.089602 18 0.076984 23 0.066638 15 0.054725 16 0.052531 21 0.045975 14 0.03964 12 0.037606 17 0.036043 10 0.033336 22 0.031777 3 0.027884 4 0.023117 5 0.02303 8 0.021621 1 0.021576 2 0.021408 7 0.021328 9 0.020937 13 0.020515 6 0.017288 11 0.004821 20 0.08587377084073712 19 0.08129458760714342 18 0.07566824874125247 24 0.06539637247999694 21 0.0560034294354776 23 0.053098136554551874 22 0.047835059377888345 16 0.0464899013128174 10 0.04573065758805151 15 0.04444108130992539 12 0.04374326761954809 14 0.04312414581391291 17 0.04214298589268677 11 0.03056242647880394 9 0.030482824362298874 13 0.029733491205073133 3 0.0217162817673383 4 0.021514351748196724 5 0.02120696514845129 0 0.019850260346816168 8 0.018378094222219584 7 0.018239132918594227 1 0.01822021974101275 2 0.017960446273519094 6 0.01720183836919236 __DUMMY__ 0.004092022844493558 false 1.0 779 21 0.07752272662688696 12 0.0669844183737884 22 0.06475900115649444 18 0.06459110883013587 19 0.06401829591087684 11 0.062209478526781894 13 0.051774400135077774 10 0.0495893073017045 20 0.04891080997654539 14 0.04490094956977311 24 0.04444828745334798 23 0.04339417694823926 17 0.041199555807874405 0 0.036847425910643515 9 0.036219022407130014 16 0.032849082172006355 4 0.0211528966280507 5 0.020673068623061834 15 0.018815744429752205 6 0.018403412468475423 7 0.015274324744446198 8 0.015239047951130779 __DUMMY__ 0.015237521150977568 3 0.015186585153098993 1 0.015062183656495682 2 0.014737168087204025 false 0.0 538 18 0.125681 10 0.103268 19 0.091076 22 0.085577 17 0.07121 11 0.065204 0 0.06491 21 0.064712 9 0.064417 20 0.05628 14 0.039758 16 0.039754 12 0.02753 15 0.026348 23 0.019513 13 0.0172 24 0.016752 4 0.007038 5 0.005013 6 0.00324 8 0.001498 3 0.001498 7 0.001494 1 0.001029 18 0.125681 10 0.103268 19 0.091076 22 0.085577 17 0.07121 11 0.065204 0 0.06491 21 0.064712 9 0.064417 20 0.05628 14 0.039758 16 0.039754 12 0.02753 15 0.026348 23 0.019513 13 0.0172 24 0.016752 4 0.007038 5 0.005013 6 0.00324 8 0.001498 3 0.001498 7 0.001494 1 0.001029 18 0.09629592519321323 10 0.07809547946834942 19 0.07772768415394232 22 0.0759680625058515 21 0.06667900766067787 11 0.06184879818980731 17 0.05888730431270751 9 0.05360476082431135 0 0.05305272996838492 20 0.051620111218340786 14 0.0399917847922703 12 0.03909795137699959 16 0.03814723552996648 23 0.02961643729984824 24 0.029487540385128793 13 0.026728329959353238 15 0.02520749503816311 4 0.01567369893178509 5 0.014447858743700791 6 0.012337197801402765 3 0.010805703719878617 7 0.010516251156604444 8 0.01051155048482889 1 0.010164500132804111 2 0.009472974695587114 __DUMMY__ 0.004013626456092123 false 1.0 539 18 0.100646 19 0.085526 10 0.081528 20 0.079961 14 0.06455 21 0.06131 22 0.054533 12 0.054006 13 0.053768 11 0.053567 15 0.053027 17 0.049408 16 0.049238 0 0.037928 24 0.037379 23 0.035104 9 0.03332 4 0.004722 5 0.004091 6 0.002063 3 0.001376 7 0.001114 1 9.61E-4 8 8.72E-4 18 0.100646 19 0.085526 10 0.081528 20 0.079961 14 0.06455 21 0.06131 22 0.054533 12 0.054006 13 0.053768 11 0.053567 15 0.053027 17 0.049408 16 0.049238 0 0.037928 24 0.037379 23 0.035104 9 0.03332 4 0.004722 5 0.004091 6 0.002063 3 0.001376 7 0.001114 1 9.61E-4 8 8.72E-4 18 0.08642924205129562 19 0.0770888772064289 10 0.0687778680601533 20 0.0668037327336111 21 0.06530259973395307 22 0.05991882813886636 11 0.055203138219159745 14 0.05509897949033298 12 0.05277804939999268 17 0.04733529579250011 13 0.046347372387044845 16 0.042999271436959176 15 0.041375430398084695 24 0.040703137392534866 23 0.03792997320439269 0 0.03777064399616054 9 0.03686703518343316 4 0.012883699555945125 5 0.012328365011404283 6 0.009889232677290792 3 0.009129447976816281 7 0.008493513142299045 8 0.008376185892962195 1 0.008291714045579202 2 0.007667285237345715 __DUMMY__ 0.004211081635453555 false 1.0 780 21 0.07411782636841197 22 0.06884108632783896 19 0.06582724840531924 18 0.06537703923531599 11 0.061488876443370775 12 0.05554937260968126 10 0.04955993426045503 20 0.04684081827679554 17 0.04563186681321733 24 0.044729080484658484 23 0.04169889151259711 9 0.04107648815130001 0 0.040115827420690434 14 0.03733841025623347 13 0.0370557987474781 16 0.035676300810035276 4 0.02342297965225165 5 0.022897399256275097 6 0.020305801513624246 3 0.018548413836189794 7 0.018042790538099786 8 0.017994482930122176 1 0.017775077818408872 2 0.017385566669263317 15 0.017372699865753176 __DUMMY__ 0.015329921796612984 false 0.0 781 21 0.07604202218414959 22 0.06806607592917327 19 0.06657438546813545 18 0.064082562866479 11 0.06144261606567936 12 0.05887088739061794 20 0.04850141426935796 10 0.04718296197442543 24 0.046931918676433544 23 0.04438406951319465 17 0.04411589806249475 13 0.03928944911045397 9 0.0386740427048407 0 0.03794074757169854 14 0.0374806070119928 16 0.03572464007446957 4 0.023139569992468446 5 0.02261765970311081 6 0.019966235199596085 3 0.018005658958224195 7 0.017547089429509406 8 0.017464689758069515 1 0.017265037892681755 2 0.016877795652863323 15 0.01631502866670548 __DUMMY__ 0.015496935873174427 false 0.0 540 18 0.099549 19 0.086733 10 0.080603 20 0.079524 14 0.065615 21 0.06245 12 0.05528 22 0.05501 11 0.053717 13 0.053343 15 0.053072 17 0.048568 16 0.048377 24 0.038872 0 0.035923 23 0.035842 9 0.032454 4 0.005462 5 0.005225 6 0.002209 3 0.001492 7 2.69E-4 8 2.29E-4 1 1.81E-4 18 0.099549 19 0.086733 10 0.080603 20 0.079524 14 0.065615 21 0.06245 12 0.05528 22 0.05501 11 0.053717 13 0.053343 15 0.053072 17 0.048568 16 0.048377 24 0.038872 0 0.035923 23 0.035842 9 0.032454 4 0.005462 5 0.005225 6 0.002209 3 0.001492 7 2.69E-4 8 2.29E-4 1 1.81E-4 18 0.08591787875397797 19 0.0776514364205342 10 0.06834668396390754 20 0.06660001138956048 21 0.0658339350508908 22 0.06014113482868614 14 0.055595361289918016 11 0.055273029035138435 12 0.05337184933649851 17 0.04694374106733906 13 0.0461492539016532 16 0.04259793041632152 24 0.04139902111550843 15 0.04139638607658914 23 0.03827394493475579 0 0.03683607521624105 9 0.03646336646953635 4 0.013228615181257723 5 0.012856928358309845 6 0.009957280173301955 3 0.0091835125176248 7 0.00809964597013573 8 0.008076473058416913 1 0.00792814413772647 2 0.007667281663545006 __DUMMY__ 0.004211079672624982 false 1.0 782 21 0.07604202218414959 22 0.06806607592917327 19 0.06657438546813545 18 0.064082562866479 11 0.06144261606567936 12 0.05887088739061794 20 0.04850141426935796 10 0.04718296197442543 24 0.046931918676433544 23 0.04438406951319465 17 0.04411589806249475 13 0.03928944911045397 9 0.0386740427048407 0 0.03794074757169854 14 0.0374806070119928 16 0.03572464007446957 4 0.023139569992468446 5 0.02261765970311081 6 0.019966235199596085 3 0.018005658958224195 7 0.017547089429509406 8 0.017464689758069515 1 0.017265037892681755 2 0.016877795652863323 15 0.01631502866670548 __DUMMY__ 0.015496935873174427 false 0.0 541 18 0.073446 19 0.069148 20 0.060627 22 0.056695 17 0.055123 9 0.054185 24 0.049207 10 0.048182 23 0.042181 21 0.041965 16 0.041176 0 0.039941 3 0.037299 4 0.036039 8 0.035274 5 0.03497 7 0.034957 1 0.034841 2 0.03394 6 0.032652 15 0.027758 11 0.026967 14 0.018207 12 0.015217 18 0.073446 19 0.069148 20 0.060627 22 0.056695 17 0.055123 9 0.054185 24 0.049207 10 0.048182 23 0.042181 21 0.041965 16 0.041176 0 0.039941 3 0.037299 4 0.036039 8 0.035274 5 0.03497 7 0.034957 1 0.034841 2 0.03394 6 0.032652 15 0.027758 11 0.026967 14 0.018207 12 0.015217 18 0.0728721801480818 19 0.06783291425284282 22 0.06045208636574578 20 0.055574118225488287 21 0.0532828642290317 10 0.05278321655352939 17 0.051756227242790144 9 0.04819782062110565 24 0.04473650318816015 11 0.041384781230687555 0 0.040503168317584444 23 0.040475884973312504 16 0.04015623873047604 12 0.03137134168988391 14 0.03130409471445019 15 0.030051177042460294 4 0.029061436015318454 5 0.02829180329864206 3 0.02765453162620536 8 0.026403688361997933 7 0.02624548902644436 1 0.026062083896195173 6 0.02600623665023156 2 0.025446967290182466 13 0.01826230582659184 __DUMMY__ 0.0038308404825600417 false 1.0 783 21 0.07338097914658834 18 0.0695349861805582 22 0.06799446008912795 19 0.06677697715185747 11 0.06220558830501089 12 0.05614573361795549 10 0.05507419412002955 20 0.047798374577354454 17 0.045827012987750326 14 0.04184283438106481 24 0.041432966636625386 0 0.04125124186434708 9 0.04120987064468561 13 0.040906510301409835 23 0.03955839177616113 16 0.03544685097947039 4 0.021026264583790866 15 0.02089378461931065 5 0.02052592349035611 6 0.018029122772806487 3 0.01606482186632062 7 0.01566742813663419 8 0.015609853192068065 1 0.015418786145550603 __DUMMY__ 0.015330690537109235 2 0.015046351896056222 false 0.0 300 12 0.112972 21 0.099076 13 0.085292 19 0.075578 20 0.069905 11 0.068059 18 0.064145 23 0.060508 22 0.058484 24 0.057675 14 0.046366 10 0.038837 16 0.03605 17 0.032599 0 0.025968 9 0.014799 4 0.01238 5 0.012313 6 0.009906 2 0.004222 7 0.004023 1 0.003917 8 0.003805 3 0.003123 12 0.112972 21 0.099076 13 0.085292 19 0.075578 20 0.069905 11 0.068059 18 0.064145 23 0.060508 22 0.058484 24 0.057675 14 0.046366 10 0.038837 16 0.03605 17 0.032599 0 0.025968 9 0.014799 4 0.01238 5 0.012313 6 0.009906 2 0.004222 7 0.004023 1 0.003917 8 0.003805 3 0.003123 21 0.08726325585901851 12 0.08693389710979474 19 0.07113137699301134 11 0.06527993591626065 18 0.065178055330516 13 0.06440819737991897 22 0.06279810633277018 20 0.059265686849152135 23 0.05138580896490879 24 0.05098732464213251 10 0.04470390220620089 14 0.04338893804144951 17 0.03901258882666077 16 0.036460770514217845 0 0.03296232612415044 9 0.026821376225671247 4 0.01706660937187183 5 0.016775166473034443 6 0.014425408682854792 7 0.010149444048569699 8 0.01002208415233552 1 0.009973049861118011 2 0.009933882229170521 3 0.009743543338774412 15 0.009331204126143673 __DUMMY__ 0.004598060400292678 false 1.0 542 18 0.118512 10 0.098397 19 0.084976 22 0.075493 11 0.062718 17 0.062084 21 0.061819 20 0.059465 0 0.056993 9 0.054088 14 0.053869 16 0.041382 15 0.038383 12 0.037159 13 0.034232 23 0.022293 24 0.017596 4 0.006304 5 0.006045 6 0.003267 7 0.001367 8 0.001228 1 0.001178 3 0.001153 18 0.118512 10 0.098397 19 0.084976 22 0.075493 11 0.062718 17 0.062084 21 0.061819 20 0.059465 0 0.056993 9 0.054088 14 0.053869 16 0.041382 15 0.038383 12 0.037159 13 0.034232 23 0.022293 24 0.017596 4 0.006304 5 0.006045 6 0.003267 7 0.001367 8 0.001228 1 0.001178 3 0.001153 18 0.09374648823741613 10 0.07644295290762278 19 0.07556184616657895 22 0.07109805776821918 21 0.06574323484346757 11 0.06067188305115589 20 0.0542702394928492 17 0.05409879614273808 0 0.04862652905228672 9 0.04827194200464178 14 0.04779020238683287 12 0.04412085325945646 16 0.038730160007691965 13 0.03556696138529441 15 0.03165393593480796 23 0.03105094197667473 24 0.030252949778891182 4 0.014683381096755578 5 0.014287962139464153 6 0.01160426395801277 3 0.010005089158003388 7 0.009720159737353374 8 0.009647011985590917 1 0.009498239982557102 2 0.0087465143848333 __DUMMY__ 0.00410940316080367 false 1.0 784 21 0.07314266441211628 19 0.06939492105967779 18 0.06854729915295536 22 0.06664783614550582 11 0.058702234944281714 12 0.05518158519025148 20 0.053547709328672685 10 0.050808332526709625 24 0.047355602180488204 17 0.044525586317859224 23 0.04298854950457809 14 0.04119938107671882 9 0.03847787872400555 13 0.03803784318187211 16 0.03734276381686192 0 0.03646019487055857 15 0.023185081502539527 4 0.021257838932327227 5 0.020748664167359706 6 0.01781523845661876 3 0.01680557260545331 7 0.01585010778936787 8 0.015807182642079764 1 0.015577594451677248 __DUMMY__ 0.01536894524862146 2 0.015223391770841801 false 0.0 301 21 0.101912 12 0.096486 11 0.085057 22 0.075426 19 0.073101 13 0.072973 18 0.068807 10 0.055502 20 0.050458 14 0.048273 0 0.043864 24 0.043818 17 0.042359 23 0.039174 16 0.034501 9 0.032579 4 0.009705 5 0.009078 6 0.007088 7 0.002594 1 0.002128 8 0.00211 2 0.001617 3 0.001389 21 0.101912 12 0.096486 11 0.085057 22 0.075426 19 0.073101 13 0.072973 18 0.068807 10 0.055502 20 0.050458 14 0.048273 0 0.043864 24 0.043818 17 0.042359 23 0.039174 16 0.034501 9 0.032579 4 0.009705 5 0.009078 6 0.007088 7 0.002594 1 0.002128 8 0.00211 2 0.001617 3 0.001389 21 0.08854898373047511 12 0.07796113680529436 11 0.07344256593767544 22 0.07146102606870468 19 0.06995926318853385 18 0.06799893185374103 13 0.05777352807372364 10 0.05344867281421637 20 0.0498369059030688 14 0.044751396437000636 24 0.04420779800052881 17 0.043560133008301305 0 0.04154146051020713 23 0.04066892728454425 9 0.03599567467747773 16 0.035097565517034836 4 0.015806797982670963 5 0.015248468445999573 6 0.012975117600772437 15 0.009794365314669286 7 0.009444568428824341 8 0.009195431153646953 1 0.009098395736546135 3 0.009038770690117956 2 0.00867258019968322 __DUMMY__ 0.0044715346365413544 false 1.0 543 17 0.071359 0 0.065022 22 0.057746 9 0.057042 16 0.056014 18 0.052367 19 0.048307 6 0.043845 8 0.043415 7 0.04327 1 0.043163 11 0.043042 2 0.042897 4 0.04267 5 0.042016 10 0.041434 3 0.041301 21 0.033512 23 0.032657 24 0.028967 20 0.025172 15 0.022291 12 0.017319 14 0.005174 17 0.071359 0 0.065022 22 0.057746 9 0.057042 16 0.056014 18 0.052367 19 0.048307 6 0.043845 8 0.043415 7 0.04327 1 0.043163 11 0.043042 2 0.042897 4 0.04267 5 0.042016 10 0.041434 3 0.041301 21 0.033512 23 0.032657 24 0.028967 20 0.025172 15 0.022291 12 0.017319 14 0.005174 17 0.06330232888143193 22 0.06262367770767227 0 0.05849413121047708 18 0.05742859915316447 9 0.053714617553769925 19 0.0527924691620788 11 0.05019341732267947 16 0.04797502514480299 21 0.04682332754888566 10 0.04611974557782734 4 0.03665802284389887 6 0.036498789506045244 5 0.03604791198754829 8 0.0353230656184813 7 0.035232589117141104 1 0.0350570866932548 2 0.034667817699849876 23 0.0342727228265541 3 0.033839450670916045 24 0.03150369395052803 20 0.02946951303194786 12 0.029165316338904654 15 0.020359326504840826 14 0.016405634589779908 13 0.012523665784104293 __DUMMY__ 0.0035080535734150365 false 1.0 785 22 0.06404905124377425 18 0.06071063221761252 21 0.05868548417631663 19 0.05802166087680111 17 0.05386166377719598 11 0.05341015239021009 0 0.0478440631954812 10 0.04694010692537479 9 0.04662693617021763 16 0.0418197837344839 12 0.04131865384160283 23 0.038052307875518505 20 0.038041807642869546 24 0.03753273495684082 4 0.029992021066778396 14 0.029736800223515807 5 0.02944855572709818 6 0.028459893644457574 8 0.02675072940152977 7 0.026676369647851757 1 0.026454969774791035 3 0.026146171592554474 13 0.026101610227328393 2 0.026075143127641563 15 0.02364824464482344 __DUMMY__ 0.0135944518973297 false 0.0 544 18 0.126872 10 0.103133 19 0.091475 22 0.087409 17 0.07175 9 0.065022 21 0.064681 11 0.064433 0 0.064168 20 0.056357 14 0.040465 16 0.039655 12 0.027582 15 0.026445 23 0.018477 24 0.016204 13 0.015828 4 0.006811 5 0.005523 6 0.003014 3 0.001523 8 0.001181 7 0.001157 1 8.38E-4 18 0.126872 10 0.103133 19 0.091475 22 0.087409 17 0.07175 9 0.065022 21 0.064681 11 0.064433 0 0.064168 20 0.056357 14 0.040465 16 0.039655 12 0.027582 15 0.026445 23 0.018477 24 0.016204 13 0.015828 4 0.006811 5 0.005523 6 0.003014 3 0.001523 8 0.001181 7 0.001157 1 8.38E-4 18 0.0968530688177395 10 0.07803220222189311 19 0.07791427046144721 22 0.07682516389198073 21 0.06666440890407448 11 0.06148795406389851 17 0.05913989213866961 9 0.05388777010567821 0 0.05270546753073386 20 0.05165606769779361 14 0.04032253983015731 12 0.03912222772636391 16 0.03810085905902541 24 0.02923108523871187 23 0.029131642717089644 13 0.026086322238456253 15 0.025252846759868906 4 0.015567461743794595 5 0.014686471701112817 6 0.012231433205252353 3 0.010817386259399365 8 0.010363208795151653 7 0.010358551294123603 1 0.010075115377382605 2 0.009472961398136364 __DUMMY__ 0.004013620822064604 false 1.0 302 0 0.087115 17 0.084079 11 0.073855 16 0.073558 12 0.066385 22 0.060736 18 0.058233 19 0.056302 21 0.05354 10 0.051851 9 0.044974 13 0.042209 6 0.029737 23 0.028457 4 0.024727 5 0.024514 8 0.023857 7 0.02356 1 0.023553 2 0.023399 3 0.01591 20 0.015333 24 0.008093 14 0.006024 0 0.087115 17 0.084079 11 0.073855 16 0.073558 12 0.066385 22 0.060736 18 0.058233 19 0.056302 21 0.05354 10 0.051851 9 0.044974 13 0.042209 6 0.029737 23 0.028457 4 0.024727 5 0.024514 8 0.023857 7 0.02356 1 0.023553 2 0.023399 3 0.01591 20 0.015333 24 0.008093 14 0.006024 17 0.06712879865178505 11 0.06656179633647873 0 0.06614472277466933 22 0.06321184475239525 18 0.061149424861698956 21 0.06060023955354501 12 0.05969554845542503 19 0.05936726110122541 16 0.056576694320435224 10 0.050944947274475724 9 0.043961461262838814 13 0.03943277840334325 23 0.03402709969187224 20 0.029120821366457682 6 0.02661761039811078 4 0.02510988495478139 5 0.024740914185036343 24 0.023929207227130492 8 0.022482496443466518 7 0.022338695974104157 1 0.022222856068205434 2 0.021938490771064228 14 0.02053778989230942 3 0.018282096489974604 15 0.009842742965048045 __DUMMY__ 0.0040337758241228835 false 1.0 786 22 0.06585110028229932 18 0.058966928750644035 17 0.05638916727273239 11 0.055715008541088865 21 0.055336861799186454 0 0.055262488915635684 9 0.05305168552305806 19 0.051875767689438856 10 0.04988969105591727 16 0.03898857700975356 12 0.037174097524338506 23 0.03420505618592442 4 0.03400810572742188 5 0.03345180625907305 6 0.03312332533446453 8 0.03125136311972199 7 0.031215729256776785 1 0.031004696518911357 2 0.030492812397883883 24 0.02996542583028653 3 0.029943695144133364 20 0.027622357602421214 14 0.02351672969113381 13 0.022186933028166354 15 0.016309592448986367 __DUMMY__ 0.013200997090601414 false 0.0 303 21 0.080385 11 0.075778 22 0.075477 12 0.067132 18 0.063364 19 0.056673 10 0.056306 0 0.055448 17 0.049043 9 0.048976 13 0.048688 14 0.033847 23 0.032442 24 0.031632 20 0.029928 16 0.029131 4 0.024717 5 0.024046 6 0.022966 8 0.01927 7 0.01919 1 0.019018 2 0.018604 3 0.01794 21 0.080385 11 0.075778 22 0.075477 12 0.067132 18 0.063364 19 0.056673 10 0.056306 0 0.055448 17 0.049043 9 0.048976 13 0.048688 14 0.033847 23 0.032442 24 0.031632 20 0.029928 16 0.029131 4 0.024717 5 0.024046 6 0.022966 8 0.01927 7 0.01919 1 0.019018 2 0.018604 3 0.01794 21 0.07606636595145264 22 0.07150332292948841 11 0.0684538952207768 18 0.06465976413267088 12 0.06125717972224015 19 0.060380835234447254 10 0.053951175152195316 0 0.049033413324248314 17 0.0480955142631689 9 0.04562701145489721 13 0.04379014463062628 20 0.037430026299281625 24 0.03659177381927635 23 0.03643437747095264 14 0.035951543668024964 16 0.032713430626803854 4 0.02439932172749138 5 0.02380944831297798 6 0.022210218972114466 8 0.01912543484998289 7 0.019101089507950933 1 0.018893400744261685 3 0.018492718823711715 2 0.01849125744210212 15 0.009427241697220031 __DUMMY__ 0.004110094021635146 false 1.0 787 18 0.07330915592063286 19 0.06694045111244448 20 0.060079658590505874 21 0.058985811586117425 14 0.056646314499868386 22 0.05606700782994388 10 0.05583892555347097 15 0.05141531743894422 11 0.04675728171291832 12 0.045579259683706096 17 0.04475400290231481 24 0.04431118076352275 13 0.04211708952448104 23 0.04100424894902388 16 0.04077292603265522 9 0.036077453467410335 0 0.03200062336063315 4 0.019627026648928996 5 0.019160946204330852 6 0.016811093695828186 3 0.01633119468605372 8 0.015545578758311928 7 0.015506300869160182 1 0.015256850373509805 2 0.01494109396831499 __DUMMY__ 0.014163205866967787 false 0.0 545 17 0.0863 16 0.082394 0 0.070482 19 0.057552 22 0.051444 18 0.051287 9 0.045784 11 0.045083 6 0.038726 8 0.037181 7 0.036992 1 0.036822 2 0.036053 4 0.034754 23 0.034556 10 0.034022 5 0.034007 21 0.031786 3 0.031585 20 0.031324 12 0.030527 24 0.028027 15 0.025564 13 0.007748 17 0.0863 16 0.082394 0 0.070482 19 0.057552 22 0.051444 18 0.051287 9 0.045784 11 0.045083 6 0.038726 8 0.037181 7 0.036992 1 0.036822 2 0.036053 4 0.034754 23 0.034556 10 0.034022 5 0.034007 21 0.031786 3 0.031585 20 0.031324 12 0.030527 24 0.028027 15 0.025564 13 0.007748 17 0.07366923569164305 16 0.06415618113653652 0 0.06397706640462711 22 0.057992259316440066 19 0.05594809224629971 18 0.05563504652565896 11 0.050095396099417336 9 0.04868642064377953 21 0.04236117888076046 10 0.04160396534139698 6 0.03565866971091845 23 0.03452839266870839 8 0.033894335772870814 4 0.03382518548034319 12 0.03381268448450868 7 0.03376951147087923 1 0.033579033614041326 5 0.033181535352838354 2 0.03294322890733372 20 0.03037413066799481 3 0.030161575454544204 24 0.028897682142563212 15 0.02250094086515299 13 0.01447981732856114 14 0.011011555579466474 __DUMMY__ 0.0032568782127154047 false 1.0 304 21 0.098547 12 0.096161 11 0.085691 13 0.075505 22 0.073609 19 0.065919 18 0.065206 10 0.055729 14 0.048606 0 0.045789 20 0.044103 17 0.041434 24 0.040442 23 0.037559 9 0.033838 16 0.030946 4 0.012894 5 0.011951 6 0.010616 7 0.005665 1 0.005588 8 0.005395 2 0.004836 3 0.003971 21 0.098547 12 0.096161 11 0.085691 13 0.075505 22 0.073609 19 0.065919 18 0.065206 10 0.055729 14 0.048606 0 0.045789 20 0.044103 17 0.041434 24 0.040442 23 0.037559 9 0.033838 16 0.030946 4 0.012894 5 0.011951 6 0.010616 7 0.005665 1 0.005588 8 0.005395 2 0.004836 3 0.003971 21 0.0869377667781382 12 0.07791289330612752 11 0.07387456373901059 22 0.0705979440594538 19 0.06632549531397665 18 0.06618411820645709 13 0.059175460675189376 10 0.05361533535950277 20 0.04651840977171666 14 0.04494079597629196 17 0.04313190138343065 0 0.04262119445341664 24 0.04237945213853604 23 0.0398038128873167 9 0.03666715303953045 16 0.0333168465587062 4 0.01737181884991053 5 0.016666253461752698 6 0.014731054171376266 7 0.010960494715990652 8 0.010812267794225621 1 0.010797814698171879 3 0.010287434793389626 2 0.010258386935472881 15 0.009706275860974403 __DUMMY__ 0.0044050550719339845 false 1.0 788 21 0.07112212530216598 22 0.06615447034911746 18 0.06523902955332438 11 0.06105607785695232 19 0.06035215868208084 12 0.05685850065653526 10 0.05293688663941361 17 0.04518054779894654 13 0.04381809582508462 0 0.042490784841117034 9 0.04248802211682444 20 0.04238481710254344 14 0.04183369769249597 24 0.038810641389143356 23 0.038737790831620635 16 0.032835904728394205 4 0.02408123056803184 5 0.02357571476970699 6 0.02167689361114573 15 0.020453167728369137 7 0.018966863165488755 8 0.01896589997268959 1 0.018750029705820584 3 0.018733838323548278 2 0.018372291118546692 __DUMMY__ 0.01412451967089252 false 0.0 546 16 0.064779 23 0.063707 17 0.063338 19 0.061827 18 0.054439 20 0.054301 24 0.052205 22 0.044961 5 0.042612 6 0.0423 4 0.042075 1 0.041431 7 0.041291 2 0.040754 8 0.04045 3 0.039387 0 0.035507 15 0.035158 21 0.033778 9 0.033179 12 0.026641 11 0.022099 10 0.019037 14 0.004745 16 0.064779 23 0.063707 17 0.063338 19 0.061827 18 0.054439 20 0.054301 24 0.052205 22 0.044961 5 0.042612 6 0.0423 4 0.042075 1 0.041431 7 0.041291 2 0.040754 8 0.04045 3 0.039387 0 0.035507 15 0.035158 21 0.033778 9 0.033179 12 0.026641 11 0.022099 10 0.019037 14 0.004745 19 0.06404250395855762 18 0.06212961171090747 17 0.055705566985896654 20 0.05364447885200567 22 0.05313672242174816 16 0.05296354144912787 23 0.051614584749424625 21 0.04888558315390624 24 0.0474937674012796 12 0.038296537235468324 11 0.037768181516127035 0 0.03724934262440979 10 0.036437409211317634 9 0.036392835096542744 15 0.0355101915161232 4 0.03183934755866557 5 0.03181214734113285 6 0.03071632489568689 7 0.029307977159698167 1 0.029252407510795497 8 0.02894821275162855 2 0.028739055363669042 3 0.028492897337840974 14 0.025736697949347763 13 0.02007901327930377 __DUMMY__ 0.0038050609693882206 false 1.0 305 21 0.096311 12 0.096192 11 0.086073 13 0.077123 22 0.072405 18 0.061529 19 0.061395 10 0.055243 14 0.048829 0 0.047053 17 0.040297 20 0.039425 24 0.037657 23 0.036644 9 0.034546 16 0.029232 4 0.015099 5 0.014776 6 0.013111 2 0.007667 1 0.007664 7 0.007654 8 0.00765 3 0.006423 21 0.096311 12 0.096192 11 0.086073 13 0.077123 22 0.072405 18 0.061529 19 0.061395 10 0.055243 14 0.048829 0 0.047053 17 0.040297 20 0.039425 24 0.037657 23 0.036644 9 0.034546 16 0.029232 4 0.015099 5 0.014776 6 0.013111 2 0.007667 1 0.007664 7 0.007654 8 0.00765 3 0.006423 21 0.08559376479346563 12 0.07776116325131724 11 0.07425155640591782 22 0.07007062221595174 18 0.0643092959960267 19 0.06373562022069125 13 0.059900772794419514 10 0.053576178417279026 14 0.04478058605339609 0 0.043825312598745614 20 0.04356152386078688 17 0.042897204568230866 24 0.040436466270610476 23 0.039030619358474385 9 0.03734426591265494 16 0.03249657141090407 4 0.018594662401907838 5 0.018179986750008804 6 0.016169705798987046 7 0.01213272530655368 8 0.012110174435485467 1 0.012012706560692062 2 0.011824526609471121 3 0.011595216559695809 15 0.0094737058178536 __DUMMY__ 0.004335065630472218 false 1.0 789 18 0.0722710510497156 21 0.06681596724803558 22 0.06413442067756166 19 0.06383839691208024 10 0.059887166842361235 11 0.05740426081257872 12 0.050726163661941465 14 0.048869125853716784 20 0.04836097315806225 17 0.044835314108902714 13 0.042708464769864035 9 0.042586403772314804 0 0.040341087768313084 24 0.037933861647629095 23 0.037163234355491334 16 0.033653600323700635 15 0.03152607290877532 4 0.021344804239106407 5 0.020873972998172948 6 0.018500960663663392 3 0.016925799996023266 8 0.016450025952163036 7 0.016445262518351128 1 0.01623432204599503 2 0.015885138307576305 __DUMMY__ 0.0142841474079039 false 0.0 547 10 0.102602 18 0.090271 11 0.068659 14 0.066803 0 0.066284 22 0.064778 9 0.062005 19 0.053272 17 0.052885 13 0.050524 21 0.04961 15 0.047473 12 0.033398 16 0.028446 20 0.026508 4 0.017807 5 0.017336 6 0.016768 1 0.015286 7 0.015191 8 0.015068 2 0.014268 3 0.014011 23 0.010745 10 0.102602 18 0.090271 11 0.068659 14 0.066803 0 0.066284 22 0.064778 9 0.062005 19 0.053272 17 0.052885 13 0.050524 21 0.04961 15 0.047473 12 0.033398 16 0.028446 20 0.026508 4 0.017807 5 0.017336 6 0.016768 1 0.015286 7 0.015191 8 0.015068 2 0.014268 3 0.014011 23 0.010745 10 0.08333793397458848 18 0.0831263683404081 22 0.06582715357985384 11 0.0643099641474919 19 0.05978220171258603 21 0.05817745309631915 14 0.05634095873937025 0 0.055364670422489354 9 0.05362084513331841 17 0.05044819621017785 13 0.04477542924947949 12 0.04099814290623606 15 0.03809711030187317 20 0.03698586738593958 16 0.031850737898547796 23 0.023118901049797778 4 0.019318342594745477 5 0.018844448547961263 24 0.017788149475372318 6 0.01737390953873553 7 0.0155721065832604 8 0.015511050567718484 1 0.015499720664530873 3 0.015231047367859704 2 0.014831542141040136 __DUMMY__ 0.003867748370298543 false 1.0 306 12 0.102249 13 0.086811 21 0.079732 11 0.070546 22 0.051504 19 0.047971 18 0.047725 23 0.047312 0 0.043571 10 0.041298 14 0.041007 20 0.038819 17 0.037312 24 0.036825 16 0.032353 9 0.026509 6 0.025791 4 0.024923 5 0.024624 8 0.019552 7 0.019484 2 0.01935 1 0.019343 3 0.015387 12 0.102249 13 0.086811 21 0.079732 11 0.070546 22 0.051504 19 0.047971 18 0.047725 23 0.047312 0 0.043571 10 0.041298 14 0.041007 20 0.038819 17 0.037312 24 0.036825 16 0.032353 9 0.026509 6 0.025791 4 0.024923 5 0.024624 8 0.019552 7 0.019484 2 0.01935 1 0.019343 3 0.015387 12 0.08356190690042199 21 0.07851803339258744 13 0.06848982614997531 11 0.06690584854891773 22 0.05902262043639259 18 0.05721671799012156 19 0.05631192035574941 10 0.0467873909405019 23 0.044516398182810044 20 0.043414013779826136 14 0.043180880063065495 0 0.04120138423637699 17 0.04007016081710434 24 0.03990914185684291 16 0.03274268245432267 9 0.03242957058306332 4 0.02297052671347122 5 0.022575574548324026 6 0.02199987424258654 8 0.017342230522167962 7 0.01732296064758637 1 0.01714796834055618 2 0.0169776271515301 3 0.01526273848719696 15 0.009872470414702569 __DUMMY__ 0.004249532243798145 false 1.0 548 20 0.108503 23 0.08872 19 0.08535 24 0.078412 18 0.074692 16 0.058086 15 0.055643 12 0.051793 21 0.040443 17 0.035805 14 0.035005 13 0.032251 10 0.029143 4 0.026788 5 0.025835 3 0.023766 6 0.023618 22 0.023537 8 0.023091 7 0.022485 2 0.021992 1 0.02171 11 0.008165 9 0.005167 20 0.108503 23 0.08872 19 0.08535 24 0.078412 18 0.074692 16 0.058086 15 0.055643 12 0.051793 21 0.040443 17 0.035805 14 0.035005 13 0.032251 10 0.029143 4 0.026788 5 0.025835 3 0.023766 6 0.023618 22 0.023537 8 0.023091 7 0.022485 2 0.021992 1 0.02171 11 0.008165 9 0.005167 20 0.08138842991125002 19 0.07765431925391078 18 0.07455683852704581 23 0.06385292526078117 24 0.06027784492121565 21 0.05437599347406488 12 0.0512074866167394 16 0.048268752182578215 22 0.04431890378098921 10 0.044074829126432416 15 0.0436966628904152 17 0.04119922080714582 14 0.04107606609227593 13 0.035833607764161446 11 0.03267223696775581 4 0.023159064458727386 9 0.023022968430931025 5 0.02245861465807935 6 0.019980268501930475 3 0.01969068532261897 0 0.01955569429351591 8 0.018849724014412202 7 0.01857876425125234 1 0.018081892546243965 2 0.018053404445728262 __DUMMY__ 0.004114801499798363 false 1.0 307 21 0.103114 12 0.096347 11 0.084119 19 0.077517 22 0.076716 18 0.071295 13 0.070672 10 0.055491 20 0.05498 14 0.048208 24 0.046879 17 0.042713 0 0.041977 23 0.040462 16 0.035889 9 0.031085 4 0.008232 5 0.007801 6 0.004891 15 9.68E-4 7 2.21E-4 3 2.21E-4 8 1.24E-4 1 8.0E-5 21 0.103114 12 0.096347 11 0.084119 19 0.077517 22 0.076716 18 0.071295 13 0.070672 10 0.055491 20 0.05498 14 0.048208 24 0.046879 17 0.042713 0 0.041977 23 0.040462 16 0.035889 9 0.031085 4 0.008232 5 0.007801 6 0.004891 15 9.68E-4 7 2.21E-4 3 2.21E-4 8 1.24E-4 1 8.0E-5 21 0.08915725082687853 12 0.07787031475610987 11 0.07291522811444111 19 0.07223537244772052 22 0.0720679775060278 18 0.0692164469093691 13 0.05654795409076981 10 0.05332926002513666 20 0.052216034634311216 24 0.04585674388146708 14 0.04465914138825817 17 0.04374202386974517 23 0.04137615214939171 0 0.04052285184062068 16 0.035881103569392545 9 0.035200620615190956 4 0.015063437668375552 5 0.014597418115456626 6 0.011874112793106207 15 0.010287798773791776 3 0.008456952587717325 7 0.00827633915592162 8 0.008207796639284838 1 0.008081016610941736 2 0.007857588810977194 __DUMMY__ 0.004503062219596318 false 1.0 549 20 0.115194 19 0.09373 24 0.089137 18 0.073777 21 0.068303 23 0.0661 12 0.063905 16 0.054381 15 0.048701 14 0.047878 22 0.042023 13 0.04164 17 0.033395 11 0.032935 10 0.029733 4 0.014841 5 0.014237 3 0.013374 7 0.010091 8 0.009967 1 0.009691 6 0.009687 2 0.008939 9 0.008342 20 0.115194 19 0.09373 24 0.089137 18 0.073777 21 0.068303 23 0.0661 12 0.063905 16 0.054381 15 0.048701 14 0.047878 22 0.042023 13 0.04164 17 0.033395 11 0.032935 10 0.029733 4 0.014841 5 0.014237 3 0.013374 7 0.010091 8 0.009967 1 0.009691 6 0.009687 2 0.008939 9 0.008342 20 0.08550786928496967 19 0.08229656482937876 18 0.07237681233743957 21 0.07065836830502889 24 0.06824107936351197 12 0.05960277158061805 23 0.05449347789407181 22 0.05412336144670455 14 0.04641616368451336 16 0.04614979258454264 11 0.04537286711088264 10 0.041298348960014185 13 0.04079332204925309 17 0.038978420722445555 15 0.0380837135579406 9 0.023242208688785692 0 0.01781404554081934 4 0.017432037457811522 5 0.016883266440654222 3 0.014508357747003861 6 0.013084559341927648 7 0.012318075635920618 8 0.012244417868823666 1 0.011986009330780761 2 0.011459314348542048 __DUMMY__ 0.004634773887615434 false 1.0 308 13 0.132715 14 0.117235 12 0.100241 21 0.078025 10 0.077294 18 0.073324 15 0.064623 11 0.062669 20 0.0535 19 0.043205 22 0.040504 23 0.039659 24 0.026494 9 0.021386 0 0.019397 17 0.011064 4 0.009774 5 0.009018 6 0.008102 16 0.003765 7 0.002169 1 0.002037 8 0.001943 2 0.001858 13 0.132715 14 0.117235 12 0.100241 21 0.078025 10 0.077294 18 0.073324 15 0.064623 11 0.062669 20 0.0535 19 0.043205 22 0.040504 23 0.039659 24 0.026494 9 0.021386 0 0.019397 17 0.011064 4 0.009774 5 0.009018 6 0.008102 16 0.003765 7 0.002169 1 0.002037 8 0.001943 2 0.001858 13 0.09247255136586914 12 0.08287105875876073 14 0.08234527264516614 21 0.07695714135740929 18 0.06998867032427933 10 0.06461072083357625 11 0.06190114949511934 19 0.05381849191304346 22 0.05235496202548508 20 0.05181308710098235 15 0.04372407399532952 23 0.0409639924167433 24 0.03509963240945749 9 0.029170876298771166 0 0.02829213653852371 17 0.026502372173399145 16 0.018623427904129883 4 0.015276681141477245 5 0.014683218952515118 6 0.01308443038199381 7 0.008606091856628745 8 0.008501977594586787 1 0.008446380554865506 2 0.008207624568232196 3 0.007522695347798581 __DUMMY__ 0.004161282045856596 false 1.0 309 12 0.08694 21 0.084745 13 0.083261 11 0.074894 18 0.074593 19 0.070218 14 0.069866 10 0.066922 22 0.062976 20 0.053923 0 0.039837 17 0.03942 23 0.036749 16 0.036151 24 0.035174 15 0.03152 9 0.029367 4 0.007509 5 0.00715 6 0.005429 8 0.001013 7 9.08E-4 1 7.94E-4 2 6.41E-4 12 0.08694 21 0.084745 13 0.083261 11 0.074894 18 0.074593 19 0.070218 14 0.069866 10 0.066922 22 0.062976 20 0.053923 0 0.039837 17 0.03942 23 0.036749 16 0.036151 24 0.035174 15 0.03152 9 0.029367 4 0.007509 5 0.00715 6 0.005429 8 0.001013 7 9.08E-4 1 7.94E-4 2 6.41E-4 21 0.08010308750585038 12 0.073542575330587 18 0.07091244682869512 19 0.06855738685336009 11 0.06819597318767522 22 0.0650297497117799 13 0.06335685526833107 10 0.05903348449910361 14 0.055893424862730565 20 0.05196557911167832 17 0.04190097914310455 24 0.0401248102015251 23 0.03958118404600374 0 0.03920800304331182 16 0.03587766815565717 9 0.03414000722495702 15 0.025808260273765146 4 0.014585439749881326 5 0.01415698404075214 6 0.012021497667005072 8 0.008513306501731864 7 0.008482692312156311 1 0.008303944267036347 3 0.008213481546394579 2 0.008050175477962444 __DUMMY__ 0.004441003188964062 false 1.0 790 18 0.0704525042674155 21 0.06498722507195558 19 0.06355174415574129 22 0.0631900104032696 10 0.05672057942112299 11 0.05486841009313314 20 0.04898833002207729 12 0.048574372571806204 14 0.04635897201924044 17 0.045443612576651804 9 0.04236726126054561 24 0.039725853477731 13 0.03947944193113388 0 0.039458062476508675 23 0.038488567155083926 16 0.035092104884311186 15 0.03187840081284788 4 0.022860478667396683 5 0.022362678519124157 6 0.020066206093975275 3 0.018724126116507044 8 0.018235780283405792 7 0.018221292949664 1 0.01799491972604473 2 0.017626227849481126 __DUMMY__ 0.014282837193825093 false 0.0 791 21 0.07043059415891267 18 0.06941282698566441 19 0.06415384397563159 12 0.06043190920693089 22 0.06021820953879272 11 0.05615838201089084 10 0.05474137425562891 14 0.05457068911725551 20 0.05368981009535069 13 0.053098936403535746 24 0.0428771318527699 23 0.041430265239294634 17 0.04072744911227154 9 0.03575775426525913 15 0.0345770417989682 0 0.03401837348519079 16 0.033730912468420554 4 0.01949471569959324 5 0.01904928973020689 6 0.016726606634830186 __DUMMY__ 0.014474017824708479 3 0.014377469172796089 8 0.014148380942779587 7 0.014130834923815368 1 0.013931347572885937 2 0.013641833527615685 false 0.0 550 18 0.119207 19 0.096287 22 0.089058 10 0.086401 21 0.077638 20 0.066894 11 0.060083 17 0.059586 9 0.056886 0 0.045416 24 0.044118 14 0.039146 23 0.034551 12 0.033447 16 0.031256 15 0.018883 13 0.011388 4 0.010195 5 0.008009 3 0.00387 6 0.003262 8 0.001736 7 0.001478 1 0.001204 18 0.119207 19 0.096287 22 0.089058 10 0.086401 21 0.077638 20 0.066894 11 0.060083 17 0.059586 9 0.056886 0 0.045416 24 0.044118 14 0.039146 23 0.034551 12 0.033447 16 0.031256 15 0.018883 13 0.011388 4 0.010195 5 0.008009 3 0.00387 6 0.003262 8 0.001736 7 0.001478 1 0.001204 18 0.09334452959247652 19 0.08069337234293077 22 0.07769989084479421 21 0.07372697014015953 10 0.07005721697791724 11 0.059865741723510224 20 0.057341931214943555 17 0.05288358656105642 9 0.04942754687723292 0 0.043249696906622566 12 0.0430266024227065 24 0.04297996061645647 14 0.040288316391478014 23 0.03705635165253707 16 0.03399942235820894 13 0.024930056678791224 15 0.021532776660798943 4 0.01668308529038064 5 0.015385655792844243 6 0.011792444713005648 3 0.011383418474648762 8 0.010022710364623487 7 0.009913368822079202 1 0.009651450730245977 2 0.00888646501748999 __DUMMY__ 0.004177430832060976 false 1.0 792 21 0.06832313330142749 18 0.06702627934991648 22 0.06546222664384738 11 0.05971032975782172 19 0.05941923959866064 10 0.056304692056000076 12 0.05298855354966278 17 0.04482875795893314 9 0.04447296670678432 0 0.04314165993660456 14 0.042204265453653085 13 0.04177650885782988 20 0.0417205128687736 23 0.037802132172154675 24 0.03659898473395692 16 0.03134772942432665 4 0.024905179473564514 5 0.024419925301517646 6 0.02242793348520612 15 0.02191678504138505 7 0.020015660405650667 8 0.019978381591484434 3 0.019958155783208153 1 0.01981602894913786 2 0.01941448765762565 __DUMMY__ 0.014019489940866652 false 0.0 793 18 0.06971265017988913 19 0.06691609411191578 21 0.06094314961820314 22 0.05749039371267275 20 0.055929408000764284 10 0.05202080096719989 11 0.05033910516024925 12 0.05010531499268352 17 0.04854827820418434 14 0.046715095406882984 16 0.04441797460329949 24 0.04328439511538055 23 0.04168590054979798 13 0.04058941198365853 15 0.039681904674061824 0 0.03707065977842864 9 0.03620857794435111 4 0.02092463585746329 5 0.02046278945949032 6 0.018800233840504874 8 0.016987730256189968 3 0.01695616766802287 7 0.016946432689033078 1 0.016724135463924046 2 0.01640848271916692 __DUMMY__ 0.014130277042581315 false 0.0 551 17 0.092609 16 0.084578 0 0.082149 19 0.057179 18 0.056626 22 0.054966 11 0.053946 9 0.047961 10 0.042816 12 0.036876 6 0.035512 21 0.034587 8 0.032605 7 0.032353 1 0.032294 2 0.031592 4 0.030517 5 0.029867 23 0.029303 3 0.025465 20 0.023227 15 0.021162 24 0.017108 13 0.014702 17 0.092609 16 0.084578 0 0.082149 19 0.057179 18 0.056626 22 0.054966 11 0.053946 9 0.047961 10 0.042816 12 0.036876 6 0.035512 21 0.034587 8 0.032605 7 0.032353 1 0.032294 2 0.031592 4 0.030517 5 0.029867 23 0.029303 3 0.025465 20 0.023227 15 0.021162 24 0.017108 13 0.014702 17 0.07414988332150631 0 0.06721034760131969 16 0.06286751765331434 22 0.06038414199470615 18 0.05830155357955273 19 0.05645165019831258 11 0.05504448737941157 9 0.04891138810934064 21 0.04644107786594813 10 0.04565933869170839 12 0.03884778597103894 6 0.033218615202745196 23 0.03302704911026177 4 0.03130493648012365 8 0.030792742118437653 5 0.03071079662832147 7 0.030660723821342953 1 0.03052068748024735 2 0.029919508304233067 20 0.028012544171388824 3 0.02669004735387653 24 0.025569051982268474 13 0.01956324607996777 15 0.01953772009152197 14 0.012766787963978291 __DUMMY__ 0.0034363708451256377 false 1.0 552 18 0.094125 19 0.086865 20 0.077813 10 0.075744 21 0.068829 14 0.060589 12 0.06046 22 0.057676 11 0.057626 13 0.054341 16 0.048601 17 0.048584 15 0.044561 24 0.042114 0 0.037061 23 0.036361 9 0.032503 4 0.005315 5 0.004709 6 0.002241 3 0.001547 7 8.71E-4 1 7.72E-4 8 6.9E-4 18 0.094125 19 0.086865 20 0.077813 10 0.075744 21 0.068829 14 0.060589 12 0.06046 22 0.057676 11 0.057626 13 0.054341 16 0.048601 17 0.048584 15 0.044561 24 0.042114 0 0.037061 23 0.036361 9 0.032503 4 0.005315 5 0.004709 6 0.002241 3 0.001547 7 8.71E-4 1 7.72E-4 8 6.9E-4 18 0.08198482427631174 19 0.07746995084240672 21 0.0706480033313901 10 0.06474053007030378 20 0.06454809227488456 22 0.06244162193673294 11 0.05862371786307881 12 0.057550999339223495 14 0.0517295275768617 17 0.04695605848772967 13 0.046879393646695675 24 0.04329441409362145 16 0.042488893792943454 23 0.038761936483400206 0 0.03788772485421118 9 0.03646913560127297 15 0.03440719539201146 4 0.013409461598465714 5 0.012861615084268184 6 0.010236595436543188 3 0.009236876555012485 7 0.0085011215701144 8 0.008400914740556804 1 0.008323001533813476 2 0.007774682249724812 __DUMMY__ 0.004373711368421085 false 1.0 794 21 0.07487832814809985 19 0.06930329703015504 18 0.0685843447769183 22 0.06597967091240176 11 0.05980813500393896 12 0.059338729109281174 20 0.05389757749231046 10 0.051105809572601094 24 0.04688238102360652 17 0.04381585022892491 14 0.043038006107128754 23 0.04289674445569556 13 0.04269642455354613 9 0.0371838308335538 16 0.03693620229531786 0 0.03631280822807495 15 0.022641832560532295 4 0.02011675784103455 5 0.019624378359522132 6 0.016830662262324957 __DUMMY__ 0.015615710002681516 3 0.015249320835560944 7 0.014534303385739657 8 0.014495165972623267 1 0.014284591429639025 2 0.013949137578786552 false 0.0 310 12 0.119287 13 0.09607 21 0.087077 11 0.063841 23 0.061849 19 0.057223 20 0.055206 24 0.051927 18 0.048458 22 0.046728 14 0.041801 16 0.037732 17 0.034817 0 0.029972 10 0.027734 6 0.021494 4 0.021108 5 0.020511 8 0.014237 7 0.01383 2 0.013814 1 0.01362 9 0.012178 3 0.009485 12 0.119287 13 0.09607 21 0.087077 11 0.063841 23 0.061849 19 0.057223 20 0.055206 24 0.051927 18 0.048458 22 0.046728 14 0.041801 16 0.037732 17 0.034817 0 0.029972 10 0.027734 6 0.021494 4 0.021108 5 0.020511 8 0.014237 7 0.01383 2 0.013814 1 0.01362 9 0.012178 3 0.009485 12 0.09398603287538926 21 0.08217372616621578 13 0.07551689660796147 11 0.06333997568969688 19 0.06013856732741485 18 0.05682002922782773 22 0.05547352809898748 23 0.05215543876772218 20 0.05150017559626228 24 0.04712537899420052 14 0.044097390299475174 10 0.03951723854591939 17 0.03833938616792562 16 0.035280693873726156 0 0.03423612324515431 9 0.024494514145398667 4 0.02112167569462286 5 0.02059607062555032 6 0.020103663645746356 8 0.01477426211684734 7 0.014588235407384593 1 0.01439428188627401 2 0.014332387039453791 3 0.01220030256465241 15 0.0096993485431719 __DUMMY__ 0.003994676847018632 false 1.0 553 18 0.081347 19 0.078311 22 0.067121 20 0.063275 17 0.059389 21 0.056253 24 0.051512 9 0.050236 23 0.045311 10 0.044929 16 0.044899 0 0.038783 11 0.03621 4 0.030961 5 0.030274 3 0.028298 12 0.027239 6 0.027125 7 0.026818 8 0.026768 1 0.026448 2 0.025832 15 0.018413 14 0.014248 18 0.081347 19 0.078311 22 0.067121 20 0.063275 17 0.059389 21 0.056253 24 0.051512 9 0.050236 23 0.045311 10 0.044929 16 0.044899 0 0.038783 11 0.03621 4 0.030961 5 0.030274 3 0.028298 12 0.027239 6 0.027125 7 0.026818 8 0.026768 1 0.026448 2 0.025832 15 0.018413 14 0.014248 18 0.07488904532618733 19 0.07260845648511487 22 0.06722096197806114 21 0.0640487437219196 20 0.0565795959200028 17 0.05251059003938623 10 0.04905607274135405 11 0.048054878370439646 24 0.0478651153305817 9 0.045618691712619126 23 0.04292995244513349 16 0.04074052305185859 12 0.04045915982438236 0 0.039098687705881846 14 0.02832062999675544 4 0.026562920468885656 5 0.025961820200082125 6 0.02306221371835611 3 0.02300732619816508 7 0.021906420109901365 8 0.021875042460970683 1 0.021593501079574962 15 0.021382542065534773 2 0.021101032032409026 13 0.019322911076885663 __DUMMY__ 0.004223165939556351 false 1.0 795 21 0.07331675617612085 18 0.06991422494956925 22 0.06798130808906411 19 0.06761823995996061 11 0.061805380549519555 12 0.055835192176217685 10 0.05500325386231533 20 0.0490791073013426 17 0.04592585802298069 24 0.04226107709939253 14 0.04166649870996006 9 0.041032739316418355 0 0.04080709602235446 13 0.04016419020713776 23 0.039511981497627885 16 0.03602725517410272 15 0.021215852142212374 4 0.020780844231763435 5 0.020287170143051807 6 0.017678208800129273 3 0.015962968154983877 7 0.015407520717914597 __DUMMY__ 0.015374940337547114 8 0.015368369486725963 1 0.015166415351448912 2 0.014807551520138077 false 0.0 311 12 0.130063 13 0.121729 21 0.101995 11 0.066923 14 0.065827 18 0.060003 23 0.059843 22 0.050576 20 0.05005 19 0.048907 10 0.04517 24 0.043061 0 0.022374 9 0.018372 4 0.01836 5 0.017945 17 0.017533 6 0.017317 8 0.008594 1 0.008579 7 0.008431 2 0.008195 16 0.005898 3 0.004254 12 0.130063 13 0.121729 21 0.101995 11 0.066923 14 0.065827 18 0.060003 23 0.059843 22 0.050576 20 0.05005 19 0.048907 10 0.04517 24 0.043061 0 0.022374 9 0.018372 4 0.01836 5 0.017945 17 0.017533 6 0.017317 8 0.008594 1 0.008579 7 0.008431 2 0.008195 16 0.005898 3 0.004254 12 0.09456127766731423 21 0.08780284114692567 13 0.08262107257791534 11 0.06378396604556279 18 0.06277556665044277 22 0.05829254871113545 19 0.056845248733518844 14 0.053896828192647246 23 0.05082405286220963 20 0.04917324388939173 10 0.04792282390776844 24 0.043518521121035464 17 0.030918120360756564 0 0.03076261227971356 9 0.028933530454645563 16 0.020634387200367615 4 0.020600680681213557 5 0.020151207432125926 6 0.018660414976153707 8 0.013037410363484788 7 0.01297750119760714 1 0.01293645207984651 2 0.012571012650069746 3 0.011019230655895565 15 0.01047830303784263 __DUMMY__ 0.004301145124409563 false 1.0 554 19 0.112764 20 0.086835 18 0.085753 16 0.076324 21 0.074726 22 0.067069 17 0.063081 24 0.059699 11 0.056279 12 0.056215 10 0.051655 23 0.049169 0 0.037982 14 0.029573 9 0.027107 15 0.026845 13 0.02337 4 0.005189 5 0.004773 3 0.002779 6 0.001041 7 6.78E-4 1 5.98E-4 8 4.96E-4 19 0.112764 20 0.086835 18 0.085753 16 0.076324 21 0.074726 22 0.067069 17 0.063081 24 0.059699 11 0.056279 12 0.056215 10 0.051655 23 0.049169 0 0.037982 14 0.029573 9 0.027107 15 0.026845 13 0.02337 4 0.005189 5 0.004773 3 0.002779 6 0.001041 7 6.78E-4 1 5.98E-4 8 4.96E-4 19 0.08991294901103061 18 0.07657568534538088 21 0.07435710304345035 20 0.06879909482957482 22 0.06689798602919397 11 0.0583158063586874 12 0.05706742152589415 16 0.056357593047206306 17 0.053907508291993984 24 0.05267979267543062 10 0.05127456699045232 23 0.04591835718079883 0 0.03811173776322338 14 0.03545004767715551 9 0.03305578701224579 13 0.032279221307469026 15 0.024136769503762458 4 0.013613654418283746 5 0.013152927024758298 6 0.009996242612885616 3 0.009943028878760344 7 0.00863734790442534 8 0.008529705438618253 1 0.00846337211155001 2 0.007998567176459906 __DUMMY__ 0.004567726841308065 false 1.0 312 12 0.106777 13 0.0837 21 0.081895 11 0.06209 19 0.061527 20 0.057185 23 0.056009 18 0.052898 24 0.048395 22 0.047323 16 0.041358 17 0.038897 14 0.036881 0 0.035324 10 0.034918 6 0.02131 4 0.021071 5 0.020642 9 0.018496 7 0.015451 8 0.015381 1 0.015339 2 0.015256 3 0.011875 12 0.106777 13 0.0837 21 0.081895 11 0.06209 19 0.061527 20 0.057185 23 0.056009 18 0.052898 24 0.048395 22 0.047323 16 0.041358 17 0.038897 14 0.036881 0 0.035324 10 0.034918 6 0.02131 4 0.021071 5 0.020642 9 0.018496 7 0.015451 8 0.015381 1 0.015339 2 0.015256 3 0.011875 12 0.08478182018067995 21 0.07950409942543932 13 0.06558588765642964 19 0.06430637938262432 11 0.06244118845583649 18 0.060508619666974545 22 0.05722443009512557 20 0.05373962113192089 23 0.04886358662221515 24 0.046344266351571746 10 0.043851118093548865 17 0.041125760455090726 14 0.04102000491889732 16 0.037991648995235064 0 0.036784886575798585 9 0.02837529667016491 4 0.020641306223219115 5 0.02018973996275132 6 0.01922451810456594 7 0.014918677813246378 8 0.014869632607379316 1 0.014751488422758143 2 0.014543884906345643 3 0.013307707231165292 15 0.010548492833954782 __DUMMY__ 0.004555937217060927 false 1.0 796 22 0.0645825781605785 18 0.05735380048105736 9 0.05665716148020997 17 0.054652938218089656 0 0.054343465893080374 11 0.05068492180198543 21 0.05053909974101919 10 0.04965620256206987 19 0.04806098314232827 4 0.03818527802262509 5 0.03759828494288594 6 0.03708000239066451 8 0.035843691422025176 7 0.03579145909637691 1 0.03557011141241177 16 0.035274443027184556 2 0.03504925465266955 3 0.03497723885824636 23 0.034184166972970005 12 0.02949601309648572 24 0.0292189426172003 20 0.025322940310512607 14 0.02233552243484192 15 0.01795948822421684 13 0.01677958629376735 __DUMMY__ 0.012802424744496848 false 0.0 313 13 0.126994 12 0.107456 14 0.096541 21 0.075453 18 0.067465 10 0.066033 11 0.060557 20 0.053135 15 0.050185 19 0.048543 23 0.04091 22 0.037977 0 0.028441 24 0.027503 17 0.024458 16 0.022165 9 0.018929 6 0.010856 4 0.010379 5 0.010049 8 0.004089 1 0.004054 7 0.003932 2 0.003894 13 0.126994 12 0.107456 14 0.096541 21 0.075453 18 0.067465 10 0.066033 11 0.060557 20 0.053135 15 0.050185 19 0.048543 23 0.04091 22 0.037977 0 0.028441 24 0.027503 17 0.024458 16 0.022165 9 0.018929 6 0.010856 4 0.010379 5 0.010049 8 0.004089 1 0.004054 7 0.003932 2 0.003894 13 0.0890898763835104 12 0.08612841464662059 21 0.07568993506834572 14 0.07170253226985153 18 0.06701657817868188 11 0.06084483880607775 10 0.058796228113029904 19 0.05649351309535211 20 0.05157156286442864 22 0.05126438411366623 23 0.041779478603001775 15 0.036367757966791876 24 0.03575304144567311 17 0.033195176250235575 0 0.03274832074916877 9 0.028009672362468905 16 0.027738034551625382 4 0.015728464019847378 5 0.01532911613636859 6 0.014572630954656085 8 0.009701525524757722 7 0.00962738581652791 1 0.009584276434672849 2 0.00935157845867076 3 0.00768315529518828 __DUMMY__ 0.004232521890780288 false 1.0 555 17 0.089997 16 0.082934 0 0.080012 19 0.055852 18 0.055134 22 0.053896 11 0.050582 9 0.049098 10 0.043051 6 0.038162 8 0.03582 7 0.035378 1 0.035174 2 0.035079 4 0.033552 5 0.033254 12 0.029868 3 0.029687 23 0.029386 21 0.02913 15 0.025026 20 0.023024 24 0.017626 13 0.009279 17 0.089997 16 0.082934 0 0.080012 19 0.055852 18 0.055134 22 0.053896 11 0.050582 9 0.049098 10 0.043051 6 0.038162 8 0.03582 7 0.035378 1 0.035174 2 0.035079 4 0.033552 5 0.033254 12 0.029868 3 0.029687 23 0.029386 21 0.02913 15 0.025026 20 0.023024 24 0.017626 13 0.009279 17 0.07379639137554593 0 0.0671230951953309 16 0.06284758654884699 22 0.05947822670105666 18 0.05754560794309273 19 0.05545804926055484 11 0.05306944644709207 9 0.04984817788867977 10 0.04594105101930742 21 0.04259721249651199 6 0.034943759302347145 12 0.03460049649519147 4 0.03305419516832043 8 0.03280571385981335 23 0.03269424835514368 5 0.03262598972076446 7 0.03257751566617384 1 0.032373634547101064 2 0.032056383434397366 3 0.029047699349029305 20 0.027273412030210904 24 0.024948968976970114 15 0.021618648803005878 13 0.016245906197828657 14 0.012005020673374646 __DUMMY__ 0.0034235625443086014 false 1.0 797 22 0.06458257816057851 18 0.05735380048105737 9 0.05665716148020998 17 0.05465293821808966 0 0.054343465893080374 11 0.05068492180198543 21 0.050539099741019194 10 0.04965620256206988 19 0.048060983142328276 4 0.03818527802262509 5 0.03759828494288594 6 0.0370800023906645 8 0.035843691422025176 7 0.03579145909637692 1 0.03557011141241177 16 0.03527444302718456 2 0.03504925465266955 3 0.03497723885824635 23 0.034184166972970005 12 0.029496013096485727 24 0.029218942617200303 20 0.025322940310512614 14 0.02233552243484192 15 0.017959488224216842 13 0.01677958629376735 __DUMMY__ 0.012802424744496853 false 0.0 556 19 0.097999 21 0.085909 18 0.084809 20 0.084103 12 0.072233 22 0.065652 24 0.061266 11 0.056896 23 0.054382 10 0.052973 16 0.05217 17 0.047808 13 0.043479 14 0.042212 0 0.029049 9 0.025655 15 0.022367 4 0.007648 5 0.006796 6 0.002878 3 0.002541 8 6.46E-4 7 4.66E-4 1 6.1E-5 19 0.097999 21 0.085909 18 0.084809 20 0.084103 12 0.072233 22 0.065652 24 0.061266 11 0.056896 23 0.054382 10 0.052973 16 0.05217 17 0.047808 13 0.043479 14 0.042212 0 0.029049 9 0.025655 15 0.022367 4 0.007648 5 0.006796 6 0.002878 3 0.002541 8 6.46E-4 7 4.66E-4 1 6.1E-5 19 0.08320720083563855 21 0.07922177546558445 18 0.07695355967163907 20 0.06787819343364952 22 0.06625666464257986 12 0.0638083527426394 11 0.058370947920926515 24 0.053197012868947284 10 0.05277243200156943 23 0.04807349940819964 17 0.04674975527282178 16 0.04484622588520933 14 0.041805070433520344 13 0.04132321223715812 0 0.03389759063740103 9 0.032676255445947176 15 0.022719949445543973 4 0.014608929687518974 5 0.01394380751626451 6 0.010644829959340128 3 0.009760367267240748 8 0.00845389872205367 7 0.00839275489863118 1 0.008063364378304917 2 0.007850504275554107 __DUMMY__ 0.004523844946116129 false 1.0 798 21 0.07331675617612085 18 0.06991422494956925 22 0.06798130808906411 19 0.06761823995996061 11 0.061805380549519555 12 0.055835192176217685 10 0.05500325386231533 20 0.0490791073013426 17 0.04592585802298069 24 0.04226107709939253 14 0.04166649870996006 9 0.041032739316418355 0 0.04080709602235446 13 0.04016419020713776 23 0.039511981497627885 16 0.03602725517410272 15 0.021215852142212374 4 0.020780844231763435 5 0.020287170143051807 6 0.017678208800129273 3 0.015962968154983877 7 0.015407520717914597 __DUMMY__ 0.015374940337547114 8 0.015368369486725963 1 0.015166415351448912 2 0.014807551520138077 false 0.0 314 12 0.11022 13 0.101225 21 0.085347 19 0.067695 18 0.065193 20 0.06299 11 0.06241 14 0.061641 23 0.049573 10 0.048304 22 0.0466 24 0.042752 16 0.041778 17 0.038142 0 0.032684 15 0.020349 9 0.017116 4 0.010424 6 0.01042 5 0.010026 8 0.004018 7 0.003841 1 0.003834 2 0.003419 12 0.11022 13 0.101225 21 0.085347 19 0.067695 18 0.065193 20 0.06299 11 0.06241 14 0.061641 23 0.049573 10 0.048304 22 0.0466 24 0.042752 16 0.041778 17 0.038142 0 0.032684 15 0.020349 9 0.017116 4 0.010424 6 0.01042 5 0.010026 8 0.004018 7 0.003841 1 0.003834 2 0.003419 12 0.08605965015216309 21 0.0806178114121479 13 0.07383042882834603 19 0.06718983441196204 18 0.06645815500805172 11 0.06205607663387812 20 0.05682338934792672 22 0.056496007850177166 14 0.052993369522906904 10 0.050166137777874514 23 0.04588667113505544 24 0.043720996741821616 17 0.04079977907555054 16 0.03834401485016767 0 0.03531987113968957 9 0.027612510841842658 15 0.020945871548296302 4 0.015636569733016262 5 0.015198009334671933 6 0.014125241886237325 8 0.009577088941635616 7 0.009506716898098724 1 0.00938739548078718 2 0.009023235263076313 3 0.007764687926099368 __DUMMY__ 0.004460478258519368 false 1.0 315 0 0.091893 17 0.08902 11 0.078607 16 0.075203 22 0.065942 12 0.064356 18 0.063863 19 0.060307 10 0.057102 21 0.055549 9 0.04708 13 0.038438 6 0.026301 23 0.024935 4 0.021485 5 0.021274 8 0.020169 2 0.020126 7 0.019977 1 0.019966 20 0.01437 3 0.012706 24 0.006024 14 0.005306 0 0.091893 17 0.08902 11 0.078607 16 0.075203 22 0.065942 12 0.064356 18 0.063863 19 0.060307 10 0.057102 21 0.055549 9 0.04708 13 0.038438 6 0.026301 23 0.024935 4 0.021485 5 0.021274 8 0.020169 2 0.020126 7 0.019977 1 0.019966 20 0.01437 3 0.012706 24 0.006024 14 0.005306 11 0.06872793495198459 17 0.0687069531591145 0 0.06785383698402597 22 0.06608919111824682 18 0.06383519502320134 21 0.061888360371855036 19 0.06104054279697832 12 0.05818192190156423 16 0.05619035261874957 10 0.053538281052689096 9 0.045369875612315695 13 0.03713686868864084 23 0.032490327037112084 20 0.028602997828025434 6 0.025172645483759047 4 0.02391625060638312 5 0.02354847693170835 24 0.023300597459209347 8 0.020986719830253082 7 0.02090125588142363 1 0.02078145711511741 2 0.020637749399955427 14 0.020360093468118207 3 0.017179720978576472 15 0.009557315604441334 __DUMMY__ 0.004005078096551129 false 1.0 799 21 0.07709232456046441 19 0.06859360770825793 22 0.06810481877020998 18 0.06706871409762336 11 0.06242518759353676 12 0.06070672880435673 20 0.05085772809621369 10 0.05023373844085579 24 0.046274572659412865 17 0.04439391682960302 23 0.042510194020003854 13 0.04211226869219594 14 0.040406025883253385 9 0.03820803407311528 0 0.03819091866651554 16 0.036317740444411356 4 0.020662339870385356 5 0.02016460307585068 15 0.01797109810390208 6 0.017424744277514826 __DUMMY__ 0.01592853815302974 3 0.015504862838618733 7 0.014939103924607497 8 0.014884156253362514 1 0.014686681142438594 2 0.014337353020259897 false 0.0 557 21 0.08964 22 0.073165 12 0.068261 11 0.065654 18 0.059642 10 0.051639 13 0.05149 19 0.049442 9 0.049365 24 0.044738 23 0.044722 14 0.044161 20 0.034839 4 0.032582 5 0.032392 0 0.032331 6 0.027227 17 0.026327 3 0.026056 1 0.02443 7 0.023979 2 0.023895 8 0.023689 16 3.32E-4 21 0.08964 22 0.073165 12 0.068261 11 0.065654 18 0.059642 10 0.051639 13 0.05149 19 0.049442 9 0.049365 24 0.044738 23 0.044722 14 0.044161 20 0.034839 4 0.032582 5 0.032392 0 0.032331 6 0.027227 17 0.026327 3 0.026056 1 0.02443 7 0.023979 2 0.023895 8 0.023689 16 3.32E-4 21 0.08157775459569112 22 0.06976567284170686 12 0.06349627094089548 11 0.06315696753428206 18 0.06278314074743543 19 0.05745443287642162 10 0.051037587130884146 13 0.04692041324949653 9 0.0444439069896479 24 0.04436240988858775 23 0.043486344431116354 14 0.04228597570125683 20 0.04161042041005625 0 0.03600371340726947 17 0.035717566922922 4 0.02770812823948214 5 0.027356803725747066 6 0.02365030333526544 3 0.021885119973899542 1 0.020867427037672588 7 0.020778970661710208 8 0.020616655228710704 2 0.020417576730309535 16 0.01832644933830527 15 0.009943583003670922 __DUMMY__ 0.004346405057556807 false 1.0 558 19 0.096083 21 0.094231 20 0.091416 18 0.078811 12 0.077006 24 0.074743 22 0.068408 11 0.062672 23 0.053456 13 0.04563 16 0.04455 14 0.044512 10 0.044069 17 0.039173 9 0.022037 15 0.020144 0 0.018415 4 0.008569 5 0.00762 3 0.004062 6 0.002394 8 8.72E-4 7 6.61E-4 1 4.65E-4 19 0.096083 21 0.094231 20 0.091416 18 0.078811 12 0.077006 24 0.074743 22 0.068408 11 0.062672 23 0.053456 13 0.04563 16 0.04455 14 0.044512 10 0.044069 17 0.039173 9 0.022037 15 0.020144 0 0.018415 4 0.008569 5 0.00762 3 0.004062 6 0.002394 8 8.72E-4 7 6.61E-4 1 4.65E-4 21 0.08470151009856584 19 0.0818287152151231 18 0.07312069640082021 20 0.07066046503469821 22 0.06820616731081076 12 0.0675531265772554 11 0.0619890352325626 24 0.06008760285069323 23 0.047926437412289316 10 0.04759586769759617 13 0.043187054635855045 14 0.04266264468701274 17 0.04200399169064307 16 0.040309748620103954 9 0.03083398991090567 0 0.028599374564608402 15 0.02000217724797711 4 0.015241760692216454 5 0.014526447403942077 6 0.010560720603344308 3 0.010504934016288233 8 0.008593372412960085 7 0.008521309738937449 1 0.008290552899178847 2 0.007883378088744494 __DUMMY__ 0.004608918956866998 false 1.0 316 21 0.101407 12 0.097983 11 0.08737 22 0.075376 13 0.074699 19 0.071209 18 0.066297 10 0.056037 14 0.049126 20 0.048165 0 0.044847 24 0.043824 17 0.04209 23 0.037759 16 0.033346 9 0.03186 4 0.010491 5 0.009647 6 0.007589 8 0.00279 7 0.00228 2 0.002136 1 0.001959 3 0.001714 21 0.101407 12 0.097983 11 0.08737 22 0.075376 13 0.074699 19 0.071209 18 0.066297 10 0.056037 14 0.049126 20 0.048165 0 0.044847 24 0.043824 17 0.04209 23 0.037759 16 0.033346 9 0.03186 4 0.010491 5 0.009647 6 0.007589 8 0.00279 7 0.00228 2 0.002136 1 0.001959 3 0.001714 21 0.08828077438458302 12 0.0786561019741927 11 0.07455287037261836 22 0.07143629869152593 19 0.06899932592972997 18 0.066795218933479 13 0.05860662795377979 10 0.05372365305590014 20 0.048659942606718465 14 0.04514202621125076 24 0.04413183869580458 17 0.04345250678696403 0 0.04206612299614132 23 0.0399710584882206 9 0.03569599835557559 16 0.03453501844162138 4 0.01620161115042866 5 0.015541332241794197 6 0.013246063033725906 15 0.009774421454102242 8 0.009545090532085458 7 0.009328458048809699 3 0.009211170222989347 1 0.009050534323251945 2 0.008946483321001392 __DUMMY__ 0.004449451793705372 false 1.0 559 19 0.101885 21 0.091727 20 0.08255 18 0.076793 22 0.075536 24 0.069217 11 0.066987 12 0.066379 23 0.054488 16 0.051481 10 0.04965 14 0.043002 17 0.040393 13 0.033759 9 0.025052 0 0.024218 15 0.020911 4 0.008635 5 0.008259 3 0.005788 6 0.00145 8 7.8E-4 2 6.0E-4 7 4.61E-4 19 0.101885 21 0.091727 20 0.08255 18 0.076793 22 0.075536 24 0.069217 11 0.066987 12 0.066379 23 0.054488 16 0.051481 10 0.04965 14 0.043002 17 0.040393 13 0.033759 9 0.025052 0 0.024218 15 0.020911 4 0.008635 5 0.008259 3 0.005788 6 0.00145 8 7.8E-4 2 6.0E-4 7 4.61E-4 19 0.08461830697348804 21 0.08305871194963943 18 0.07224143832170836 22 0.07154828416228878 20 0.06647804624932127 11 0.06380543108727907 12 0.06173583059093775 24 0.05745073802261565 10 0.050395632590250254 23 0.048430946625252776 16 0.04373569400872341 17 0.042678570949894024 14 0.04177501201074503 13 0.03683551129751194 9 0.03243756870167663 0 0.03137678854259237 15 0.02068239434687565 4 0.015422594291188607 5 0.014978379384056844 3 0.011561840877994794 6 0.010243922559330395 8 0.008742623043532823 7 0.008623396708285573 2 0.008358833358149931 1 0.008264573138852283 __DUMMY__ 0.004518930207808349 false 1.0 317 13 0.112752 14 0.095752 12 0.090063 10 0.083115 11 0.078995 18 0.072735 21 0.07241 15 0.051001 22 0.05071 19 0.046224 0 0.045342 20 0.036605 17 0.032373 9 0.031303 23 0.024685 16 0.021742 24 0.013431 6 0.009429 4 0.0092 5 0.008978 7 0.00331 1 0.003286 8 0.003282 2 0.003277 13 0.112752 14 0.095752 12 0.090063 10 0.083115 11 0.078995 18 0.072735 21 0.07241 15 0.051001 22 0.05071 19 0.046224 0 0.045342 20 0.036605 17 0.032373 9 0.031303 23 0.024685 16 0.021742 24 0.013431 6 0.009429 4 0.0092 5 0.008978 7 0.00331 1 0.003286 8 0.003282 2 0.003277 13 0.0829020286375422 12 0.07778652604192243 21 0.07427338339980025 14 0.0715950641088778 11 0.0703266171693561 18 0.06920220058229035 10 0.06756374559480471 22 0.05781571208514999 19 0.054085597494643055 20 0.04175996512106605 0 0.04173772795737651 17 0.036921276280130706 15 0.03618520135665582 9 0.03485578007804479 23 0.03321962002591282 24 0.027745169136383998 16 0.02644308292224307 4 0.015577694727581802 5 0.01522472869069699 6 0.014378677158009131 7 0.009731995071982984 8 0.00972623615024539 1 0.009629399197932516 2 0.009459614017565435 3 0.007981109396823852 __DUMMY__ 0.003871847596961243 false 1.0 318 21 0.097774 12 0.096274 11 0.086017 13 0.075697 22 0.073491 19 0.065666 18 0.064511 10 0.05566 14 0.04871 0 0.0461 20 0.043399 17 0.040947 24 0.040115 23 0.037402 9 0.033593 16 0.030996 4 0.013442 5 0.01284 6 0.011004 8 0.005572 7 0.005516 1 0.005406 2 0.005368 3 0.004502 21 0.097774 12 0.096274 11 0.086017 13 0.075697 22 0.073491 19 0.065666 18 0.064511 10 0.05566 14 0.04871 0 0.0461 20 0.043399 17 0.040947 24 0.040115 23 0.037402 9 0.033593 16 0.030996 4 0.013442 5 0.01284 6 0.011004 8 0.005572 7 0.005516 1 0.005406 2 0.005368 3 0.004502 21 0.08657567950279976 12 0.07796573968502328 11 0.07402716454125564 22 0.07054261701714415 19 0.06620695003613324 18 0.06585857877324666 13 0.05926532132064174 10 0.05358297155408775 20 0.04618867394210027 14 0.04498945842188805 17 0.042903792618124235 0 0.042766799835347376 24 0.04222627413691945 23 0.03973025048571953 9 0.03655238204340003 16 0.03334023099670479 4 0.017628438030841145 5 0.017082567991621108 6 0.014912745766788553 8 0.01089514904486477 7 0.010890705832733919 1 0.01071257164263185 3 0.010536099290975737 2 0.010507519773134253 15 0.009706266769826624 __DUMMY__ 0.004405050946046034 false 1.0 319 12 0.132684 13 0.112433 21 0.105383 11 0.06961 20 0.067887 19 0.065597 23 0.065173 18 0.060165 14 0.05994 24 0.058603 22 0.05036 10 0.037686 16 0.021478 17 0.020067 0 0.01716 4 0.012901 5 0.012252 6 0.010771 9 0.008952 8 0.00293 2 0.002638 7 0.00262 1 0.002476 3 2.34E-4 12 0.132684 13 0.112433 21 0.105383 11 0.06961 20 0.067887 19 0.065597 23 0.065173 18 0.060165 14 0.05994 24 0.058603 22 0.05036 10 0.037686 16 0.021478 17 0.020067 0 0.01716 4 0.012901 5 0.012252 6 0.010771 9 0.008952 8 0.00293 2 0.002638 7 0.00262 1 0.002476 3 2.34E-4 12 0.09666127928345773 21 0.09057517468287672 13 0.07856857780500429 19 0.06604251294258165 11 0.06591411457890287 18 0.06355347509262907 22 0.05880647388293777 20 0.05856215527162939 23 0.053399624088172754 14 0.051478287045533935 24 0.051422610406605784 10 0.044684006351763055 17 0.03220309724089622 16 0.02851567229544278 0 0.028113800602996054 9 0.023965526218532415 4 0.017097437232631074 5 0.016537585115667254 6 0.014543538897174196 15 0.01030855486895324 8 0.00931043586763772 7 0.009186936190963732 1 0.008999612589047287 2 0.008899199381372451 3 0.008151680412805656 __DUMMY__ 0.004498631653785125 false 1.0 560 21 0.101692 19 0.095685 22 0.085551 20 0.078143 18 0.076148 24 0.075634 11 0.07303 12 0.068823 23 0.048579 16 0.043834 14 0.042696 17 0.042283 10 0.041892 13 0.032196 9 0.028928 0 0.021781 15 0.016787 4 0.009456 5 0.009377 3 0.005029 6 0.002014 7 2.59E-4 8 1.28E-4 2 5.3E-5 21 0.101692 19 0.095685 22 0.085551 20 0.078143 18 0.076148 24 0.075634 11 0.07303 12 0.068823 23 0.048579 16 0.043834 14 0.042696 17 0.042283 10 0.041892 13 0.032196 9 0.028928 0 0.021781 15 0.016787 4 0.009456 5 0.009377 3 0.005029 6 0.002014 7 2.59E-4 8 1.28E-4 2 5.3E-5 21 0.0869355406771117 19 0.08117524637663927 22 0.0763538109559283 18 0.071807463290723 11 0.06632272028988931 20 0.063692914581206 12 0.06167959463760528 24 0.06005102464240828 10 0.04673851372318478 23 0.04526743544886229 17 0.04401750180766961 14 0.041185377192408466 16 0.04015346959829931 13 0.035090456325778445 9 0.034901533829209866 0 0.03070676289652596 15 0.01900495790095639 4 0.016274427416684948 5 0.015959511950414618 3 0.011733902941438615 6 0.011018431568229963 7 0.009085869908281299 8 0.00900260514246865 1 0.008820347185786656 2 0.008646003471093927 __DUMMY__ 0.004374576241195007 false 1.0 561 22 0.080387 21 0.078484 11 0.070543 9 0.060483 10 0.050603 18 0.048049 12 0.046192 0 0.043012 4 0.041898 5 0.041394 14 0.03816 6 0.037604 3 0.036943 24 0.036536 23 0.036105 7 0.03538 8 0.035247 1 0.035001 2 0.034768 13 0.034205 19 0.033346 17 0.030014 20 0.012405 15 0.00324 22 0.080387 21 0.078484 11 0.070543 9 0.060483 10 0.050603 18 0.048049 12 0.046192 0 0.043012 4 0.041898 5 0.041394 14 0.03816 6 0.037604 3 0.036943 24 0.036536 23 0.036105 7 0.03538 8 0.035247 1 0.035001 2 0.034768 13 0.034205 19 0.033346 17 0.030014 20 0.012405 15 0.00324 21 0.07472537315695692 22 0.0739208202604213 11 0.0653606534612872 18 0.056150588942130424 9 0.05170022940354639 10 0.05019337308517419 12 0.05017462297134895 19 0.048038371833712706 0 0.042803503463522664 24 0.03920665488976157 23 0.03859263985956021 17 0.03853646807116942 14 0.03710570308259484 13 0.03563251848447519 4 0.033800578023578366 5 0.033285432070031575 6 0.03036053924908167 3 0.028846770546274533 7 0.02807302830503879 20 0.028029814310843577 8 0.027986403622705526 1 0.027765495206595082 2 0.027429535704229662 16 0.017859277532225593 15 0.010360385987282231 __DUMMY__ 0.004061218476451311 false 1.0 562 22 0.086991 21 0.084999 11 0.076952 9 0.061022 10 0.051604 18 0.050113 12 0.047783 0 0.044755 4 0.038596 19 0.038537 5 0.038253 24 0.038189 14 0.037312 23 0.033876 6 0.033769 3 0.033389 17 0.032638 7 0.03148 13 0.031443 8 0.031324 1 0.031251 2 0.030859 20 0.012222 16 0.002643 22 0.086991 21 0.084999 11 0.076952 9 0.061022 10 0.051604 18 0.050113 12 0.047783 0 0.044755 4 0.038596 19 0.038537 5 0.038253 24 0.038189 14 0.037312 23 0.033876 6 0.033769 3 0.033389 17 0.032638 7 0.03148 13 0.031443 8 0.031324 1 0.031251 2 0.030859 20 0.012222 16 0.002643 21 0.07759229208722877 22 0.07724230510706018 11 0.06837987448717461 18 0.057199301273971596 9 0.05216139224502132 19 0.0506758431748827 10 0.050648885783135734 12 0.05035754846812358 0 0.04388002910252492 17 0.04013969214842494 24 0.03999119335079557 23 0.03743444034366757 14 0.0362362830835371 13 0.033531626331089075 4 0.03230414499119024 5 0.031861755251566135 6 0.028606915436616743 20 0.027883936034425738 3 0.02728503429415866 7 0.02632806071629088 8 0.026232641288912412 1 0.026087845120828887 2 0.025676204297720842 16 0.01944392357476971 15 0.008770782140897429 __DUMMY__ 0.004048049865984758 false 1.0 320 12 0.125165 13 0.116937 21 0.086268 11 0.066013 14 0.061708 18 0.059465 19 0.057879 20 0.054811 23 0.051085 10 0.046327 22 0.042665 16 0.037264 24 0.036531 17 0.035471 0 0.034923 6 0.014 9 0.013743 15 0.012837 4 0.012301 5 0.012119 8 0.005704 2 0.005683 7 0.005574 1 0.005526 12 0.125165 13 0.116937 21 0.086268 11 0.066013 14 0.061708 18 0.059465 19 0.057879 20 0.054811 23 0.051085 10 0.046327 22 0.042665 16 0.037264 24 0.036531 17 0.035471 0 0.034923 6 0.014 9 0.013743 15 0.012837 4 0.012301 5 0.012119 8 0.005704 2 0.005683 7 0.005574 1 0.005526 12 0.09463973951742312 13 0.08336036365570886 21 0.08123635710427522 11 0.06396072228051738 18 0.06300445191028871 19 0.06139447517207114 22 0.05402759826244628 14 0.05368187820698664 20 0.05213942022848273 10 0.04903126881665321 23 0.04669375426556465 24 0.040211230693237045 17 0.03895843360892504 0 0.036391539007511846 16 0.03545509211626218 9 0.02570277058185148 15 0.01708057551242158 4 0.01672214751885467 5 0.0163878403168288 6 0.0161481176608761 8 0.010545752264267466 7 0.010489364404901384 1 0.010364536905984847 2 0.010275941873402682 3 0.007755932160161592 __DUMMY__ 0.004340695954095501 false 1.0 563 22 0.106991 21 0.100121 11 0.096602 19 0.091841 18 0.073522 17 0.061579 10 0.056556 0 0.055003 16 0.051493 12 0.050353 9 0.049847 24 0.048559 20 0.038845 23 0.030682 14 0.026698 4 0.012142 5 0.01198 13 0.010195 3 0.007014 6 0.005802 7 0.003747 1 0.003731 8 0.003487 2 0.003209 22 0.106991 21 0.100121 11 0.096602 19 0.091841 18 0.073522 17 0.061579 10 0.056556 0 0.055003 16 0.051493 12 0.050353 9 0.049847 24 0.048559 20 0.038845 23 0.030682 14 0.026698 4 0.012142 5 0.01198 13 0.010195 3 0.007014 6 0.005802 7 0.003747 1 0.003731 8 0.003487 2 0.003209 22 0.0867889582528295 21 0.08482935690370029 19 0.07775907317778862 11 0.07773454354808913 18 0.06937728084021699 17 0.054644698734827496 10 0.053349792742027204 12 0.051501591755921484 0 0.0486949665755529 9 0.04625153810551444 24 0.045481615917451 16 0.04426878177767262 20 0.04215283662346414 23 0.0359406227460355 14 0.0312434801022467 13 0.02292742075639879 4 0.018765576105582136 5 0.018408142517322396 6 0.014312202870859539 3 0.013868171068973813 7 0.012199791355106149 8 0.012059653016234989 1 0.012051410882767587 2 0.011588178139695895 15 0.009572807720234916 __DUMMY__ 0.004227507763485659 false 1.0 321 23 0.091326 12 0.086645 24 0.081222 20 0.07977 19 0.060665 21 0.059813 13 0.058915 16 0.046139 5 0.038934 4 0.038128 6 0.037235 2 0.037162 3 0.036021 1 0.034994 7 0.034392 8 0.034298 18 0.032916 17 0.025197 11 0.022805 22 0.021789 14 0.0216 15 0.014448 0 0.004093 9 0.001493 23 0.091326 12 0.086645 24 0.081222 20 0.07977 19 0.060665 21 0.059813 13 0.058915 16 0.046139 5 0.038934 4 0.038128 6 0.037235 2 0.037162 3 0.036021 1 0.034994 7 0.034392 8 0.034298 18 0.032916 17 0.025197 11 0.022805 22 0.021789 14 0.0216 15 0.014448 0 0.004093 9 0.001493 12 0.07297133875798201 21 0.0679191602393845 23 0.06694500578226888 20 0.06555890838462912 19 0.06494506044631833 24 0.06369969407378823 18 0.05043954187980559 13 0.04997883448817214 22 0.045085427907792616 11 0.042459709623438306 16 0.0420453312511668 17 0.035480511457572673 14 0.031214214767133375 5 0.02959868966862062 4 0.029491112193115697 6 0.027458877089952004 2 0.025789338488272546 3 0.02578719374080879 10 0.025360090514614686 1 0.024960153543163166 7 0.02481821500204165 8 0.02474800286325387 0 0.02140380504590602 9 0.02007775482876744 15 0.017361844189053916 __DUMMY__ 0.004402183772976996 false 1.0 322 12 0.110517 13 0.101257 21 0.085719 19 0.068012 18 0.065589 20 0.063313 11 0.061677 14 0.061337 23 0.049351 10 0.048446 22 0.047732 24 0.042413 16 0.042074 17 0.038301 0 0.032935 15 0.020626 9 0.016877 6 0.009927 4 0.009761 5 0.00962 1 0.003804 7 0.003692 8 0.003607 2 0.003412 12 0.110517 13 0.101257 21 0.085719 19 0.068012 18 0.065589 20 0.063313 11 0.061677 14 0.061337 23 0.049351 10 0.048446 22 0.047732 24 0.042413 16 0.042074 17 0.038301 0 0.032935 15 0.020626 9 0.016877 6 0.009927 4 0.009761 5 0.00962 1 0.003804 7 0.003692 8 0.003607 2 0.003412 12 0.0861984369031737 21 0.08079161994057175 13 0.07384544258338312 19 0.06733794403372478 18 0.06664315890596943 11 0.06171380541540799 22 0.05702473269929393 20 0.05697429143574435 14 0.05285144348068138 10 0.05023250215781866 23 0.045783034488815315 24 0.043562716170571635 17 0.040874074128532736 16 0.03848229000760294 0 0.035437127356208235 9 0.027500917704948512 15 0.02107525698371127 4 0.01532694689276039 5 0.015008411459614554 6 0.013895011851143635 7 0.009437139081927535 8 0.009385150692335701 1 0.009373393504936026 2 0.009019974517592032 3 0.007764695178703095 __DUMMY__ 0.004460482424827343 false 1.0 564 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.07989891525908208 21 0.07395116320364231 11 0.05893178457778314 18 0.058186097779278086 9 0.05539785859748367 19 0.054811303194020104 24 0.04621580883318714 10 0.04475825449936289 17 0.04388709522483877 0 0.041812497037503005 12 0.03740911103693348 23 0.03683532029010765 14 0.03440145083775475 4 0.03403164353093286 5 0.03329097509270691 20 0.03165025086781898 3 0.030414374689704246 6 0.029579527600782102 8 0.028524019300633342 7 0.028268372108888978 1 0.028021622746715266 2 0.027664474257389576 16 0.022102976357142576 13 0.02066654045618233 15 0.015238025594308606 __DUMMY__ 0.004050537025817197 false 1.0 323 13 0.128413 12 0.10851 14 0.097515 21 0.077559 18 0.067836 10 0.066408 11 0.060301 20 0.053188 15 0.05009 19 0.048601 23 0.041808 22 0.037871 0 0.027296 24 0.026414 17 0.023607 16 0.021324 9 0.018464 6 0.010301 5 0.009955 4 0.009728 2 0.004 1 0.003828 7 0.003531 8 0.003453 13 0.128413 12 0.10851 14 0.097515 21 0.077559 18 0.067836 10 0.066408 11 0.060301 20 0.053188 15 0.05009 19 0.048601 23 0.041808 22 0.037871 0 0.027296 24 0.026414 17 0.023607 16 0.021324 9 0.018464 6 0.010301 5 0.009955 4 0.009728 2 0.004 1 0.003828 7 0.003531 8 0.003453 13 0.0897483140690323 12 0.08661745897125299 21 0.07666722996308586 14 0.0721544684640511 18 0.06718866697129253 11 0.06072594380105869 10 0.05897018476168573 19 0.05652035239536338 20 0.05159608850382943 22 0.05121511785203967 23 0.042196184654390734 15 0.03632361757551792 24 0.0352475838301323 17 0.032800178637755216 0 0.032216877566130994 9 0.02779382561058691 16 0.027347685564130753 4 0.015426311265675662 5 0.015285469140062154 6 0.014315033668606768 1 0.00947937588103902 7 0.009441267231016617 8 0.009406342702386015 2 0.009400760324202301 3 0.007683144597869014 __DUMMY__ 0.004232515997805823 false 1.0 565 17 0.086069 16 0.08259 0 0.070697 19 0.057277 18 0.052456 22 0.052389 9 0.045726 11 0.044388 6 0.03864 8 0.036985 1 0.036862 7 0.036758 2 0.03623 5 0.034746 4 0.034684 23 0.034353 10 0.034012 3 0.03176 21 0.031469 20 0.030871 12 0.030232 24 0.027523 15 0.025747 13 0.007534 17 0.086069 16 0.08259 0 0.070697 19 0.057277 18 0.052456 22 0.052389 9 0.045726 11 0.044388 6 0.03864 8 0.036985 1 0.036862 7 0.036758 2 0.03623 5 0.034746 4 0.034684 23 0.034353 10 0.034012 3 0.03176 21 0.031469 20 0.030871 12 0.030232 24 0.027523 15 0.025747 13 0.007534 17 0.07356254601767366 16 0.06424682278460564 0 0.06407648882902607 22 0.05842904923943189 18 0.05617535695315948 19 0.05582105137971431 11 0.049774244791934666 9 0.048659660664610874 21 0.042214714952540255 10 0.0415993822479828 6 0.035618957354660696 23 0.03443460715189212 8 0.033803784753842846 4 0.03379286590675702 12 0.03367638006122829 7 0.033661398452700296 1 0.033597550844913886 5 0.03352309844678595 2 0.033025060763081864 3 0.030242480429510797 20 0.03016480260231017 24 0.028664782815537984 15 0.02258553599801035 13 0.014380929577454842 14 0.011011565757553802 __DUMMY__ 0.003256881223079438 false 1.0 324 12 0.101364 21 0.088912 13 0.087269 11 0.064248 22 0.061418 18 0.06124 23 0.056909 19 0.050756 14 0.04542 17 0.039863 10 0.038094 0 0.037788 20 0.03548 24 0.03519 9 0.029382 6 0.024732 4 0.024411 5 0.022625 16 0.020408 7 0.016741 8 0.016653 1 0.016011 2 0.014957 3 0.010128 12 0.101364 21 0.088912 13 0.087269 11 0.064248 22 0.061418 18 0.06124 23 0.056909 19 0.050756 14 0.04542 17 0.039863 10 0.038094 0 0.037788 20 0.03548 24 0.03519 9 0.029382 6 0.024732 4 0.024411 5 0.022625 16 0.020408 7 0.016741 8 0.016653 1 0.016011 2 0.014957 3 0.010128 21 0.08184859319021885 12 0.08060220330931288 13 0.06568153359107326 22 0.06405215048524213 18 0.0635109534492448 11 0.06305300046804732 19 0.05791897970869337 23 0.04906207505576864 10 0.044796596248817204 14 0.04388844458905946 17 0.04186719556706013 20 0.041864421686096394 24 0.03961471808315845 0 0.038566531559080554 9 0.03453100773228426 16 0.02763086469721906 4 0.023374801804436286 5 0.022273936670946032 6 0.0220577950596779 7 0.016809547236133687 8 0.01675302923438016 1 0.016347946945461746 2 0.015667463263343635 3 0.013723636882943181 15 0.010106944087490464 __DUMMY__ 0.00439562939481001 false 1.0 566 17 0.07691 16 0.069117 0 0.063591 19 0.054119 22 0.05326 18 0.052504 9 0.049784 6 0.041455 8 0.041131 1 0.041107 7 0.041008 11 0.040229 2 0.040135 4 0.039351 5 0.039077 3 0.037841 23 0.036308 10 0.035166 24 0.03332 20 0.032814 21 0.030965 15 0.027798 12 0.020498 14 0.002513 17 0.07691 16 0.069117 0 0.063591 19 0.054119 22 0.05326 18 0.052504 9 0.049784 6 0.041455 8 0.041131 1 0.041107 7 0.041008 11 0.040229 2 0.040135 4 0.039351 5 0.039077 3 0.037841 23 0.036308 10 0.035166 24 0.03332 20 0.032814 21 0.030965 15 0.027798 12 0.020498 14 0.002513 17 0.06742955960670964 22 0.05930819616517419 0 0.058650959770398546 18 0.057265977897346276 16 0.05630379458112292 19 0.055516629815331266 9 0.04994498121746323 11 0.047820917235949605 21 0.043705344216301664 10 0.04264112411221601 23 0.0359950161151077 6 0.035789614211316816 4 0.03522248417265694 5 0.034791668775161495 8 0.03466900327145001 7 0.0345726982173363 1 0.03450298295619508 2 0.033788832970586324 20 0.03315020789493854 24 0.03302939574696415 3 0.03238470768941098 12 0.029945846077907533 15 0.02409249430839235 14 0.014200114313636283 13 0.011877556832739356 __DUMMY__ 0.0033998918281871204 false 1.0 325 12 0.104086 21 0.094468 19 0.07773 13 0.076216 11 0.069989 20 0.066535 18 0.064723 22 0.059635 24 0.054264 23 0.052705 16 0.044538 10 0.042119 17 0.041571 14 0.040194 0 0.035056 9 0.020204 4 0.011989 5 0.011407 6 0.010293 7 0.005227 8 0.004954 1 0.004773 2 0.00428 3 0.003042 12 0.104086 21 0.094468 19 0.07773 13 0.076216 11 0.069989 20 0.066535 18 0.064723 22 0.059635 24 0.054264 23 0.052705 16 0.044538 10 0.042119 17 0.041571 14 0.040194 0 0.035056 9 0.020204 4 0.011989 5 0.011407 6 0.010293 7 0.005227 8 0.004954 1 0.004773 2 0.00428 3 0.003042 21 0.08528429117381073 12 0.08227262576400672 19 0.07249901665530961 18 0.06621205693178255 11 0.06600694314899197 22 0.06355408371334251 13 0.060195460469350565 20 0.058396885173555624 24 0.04966077840891364 23 0.04737977779817674 10 0.04697456890366805 17 0.04278030875186382 14 0.041679543956369663 16 0.03990552335835295 0 0.03665967304540242 9 0.029509564643813265 4 0.016530511219304194 5 0.015999725386795446 6 0.014106192279685145 15 0.010395051511357493 7 0.010296298144543987 8 0.010147222842173098 1 0.009959431938166145 2 0.009550847643819017 3 0.009460796551599834 __DUMMY__ 0.004582820585844895 false 1.0 567 22 0.080064 21 0.078535 11 0.070165 9 0.060523 10 0.050627 18 0.047623 12 0.0461 0 0.042544 4 0.042043 5 0.041534 14 0.038296 6 0.037778 3 0.037004 24 0.036558 23 0.036213 7 0.035674 8 0.035507 1 0.03533 2 0.034845 13 0.033855 19 0.033303 17 0.029993 20 0.012384 15 0.003503 22 0.080064 21 0.078535 11 0.070165 9 0.060523 10 0.050627 18 0.047623 12 0.0461 0 0.042544 4 0.042043 5 0.041534 14 0.038296 6 0.037778 3 0.037004 24 0.036558 23 0.036213 7 0.035674 8 0.035507 1 0.03533 2 0.034845 13 0.033855 19 0.033303 17 0.029993 20 0.012384 15 0.003503 21 0.0747491786231846 22 0.07376953998629213 11 0.06518363318819619 18 0.05595110629850589 9 0.05171890682526388 10 0.05020456158646904 12 0.0501315065884247 19 0.04801819659048479 0 0.042584371197051545 24 0.03921691738641639 23 0.03864316346173808 17 0.038526600930001376 14 0.03716933615671755 13 0.035468634125320295 4 0.03386842750360586 5 0.03335094130386103 6 0.030441968175431596 3 0.028875300425293272 7 0.028210636857760048 8 0.02810809530256429 20 0.028019957006965187 1 0.027919489146930335 2 0.027465557241472476 16 0.017859260810737455 15 0.010483498607344759 __DUMMY__ 0.004061214673967338 false 1.0 326 12 0.101979 13 0.086631 21 0.079465 11 0.070258 22 0.051201 19 0.047584 23 0.047246 18 0.047229 0 0.043595 10 0.040894 14 0.040868 20 0.038264 17 0.03742 24 0.036676 16 0.032325 9 0.026383 6 0.026292 4 0.025461 5 0.025103 8 0.019914 2 0.019808 7 0.019799 1 0.019735 3 0.015869 12 0.101979 13 0.086631 21 0.079465 11 0.070258 22 0.051201 19 0.047584 23 0.047246 18 0.047229 0 0.043595 10 0.040894 14 0.040868 20 0.038264 17 0.03742 24 0.036676 16 0.032325 9 0.026383 6 0.026292 4 0.025461 5 0.025103 8 0.019914 2 0.019808 7 0.019799 1 0.019735 3 0.015869 12 0.08343628377527357 21 0.0783938079941275 13 0.06840607145467653 11 0.06677186088706587 22 0.05888165953800541 18 0.056985988443396966 19 0.056131890060056616 10 0.04659945791792228 23 0.044485679102795404 20 0.04315584816704627 14 0.043116207341818015 0 0.04121252811768417 17 0.04012037588269904 24 0.03983981938854441 16 0.0327296436721125 9 0.03237094951201064 4 0.02322075429201522 5 0.022798359824506856 6 0.022232892577956766 8 0.01751059838727414 7 0.017469467558180733 1 0.017330290102492155 2 0.01719064736693748 3 0.015486922545423751 15 0.009872465822751182 __DUMMY__ 0.004249530267226461 false 1.0 568 22 0.080039 21 0.078634 11 0.070094 9 0.060488 10 0.050602 18 0.047579 12 0.046015 0 0.042613 4 0.04207 5 0.041606 14 0.038262 6 0.037813 3 0.037087 24 0.036528 23 0.036159 7 0.03568 8 0.035536 1 0.035346 2 0.034928 13 0.033878 19 0.033272 17 0.029979 20 0.012352 15 0.00344 22 0.080039 21 0.078634 11 0.070094 9 0.060488 10 0.050602 18 0.047579 12 0.046015 0 0.042613 4 0.04207 5 0.041606 14 0.038262 6 0.037813 3 0.037087 24 0.036528 23 0.036159 7 0.03568 8 0.035536 1 0.035346 2 0.034928 13 0.033878 19 0.033272 17 0.029979 20 0.012352 15 0.00344 21 0.07479556006319525 22 0.0737578708730987 11 0.06515042534303624 18 0.05593053407112721 9 0.0517025459299153 10 0.05019288144142705 12 0.05009173765373544 19 0.048003706546360256 0 0.04261669320151525 24 0.03920289136793298 23 0.03861790167247536 17 0.038520064923134964 14 0.037153436595970875 13 0.035479418086071426 4 0.03388108329892325 5 0.03338466342350451 6 0.030458367534058926 3 0.028914170054848986 7 0.028213458939999398 8 0.028121684693053865 20 0.028004989454822184 1 0.027926992552111212 2 0.02750442621106266 16 0.01785926917147761 15 0.010454010321932683 __DUMMY__ 0.004061216575208435 false 1.0 569 22 0.093215 21 0.077241 9 0.069463 11 0.056793 24 0.051432 18 0.049346 19 0.045629 4 0.044958 5 0.044046 3 0.042663 17 0.040562 0 0.039739 8 0.039085 7 0.03873 1 0.038612 6 0.038521 2 0.037646 10 0.036149 23 0.033733 14 0.029257 12 0.018744 20 0.017328 15 0.009847 16 0.007263 22 0.093215 21 0.077241 9 0.069463 11 0.056793 24 0.051432 18 0.049346 19 0.045629 4 0.044958 5 0.044046 3 0.042663 17 0.040562 0 0.039739 8 0.039085 7 0.03873 1 0.038612 6 0.038521 2 0.037646 10 0.036149 23 0.033733 14 0.029257 12 0.018744 20 0.017328 15 0.009847 16 0.007263 22 0.07938258041654735 21 0.07380963870422877 11 0.058550390278902735 18 0.05806332104377377 9 0.05534489107570192 19 0.054837045533919174 24 0.04606258459190714 10 0.04434828776472878 17 0.0439404847401275 0 0.041164528884579187 12 0.03760539896815108 23 0.03696508014886522 14 0.03442626572097107 4 0.034148286438760465 5 0.03344275655597061 20 0.03180437564700587 3 0.030466833498198453 6 0.02974396055792733 8 0.028750295999123803 7 0.02858647677850564 1 0.02840531885433139 2 0.027745513430424532 16 0.02226975536435109 13 0.020666530773712912 15 0.01541886310118176 __DUMMY__ 0.0040505351281023404 false 1.0 327 12 0.100426 13 0.079279 21 0.071588 11 0.057708 23 0.057673 19 0.049016 20 0.04795 24 0.046949 22 0.041811 18 0.040553 16 0.040161 17 0.037527 0 0.036617 6 0.031436 14 0.030403 4 0.030264 5 0.029836 10 0.026971 8 0.025797 2 0.025714 7 0.025652 1 0.025538 3 0.021687 9 0.019446 12 0.100426 13 0.079279 21 0.071588 11 0.057708 23 0.057673 19 0.049016 20 0.04795 24 0.046949 22 0.041811 18 0.040553 16 0.040161 17 0.037527 0 0.036617 6 0.031436 14 0.030403 4 0.030264 5 0.029836 10 0.026971 8 0.025797 2 0.025714 7 0.025652 1 0.025538 3 0.021687 9 0.019446 12 0.0858827756986472 21 0.07515976166118324 13 0.06855912497619664 11 0.06073231790791368 19 0.056055868858476736 22 0.053090515251312975 18 0.05308345249257039 23 0.05008113948047831 20 0.04791115055311626 24 0.04454318153036377 17 0.03947540437538419 10 0.03931994270053801 14 0.039114690151713725 0 0.03744135261364524 16 0.03619394569087319 9 0.02780578001457692 4 0.02529779986056202 5 0.024851826758517558 6 0.024689818488986714 8 0.02005155201959668 7 0.019983082767795035 1 0.01983559777638945 2 0.019764736272724313 3 0.017706688652063627 15 0.00953980884942577 __DUMMY__ 0.0038286845969484487 false 1.0 328 12 0.106128 21 0.102917 13 0.079267 19 0.075413 20 0.068391 11 0.067946 18 0.06666 22 0.064024 24 0.061333 23 0.060171 14 0.049115 10 0.042184 17 0.027616 16 0.024662 0 0.020765 9 0.020265 4 0.0144 5 0.013869 6 0.010148 3 0.005459 2 0.004913 8 0.004906 7 0.004841 1 0.004603 12 0.106128 21 0.102917 13 0.079267 19 0.075413 20 0.068391 11 0.067946 18 0.06666 22 0.064024 24 0.061333 23 0.060171 14 0.049115 10 0.042184 17 0.027616 16 0.024662 0 0.020765 9 0.020265 4 0.0144 5 0.013869 6 0.010148 3 0.005459 2 0.004913 8 0.004906 7 0.004841 1 0.004603 21 0.08977460203869277 12 0.08527143309241046 19 0.07109966728485545 18 0.06651520355059727 11 0.0652793650679511 22 0.06499469935961985 13 0.06337989182670822 20 0.059222872876164505 24 0.05293620685922804 23 0.05147386606921532 10 0.046395725072124645 14 0.0456646154094217 17 0.03594381871190547 16 0.03057679011114958 0 0.029886390789310272 9 0.02877784555512404 4 0.017623344351240397 5 0.017122123411067936 6 0.01413120474623431 3 0.010338456470642625 8 0.010043829141000589 7 0.010037624147843689 1 0.009806464726055508 2 0.00978390633421061 15 0.009330040921587911 __DUMMY__ 0.004590012075637938 false 1.0 329 15 0.17762 14 0.149486 18 0.08381 10 0.080169 20 0.071683 13 0.06787 19 0.042169 24 0.035666 9 0.032528 23 0.032499 22 0.029339 17 0.022611 16 0.020957 21 0.019019 3 0.017646 4 0.016762 5 0.01627 8 0.014442 7 0.014073 2 0.013786 1 0.01351 6 0.012746 11 0.01101 12 0.004328 15 0.17762 14 0.149486 18 0.08381 10 0.080169 20 0.071683 13 0.06787 19 0.042169 24 0.035666 9 0.032528 23 0.032499 22 0.029339 17 0.022611 16 0.020957 21 0.019019 3 0.017646 4 0.016762 5 0.01627 8 0.014442 7 0.014073 2 0.013786 1 0.01351 6 0.012746 11 0.01101 12 0.004328 15 0.10549403193252906 14 0.09878123667519244 18 0.07773854774533719 10 0.06680747060886051 20 0.06498748250279379 19 0.05585226011171621 13 0.05579868615941203 22 0.04522344426947717 21 0.043778315913941886 24 0.0410062692167155 23 0.0376985864872947 9 0.034434397664492376 17 0.033516842781062 11 0.032469319020529824 16 0.030121712315012407 12 0.02982396432566892 4 0.018322281891793517 5 0.017848145517449957 0 0.017285531502313014 3 0.016636210266592177 6 0.014804848545055621 8 0.014687202029191526 7 0.014503656528769976 1 0.014117544390888626 2 0.014084156774409298 __DUMMY__ 0.004177854823500222 false 1.0 570 21 0.099437 22 0.093498 11 0.086285 12 0.059205 19 0.05873 18 0.053005 24 0.051396 9 0.048011 0 0.041679 10 0.04094 17 0.040558 23 0.039879 14 0.036356 13 0.032075 4 0.02709 5 0.026496 20 0.026112 6 0.022116 16 0.021723 3 0.020347 7 0.019361 8 0.019053 1 0.018857 2 0.01779 21 0.099437 22 0.093498 11 0.086285 12 0.059205 19 0.05873 18 0.053005 24 0.051396 9 0.048011 0 0.041679 10 0.04094 17 0.040558 23 0.039879 14 0.036356 13 0.032075 4 0.02709 5 0.026496 20 0.026112 6 0.022116 16 0.021723 3 0.020347 7 0.019361 8 0.019053 1 0.018857 2 0.01779 21 0.08557436502638077 22 0.0806185756859717 11 0.07317776000808711 19 0.062499502297063844 18 0.05982044575593137 12 0.05671311476780566 24 0.04753604956558952 10 0.045858449462005166 9 0.04488859790918532 17 0.04396599301070963 0 0.04158286680992453 23 0.04064356030730434 20 0.036829623448763865 14 0.03656511593318877 13 0.03418908995080996 16 0.029619459467794117 4 0.025452963803938224 5 0.02489280077385792 6 0.02152440335680141 3 0.019731065829781652 7 0.019047428173663495 8 0.018882026634480707 1 0.018669062943072304 2 0.01795707145882616 15 0.009435455422060559 __DUMMY__ 0.004325152197001911 false 1.0 571 17 0.083791 16 0.083552 19 0.076213 22 0.073753 11 0.066209 0 0.062826 21 0.060279 18 0.05726 24 0.048144 20 0.041827 9 0.039964 12 0.039653 23 0.037448 10 0.031055 6 0.023671 4 0.023546 5 0.022923 8 0.021941 1 0.021736 7 0.021734 2 0.02138 3 0.01995 15 0.018587 14 0.002559 17 0.083791 16 0.083552 19 0.076213 22 0.073753 11 0.066209 0 0.062826 21 0.060279 18 0.05726 24 0.048144 20 0.041827 9 0.039964 12 0.039653 23 0.037448 10 0.031055 6 0.023671 4 0.023546 5 0.022923 8 0.021941 1 0.021736 7 0.021734 2 0.02138 3 0.01995 15 0.018587 14 0.002559 22 0.07050647682137001 19 0.06947112391869172 17 0.06690075984858426 21 0.06370355446381407 11 0.06272183903969113 18 0.061336190938430395 16 0.06088485225310034 0 0.05416898844096336 12 0.04456158637656607 24 0.04374097344954092 9 0.04241770695007008 20 0.042039458935085164 10 0.04139715228222164 23 0.038347060733216275 4 0.024836589194878567 5 0.02425931657886149 6 0.023745535094943964 8 0.021803886137666897 7 0.021710857289676564 1 0.021578564181631565 2 0.021181375102417632 3 0.020740347317937582 15 0.019017094667391404 14 0.018486649467482543 13 0.016586352544544856 __DUMMY__ 0.003855707971221591 false 1.0 572 21 0.103625 22 0.092507 11 0.087651 19 0.077065 18 0.067827 12 0.067782 10 0.05267 24 0.052385 17 0.046445 9 0.044387 20 0.044011 0 0.043949 14 0.03866 13 0.036329 23 0.035035 16 0.03376 4 0.015144 5 0.014632 6 0.00962 3 0.009426 7 0.007038 1 0.006942 8 0.006713 2 0.006399 21 0.103625 22 0.092507 11 0.087651 19 0.077065 18 0.067827 12 0.067782 10 0.05267 24 0.052385 17 0.046445 9 0.044387 20 0.044011 0 0.043949 14 0.03866 13 0.036329 23 0.035035 16 0.03376 4 0.015144 5 0.014632 6 0.00962 3 0.009426 7 0.007038 1 0.006942 8 0.006713 2 0.006399 21 0.08761748467841593 22 0.07995039663440036 11 0.07383627652391665 19 0.07105812492811596 18 0.0668740586816955 12 0.06118783591108702 10 0.05155345412530781 24 0.047852180399741866 17 0.04658270228075968 20 0.04533460969282175 9 0.04306413213336532 0 0.04261579017722462 23 0.03835550740224011 14 0.03791496342638009 13 0.036791492663779 16 0.03515049887010301 4 0.019732333404748403 5 0.019213459368408032 6 0.015566598383554658 3 0.01445362072054632 7 0.013139013965162781 8 0.01296447318605303 1 0.012955167605496854 2 0.01249136275763438 15 0.009425750596244798 __DUMMY__ 0.004318711482796071 false 1.0 330 17 0.080957 0 0.079807 16 0.064108 9 0.054825 22 0.050561 6 0.049191 18 0.048615 11 0.046481 8 0.045884 2 0.045879 1 0.045504 7 0.045381 5 0.044873 4 0.044452 10 0.044259 3 0.03994 19 0.037473 23 0.033344 12 0.025347 21 0.023853 15 0.020582 13 0.011472 24 0.01015 20 0.00706 17 0.080957 0 0.079807 16 0.064108 9 0.054825 22 0.050561 6 0.049191 18 0.048615 11 0.046481 8 0.045884 2 0.045879 1 0.045504 7 0.045381 5 0.044873 4 0.044452 10 0.044259 3 0.03994 19 0.037473 23 0.033344 12 0.025347 21 0.023853 15 0.020582 13 0.011472 24 0.01015 20 0.00706 17 0.06724822765060692 0 0.06447399867248738 22 0.05828252149761978 18 0.055956996890295305 16 0.05200533602177989 9 0.05171631096051498 11 0.05119375350256214 19 0.048028775341220985 10 0.04758140047039882 21 0.042030137634608555 6 0.03862254057159814 4 0.03710847317521101 5 0.037014754579667596 8 0.036083177682627074 7 0.035838006616073524 1 0.03576899190686014 2 0.035690569253655914 23 0.03534050233825737 12 0.0334877534225895 3 0.0328201413344483 24 0.023036878462805076 20 0.02216828483710582 15 0.02093037578898025 13 0.01900263567264174 14 0.015106137992775106 __DUMMY__ 0.0034633177226087745 false 1.0 573 22 0.086678 21 0.085094 11 0.076587 9 0.060905 10 0.051585 18 0.0507 12 0.047468 0 0.044312 19 0.038942 4 0.038433 24 0.037837 5 0.037739 14 0.037217 23 0.035073 6 0.033667 3 0.033073 17 0.033019 7 0.031616 8 0.031382 1 0.031294 13 0.031219 2 0.030566 20 0.012968 16 0.002626 22 0.086678 21 0.085094 11 0.076587 9 0.060905 10 0.051585 18 0.0507 12 0.047468 0 0.044312 19 0.038942 4 0.038433 24 0.037837 5 0.037739 14 0.037217 23 0.035073 6 0.033667 3 0.033073 17 0.033019 7 0.031616 8 0.031382 1 0.031294 13 0.031219 2 0.030566 20 0.012968 16 0.002626 21 0.07763676846107409 22 0.07709576715954869 11 0.06820899157713725 18 0.05747411844710012 9 0.05210661607933811 19 0.05086545297917069 10 0.05063999050836666 12 0.05021007417589958 0 0.04367262874869878 17 0.04031806581616253 24 0.039826396681389695 23 0.03799484265411875 14 0.036191806709691764 13 0.03342675572328534 4 0.032227832897118766 5 0.03162111466044506 6 0.028559161856277538 20 0.028233192612200662 3 0.027137091829578384 7 0.026391732156743137 8 0.026259795285575878 1 0.02610797653214835 2 0.025539029797334706 16 0.01943596464471318 15 0.008770782140897429 __DUMMY__ 0.004048049865984758 false 1.0 331 23 0.08237 12 0.06888 24 0.065002 21 0.063709 5 0.048536 13 0.04849 4 0.04823 6 0.04754 20 0.045574 2 0.045268 7 0.044764 1 0.044507 8 0.044093 3 0.044031 19 0.041932 22 0.040112 11 0.028126 16 0.027594 17 0.025317 18 0.024925 14 0.024429 9 0.021541 0 0.013869 15 0.011163 23 0.08237 12 0.06888 24 0.065002 21 0.063709 5 0.048536 13 0.04849 4 0.04823 6 0.04754 20 0.045574 2 0.045268 7 0.044764 1 0.044507 8 0.044093 3 0.044031 19 0.041932 22 0.040112 11 0.028126 16 0.027594 17 0.025317 18 0.024925 14 0.024429 9 0.021541 0 0.013869 15 0.011163 21 0.07058734831658402 12 0.06375019773101533 23 0.06222991475637797 24 0.05551814491758469 19 0.05535519725274394 22 0.05531116711506286 20 0.04732093363053607 11 0.046167036007618074 18 0.046098411279889465 13 0.0437189668828006 17 0.035532100133113094 4 0.03490391307015516 5 0.03476536815806205 6 0.03287445797233568 16 0.03207454718604455 14 0.03154680016965897 9 0.030845143459470346 7 0.030280148912715694 3 0.030185862123679928 2 0.03015441491870251 1 0.03000869847078179 8 0.029923495331443305 0 0.026879704119610794 10 0.025400240304775137 15 0.013978403525244036 __DUMMY__ 0.00458938425399399 false 1.0 332 20 0.100439 19 0.09864 21 0.088814 24 0.083502 18 0.079956 12 0.069539 22 0.067178 23 0.05848 11 0.054485 16 0.051928 14 0.046604 17 0.039413 13 0.038779 10 0.038514 15 0.03159 9 0.016605 0 0.012026 4 0.00781 5 0.007028 3 0.004676 6 0.001688 7 0.001139 8 7.35E-4 1 4.32E-4 20 0.100439 19 0.09864 21 0.088814 24 0.083502 18 0.079956 12 0.069539 22 0.067178 23 0.05848 11 0.054485 16 0.051928 14 0.046604 17 0.039413 13 0.038779 10 0.038514 15 0.03159 9 0.016605 0 0.012026 4 0.00781 5 0.007028 3 0.004676 6 0.001688 7 0.001139 8 7.35E-4 1 4.32E-4 19 0.08307856002688968 21 0.08070709598711026 20 0.07540170066946938 18 0.07402125126797172 22 0.06711100353089594 24 0.06424342996187528 12 0.06224081142742731 11 0.05697176234481403 23 0.05024940084466815 10 0.045187810354271316 16 0.04425489173436153 14 0.043901626919602366 17 0.04239690717774436 13 0.03876452071135107 9 0.028470476668609326 15 0.027169386446657024 0 0.025342849233429193 4 0.015104070338732118 5 0.014463522884483996 3 0.011213610799253164 6 0.010438299142303913 7 0.009097576942572742 8 0.008889269415764128 1 0.008623499429468247 2 0.008228663451586227 __DUMMY__ 0.004428002288687575 false 1.0 574 17 0.068792 0 0.066168 9 0.061055 22 0.060622 18 0.053562 16 0.049382 19 0.045424 6 0.044939 8 0.044716 10 0.044626 11 0.044525 7 0.044524 1 0.044357 4 0.044042 2 0.043587 5 0.043276 3 0.04234 21 0.034817 23 0.031148 24 0.026444 20 0.021184 15 0.019235 12 0.015197 14 0.006036 17 0.068792 0 0.066168 9 0.061055 22 0.060622 18 0.053562 16 0.049382 19 0.045424 6 0.044939 8 0.044716 10 0.044626 11 0.044525 7 0.044524 1 0.044357 4 0.044042 2 0.043587 5 0.043276 3 0.04234 21 0.034817 23 0.031148 24 0.026444 20 0.021184 15 0.019235 12 0.015197 14 0.006036 22 0.06429512182296106 17 0.061942107940835316 0 0.059427021413044734 18 0.05773071982242535 9 0.05633369331511524 11 0.0510207051441489 19 0.0507235681027256 10 0.04783902326820335 21 0.047327119998607836 16 0.044056263768659336 4 0.037801545892568886 6 0.03750179387222436 5 0.03713835973382861 8 0.03643762997429345 7 0.03632639135471991 1 0.03612283595203962 2 0.03549616009257725 3 0.03484690136422236 23 0.03322701758902422 24 0.02978150950343887 12 0.027639443995847196 20 0.02659551911964301 15 0.018292437222936584 14 0.016493542327765877 13 0.012131126507747718 __DUMMY__ 0.003472440900395073 false 1.0 575 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.08772126216269345 22 0.0792020153370519 11 0.0741597464713335 12 0.06211568791323942 19 0.06173060668636676 18 0.05715615485285602 24 0.04881295469203104 10 0.04306610562963881 23 0.04228527390640521 17 0.04221073625093021 9 0.04180730598984583 13 0.039976368542644906 0 0.03984661793086202 14 0.038472912054872396 20 0.037057193996505075 16 0.029085275923472216 4 0.025035234453079324 5 0.024579598742387014 6 0.02140986829685753 3 0.018720972354855304 7 0.018421218111126493 8 0.01814243127795397 1 0.017898498659862868 2 0.017360215055495513 15 0.009301490438730183 __DUMMY__ 0.004424254268902932 false 1.0 333 24 0.077588 23 0.074506 3 0.062632 5 0.061792 4 0.061502 22 0.060581 21 0.056882 2 0.056484 8 0.056062 1 0.055984 7 0.055722 6 0.054201 9 0.042921 20 0.040001 19 0.036198 18 0.02847 11 0.028141 14 0.022753 12 0.021253 15 0.018843 17 0.01443 10 0.008425 0 0.002592 16 0.002037 24 0.077588 23 0.074506 3 0.062632 5 0.061792 4 0.061502 22 0.060581 21 0.056882 2 0.056484 8 0.056062 1 0.055984 7 0.055722 6 0.054201 9 0.042921 20 0.040001 19 0.036198 18 0.02847 11 0.028141 14 0.022753 12 0.021253 15 0.018843 17 0.01443 10 0.008425 0 0.002592 16 0.002037 21 0.06647861106717705 22 0.06536996704340335 24 0.06181152536871624 23 0.05811700320496783 19 0.052434672046938066 18 0.048111980895334125 11 0.04526219755474604 20 0.04481306140647775 9 0.041900906309915505 4 0.041691157164698275 5 0.04153858288293933 3 0.03979923266011293 12 0.03866735656930138 6 0.03635307029505897 8 0.036147795310135775 7 0.03602716543269786 2 0.03600903351414501 1 0.035987091997000634 14 0.031126172167756604 17 0.030134709305784824 10 0.0298203468206359 0 0.02106068057549668 16 0.019389894891683558 15 0.018973707516242302 13 0.018736325473917525 __DUMMY__ 0.004237752524716438 false 1.0 576 22 0.08672 9 0.071507 11 0.06735 0 0.064214 21 0.063608 18 0.059461 17 0.058147 10 0.054617 19 0.046775 4 0.040902 5 0.040263 6 0.038352 7 0.037254 8 0.037084 3 0.036901 1 0.036901 2 0.035687 24 0.025461 16 0.025434 23 0.025083 12 0.021912 14 0.014998 20 0.009129 13 0.002238 22 0.08672 9 0.071507 11 0.06735 0 0.064214 21 0.063608 18 0.059461 17 0.058147 10 0.054617 19 0.046775 4 0.040902 5 0.040263 6 0.038352 7 0.037254 8 0.037084 3 0.036901 1 0.036901 2 0.035687 24 0.025461 16 0.025434 23 0.025083 12 0.021912 14 0.014998 20 0.009129 13 0.002238 22 0.07764517540851505 21 0.06465248254683797 11 0.06357272217304494 18 0.06144575020757425 9 0.05954096823943898 0 0.05620634643660796 17 0.05486024346842886 19 0.053348737951172835 10 0.0527585665985008 4 0.0346003272694782 12 0.03423868391332855 5 0.03400270283953271 6 0.03226793867680004 24 0.03155056018031741 16 0.0315503201045504 23 0.03136671825009528 7 0.03067389365347043 8 0.03059354974227468 1 0.030371712773473166 3 0.030360356917468027 2 0.029552486399282468 20 0.023475630151364536 14 0.023060142051321085 13 0.01593676583747359 15 0.008631900788606693 __DUMMY__ 0.003735317421041044 false 1.0 334 18 0.094649 21 0.093318 12 0.083318 22 0.074639 13 0.072097 19 0.070821 23 0.06636 11 0.062955 10 0.062729 14 0.049281 20 0.042668 17 0.03972 0 0.036137 9 0.035731 24 0.028913 4 0.015613 16 0.014889 6 0.014633 5 0.014047 7 0.007831 8 0.007178 1 0.005881 15 0.0037 2 0.002892 18 0.094649 21 0.093318 12 0.083318 22 0.074639 13 0.072097 19 0.070821 23 0.06636 11 0.062955 10 0.062729 14 0.049281 20 0.042668 17 0.03972 0 0.036137 9 0.035731 24 0.028913 4 0.015613 16 0.014889 6 0.014633 5 0.014047 7 0.007831 8 0.007178 1 0.005881 15 0.0037 2 0.002892 21 0.08280921216601955 18 0.08041758963147246 22 0.07131866973010735 19 0.06878219869272816 12 0.06858391456421152 11 0.06220258252051164 10 0.05725998341423481 13 0.05425525360204667 23 0.05320361096413516 20 0.04560968499725824 14 0.04408833223330345 17 0.04304496802975151 9 0.03861862257358696 0 0.03848149859081961 24 0.03681792604421184 16 0.026214148805493435 4 0.019347864556050396 5 0.01834156923533488 6 0.017243236497108596 7 0.01285388990877584 8 0.012517756211966106 15 0.012208108741468876 1 0.011800389950254895 2 0.010199901439161921 3 0.009451023459706423 __DUMMY__ 0.004328063440279436 false 1.0 335 21 0.102221 19 0.099062 22 0.090007 20 0.082616 24 0.0807 18 0.078689 11 0.07532 12 0.060815 23 0.051285 10 0.043601 14 0.04085 16 0.040138 17 0.03928 9 0.02928 13 0.021731 0 0.01774 15 0.015533 4 0.010462 5 0.010021 3 0.007102 6 0.001568 8 0.001016 7 4.85E-4 2 4.75E-4 21 0.102221 19 0.099062 22 0.090007 20 0.082616 24 0.0807 18 0.078689 11 0.07532 12 0.060815 23 0.051285 10 0.043601 14 0.04085 16 0.040138 17 0.03928 9 0.02928 13 0.021731 0 0.01774 15 0.015533 4 0.010462 5 0.010021 3 0.007102 6 0.001568 8 0.001016 7 4.85E-4 2 4.75E-4 21 0.08728704624013223 19 0.08273330347294752 22 0.07856033463953392 18 0.07300138388604131 11 0.06740467912307116 20 0.06579211358171666 24 0.06252890655893488 12 0.0577734845096229 10 0.047580954630325446 23 0.046607912332548546 17 0.04238637098861899 14 0.04038530267087096 16 0.038137837402522336 9 0.03514012193151129 13 0.030036032229531624 0 0.028642182693056958 15 0.018379527243057844 4 0.01681626038194616 5 0.016330954888072333 3 0.01279614589348786 6 0.010832006491872733 8 0.009459300875965892 7 0.009235553726123499 2 0.008885079258789041 1 0.008861531411518507 __DUMMY__ 0.004405672938179324 false 1.0 577 21 0.097648 22 0.094386 11 0.085961 19 0.059842 12 0.055499 18 0.053911 24 0.050767 9 0.05014 10 0.043203 0 0.042231 17 0.041591 23 0.037762 14 0.035439 13 0.02821 4 0.027696 5 0.027068 20 0.026216 6 0.022412 16 0.021814 3 0.02113 7 0.019928 8 0.019477 1 0.019472 2 0.018197 21 0.097648 22 0.094386 11 0.085961 19 0.059842 12 0.055499 18 0.053911 24 0.050767 9 0.05014 10 0.043203 0 0.042231 17 0.041591 23 0.037762 14 0.035439 13 0.02821 4 0.027696 5 0.027068 20 0.026216 6 0.022412 16 0.021814 3 0.02113 7 0.019928 8 0.019477 1 0.019472 2 0.018197 21 0.08464466034098221 22 0.08106195058947112 11 0.07299163345247785 19 0.06296812804947056 18 0.06026726514741069 12 0.05479782264760782 24 0.04717641478605197 10 0.0469847241130163 9 0.045990037919210594 17 0.04447379910374361 0 0.04189333104397883 23 0.03958186063261057 20 0.03680584249707029 14 0.036112857279734796 13 0.03224338481027462 16 0.029623297439242635 4 0.025785048115230542 5 0.02520785645437566 6 0.021709041905590636 3 0.020161623694050654 7 0.019370683854876374 8 0.019138616119588045 1 0.019014282370114856 2 0.01820398843209043 15 0.009471821153500525 __DUMMY__ 0.004320028048227713 false 1.0 578 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.08772126216269345 22 0.0792020153370519 11 0.0741597464713335 12 0.06211568791323942 19 0.06173060668636676 18 0.05715615485285602 24 0.04881295469203104 10 0.04306610562963881 23 0.04228527390640521 17 0.04221073625093021 9 0.04180730598984583 13 0.039976368542644906 0 0.03984661793086202 14 0.038472912054872396 20 0.037057193996505075 16 0.029085275923472216 4 0.025035234453079324 5 0.024579598742387014 6 0.02140986829685753 3 0.018720972354855304 7 0.018421218111126493 8 0.01814243127795397 1 0.017898498659862868 2 0.017360215055495513 15 0.009301490438730183 __DUMMY__ 0.004424254268902932 false 1.0 336 23 0.082947 12 0.068951 24 0.06513 21 0.064332 13 0.04882 4 0.04792 5 0.047623 6 0.047176 20 0.045969 7 0.044561 1 0.044348 2 0.044017 8 0.043947 3 0.042789 19 0.042517 22 0.039864 11 0.028314 16 0.027713 17 0.026003 18 0.025772 14 0.024152 9 0.021972 0 0.014164 15 0.010998 23 0.082947 12 0.068951 24 0.06513 21 0.064332 13 0.04882 4 0.04792 5 0.047623 6 0.047176 20 0.045969 7 0.044561 1 0.044348 2 0.044017 8 0.043947 3 0.042789 19 0.042517 22 0.039864 11 0.028314 16 0.027713 17 0.026003 18 0.025772 14 0.024152 9 0.021972 0 0.014164 15 0.010998 21 0.07087740220613313 12 0.06378333141108045 23 0.062498547754906375 19 0.05562754399536656 24 0.055577795922087427 22 0.0551958207122369 20 0.047504839760385734 18 0.04649268457908446 11 0.04625459902767608 13 0.043872615821976886 17 0.03585142640232411 4 0.034759682265816605 5 0.03434049018592825 6 0.03270509176949584 16 0.03212997669652826 14 0.03141792346758055 9 0.031045781628183465 7 0.03018571136429644 1 0.029934738929537037 8 0.02985558610351623 3 0.029607855278851028 2 0.029572219269154123 0 0.0270170399215288 10 0.025400275769952196 15 0.013901629094434726 __DUMMY__ 0.004589390661938293 false 1.0 337 19 0.099582 21 0.098702 22 0.084306 20 0.082714 18 0.07777 24 0.077041 11 0.070295 12 0.062596 23 0.053375 16 0.045811 10 0.04379 14 0.041977 17 0.041371 9 0.027834 13 0.026749 0 0.019264 15 0.019246 4 0.009385 5 0.008431 3 0.005793 6 0.001603 7 0.001028 8 8.62E-4 1 4.77E-4 19 0.099582 21 0.098702 22 0.084306 20 0.082714 18 0.07777 24 0.077041 11 0.070295 12 0.062596 23 0.053375 16 0.045811 10 0.04379 14 0.041977 17 0.041371 9 0.027834 13 0.026749 0 0.019264 15 0.019246 4 0.009385 5 0.008431 3 0.005793 6 0.001603 7 0.001028 8 8.62E-4 1 4.77E-4 21 0.08552522317882158 19 0.08315010259417017 22 0.07577280883285836 18 0.07260503153041445 20 0.06602646392689236 11 0.06496724492888167 24 0.060878579463280146 12 0.05862776323036204 23 0.047643527570232866 10 0.04759493469135807 17 0.04353255643759027 16 0.04113882487001785 14 0.04083722202156594 9 0.03432090956750495 13 0.032345362223270224 0 0.029377182979036305 15 0.020253248048726732 4 0.016230734573972533 5 0.01550547590285249 3 0.012108253400635966 6 0.010788399874036111 7 0.009430576724350716 8 0.009328820293487325 1 0.009026025604869361 2 0.008604869717000694 __DUMMY__ 0.004379857813810859 false 1.0 579 21 0.0883 22 0.082982 11 0.081268 12 0.063024 19 0.058594 18 0.052626 24 0.046642 0 0.045867 9 0.045444 17 0.044425 10 0.043926 23 0.038027 13 0.036221 14 0.032253 20 0.031054 16 0.03104 4 0.027008 5 0.026166 6 0.02333 3 0.021028 7 0.020617 8 0.020363 1 0.020199 2 0.019596 21 0.0883 22 0.082982 11 0.081268 12 0.063024 19 0.058594 18 0.052626 24 0.046642 0 0.045867 9 0.045444 17 0.044425 10 0.043926 23 0.038027 13 0.036221 14 0.032253 20 0.031054 16 0.03104 4 0.027008 5 0.026166 6 0.02333 3 0.021028 7 0.020617 8 0.020363 1 0.020199 2 0.019596 21 0.07870480253460295 22 0.07545575571058036 11 0.0704455730483203 19 0.06042083139903543 18 0.058184265409685146 12 0.05707001508009278 17 0.046685599251069305 10 0.04663707172286327 0 0.04513726363719194 9 0.044935029475119063 24 0.04388654943432195 23 0.039237709530788104 20 0.03652601559823479 13 0.034737369844159725 16 0.034000150467911834 14 0.03270886107894265 4 0.026916895372778346 5 0.026237830118618913 6 0.023853906812170447 3 0.02157167273857498 7 0.021389739952519075 8 0.021253963295929896 1 0.02106106815410024 2 0.020548866305223557 15 0.008441062959698506 __DUMMY__ 0.003952131067466277 false 1.0 338 0 0.086662 17 0.079201 9 0.065797 22 0.06245 11 0.059258 10 0.056303 18 0.054146 16 0.053555 6 0.045419 8 0.042992 7 0.042802 1 0.042602 2 0.042168 4 0.041699 5 0.041179 19 0.037646 3 0.037388 21 0.032705 12 0.024274 23 0.021153 13 0.011875 15 0.011788 14 0.003952 24 0.002986 0 0.086662 17 0.079201 9 0.065797 22 0.06245 11 0.059258 10 0.056303 18 0.054146 16 0.053555 6 0.045419 8 0.042992 7 0.042802 1 0.042602 2 0.042168 4 0.041699 5 0.041179 19 0.037646 3 0.037388 21 0.032705 12 0.024274 23 0.021153 13 0.011875 15 0.011788 14 0.003952 24 0.002986 0 0.07009628722014548 17 0.06722697784949959 22 0.0645142299073642 9 0.05918787973210953 11 0.05757468078741088 18 0.056942826146861324 10 0.0530644989620377 16 0.045920227293000444 19 0.04544229979052901 21 0.04500262313057795 6 0.03897520494576104 4 0.037718359774840574 5 0.03717687899387162 8 0.03683766825255598 7 0.03672999533455377 1 0.036523308926851045 2 0.03604578087399721 3 0.03352381609820932 12 0.03130477015213289 23 0.028253790762893534 24 0.017510734273745106 13 0.01746689199133407 20 0.014859379847868833 14 0.014491645717502654 15 0.014264665563219035 __DUMMY__ 0.003344577671127138 false 1.0 339 23 0.087622 24 0.074157 4 0.063054 3 0.062309 5 0.061895 7 0.061414 8 0.060982 1 0.060235 6 0.060073 2 0.059483 20 0.056155 19 0.03398 21 0.033911 15 0.032961 9 0.03059 22 0.029775 18 0.027764 12 0.027539 14 0.021907 16 0.017387 17 0.016068 13 0.015267 10 0.003769 11 0.001702 23 0.087622 24 0.074157 4 0.063054 3 0.062309 5 0.061895 7 0.061414 8 0.060982 1 0.060235 6 0.060073 2 0.059483 20 0.056155 19 0.03398 21 0.033911 15 0.032961 9 0.03059 22 0.029775 18 0.027764 12 0.027539 14 0.021907 16 0.017387 17 0.016068 13 0.015267 10 0.003769 11 0.001702 23 0.06567066454235009 24 0.061014993592176485 21 0.056169417857704976 20 0.05322150914390267 19 0.051645973536017645 22 0.050220716251948065 18 0.047297730602034245 12 0.043071681990256266 4 0.04250309531946962 5 0.041684024886328934 3 0.03962236405790856 6 0.03920275815588165 7 0.03870674567178925 8 0.03846057163474463 1 0.03799867194692699 2 0.03744921232743928 9 0.035082045701976546 11 0.03239232418852292 17 0.030306841256677475 14 0.03030503486735573 13 0.02679826375605493 16 0.02660126017861683 10 0.026535140065122587 15 0.024841917155067623 0 0.01893549126049073 __DUMMY__ 0.004261550053235208 false 1.0 580 17 0.084911 0 0.07903 16 0.072508 22 0.054787 18 0.054151 9 0.053099 11 0.050443 19 0.049061 10 0.043402 6 0.041713 8 0.03975 1 0.039629 7 0.03957 2 0.03864 4 0.037585 5 0.037288 3 0.03392 23 0.029756 21 0.029238 12 0.02563 15 0.022408 20 0.018665 24 0.0175 13 0.007314 17 0.084911 0 0.07903 16 0.072508 22 0.054787 18 0.054151 9 0.053099 11 0.050443 19 0.049061 10 0.043402 6 0.041713 8 0.03975 1 0.039629 7 0.03957 2 0.03864 4 0.037585 5 0.037288 3 0.03392 23 0.029756 21 0.029238 12 0.02563 15 0.022408 20 0.018665 24 0.0175 13 0.007314 17 0.07079354520639607 0 0.06622248055696717 22 0.060757504594377766 18 0.058065284836457634 16 0.0570642186037264 11 0.05388915409953526 19 0.052946580602110396 9 0.05171625238252063 10 0.047075486451913354 21 0.0440548490430406 6 0.035628250697423175 4 0.03415079009357135 5 0.03371402166605876 8 0.033637691312891606 7 0.03352886835941767 1 0.033437947713388615 12 0.03336618887306063 2 0.03271223885212074 23 0.03256868013820169 3 0.030161867027603925 20 0.025779222675516723 24 0.025142968635284257 15 0.02051057562464792 13 0.016261647757739618 14 0.013395870082967175 __DUMMY__ 0.00341781411306073 false 1.0 581 22 0.101864 21 0.099317 19 0.073637 11 0.073232 18 0.067689 24 0.058026 9 0.057563 10 0.051075 20 0.044344 23 0.043242 12 0.037253 14 0.034806 17 0.033514 0 0.03071 4 0.027613 5 0.026838 3 0.025232 8 0.018801 7 0.018617 6 0.018418 1 0.018162 2 0.017985 16 0.013635 13 0.008426 22 0.101864 21 0.099317 19 0.073637 11 0.073232 18 0.067689 24 0.058026 9 0.057563 10 0.051075 20 0.044344 23 0.043242 12 0.037253 14 0.034806 17 0.033514 0 0.03071 4 0.027613 5 0.026838 3 0.025232 8 0.018801 7 0.018617 6 0.018418 1 0.018162 2 0.017985 16 0.013635 13 0.008426 21 0.08601094262904375 22 0.08417890008232902 19 0.0710920195845364 18 0.0678918171487588 11 0.06655631046743504 24 0.051980754572983984 10 0.05107683174683962 9 0.04828535680667001 20 0.04799446693902236 12 0.04680053351930743 23 0.042896426505292226 17 0.03979102122875338 14 0.03742371757075351 0 0.03475930701319502 16 0.025999914082947558 4 0.024735976991430507 5 0.024095598611706678 13 0.023696442515563024 3 0.02117529135067575 6 0.018607455649068308 8 0.01767228339663979 7 0.017614974160014285 1 0.017252548356262092 2 0.016968416257572668 15 0.01099802121107614 __DUMMY__ 0.004444671602122678 false 1.0 582 22 0.088855 21 0.086909 11 0.07922 9 0.059726 10 0.051808 18 0.051599 12 0.048022 0 0.045638 19 0.042495 24 0.039065 14 0.036773 4 0.036203 5 0.035777 17 0.035318 23 0.033218 6 0.031327 3 0.031134 13 0.030082 7 0.029117 8 0.029009 1 0.028857 2 0.028523 20 0.014519 16 0.006806 22 0.088855 21 0.086909 11 0.07922 9 0.059726 10 0.051808 18 0.051599 12 0.048022 0 0.045638 19 0.042495 24 0.039065 14 0.036773 4 0.036203 5 0.035777 17 0.035318 23 0.033218 6 0.031327 3 0.031134 13 0.030082 7 0.029117 8 0.029009 1 0.028857 2 0.028523 20 0.014519 16 0.006806 21 0.07835698544589875 22 0.07816364908171027 11 0.06945149535651898 18 0.05790925238331106 19 0.05255603533173005 9 0.0516507176698451 10 0.050761601947991765 12 0.0502703213908233 0 0.044472401004776396 17 0.04158644799793743 24 0.04031455026244331 23 0.03704748020335592 14 0.035777184832109246 13 0.03262951173817287 4 0.031214845803169706 5 0.030732555405109125 20 0.028863984782500587 6 0.02750882322067241 3 0.026273497832304538 7 0.025275073352089294 8 0.02520301144343649 1 0.025019407136290344 2 0.024634378870062257 16 0.02156079906107965 15 0.008729903671328205 __DUMMY__ 0.004036084775333088 false 1.0 340 22 0.078359 21 0.073576 24 0.073437 23 0.064919 5 0.053719 4 0.053253 3 0.053006 11 0.047931 9 0.04783 2 0.046671 1 0.046023 8 0.046008 7 0.045664 6 0.045116 19 0.043875 18 0.036022 20 0.03351 12 0.027926 14 0.023316 17 0.020723 10 0.017119 0 0.011778 15 0.007614 16 0.002605 22 0.078359 21 0.073576 24 0.073437 23 0.064919 5 0.053719 4 0.053253 3 0.053006 11 0.047931 9 0.04783 2 0.046671 1 0.046023 8 0.046008 7 0.045664 6 0.045116 19 0.043875 18 0.036022 20 0.03351 12 0.027926 14 0.023316 17 0.020723 10 0.017119 0 0.011778 15 0.007614 16 0.002605 21 0.07411706689303445 22 0.07396611670167308 24 0.05923141232468965 19 0.05563351832498723 11 0.054905247061674614 23 0.053109782172040876 18 0.051585399610449556 9 0.044684738828938364 12 0.04154218005659964 20 0.04091633987848115 4 0.03798426291630482 5 0.037906942636755495 3 0.035406243476273545 10 0.03411745275625873 17 0.03351026036870244 6 0.032317676047933515 8 0.031632910793834346 2 0.031597267874674546 1 0.03151109169584822 7 0.03150162970179022 14 0.03102272246018164 0 0.026119852138058917 16 0.019613534874007223 13 0.018523895191318845 15 0.013335981174760347 __DUMMY__ 0.004206474040728767 false 1.0 583 21 0.100137 19 0.093686 22 0.084881 20 0.079053 18 0.078469 24 0.073975 11 0.071983 12 0.06666 23 0.050279 10 0.044993 16 0.043195 17 0.042563 14 0.042292 13 0.032259 9 0.028828 0 0.022823 15 0.016422 4 0.009455 5 0.008353 3 0.004817 6 0.002512 7 0.001195 8 7.9E-4 1 3.81E-4 21 0.100137 19 0.093686 22 0.084881 20 0.079053 18 0.078469 24 0.073975 11 0.071983 12 0.06666 23 0.050279 10 0.044993 16 0.043195 17 0.042563 14 0.042292 13 0.032259 9 0.028828 0 0.022823 15 0.016422 4 0.009455 5 0.008353 3 0.004817 6 0.002512 7 0.001195 8 7.9E-4 1 3.81E-4 21 0.0862066216902489 19 0.08023824175396187 22 0.07603968827866057 18 0.07289516763962428 11 0.06583191951379727 20 0.06411932344735706 12 0.06066575397489874 24 0.059273400779547396 10 0.04819182339502091 23 0.046064127092804934 17 0.04414867020069702 14 0.040995972732495 16 0.039853926887198445 13 0.03511993380098874 9 0.03485461679796493 0 0.031195083847487946 15 0.01883386313132296 4 0.016273935854626005 5 0.01547956161736235 3 0.011634526371444196 6 0.0112518185084012 7 0.009524541223220538 8 0.0093128583686409 1 0.008998901705296658 2 0.008621151296559965 __DUMMY__ 0.004374570090371298 false 1.0 341 23 0.085985 24 0.065868 12 0.061713 21 0.055174 6 0.051392 4 0.051391 5 0.050362 20 0.050192 7 0.049473 8 0.048813 1 0.048077 2 0.04722 3 0.046144 19 0.042529 13 0.041464 22 0.034879 16 0.031076 17 0.026645 18 0.026113 9 0.023728 14 0.018416 11 0.018077 0 0.013706 15 0.011562 23 0.085985 24 0.065868 12 0.061713 21 0.055174 6 0.051392 4 0.051391 5 0.050362 20 0.050192 7 0.049473 8 0.048813 1 0.048077 2 0.04722 3 0.046144 19 0.042529 13 0.041464 22 0.034879 16 0.031076 17 0.026645 18 0.026113 9 0.023728 14 0.018416 11 0.018077 0 0.013706 15 0.011562 21 0.0662433581668306 23 0.06399464884464988 12 0.059899690524997815 24 0.05599445771665956 19 0.05572504722159958 22 0.052778935846371784 20 0.049630103583667505 18 0.04672065099091784 11 0.04119231436071067 13 0.039916422429597594 4 0.03648421208649909 17 0.03625624976375858 5 0.03572456575146612 6 0.034766977844605515 16 0.03388960487457799 7 0.03261581217300469 8 0.03226516779555481 9 0.03192370225322797 1 0.03181215039140601 3 0.03134194172932971 2 0.031207137295329083 14 0.028553715931918935 0 0.02676528962466345 10 0.025396492519574442 15 0.014404010503869727 __DUMMY__ 0.004497339775210929 false 1.0 100 19 0.100706 20 0.099246 21 0.090394 24 0.083827 18 0.077522 12 0.070703 22 0.06641 23 0.058822 11 0.054517 16 0.052669 14 0.046547 17 0.039137 13 0.038258 10 0.036834 15 0.031541 9 0.017633 0 0.008983 4 0.00851 5 0.008195 3 0.004815 6 0.002093 7 0.00115 8 0.001134 1 3.54E-4 19 0.100706 20 0.099246 21 0.090394 24 0.083827 18 0.077522 12 0.070703 22 0.06641 23 0.058822 11 0.054517 16 0.052669 14 0.046547 17 0.039137 13 0.038258 10 0.036834 15 0.031541 9 0.017633 0 0.008983 4 0.00851 5 0.008195 3 0.004815 6 0.002093 7 0.00115 8 0.001134 1 3.54E-4 19 0.08404675403771159 21 0.08144753477563813 20 0.07484262252091636 18 0.07288060062792304 22 0.06675109404381402 24 0.06439573540888258 12 0.06278629924378581 11 0.056986758573442424 23 0.0504096730381343 16 0.04460214815353821 10 0.04440050835127963 14 0.043874914887357994 17 0.042267564705824295 13 0.03852036336399472 9 0.02895223051329708 15 0.027146423471569765 0 0.02391680161729605 4 0.015432112839978647 5 0.015010416597276428 3 0.011278750667357835 6 0.010628095160882265 7 0.009102731896163755 8 0.009076253641474654 1 0.008586946122186492 2 0.008228663451586226 __DUMMY__ 0.004428002288687575 false 1.0 584 20 0.112389 19 0.089867 24 0.083009 18 0.071078 23 0.067623 21 0.061645 12 0.057275 16 0.05262 15 0.050245 14 0.048734 13 0.039638 22 0.038128 10 0.032239 17 0.031329 11 0.022414 3 0.018932 4 0.018886 5 0.01825 7 0.015101 8 0.014982 1 0.01481 2 0.014494 6 0.013917 9 0.012396 20 0.112389 19 0.089867 24 0.083009 18 0.071078 23 0.067623 21 0.061645 12 0.057275 16 0.05262 15 0.050245 14 0.048734 13 0.039638 22 0.038128 10 0.032239 17 0.031329 11 0.022414 3 0.018932 4 0.018886 5 0.01825 7 0.015101 8 0.014982 1 0.01481 2 0.014494 6 0.013917 9 0.012396 20 0.08489346050633863 19 0.0806776708025665 18 0.07138539828965686 21 0.06649453074579342 24 0.06542542541948246 12 0.05576491262151997 23 0.055477646041261784 22 0.05151824569303124 14 0.04717940545571401 16 0.045806336812104415 10 0.0426155623119596 15 0.04011515610878168 13 0.03963319803076384 11 0.039475543068391204 17 0.0380287268603318 9 0.02487687055633538 4 0.01934853896748404 5 0.018786947823358532 0 0.01744852213198082 3 0.017246711425387782 6 0.01510686494155403 7 0.014774516698947271 8 0.014709934061471653 1 0.014495403654399483 2 0.014179410949036261 __DUMMY__ 0.004535060022347424 false 1.0 342 0 0.08657 17 0.079703 9 0.066111 22 0.062458 11 0.058774 10 0.056004 18 0.05569 16 0.052995 6 0.045556 8 0.043032 1 0.042932 7 0.042856 4 0.041853 2 0.041726 5 0.041282 19 0.037791 3 0.036945 21 0.03306 12 0.02385 23 0.021401 13 0.011784 15 0.011347 14 0.00362 24 0.00266 0 0.08657 17 0.079703 9 0.066111 22 0.062458 11 0.058774 10 0.056004 18 0.05569 16 0.052995 6 0.045556 8 0.043032 1 0.042932 7 0.042856 4 0.041853 2 0.041726 5 0.041282 19 0.037791 3 0.036945 21 0.03306 12 0.02385 23 0.021401 13 0.011784 15 0.011347 14 0.00362 24 0.00266 0 0.07005343276386236 17 0.06746081412182697 22 0.0645179563818236 9 0.05933414385464101 18 0.05766203571752562 11 0.05734922908261715 10 0.0529252219791176 16 0.045659374080842405 19 0.045509842140105644 21 0.04516798543471385 6 0.039039020820878276 4 0.03779009440818404 5 0.037224857352536396 8 0.036856300624852976 7 0.03675514903715472 1 0.03667702599830132 2 0.03583989316011533 3 0.033317462575020024 12 0.03110726700578467 23 0.02836931147113495 13 0.01742450334435839 24 0.017358880439524542 20 0.014859379847868833 14 0.01433699702743753 15 0.01405924365864458 __DUMMY__ 0.003344577671127138 false 1.0 101 22 0.085388 18 0.067631 21 0.065904 9 0.065528 11 0.062117 19 0.061086 17 0.058592 0 0.055136 10 0.052295 24 0.036993 4 0.035108 5 0.034711 16 0.032152 3 0.031907 6 0.031383 23 0.030954 8 0.030378 7 0.029906 2 0.029836 1 0.0294 20 0.028137 12 0.026375 14 0.01484 15 0.004242 22 0.085388 18 0.067631 21 0.065904 9 0.065528 11 0.062117 19 0.061086 17 0.058592 0 0.055136 10 0.052295 24 0.036993 4 0.035108 5 0.034711 16 0.032152 3 0.031907 6 0.031383 23 0.030954 8 0.030378 7 0.029906 2 0.029836 1 0.0294 20 0.028137 12 0.026375 14 0.01484 15 0.004242 22 0.07658137618541928 21 0.06735287720636983 18 0.06664357510770301 19 0.06207099104031231 11 0.060983997423847525 9 0.05491406639330241 17 0.05364094597211107 10 0.05204945218180218 0 0.04966552000072035 24 0.03879201149496208 12 0.03841853994630556 20 0.035739316831311825 23 0.035119959396844425 16 0.03457175540600384 4 0.0303258065857335 5 0.029850831419867347 6 0.027183757111351327 3 0.026438905388508623 8 0.0256251337561911 14 0.025416076731549844 7 0.025409715391508696 1 0.025035843810078232 2 0.025011904025202873 13 0.017140454383639484 15 0.011984232960970495 __DUMMY__ 0.004032953848382946 false 1.0 585 21 0.099343 22 0.093515 11 0.089181 12 0.061395 19 0.058284 18 0.051506 24 0.049774 9 0.047777 0 0.043925 10 0.042419 17 0.041453 14 0.037412 23 0.036811 13 0.034911 4 0.026093 5 0.025743 20 0.024648 16 0.023288 6 0.021577 3 0.019391 7 0.018516 8 0.018052 1 0.017803 2 0.017181 21 0.099343 22 0.093515 11 0.089181 12 0.061395 19 0.058284 18 0.051506 24 0.049774 9 0.047777 0 0.043925 10 0.042419 17 0.041453 14 0.037412 23 0.036811 13 0.034911 4 0.026093 5 0.025743 20 0.024648 16 0.023288 6 0.021577 3 0.019391 7 0.018516 8 0.018052 1 0.017803 2 0.017181 21 0.08539763615202894 22 0.08071716273290977 11 0.07462720963410963 19 0.062077756674326856 18 0.05891343339900424 12 0.0575666759159467 24 0.04657911944346572 10 0.04644358598571196 9 0.04497326205045096 17 0.044597059081456426 0 0.04295301661145049 23 0.03912947517920183 14 0.03664056540132995 20 0.035710810344823006 13 0.03522198258173789 16 0.030418189618953824 4 0.02517522560402918 5 0.024728093217293492 6 0.02149728838554051 3 0.019463390948716075 7 0.01886929977548563 8 0.018630775988884345 1 0.018392416287041104 2 0.017886225543956445 15 0.009118088233997124 __DUMMY__ 0.004272255208147822 false 1.0 343 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 21 0.07119760969925712 12 0.06401976368798015 23 0.06286296994548209 19 0.05590307137317093 22 0.05576875010763754 24 0.055753723876158456 20 0.04803448529407048 18 0.04676635028541719 11 0.04635978346582437 13 0.044132318992272206 17 0.03565362380846119 4 0.034552105896727504 5 0.03377128413347093 6 0.032731620587966866 16 0.03226215537101549 14 0.031643185715650335 9 0.031037404106561035 7 0.03018757303576809 8 0.029807648063121212 1 0.029345985326627372 3 0.02875148640189152 2 0.028719573735137918 0 0.02696165519524719 10 0.0254002757699522 15 0.013786205463192359 __DUMMY__ 0.004589390661938293 false 1.0 102 10 0.088744 9 0.078074 18 0.076656 22 0.07343 0 0.071526 11 0.062085 17 0.055489 21 0.043725 14 0.042698 19 0.039801 4 0.035503 5 0.035383 6 0.034129 8 0.032891 7 0.032615 3 0.032424 1 0.032307 2 0.032183 15 0.029732 13 0.021024 16 0.018443 12 0.013457 23 0.011158 20 0.006522 10 0.088744 9 0.078074 18 0.076656 22 0.07343 0 0.071526 11 0.062085 17 0.055489 21 0.043725 14 0.042698 19 0.039801 4 0.035503 5 0.035383 6 0.034129 8 0.032891 7 0.032615 3 0.032424 1 0.032307 2 0.032183 15 0.029732 13 0.021024 16 0.018443 12 0.013457 23 0.011158 20 0.006522 10 0.07250683753607953 18 0.07178503433191309 22 0.07038491225456563 9 0.06381577266565475 0 0.06069388927811866 11 0.060273185539799434 17 0.05376978233013887 21 0.0528718808716471 19 0.04944764934224158 14 0.038230467660994395 4 0.03176277721531809 5 0.031418095809508245 6 0.030083166110869513 8 0.028510410789718353 7 0.028371644280378163 12 0.028209108787087458 1 0.028108234089817243 3 0.028107653039291036 2 0.027806683209097294 16 0.027564658026548026 13 0.025430760165872354 15 0.02539154394023916 23 0.02325355210553234 20 0.02184202821990721 24 0.01677914586853034 __DUMMY__ 0.0035811265311321504 false 1.0 344 0 0.079597 17 0.076055 9 0.065267 22 0.061257 18 0.052495 11 0.051088 10 0.050415 6 0.049473 16 0.049113 8 0.04774 7 0.047442 1 0.046909 4 0.046387 2 0.046308 5 0.04543 3 0.042299 19 0.037633 21 0.030729 23 0.028848 12 0.0183 15 0.011728 24 0.008983 13 0.004221 20 0.002283 0 0.079597 17 0.076055 9 0.065267 22 0.061257 18 0.052495 11 0.051088 10 0.050415 6 0.049473 16 0.049113 8 0.04774 7 0.047442 1 0.046909 4 0.046387 2 0.046308 5 0.04543 3 0.042299 19 0.037633 21 0.030729 23 0.028848 12 0.0183 15 0.011728 24 0.008983 13 0.004221 20 0.002283 0 0.06457007436128394 17 0.06439561283154098 22 0.06437058548487622 18 0.05797093351179239 9 0.05740782751733926 11 0.054265469109407515 10 0.051132026839263024 19 0.047827109072825245 21 0.04627690160123693 16 0.0435411238479155 6 0.03867527256550369 4 0.03807841555907732 5 0.037333680565466563 8 0.03686651189137442 7 0.036717129447220276 1 0.03634049989704908 2 0.03580098251600561 3 0.033952046353593564 23 0.03265650266347278 12 0.03023535714786248 24 0.02221147973310553 20 0.019128778259855532 15 0.01569502835968168 13 0.015662035739576356 14 0.015364310304124919 __DUMMY__ 0.003524304819549307 false 1.0 586 21 0.122493 24 0.092914 22 0.090791 12 0.08513 11 0.069365 19 0.063179 23 0.062571 14 0.053552 20 0.053183 13 0.049881 18 0.035792 4 0.028231 9 0.028174 5 0.028119 3 0.022286 6 0.019062 2 0.016283 7 0.01626 8 0.016242 1 0.015921 17 0.013484 16 0.007062 10 0.005799 15 0.004227 21 0.122493 24 0.092914 22 0.090791 12 0.08513 11 0.069365 19 0.063179 23 0.062571 14 0.053552 20 0.053183 13 0.049881 18 0.035792 4 0.028231 9 0.028174 5 0.028119 3 0.022286 6 0.019062 2 0.016283 7 0.01626 8 0.016242 1 0.015921 17 0.013484 16 0.007062 10 0.005799 15 0.004227 21 0.09729911425039979 22 0.07756385860566298 12 0.07265813857018279 24 0.06722570294232366 11 0.06492853048242578 19 0.06425569458638121 23 0.051791372883860716 18 0.05178932125497575 20 0.05105526188992938 14 0.04806614174062875 13 0.04789044607195108 9 0.033608104086559606 17 0.029692678384543352 10 0.029443754442402333 4 0.024899299736482836 5 0.024581432291675476 16 0.02206000912822827 0 0.020432249244431103 3 0.019242973350035886 6 0.01911047594699021 7 0.016351516884766285 8 0.01633605564456531 1 0.016072587506084594 2 0.016059405027188434 15 0.01318247001154219 __DUMMY__ 0.004403405035782259 false 1.0 345 20 0.108322 19 0.105917 24 0.087521 21 0.084143 18 0.078245 12 0.06657 23 0.063747 22 0.06297 16 0.057141 11 0.048181 14 0.04773 15 0.038347 17 0.037092 10 0.035329 13 0.034378 9 0.012916 4 0.008429 5 0.007971 3 0.006748 0 0.004164 6 0.001194 2 0.001173 8 0.001008 7 7.64E-4 20 0.108322 19 0.105917 24 0.087521 21 0.084143 18 0.078245 12 0.06657 23 0.063747 22 0.06297 16 0.057141 11 0.048181 14 0.04773 15 0.038347 17 0.037092 10 0.035329 13 0.034378 9 0.012916 4 0.008429 5 0.007971 3 0.006748 0 0.004164 6 0.001194 2 0.001173 8 0.001008 7 7.64E-4 19 0.08689062355252053 20 0.07984255543087825 21 0.07840722191772145 18 0.07349416540031371 24 0.06651112366970456 22 0.06490476713746963 12 0.060708924914486394 11 0.05366220850013997 23 0.05296341466061584 16 0.04687520729987837 14 0.04479976501422077 10 0.0437426494375397 17 0.04113915999620437 13 0.036666576923200064 15 0.030982275814264867 9 0.026438055665830882 0 0.021179311414423564 4 0.015209197548470948 5 0.01472197724023222 3 0.012059754067516117 6 0.009973394910253144 8 0.008827356887495467 7 0.008733428375563776 2 0.008591191571457308 1 0.008230570778303156 __DUMMY__ 0.00444512187129483 false 1.0 587 22 0.094619 21 0.078311 9 0.069878 11 0.057046 24 0.051328 18 0.049557 19 0.046078 4 0.044796 5 0.044002 3 0.042579 0 0.040469 17 0.040148 8 0.038605 7 0.038268 6 0.038213 1 0.038026 2 0.037481 10 0.036358 23 0.033341 14 0.029087 12 0.018464 20 0.016884 15 0.009417 16 0.007044 22 0.094619 21 0.078311 9 0.069878 11 0.057046 24 0.051328 18 0.049557 19 0.046078 4 0.044796 5 0.044002 3 0.042579 0 0.040469 17 0.040148 8 0.038605 7 0.038268 6 0.038213 1 0.038026 2 0.037481 10 0.036358 23 0.033341 14 0.029087 12 0.018464 20 0.016884 15 0.009417 16 0.007044 22 0.08004048017744363 21 0.07431104825738936 11 0.05866900562960944 18 0.05816225828551418 9 0.05553940055785998 19 0.05504748364582714 24 0.04601392428343101 10 0.04444626870936581 17 0.04374658331667893 0 0.04150659911862608 12 0.037474268994507946 23 0.03678147614356607 14 0.03434666739041994 4 0.03407243579833451 5 0.03342218911619461 20 0.03159640186276257 3 0.030427521471505074 6 0.029599701251877084 8 0.028525451558528404 7 0.028370065289532658 1 0.02813081185781673 2 0.02766824826039447 16 0.02216718295235119 13 0.020666559821148366 15 0.015217425428062464 __DUMMY__ 0.004050540821252246 false 1.0 103 23 0.089139 24 0.066807 4 0.064103 5 0.06274 6 0.062637 7 0.062231 8 0.062098 1 0.061537 3 0.060952 2 0.060523 20 0.048446 21 0.038605 12 0.037104 19 0.035144 9 0.033766 22 0.029407 18 0.025335 16 0.025053 17 0.024862 13 0.018102 15 0.012771 0 0.011287 14 0.006518 11 8.33E-4 23 0.089139 24 0.066807 4 0.064103 5 0.06274 6 0.062637 7 0.062231 8 0.062098 1 0.061537 3 0.060952 2 0.060523 20 0.048446 21 0.038605 12 0.037104 19 0.035144 9 0.033766 22 0.029407 18 0.025335 16 0.025053 17 0.024862 13 0.018102 15 0.012771 0 0.011287 14 0.006518 11 8.33E-4 23 0.06557463999799668 21 0.05791269983015463 24 0.05647042313380686 19 0.05243985866794497 22 0.05011120692733813 20 0.0489822695382825 12 0.04756735925530479 18 0.04649837871122735 4 0.042559123851729275 5 0.04164911461656366 6 0.040151900543801536 7 0.038771485536661335 8 0.0386652864034289 3 0.03848900126920988 1 0.038293106174990627 2 0.037617535057000225 9 0.036718080336775434 17 0.03565837001632466 11 0.03272122594057672 16 0.03144040018190004 13 0.028175097426869338 0 0.025640068333063922 10 0.0254416498632782 14 0.022732906962869538 15 0.015412940130251058 __DUMMY__ 0.004305871292649453 false 1.0 588 22 0.099391 21 0.094089 24 0.069765 9 0.061362 11 0.059672 19 0.050229 18 0.044848 14 0.043522 4 0.040788 23 0.040062 5 0.039852 3 0.038843 8 0.032563 7 0.032014 1 0.031796 6 0.031788 2 0.031529 17 0.028035 12 0.02798 20 0.027311 10 0.027105 0 0.023989 15 0.015289 13 0.008178 22 0.099391 21 0.094089 24 0.069765 9 0.061362 11 0.059672 19 0.050229 18 0.044848 14 0.043522 4 0.040788 23 0.040062 5 0.039852 3 0.038843 8 0.032563 7 0.032014 1 0.031796 6 0.031788 2 0.031529 17 0.028035 12 0.02798 20 0.027311 10 0.027105 0 0.023989 15 0.015289 13 0.008178 21 0.0830119007700171 22 0.08202722108576035 11 0.060005913019181296 19 0.05800366150437838 18 0.056461643247939224 24 0.05588427318553544 9 0.050253422601385 12 0.04366063052775287 14 0.0429001813295426 23 0.04062842040761814 10 0.04006802581074637 20 0.03837497230086029 17 0.03697509446279455 0 0.032201240788412376 4 0.03122866346051668 5 0.030518551075293457 3 0.027641147377291293 13 0.026376943415690118 6 0.025467823097657754 8 0.024528734439767844 7 0.02427837756164848 1 0.024049677435877218 2 0.023730313390004056 15 0.018841982350117224 16 0.018609728432134733 __DUMMY__ 0.0042714569220772694 false 1.0 346 0 0.086226 17 0.079497 9 0.065839 22 0.062936 11 0.058592 10 0.055773 18 0.055485 16 0.053049 6 0.045446 8 0.042915 7 0.042881 1 0.042821 2 0.041917 4 0.04179 5 0.041267 19 0.037667 3 0.037153 21 0.033111 12 0.024012 23 0.02165 13 0.011773 15 0.011525 14 0.003971 24 0.002706 0 0.086226 17 0.079497 9 0.065839 22 0.062936 11 0.058592 10 0.055773 18 0.055485 16 0.053049 6 0.045446 8 0.042915 7 0.042881 1 0.042821 2 0.041917 4 0.04179 5 0.041267 19 0.037667 3 0.037153 21 0.033111 12 0.024012 23 0.02165 13 0.011773 15 0.011525 14 0.003971 24 0.002706 0 0.06989312924836788 17 0.06736479464620074 22 0.06474055291726856 9 0.05920738856431607 18 0.05756649117948871 11 0.057264398440086246 10 0.052817570823270245 16 0.04568448522292652 19 0.045452039442018914 21 0.04519169960796393 6 0.03898774547535209 4 0.037760713243232887 5 0.03721783554009663 8 0.03680176665067338 7 0.03676676001724231 1 0.03662528704437796 2 0.035928829265867365 3 0.033414319781562125 12 0.03118269906320462 23 0.02848527145127466 13 0.017419363213773683 24 0.017380291475863018 20 0.014859366004606857 14 0.014500482585424228 15 0.014142144540281136 __DUMMY__ 0.003344574555259223 false 1.0 104 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.05647271290545149 4 0.05537155826494784 5 0.05499261602268552 6 0.0549373032424618 1 0.054761530908075444 7 0.05464559805420549 8 0.05450417862497626 2 0.05389110273177944 3 0.05349387483607181 22 0.0511310275646535 23 0.04595193616946351 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235916 24 0.03512905609660305 10 0.031741523468311016 11 0.03122696784021763 19 0.030683059987402877 16 0.026302599497096766 12 0.02217931306520858 20 0.020816584766715905 15 0.01673716051990459 14 0.013559119680263396 13 0.011489784582152628 __DUMMY__ 0.002947040178359979 false 1.0 589 21 0.100859 19 0.093913 22 0.083837 20 0.079433 18 0.078071 24 0.074202 11 0.071672 12 0.066936 23 0.050997 10 0.044712 16 0.042901 14 0.042412 17 0.042166 13 0.031699 9 0.028863 0 0.021793 15 0.015961 4 0.009742 5 0.008824 3 0.00484 6 0.002783 7 0.001483 8 0.001025 1 8.78E-4 21 0.100859 19 0.093913 22 0.083837 20 0.079433 18 0.078071 24 0.074202 11 0.071672 12 0.066936 23 0.050997 10 0.044712 16 0.042901 14 0.042412 17 0.042166 13 0.031699 9 0.028863 0 0.021793 15 0.015961 4 0.009742 5 0.008824 3 0.00484 6 0.002783 7 0.001483 8 0.001025 1 8.78E-4 21 0.08654496778757496 19 0.08034459436351346 22 0.07555035138472616 18 0.0727085990884113 11 0.06568612937762476 20 0.06429739155415896 12 0.060795081046492686 24 0.05937976321488731 10 0.048060101907308375 23 0.04640061728663502 17 0.04396258380173789 14 0.04105219504217246 16 0.03971611647555787 9 0.034871004240054786 13 0.034857456897329095 0 0.03071232948238597 15 0.01861779311761475 4 0.016408439204749714 5 0.015700302342713475 3 0.011645300543946857 6 0.011378825342468481 7 0.00965951641600992 8 0.009422993654365622 1 0.009231831131455518 2 0.008621147256004262 __DUMMY__ 0.004374568040100572 false 1.0 105 9 0.073348 0 0.061984 22 0.059926 17 0.05815 6 0.057102 4 0.056672 7 0.056627 8 0.056465 1 0.056345 5 0.055731 2 0.055222 3 0.054109 18 0.047335 10 0.044972 11 0.034818 23 0.031885 21 0.030834 16 0.027483 19 0.026609 24 0.017686 15 0.015406 14 0.009369 12 0.007247 20 0.004675 9 0.073348 0 0.061984 22 0.059926 17 0.05815 6 0.057102 4 0.056672 7 0.056627 8 0.056465 1 0.056345 5 0.055731 2 0.055222 3 0.054109 18 0.047335 10 0.044972 11 0.034818 23 0.031885 21 0.030834 16 0.027483 19 0.026609 24 0.017686 15 0.015406 14 0.009369 12 0.007247 20 0.004675 9 0.06335427893111341 22 0.06262486567240516 0 0.057642141922122234 17 0.056312912346813564 18 0.05306062045156218 10 0.047399141347566516 4 0.045977436959033044 6 0.045607266949031465 5 0.04523955819442046 7 0.044529205588610864 8 0.044469016666420225 11 0.044452941468994915 1 0.04429040831592998 2 0.043481857978195655 21 0.04294299688585428 3 0.04282013545041663 19 0.03901020266192984 23 0.03371977757877948 16 0.032287017523694755 24 0.024559040461877436 12 0.021653287966716093 14 0.01707166424612928 20 0.01671288808686135 15 0.016550702741589807 13 0.010974453846745115 __DUMMY__ 0.0032561797571863554 false 1.0 347 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 21 0.07119760969925712 12 0.06401976368798015 23 0.06286296994548209 19 0.05590307137317093 22 0.05576875010763754 24 0.055753723876158456 20 0.048034485294070464 18 0.04676635028541719 11 0.04635978346582437 13 0.044132318992272206 17 0.03565362380846119 4 0.034552105896727504 5 0.033771284133470934 6 0.032731620587966866 16 0.03226215537101549 14 0.031643185715650335 9 0.031037404106561035 7 0.03018757303576809 8 0.029807648063121216 1 0.029345985326627376 3 0.028751486401891516 2 0.028719573735137918 0 0.02696165519524719 10 0.02540027576995219 15 0.013786205463192359 __DUMMY__ 0.004589390661938293 false 1.0 348 20 0.101007 19 0.099968 21 0.090058 24 0.084523 18 0.077736 12 0.070679 22 0.066952 23 0.058868 11 0.055443 16 0.052105 14 0.046774 17 0.039187 13 0.038286 10 0.036718 15 0.031786 9 0.016339 0 0.009265 4 0.008243 5 0.007757 3 0.005423 6 0.001473 2 6.17E-4 8 5.4E-4 7 2.53E-4 20 0.101007 19 0.099968 21 0.090058 24 0.084523 18 0.077736 12 0.070679 22 0.066952 23 0.058868 11 0.055443 16 0.052105 14 0.046774 17 0.039187 13 0.038286 10 0.036718 15 0.031786 9 0.016339 0 0.009265 4 0.008243 5 0.007757 3 0.005423 6 0.001473 2 6.17E-4 8 5.4E-4 7 2.53E-4 19 0.08370090351496881 21 0.0812900743750398 20 0.07566788372762372 18 0.07298088790687557 22 0.06700509266620777 24 0.06472190338155057 12 0.06277505207231451 11 0.05742071193937713 23 0.05043123011678765 10 0.044346147022501635 16 0.04433783962396243 14 0.04398129438419081 17 0.04229099631305618 13 0.03853348506404458 9 0.028345820518135636 15 0.027261238347006053 0 0.024048955882083937 4 0.015306988057360329 5 0.014805155717925025 3 0.011563679011297678 6 0.010337543231206765 8 0.008797886147559737 7 0.008682368862423554 2 0.008517809484827811 1 0.008421050342984673 __DUMMY__ 0.004428002288687575 false 1.0 106 9 0.05733 4 0.055742 5 0.054977 22 0.054594 6 0.052823 3 0.052383 8 0.05196 1 0.051877 7 0.051873 21 0.051367 2 0.051 23 0.048157 11 0.039194 10 0.038596 18 0.038404 24 0.03807 12 0.033934 0 0.033319 14 0.03241 13 0.030203 17 0.025352 19 0.021667 20 0.01851 15 0.016259 9 0.05733 4 0.055742 5 0.054977 22 0.054594 6 0.052823 3 0.052383 8 0.05196 1 0.051877 7 0.051873 21 0.051367 2 0.051 23 0.048157 11 0.039194 10 0.038596 18 0.038404 24 0.03807 12 0.033934 0 0.033319 14 0.03241 13 0.030203 17 0.025352 19 0.021667 20 0.01851 15 0.016259 22 0.0595111213588043 21 0.05905404252042314 9 0.051346218341256876 18 0.048572879053411136 11 0.04731388661855319 23 0.045490261997226285 4 0.04375027063697498 5 0.04311595911518829 12 0.04256037767462262 10 0.04244068618767971 6 0.041180391219730446 3 0.03966494099261274 8 0.03957022431276444 7 0.039563555894608846 1 0.03946038371522931 24 0.039212227985454616 2 0.0387960494427145 19 0.03819300715670355 0 0.03762084085762816 17 0.03487683910443913 13 0.03303078014564495 14 0.03282630878509453 20 0.028247428087031234 15 0.01588330582797554 16 0.01523738409816833 __DUMMY__ 0.0034806288700592243 false 1.0 349 0 0.085822 17 0.078945 9 0.065207 22 0.062949 11 0.058517 10 0.055859 18 0.05422 16 0.052935 6 0.045694 8 0.042993 7 0.042926 1 0.042778 2 0.042534 4 0.041975 5 0.041833 3 0.037781 19 0.037426 21 0.032738 12 0.024455 23 0.021291 15 0.011921 13 0.01172 14 0.004258 24 0.003225 0 0.085822 17 0.078945 9 0.065207 22 0.062949 11 0.058517 10 0.055859 18 0.05422 16 0.052935 6 0.045694 8 0.042993 7 0.042926 1 0.042778 2 0.042534 4 0.041975 5 0.041833 3 0.037781 19 0.037426 21 0.032738 12 0.024455 23 0.021291 15 0.011921 13 0.01172 14 0.004258 24 0.003225 0 0.06970494246348645 17 0.06710766814804592 22 0.06474660843262363 9 0.058912997356283754 11 0.057229462774576065 18 0.05697724295455061 10 0.052857630386388556 16 0.04563138301135107 19 0.04533977950351291 21 0.045017952898160046 6 0.039103266075972344 4 0.03784688788482462 5 0.03748148336248 8 0.03683809974280394 7 0.0367877214165484 1 0.03660525726281878 2 0.03621623334079764 3 0.03370684775410056 12 0.03138905239415131 23 0.028318046065699338 24 0.01762204628119335 13 0.01739467534347983 20 0.014859366004606855 14 0.014634169732109783 15 0.014326604854174795 __DUMMY__ 0.0033445745552592226 false 1.0 107 10 0.101878 18 0.089238 11 0.067493 14 0.066849 0 0.065701 22 0.064737 9 0.063444 17 0.050509 19 0.05026 13 0.04942 21 0.049247 15 0.0476 12 0.030894 16 0.025352 20 0.025193 4 0.019645 5 0.019294 6 0.01859 7 0.017107 8 0.016889 1 0.016871 2 0.016181 3 0.016137 23 0.011471 10 0.101878 18 0.089238 11 0.067493 14 0.066849 0 0.065701 22 0.064737 9 0.063444 17 0.050509 19 0.05026 13 0.04942 21 0.049247 15 0.0476 12 0.030894 16 0.025352 20 0.025193 4 0.019645 5 0.019294 6 0.01859 7 0.017107 8 0.016889 1 0.016871 2 0.016181 3 0.016137 23 0.011471 10 0.08199069883406188 18 0.08144808305077335 22 0.06561282492330328 11 0.06303890208360734 19 0.05721334847067493 21 0.05710121950110805 0 0.055413369590410856 14 0.05505660230830872 9 0.0549417991536012 17 0.049519134696914095 13 0.04300344570186444 12 0.03874385594229546 15 0.03755797799758255 20 0.035148588077477415 16 0.03019207882415927 23 0.023603080094143428 4 0.021331951012748807 5 0.020905612538354768 6 0.019459506007394694 7 0.0177489033950939 8 0.01764455929830275 24 0.01760330073954548 1 0.01752324098772078 3 0.01744158468424127 2 0.016990870363422648 __DUMMY__ 0.003765461722888777 false 1.0 108 9 0.064605 3 0.055523 22 0.054979 4 0.054046 5 0.053274 8 0.053174 7 0.053021 1 0.053021 2 0.052084 6 0.050806 18 0.048749 10 0.047729 0 0.04078 23 0.038729 17 0.038713 24 0.036565 19 0.035276 15 0.034294 21 0.03201 11 0.03067 14 0.02726 20 0.026479 16 0.018058 13 1.56E-4 9 0.064605 3 0.055523 22 0.054979 4 0.054046 5 0.053274 8 0.053174 7 0.053021 1 0.053021 2 0.052084 6 0.050806 18 0.048749 10 0.047729 0 0.04078 23 0.038729 17 0.038713 24 0.036565 19 0.035276 15 0.034294 21 0.03201 11 0.03067 14 0.02726 20 0.026479 16 0.018058 13 1.56E-4 22 0.06124070687999952 18 0.05951391590908774 9 0.055190268711227494 10 0.05209351363116358 19 0.04990356707365194 21 0.0494478458767907 11 0.04404440420593297 17 0.04330788798229383 0 0.04186310066705126 4 0.039294214088596645 5 0.038650240832611 23 0.038390284706325946 3 0.03799257351649049 24 0.03796683263864788 8 0.03650191934476868 7 0.03643075532009817 1 0.036300793568574366 20 0.03620877403973541 6 0.03620132803359768 2 0.035649199923162546 14 0.03355119577872134 15 0.029439271123710534 16 0.02677191084466887 12 0.02333591483937098 13 0.016773580406990157 __DUMMY__ 0.003936000056730279 false 1.0 109 9 0.073947 22 0.063225 0 0.059086 4 0.056092 8 0.055599 5 0.055581 6 0.055557 7 0.055534 1 0.055086 3 0.054581 2 0.054574 17 0.05317 18 0.048794 10 0.047156 11 0.036847 21 0.034985 23 0.031426 19 0.02785 16 0.021298 24 0.020574 15 0.013879 14 0.011579 12 0.006999 20 0.006582 9 0.073947 22 0.063225 0 0.059086 4 0.056092 8 0.055599 5 0.055581 6 0.055557 7 0.055534 1 0.055086 3 0.054581 2 0.054574 17 0.05317 18 0.048794 10 0.047156 11 0.036847 21 0.034985 23 0.031426 19 0.02785 16 0.021298 24 0.020574 15 0.013879 14 0.011579 12 0.006999 20 0.006582 22 0.06475752825974006 9 0.06336589955475268 0 0.05587086481429392 18 0.0543731571573589 17 0.053621461958838136 10 0.04884232777863782 11 0.046098036533083635 21 0.04601503457127072 4 0.045047924612154594 5 0.04450795377005845 6 0.04409387385489044 8 0.04324810063854418 7 0.04320638429894675 1 0.04288282208482789 2 0.04236110341644549 3 0.042326575005428226 19 0.04037148864175991 23 0.033502554724232976 16 0.029111266076938088 24 0.026371301966607585 12 0.02226927326976337 14 0.018865109081067262 20 0.01828613313302072 15 0.015770051458270255 13 0.011550173382547208 __DUMMY__ 0.003283599956520903 false 1.0 590 22 0.085691 9 0.070676 21 0.065594 11 0.054361 18 0.051316 0 0.048522 17 0.046844 4 0.046179 5 0.04506 3 0.043856 19 0.042892 8 0.041814 24 0.041683 10 0.041593 6 0.041548 7 0.041532 1 0.041418 2 0.040412 23 0.031322 14 0.023346 12 0.016087 20 0.014647 16 0.013691 15 0.009918 22 0.085691 9 0.070676 21 0.065594 11 0.054361 18 0.051316 0 0.048522 17 0.046844 4 0.046179 5 0.04506 3 0.043856 19 0.042892 8 0.041814 24 0.041683 10 0.041593 6 0.041548 7 0.041532 1 0.041418 2 0.040412 23 0.031322 14 0.023346 12 0.016087 20 0.014647 16 0.013691 15 0.009918 22 0.07591497942177129 21 0.06725598042679469 18 0.05843498554495369 11 0.05707453419832793 9 0.056879852862321105 19 0.0526411118455713 17 0.047538384000711364 10 0.04675389449018693 0 0.046243757073622285 24 0.040694814609533156 4 0.035583236588452555 23 0.035418593685073205 12 0.0349015663009051 5 0.0347747687886173 6 0.03212870460316801 3 0.031967123281504535 8 0.031049644217480916 7 0.030916280481731815 1 0.030738332290609932 14 0.03040417850638673 2 0.030047523913447716 20 0.029147378615101284 16 0.025337053095651846 13 0.019197047900260934 15 0.01500270681850129 __DUMMY__ 0.003953566439312817 false 1.0 591 20 0.100357 19 0.099437 21 0.089876 24 0.082357 18 0.080226 12 0.069306 22 0.066408 23 0.060129 11 0.053916 16 0.051692 14 0.045993 17 0.039556 10 0.038686 13 0.038168 15 0.030681 9 0.017229 0 0.010768 4 0.008225 5 0.007256 3 0.004662 6 0.001915 7 0.001384 8 9.73E-4 1 8.0E-4 20 0.100357 19 0.099437 21 0.089876 24 0.082357 18 0.080226 12 0.069306 22 0.066408 23 0.060129 11 0.053916 16 0.051692 14 0.045993 17 0.039556 10 0.038686 13 0.038168 15 0.030681 9 0.017229 0 0.010768 4 0.008225 5 0.007256 3 0.004662 6 0.001915 7 0.001384 8 9.73E-4 1 8.0E-4 19 0.0834520598461661 21 0.08120478332471572 20 0.07536327283360908 18 0.07414778194702396 22 0.06675015677952477 24 0.06370684615626487 12 0.062131620137726676 11 0.05670511065451506 23 0.051022175251176055 10 0.045268415083149036 16 0.044144294548226985 14 0.043615292679228604 17 0.042463921574427584 13 0.03847818647097732 9 0.028762903126863384 15 0.026743399827181175 0 0.024753309995474714 4 0.01529855267875685 5 0.014570371013461439 3 0.011207049949228236 6 0.010544678639136721 7 0.009212391818009027 8 0.009000803866187951 1 0.008795956058694997 2 0.008228663451586227 __DUMMY__ 0.004428002288687575 false 1.0 592 21 0.102573 19 0.094692 22 0.083743 20 0.078694 18 0.077243 24 0.074648 11 0.071854 12 0.067202 23 0.05155 10 0.043143 16 0.042964 17 0.042309 14 0.041863 13 0.032011 9 0.029353 0 0.021684 15 0.015522 4 0.009687 5 0.008484 3 0.004873 6 0.0025 8 0.001232 7 0.00123 1 9.43E-4 21 0.102573 19 0.094692 22 0.083743 20 0.078694 18 0.077243 24 0.074648 11 0.071854 12 0.067202 23 0.05155 10 0.043143 16 0.042964 17 0.042309 14 0.041863 13 0.032011 9 0.029353 0 0.021684 15 0.015522 4 0.009687 5 0.008484 3 0.004873 6 0.0025 8 0.001232 7 0.00123 1 9.43E-4 21 0.08734848890912597 19 0.08070988472312202 22 0.07550647246616579 18 0.07232070205137166 11 0.06577158315073667 20 0.06395118736739444 12 0.060919892516718914 24 0.05958893385161504 10 0.04732485488657909 23 0.04665990631743655 17 0.044029708129824784 14 0.040794985670341365 16 0.039745736415503156 9 0.03510073938322827 13 0.03500376688651912 0 0.030661315283371467 15 0.01841208602377472 4 0.016382700230913864 5 0.015540987777757143 3 0.011660794288817158 6 0.01124621543688715 7 0.009540962895256175 8 0.009520032591865393 1 0.009262316995380129 2 0.008621167458820656 __DUMMY__ 0.004374578291473422 false 1.0 350 0 0.081993 17 0.07556 9 0.069512 22 0.066632 18 0.056318 11 0.055401 10 0.055358 6 0.047064 16 0.045218 1 0.045193 8 0.04517 7 0.04504 4 0.04459 5 0.044537 2 0.044517 3 0.041072 19 0.036947 21 0.034826 23 0.021874 12 0.018307 15 0.009399 24 0.006061 13 0.005622 14 0.003789 0 0.081993 17 0.07556 9 0.069512 22 0.066632 18 0.056318 11 0.055401 10 0.055358 6 0.047064 16 0.045218 1 0.045193 8 0.04517 7 0.04504 4 0.04459 5 0.044537 2 0.044517 3 0.041072 19 0.036947 21 0.034826 23 0.021874 12 0.018307 15 0.009399 24 0.006061 13 0.005622 14 0.003789 0 0.06777359466589693 22 0.06710854283074567 17 0.06536656420573228 9 0.06100220335218804 18 0.058574032287018477 11 0.056327138670953965 10 0.05315502267426057 21 0.04674279608432731 19 0.04569776237540295 16 0.04174076494676044 6 0.03915876815486231 4 0.038602316681158384 5 0.03827132645470322 8 0.037278236165905115 7 0.03719521196405246 1 0.03714418587369219 2 0.03655783621483298 3 0.034764519383317816 12 0.028656967043395713 23 0.02837213303653627 24 0.019148415783616275 20 0.01520227978307776 14 0.01496813091744805 13 0.014637801620740782 15 0.01318105630596653 __DUMMY__ 0.003372392523407485 false 1.0 351 22 0.066048 9 0.06372 4 0.0542 5 0.052798 18 0.052312 6 0.052247 8 0.051035 17 0.051002 7 0.050311 1 0.049785 3 0.049778 2 0.04952 0 0.047661 23 0.044121 21 0.043339 11 0.038095 19 0.036996 10 0.036144 24 0.035427 16 0.019607 20 0.018149 12 0.016023 15 0.012125 14 0.009557 22 0.066048 9 0.06372 4 0.0542 5 0.052798 18 0.052312 6 0.052247 8 0.051035 17 0.051002 7 0.050311 1 0.049785 3 0.049778 2 0.04952 0 0.047661 23 0.044121 21 0.043339 11 0.038095 19 0.036996 10 0.036144 24 0.035427 16 0.019607 20 0.018149 12 0.016023 15 0.012125 14 0.009557 22 0.06422014741902775 18 0.058703404047138134 9 0.05336067141435765 21 0.05275966593580739 19 0.04979375425364023 17 0.049337895016133705 11 0.04484864476349177 0 0.043872834036849065 10 0.042984938030322335 23 0.04271479162570205 4 0.04056376707275582 5 0.03962343756269604 24 0.03890620629365517 6 0.03832162209616037 8 0.0369916766670155 7 0.0366384453589277 3 0.03658956928538162 1 0.03626461737825501 2 0.035927831224341227 20 0.0328755437140833 12 0.03045502184943933 16 0.02915505098700371 14 0.024171953627992883 15 0.020685826844197737 13 0.016167917729910306 __DUMMY__ 0.004064765765714335 false 1.0 593 22 0.079465 0 0.076361 9 0.072211 17 0.070566 11 0.062602 18 0.055181 10 0.05135 21 0.050381 4 0.043298 6 0.043288 5 0.042082 8 0.041419 7 0.041065 1 0.041006 19 0.040873 2 0.040034 3 0.038511 16 0.036163 23 0.022689 12 0.019004 24 0.017201 14 0.007808 15 0.005226 13 0.002218 22 0.079465 0 0.076361 9 0.072211 17 0.070566 11 0.062602 18 0.055181 10 0.05135 21 0.050381 4 0.043298 6 0.043288 5 0.042082 8 0.041419 7 0.041065 1 0.041006 19 0.040873 2 0.040034 3 0.038511 16 0.036163 23 0.022689 12 0.019004 24 0.017201 14 0.007808 15 0.005226 13 0.002218 22 0.07278295174987767 0 0.06065163459309478 11 0.06045409197015339 17 0.059695385150752296 18 0.05954970742199278 9 0.05860421526226659 21 0.05851329244414147 10 0.05113030868841601 19 0.050594212612667715 16 0.03635492758880246 4 0.03524071690417116 12 0.03462974541204099 5 0.034386982248739165 6 0.034147194260004954 8 0.032110976817527316 7 0.0319424427435705 1 0.031796079745370145 2 0.03110736182984224 23 0.030893817694728373 3 0.03055217390318267 24 0.028077785101362072 14 0.021450855960374847 20 0.020613010585698345 13 0.018581913951005703 15 0.012344854159182402 __DUMMY__ 0.003793361201034095 false 1.0 110 22 0.065417 9 0.05498 3 0.052951 24 0.052908 21 0.052817 4 0.052092 5 0.051786 23 0.050367 8 0.048906 7 0.048875 1 0.048812 2 0.048446 6 0.047169 11 0.042504 18 0.041574 19 0.040219 10 0.032916 17 0.032079 20 0.030488 0 0.029982 14 0.023268 15 0.022491 16 0.015394 12 0.01356 22 0.065417 9 0.05498 3 0.052951 24 0.052908 21 0.052817 4 0.052092 5 0.051786 23 0.050367 8 0.048906 7 0.048875 1 0.048812 2 0.048446 6 0.047169 11 0.042504 18 0.041574 19 0.040219 10 0.032916 17 0.032079 20 0.030488 0 0.029982 14 0.023268 15 0.022491 16 0.015394 12 0.01356 22 0.06707068734243306 21 0.06445269924549295 19 0.055286301928816735 18 0.05514892995748385 11 0.05196755337496486 24 0.050056227454558226 9 0.04692842256795705 23 0.04655386921092535 10 0.04186826189557255 20 0.041517601662082175 17 0.03889444809133575 4 0.036424069266045724 5 0.03599911478430195 12 0.03591063212084611 3 0.0343788169042618 0 0.03408490752938847 6 0.03227794273713198 7 0.031990031602115256 8 0.031979107037661936 1 0.031811343226656616 14 0.03179930911640807 2 0.03144132380861782 16 0.026671907562946014 15 0.021238115721807747 13 0.019723600542661722 __DUMMY__ 0.0045247753075261365 false 1.0 594 22 0.098473 21 0.095526 11 0.085918 19 0.06165 18 0.058296 9 0.055477 24 0.05002 10 0.049392 12 0.046837 0 0.044763 17 0.043072 23 0.034473 14 0.032868 4 0.027572 5 0.027197 20 0.026455 3 0.022476 16 0.021993 6 0.021823 7 0.020089 8 0.019567 1 0.019291 2 0.018596 13 0.018176 22 0.098473 21 0.095526 11 0.085918 19 0.06165 18 0.058296 9 0.055477 24 0.05002 10 0.049392 12 0.046837 0 0.044763 17 0.043072 23 0.034473 14 0.032868 4 0.027572 5 0.027197 20 0.026455 3 0.022476 16 0.021993 6 0.021823 7 0.020089 8 0.019567 1 0.019291 2 0.018596 13 0.018176 21 0.08308391017241132 22 0.08300145851885876 11 0.07275933643944636 19 0.0634801193442301 18 0.06223024299675282 10 0.049989112164197394 12 0.049928145756050965 9 0.04896565826163326 24 0.04646083511391845 17 0.04545307357660938 0 0.04347207186114624 23 0.0377635951524797 20 0.03642415763120787 14 0.034506983670614326 16 0.02973958727297261 13 0.0268251217734531 4 0.026052033308061724 5 0.02559061565527939 6 0.021788515950066544 3 0.021178245122193153 7 0.01984417881521305 8 0.019580894987749037 1 0.019327711983217734 2 0.018782347061955834 15 0.009500204797066715 __DUMMY__ 0.0042718426132142 false 1.0 352 15 0.082148 20 0.077091 23 0.076602 24 0.071273 14 0.0541 19 0.043811 18 0.042127 13 0.041917 16 0.041678 4 0.041343 5 0.040867 6 0.0407 7 0.040515 8 0.040329 3 0.040129 2 0.039824 1 0.039722 12 0.038955 21 0.028121 17 0.026981 22 0.018112 10 0.014371 9 0.010451 11 0.008832 15 0.082148 20 0.077091 23 0.076602 24 0.071273 14 0.0541 19 0.043811 18 0.042127 13 0.041917 16 0.041678 4 0.041343 5 0.040867 6 0.0407 7 0.040515 8 0.040329 3 0.040129 2 0.039824 1 0.039722 12 0.038955 21 0.028121 17 0.026981 22 0.018112 10 0.014371 9 0.010451 11 0.008832 20 0.06950803248354749 15 0.06548976468113221 18 0.059414902976257816 23 0.058696212675051186 24 0.057747444110567175 19 0.05743615562192707 14 0.05473193900160333 21 0.04462505449214651 12 0.04295038183356986 16 0.04223873703607921 13 0.041713437451933254 22 0.038061014529008605 17 0.03681149758647317 10 0.036447927169965574 4 0.029669631566763756 5 0.02921197893831409 11 0.028786168691426958 6 0.02784053776318093 3 0.027397144575306516 7 0.027074949091937313 8 0.02701065241166434 1 0.026585346319094497 2 0.026491312789904256 9 0.023580387598987635 0 0.016846368103419978 __DUMMY__ 0.003633020500737524 false 1.0 353 18 0.09858 20 0.092894 19 0.091403 15 0.078864 14 0.070006 10 0.066027 16 0.058933 21 0.056708 22 0.054561 17 0.053392 24 0.0513 23 0.042384 12 0.039968 11 0.03766 13 0.037505 9 0.027785 0 0.024826 4 0.005324 5 0.00398 3 0.002504 6 0.001832 7 0.001828 8 0.001188 1 5.48E-4 18 0.09858 20 0.092894 19 0.091403 15 0.078864 14 0.070006 10 0.066027 16 0.058933 21 0.056708 22 0.054561 17 0.053392 24 0.0513 23 0.042384 12 0.039968 11 0.03766 13 0.037505 9 0.027785 0 0.024826 4 0.005324 5 0.00398 3 0.002504 6 0.001832 7 0.001828 8 0.001188 1 5.48E-4 18 0.08357088837505677 19 0.0792622314954627 20 0.07208877222217117 21 0.06435516025332395 22 0.06011143187555319 10 0.059389171231081596 14 0.05663776346519643 15 0.05169658540549837 17 0.04899568071924477 11 0.04831933856858499 24 0.04801982960399733 12 0.04797549858037801 16 0.04758858632642643 23 0.04206769545318492 13 0.039433493561653946 9 0.03368290538025372 0 0.03145731633232796 4 0.013596081024750187 5 0.012702095409626983 6 0.010284409983250717 3 0.00988741577094772 7 0.00919204455391582 8 0.008883665720271043 1 0.008461318832403092 2 0.008022336011588601 __DUMMY__ 0.004318283843849569 false 1.0 111 9 0.06057 3 0.059598 4 0.059582 5 0.059252 8 0.058731 7 0.058641 2 0.058272 1 0.058256 6 0.058101 22 0.053545 23 0.046365 17 0.043401 0 0.042101 24 0.04134 21 0.036502 18 0.035212 19 0.031857 10 0.027123 11 0.026018 16 0.025226 20 0.02244 15 0.015361 12 0.013502 14 0.009005 9 0.06057 3 0.059598 4 0.059582 5 0.059252 8 0.058731 7 0.058641 2 0.058272 1 0.058256 6 0.058101 22 0.053545 23 0.046365 17 0.043401 0 0.042101 24 0.04134 21 0.036502 18 0.035212 19 0.031857 10 0.027123 11 0.026018 16 0.025226 20 0.02244 15 0.015361 12 0.013502 14 0.009005 22 0.06017766150359127 9 0.056006959117917414 21 0.04806463427940246 17 0.04782788739909353 18 0.04769102947038123 4 0.046524942648177296 5 0.046061157431420176 0 0.04592495452449327 6 0.04491165721451128 3 0.04452878619583435 8 0.04436536332252752 7 0.044311887557168354 1 0.044015167654536995 2 0.04375838466035197 19 0.043006474672896325 23 0.04183337374196256 11 0.04044668888642085 24 0.038212329913519784 10 0.03794488476614478 16 0.030348302122687642 20 0.02745435354784037 12 0.02644376323204871 14 0.01813186417277758 15 0.016360078916604247 13 0.012082713347731689 __DUMMY__ 0.0035646996999586676 false 1.0 595 22 0.09904 21 0.096216 11 0.084177 19 0.062705 18 0.059566 9 0.05588 24 0.049616 10 0.048564 12 0.045458 0 0.042908 17 0.042413 23 0.036961 14 0.032375 4 0.027986 20 0.02784 5 0.027394 3 0.022652 6 0.021998 16 0.020976 7 0.020587 8 0.019871 1 0.019577 2 0.018559 13 0.016682 22 0.09904 21 0.096216 11 0.084177 19 0.062705 18 0.059566 9 0.05588 24 0.049616 10 0.048564 12 0.045458 0 0.042908 17 0.042413 23 0.036961 14 0.032375 4 0.027986 20 0.02784 5 0.027394 3 0.022652 6 0.021998 16 0.020976 7 0.020587 8 0.019871 1 0.019577 2 0.018559 13 0.016682 21 0.08349005364804965 22 0.08320832073090294 11 0.07187128575506525 19 0.06403655687263135 18 0.06288912777973697 10 0.04962798609542991 12 0.04938500782272945 9 0.04906390396136583 24 0.04638815700924984 17 0.0449765186707781 0 0.04240486678505534 23 0.03899826766177511 20 0.03727445753974344 14 0.034494689137111186 16 0.02915200381361314 13 0.026301578004318333 4 0.026188658248351957 5 0.02562574075085846 6 0.021791971361295633 3 0.02120786942249596 7 0.020003331508620513 8 0.019648552052127708 1 0.01938675904755068 2 0.01869180840110974 15 0.00962626521091092 __DUMMY__ 0.004266262709122557 false 1.0 596 21 0.107004 22 0.092167 11 0.087288 19 0.082834 12 0.072091 18 0.071783 10 0.054173 24 0.053169 20 0.050767 17 0.046219 0 0.042219 9 0.042016 13 0.039992 14 0.03999 23 0.037476 16 0.035936 4 0.011387 5 0.011075 6 0.006141 3 0.005021 7 0.003598 8 0.002882 1 0.002783 2 0.001989 21 0.107004 22 0.092167 11 0.087288 19 0.082834 12 0.072091 18 0.071783 10 0.054173 24 0.053169 20 0.050767 17 0.046219 0 0.042219 9 0.042016 13 0.039992 14 0.03999 23 0.037476 16 0.035936 4 0.011387 5 0.011075 6 0.006141 3 0.005021 7 0.003598 8 0.002882 1 0.002783 2 0.001989 21 0.0897936781781947 22 0.07981023792353223 19 0.07426531214441656 11 0.07389031141799976 18 0.06898245582773009 12 0.06396074433198906 10 0.052295301203445534 20 0.049170029940293236 24 0.04862065892589631 17 0.046202394940470064 9 0.04148427970789888 0 0.04138883967656222 23 0.039709215112510375 13 0.03916768433771999 14 0.03901838515952752 16 0.03619248666584105 4 0.01754272819302296 5 0.017121636316564586 6 0.013456894115568224 3 0.011921377529160632 7 0.011020608610117364 8 0.010661235975596928 1 0.010500395414824183 2 0.009926415792848482 15 0.009487908594704162 __DUMMY__ 0.004408783963564953 false 1.0 112 22 0.089692 11 0.072243 9 0.069603 21 0.068839 0 0.062024 18 0.058238 17 0.056506 10 0.055568 19 0.049003 4 0.038039 5 0.037512 6 0.035024 3 0.034246 8 0.033919 7 0.033612 1 0.033179 2 0.032675 24 0.028826 12 0.027263 16 0.025144 23 0.024701 14 0.017806 20 0.010639 13 0.005699 22 0.089692 11 0.072243 9 0.069603 21 0.068839 0 0.062024 18 0.058238 17 0.056506 10 0.055568 19 0.049003 4 0.038039 5 0.037512 6 0.035024 3 0.034246 8 0.033919 7 0.033612 1 0.033179 2 0.032675 24 0.028826 12 0.027263 16 0.025144 23 0.024701 14 0.017806 20 0.010639 13 0.005699 22 0.07900132916619158 21 0.06771403718272422 11 0.06592225813054559 18 0.06091303936442648 9 0.058114590511185595 19 0.05480296640021017 0 0.05453466497308039 17 0.0536426628308428 10 0.05295423093496707 12 0.037467341957100546 24 0.033749063663780575 4 0.032989906546549236 5 0.03244516582832657 23 0.03166476130659733 16 0.031314850268045466 6 0.030373832391689788 3 0.028811333779224443 8 0.02875396001938137 7 0.028616601473404134 1 0.028274011901991546 2 0.02778958907216262 20 0.0248721159358055 14 0.024754476553778455 13 0.01811070905927207 15 0.008611246153489955 __DUMMY__ 0.003801254595226723 false 1.0 597 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.08799790075266553 22 0.08039272999817025 11 0.07399951301447011 19 0.07155064882202729 18 0.06731639204546538 12 0.061009589168528625 10 0.05206474083422527 24 0.04728272896430532 17 0.04650249124660839 20 0.045733788582077495 9 0.04333760016207989 0 0.042632676710730136 23 0.03866650106096697 14 0.03798766933452889 13 0.036859507868176274 16 0.035168323544358844 4 0.019373494567755858 5 0.01893436249519161 6 0.015363959981488278 3 0.013912313507619003 7 0.013020808230624058 8 0.012689597946212987 1 0.012514241452852423 2 0.01194395762983007 15 0.009425750596244795 __DUMMY__ 0.004318711482796069 false 1.0 113 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 22 0.06188629033019874 9 0.05781208249455808 17 0.05022919091779196 18 0.049823326095973765 0 0.04925759156795001 21 0.04782071463406489 4 0.0454895678543925 5 0.04507205804564095 6 0.0440800839156214 8 0.043388507720570485 3 0.043320718611893475 7 0.043317622597748406 19 0.04323339546791444 1 0.04302991230214254 11 0.043006365464656165 2 0.04278751686313407 10 0.04115251671991443 23 0.03902948955679893 24 0.03505256505838054 16 0.03102214486814458 12 0.02572565947562531 20 0.02520655299520156 14 0.018067173094973604 15 0.01599425277730435 13 0.011748157461468347 __DUMMY__ 0.003446543107936372 false 1.0 355 17 0.066727 16 0.063651 19 0.055369 22 0.053264 0 0.051406 9 0.046454 18 0.045481 23 0.043183 8 0.042719 7 0.042668 6 0.042408 1 0.042281 24 0.04211 2 0.042001 4 0.041898 3 0.041364 5 0.040992 20 0.039485 21 0.038104 11 0.034791 15 0.030503 10 0.026068 12 0.020984 14 0.006088 17 0.066727 16 0.063651 19 0.055369 22 0.053264 0 0.051406 9 0.046454 18 0.045481 23 0.043183 8 0.042719 7 0.042668 6 0.042408 1 0.042281 24 0.04211 2 0.042001 4 0.041898 3 0.041364 5 0.040992 20 0.039485 21 0.038104 11 0.034791 15 0.030503 10 0.026068 12 0.020984 14 0.006088 17 0.059929045531839524 22 0.0593633045448601 19 0.057024210884076824 18 0.05398479855325019 16 0.05193368056228245 0 0.04964469317450604 21 0.04951043804972607 9 0.04671906471535597 11 0.045111070467353034 23 0.04053276613184502 24 0.039758786110756374 20 0.038839804493490955 10 0.037589381250580756 4 0.035534140317851994 6 0.03492811420691338 5 0.03482327496188896 8 0.03413438118517356 7 0.034070406569656556 1 0.03377263947875829 2 0.03343696554013988 3 0.03318521633980656 12 0.03219252143321892 15 0.02686247220555661 14 0.019056104505685442 13 0.01428848507898291 __DUMMY__ 0.0037742337064436077 false 1.0 598 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.08799790075266552 22 0.08039272999817025 11 0.07399951301447011 19 0.07155064882202729 18 0.06731639204546537 12 0.061009589168528625 10 0.05206474083422527 24 0.04728272896430531 17 0.0465024912466084 20 0.04573378858207749 9 0.043337600162079895 0 0.042632676710730136 23 0.03866650106096698 14 0.03798766933452889 13 0.03685950786817627 16 0.03516832354435885 4 0.019373494567755854 5 0.018934362495191606 6 0.01536395998148828 3 0.013912313507619003 7 0.013020808230624058 8 0.012689597946212989 1 0.012514241452852425 2 0.011943957629830068 15 0.009425750596244793 __DUMMY__ 0.00431871148279607 false 1.0 114 22 0.085009 9 0.074193 0 0.066975 11 0.065622 17 0.059544 21 0.059165 18 0.058537 10 0.055792 19 0.044614 4 0.042726 5 0.041784 6 0.040435 7 0.039345 8 0.039295 3 0.039018 1 0.039014 2 0.038018 16 0.025397 24 0.024172 23 0.023245 12 0.01871 14 0.012397 20 0.006906 15 8.8E-5 22 0.085009 9 0.074193 0 0.066975 11 0.065622 17 0.059544 21 0.059165 18 0.058537 10 0.055792 19 0.044614 4 0.042726 5 0.041784 6 0.040435 7 0.039345 8 0.039295 3 0.039018 1 0.039014 2 0.038018 16 0.025397 24 0.024172 23 0.023245 12 0.01871 14 0.012397 20 0.006906 15 8.8E-5 22 0.07674551715793455 11 0.06254210485776109 21 0.06203773626546045 9 0.061135487779038516 18 0.06082629536395934 0 0.05787186461628347 17 0.05578113661746006 10 0.05329168722176303 19 0.05194332892571437 4 0.03576507569507071 5 0.03502409304703398 6 0.033610837465492246 12 0.03219183185013082 7 0.032035460463741665 8 0.03201428511129414 1 0.03174498202579748 3 0.03169162362226314 16 0.03159323559950325 2 0.031024523814578417 24 0.03057261913847245 23 0.030311486500788083 20 0.021924680652885078 14 0.02148688201521828 13 0.014462115700579058 15 0.008679791779227492 __DUMMY__ 0.0036913167125489296 false 1.0 356 20 0.115239 19 0.103051 24 0.084213 21 0.080849 18 0.080364 12 0.077595 23 0.066647 16 0.059625 13 0.051891 14 0.049516 22 0.046044 15 0.040611 11 0.038674 17 0.037798 10 0.036602 9 0.007484 4 0.006199 5 0.005457 0 0.005254 3 0.003538 6 0.001227 7 7.57E-4 1 7.41E-4 8 6.24E-4 20 0.115239 19 0.103051 24 0.084213 21 0.080849 18 0.080364 12 0.077595 23 0.066647 16 0.059625 13 0.051891 14 0.049516 22 0.046044 15 0.040611 11 0.038674 17 0.037798 10 0.036602 9 0.007484 4 0.006199 5 0.005457 0 0.005254 3 0.003538 6 0.001227 7 7.57E-4 1 7.41E-4 8 6.24E-4 19 0.08582378834059899 20 0.08387165081017169 21 0.0774308222699901 18 0.07472426025723938 12 0.06760033327583169 24 0.0650153248785685 22 0.05640494074323884 23 0.05442339441219022 11 0.0493315541176941 16 0.04811275230555452 13 0.0469243064618425 14 0.046717507009757915 10 0.044486490354157755 17 0.041106331056880774 15 0.03238147647444564 9 0.023071198240751215 0 0.021291610179018594 4 0.013505621816939636 5 0.012896944756797027 3 0.009769038071083178 6 0.009379886194372609 7 0.00801059914772958 8 0.00792979041870163 1 0.007868294602866454 2 0.007345373586937143 __DUMMY__ 0.004576710216640338 false 1.0 599 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.08749611857676264 22 0.08040316269064869 11 0.07407419944215711 19 0.07121301836366839 18 0.06694920415338501 12 0.06131879283424237 10 0.05176226328268395 24 0.04774764489709971 17 0.0465283555924615 20 0.0453445239800186 9 0.04314768737804839 0 0.042584891458397514 23 0.03830912334412448 14 0.03815893371913605 13 0.036777003235157354 16 0.035263594453837484 4 0.019610402703185318 5 0.019119672198792733 6 0.015434811328174704 3 0.01424865701747285 7 0.013012852346077044 8 0.012785306294369596 1 0.01268875348816466 2 0.012276545801505846 15 0.009425763860284568 __DUMMY__ 0.004318717560143468 false 1.0 115 9 0.063264 4 0.057241 22 0.056977 5 0.056781 3 0.056758 8 0.056444 7 0.056294 6 0.056008 1 0.055935 2 0.055774 0 0.047664 17 0.047314 23 0.041302 18 0.039566 21 0.037235 24 0.036269 10 0.033036 19 0.032963 11 0.031053 16 0.026183 20 0.019209 15 0.014341 12 0.013004 14 0.009383 9 0.063264 4 0.057241 22 0.056977 5 0.056781 3 0.056758 8 0.056444 7 0.056294 6 0.056008 1 0.055935 2 0.055774 0 0.047664 17 0.047314 23 0.041302 18 0.039566 21 0.037235 24 0.036269 10 0.033036 19 0.032963 11 0.031053 16 0.026183 20 0.019209 15 0.014341 12 0.013004 14 0.009383 22 0.06191514613049957 9 0.05772190867969416 17 0.050236188552475254 18 0.04985589590385149 0 0.049335261460142985 21 0.047943484205533675 4 0.04549795814148216 5 0.044972114314550476 6 0.04408335907498821 8 0.04343595300167302 7 0.04335018938078607 19 0.04327758601265512 3 0.04325704032521172 1 0.04306526866361621 11 0.043026843350075 2 0.042721048616331574 10 0.04115718537420665 23 0.03894395652927604 24 0.035088382662804965 16 0.031065399831170282 12 0.025730785909203455 20 0.02524236602170264 14 0.018018361531711165 15 0.01586360869214659 13 0.01174816292379806 __DUMMY__ 0.0034465447104136022 false 1.0 357 17 0.070327 19 0.068868 16 0.067205 22 0.062316 18 0.054774 21 0.05193 0 0.051321 20 0.047292 24 0.046853 23 0.044751 9 0.044272 11 0.041941 4 0.034006 6 0.033503 8 0.033172 7 0.033154 5 0.032862 1 0.032674 2 0.032373 3 0.032195 12 0.029548 10 0.028058 15 0.022604 14 0.003998 17 0.070327 19 0.068868 16 0.067205 22 0.062316 18 0.054774 21 0.05193 0 0.051321 20 0.047292 24 0.046853 23 0.044751 9 0.044272 11 0.041941 4 0.034006 6 0.033503 8 0.033172 7 0.033154 5 0.032862 1 0.032674 2 0.032373 3 0.032195 12 0.029548 10 0.028058 15 0.022604 14 0.003998 19 0.067367025316589 22 0.06495197124818446 21 0.06272177087144691 18 0.06067817276081122 17 0.05848505100387106 16 0.052106430575701954 11 0.052018853253903895 20 0.04719587933348959 0 0.046431640068689765 24 0.044912375655538676 12 0.04373918062432276 23 0.04273721828609827 9 0.0424351181415607 10 0.039783910680140915 4 0.028212698883348552 5 0.027409355347210864 6 0.026584961758060226 7 0.025145740104937902 8 0.02514476512028287 1 0.024795225700539977 3 0.024747790842737108 2 0.024463634372636614 14 0.021892316362038502 15 0.021012528756961083 13 0.0205383074249276 __DUMMY__ 0.00448807750596961 false 1.0 116 21 0.108119 22 0.095669 19 0.093491 11 0.082774 24 0.082049 18 0.080327 20 0.079342 12 0.061597 23 0.047168 10 0.042903 14 0.03831 17 0.038187 9 0.033089 16 0.030543 13 0.02131 0 0.019209 4 0.012058 5 0.010939 15 0.00833 3 0.006747 6 0.003048 7 0.001858 8 0.001738 1 0.001194 21 0.108119 22 0.095669 19 0.093491 11 0.082774 24 0.082049 18 0.080327 20 0.079342 12 0.061597 23 0.047168 10 0.042903 14 0.03831 17 0.038187 9 0.033089 16 0.030543 13 0.02131 0 0.019209 4 0.012058 5 0.010939 15 0.00833 3 0.006747 6 0.003048 7 0.001858 8 0.001738 1 0.001194 21 0.09035682241231745 22 0.08148277255166597 19 0.08007856417884485 18 0.07362092706198985 11 0.07118870994283635 20 0.0640142584040871 24 0.06317213248658819 12 0.05833798427079997 10 0.04710157778593061 23 0.04457386768180693 17 0.04195332840199453 14 0.038951556072624474 9 0.03702624075281272 16 0.03358702043454523 13 0.02980366187486817 0 0.029497152336421625 4 0.017584498651746352 5 0.016778832874798772 15 0.014523640721052765 3 0.012616061726612384 6 0.011547321955669694 7 0.009880997983417895 8 0.009799331293962125 1 0.009421281223296538 2 0.008658495292713465 __DUMMY__ 0.004442961626596098 false 1.0 358 20 0.10078 24 0.095697 21 0.095006 19 0.088509 22 0.083811 18 0.083195 11 0.067281 23 0.054435 12 0.047713 10 0.034441 14 0.033538 9 0.029103 17 0.025521 4 0.021863 5 0.020542 3 0.018822 16 0.017152 15 0.016407 7 0.012197 8 0.01202 6 0.011381 1 0.011374 2 0.009874 13 0.009335 20 0.10078 24 0.095697 21 0.095006 19 0.088509 22 0.083811 18 0.083195 11 0.067281 23 0.054435 12 0.047713 10 0.034441 14 0.033538 9 0.029103 17 0.025521 4 0.021863 5 0.020542 3 0.018822 16 0.017152 15 0.016407 7 0.012197 8 0.01202 6 0.011381 1 0.011374 2 0.009874 13 0.009335 21 0.08609634812436501 19 0.07921200309896306 22 0.07684543321246802 20 0.07530890930851081 18 0.07508358255234225 24 0.07106292939428338 11 0.064798110613438 12 0.053094330634240496 23 0.048503668105927905 10 0.04233947588988601 14 0.036470754065311306 17 0.035910387916159595 9 0.03438696264603502 16 0.027831976216988456 13 0.02412338095813191 4 0.02140437847607185 5 0.020500656732680766 0 0.01975892866297714 3 0.017433588278095023 15 0.01735644021491952 6 0.014513331883039653 7 0.013775072368709512 8 0.01365359938171256 1 0.013222286463099123 2 0.012310000696900851 __DUMMY__ 0.005003464104742891 false 1.0 117 9 0.074234 22 0.062801 0 0.058554 5 0.056351 4 0.056215 6 0.055681 8 0.055662 7 0.055468 1 0.055373 3 0.055051 2 0.055049 17 0.052921 18 0.047688 10 0.046673 11 0.036453 21 0.034679 23 0.030733 19 0.02752 16 0.02137 24 0.020676 15 0.015162 14 0.011896 12 0.007733 20 0.006058 9 0.074234 22 0.062801 0 0.058554 5 0.056351 4 0.056215 6 0.055681 8 0.055662 7 0.055468 1 0.055373 3 0.055051 2 0.055049 17 0.052921 18 0.047688 10 0.046673 11 0.036453 21 0.034679 23 0.030733 19 0.02752 16 0.02137 24 0.020676 15 0.015162 14 0.011896 12 0.007733 20 0.006058 22 0.06455973040718994 9 0.06349978630871937 0 0.05562268448986786 18 0.053857203324999436 17 0.05350530237090187 10 0.04861700616830361 11 0.04591423381161019 21 0.0458722842342888 4 0.04510530464956887 5 0.04486716213435933 6 0.04415172039667394 8 0.04327749041380515 7 0.0431755950105781 1 0.043016708838794576 2 0.04258269299182591 3 0.04254583205896253 19 0.04021754219991667 23 0.033179267196362175 16 0.029144854391522063 24 0.02641888541226822 12 0.022611687476772266 14 0.019012990966110612 20 0.01804168484354842 15 0.01636857656398199 13 0.011550173382547204 __DUMMY__ 0.003283599956520902 false 1.0 359 21 0.09581 12 0.094339 13 0.074289 23 0.070735 11 0.066524 24 0.062965 22 0.061973 19 0.043144 14 0.043115 4 0.036414 6 0.0348 5 0.034227 20 0.032451 7 0.028795 8 0.028706 1 0.027929 2 0.026429 17 0.026126 18 0.024822 3 0.02435 9 0.0186 16 0.018273 0 0.018185 15 0.007001 21 0.09581 12 0.094339 13 0.074289 23 0.070735 11 0.066524 24 0.062965 22 0.061973 19 0.043144 14 0.043115 4 0.036414 6 0.0348 5 0.034227 20 0.032451 7 0.028795 8 0.028706 1 0.027929 2 0.026429 17 0.026126 18 0.024822 3 0.02435 9 0.0186 16 0.018273 0 0.018185 15 0.007001 21 0.0862026309971437 12 0.07690082372202149 22 0.06532012853784866 11 0.06437356017806344 13 0.05729072992387332 23 0.056625114791070415 19 0.05617902153378365 24 0.05437418648628257 18 0.04640723249766131 20 0.04155962502176705 14 0.04108371369618529 17 0.03571521041263036 9 0.029091227082518652 0 0.028851125653893084 4 0.028801718037829337 16 0.027638285299752617 5 0.027508722122574016 6 0.026370712443834085 10 0.025790514499186633 7 0.022187029322196447 8 0.02209915995574274 1 0.021640530409356176 2 0.02074356645761661 3 0.0203205815654371 15 0.012051482395642877 __DUMMY__ 0.004873366956088408 false 1.0 118 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.06341719788459811 22 0.06253689659999141 0 0.05448591946156149 18 0.052238440911002965 17 0.05170959431057514 10 0.0481008267700808 4 0.04737399312047818 5 0.04658630793641158 6 0.046460637100600555 7 0.04561227676293397 8 0.04560656010500645 1 0.045195445265464505 2 0.04475679160898202 3 0.04470539848032515 21 0.043676824648465506 11 0.04295116015069052 19 0.03718657396023441 23 0.03492855277354357 16 0.027052477640024643 24 0.02671046916836743 12 0.02080437696303819 14 0.01906800220462635 20 0.01776153961023705 15 0.016572068339356247 13 0.01125252503731021 __DUMMY__ 0.003249143186093397 false 1.0 119 19 0.101622 20 0.100032 21 0.091946 24 0.084712 18 0.078356 12 0.071585 22 0.067228 23 0.058401 11 0.054001 16 0.052446 14 0.046184 17 0.039138 13 0.037643 10 0.035322 15 0.032423 9 0.017847 5 0.008387 4 0.008025 0 0.007971 3 0.004943 6 0.001248 7 2.86E-4 8 1.8E-4 1 7.5E-5 19 0.101622 20 0.100032 21 0.091946 24 0.084712 18 0.078356 12 0.071585 22 0.067228 23 0.058401 11 0.054001 16 0.052446 14 0.046184 17 0.039138 13 0.037643 10 0.035322 15 0.032423 9 0.017847 5 0.008387 4 0.008025 0 0.007971 3 0.004943 6 0.001248 7 2.86E-4 8 1.8E-4 1 7.5E-5 19 0.08447598149403954 21 0.08217481335435715 20 0.07521093214034132 18 0.07327140549921517 22 0.06713440367678826 24 0.06481044448462954 12 0.06319960317799088 11 0.05674491779431675 23 0.05021235537411796 16 0.044497622332267776 14 0.04370478093738922 10 0.04369191607315079 17 0.0422680135298191 13 0.0382321366782342 9 0.029052504177312262 15 0.02755974410775841 0 0.023442534900997087 4 0.015204819124362272 5 0.015100386892520216 3 0.011338730268178004 6 0.01023209620357405 7 0.008697829647114045 8 0.008629174531581525 1 0.008456193790988286 2 0.008228659595371834 __DUMMY__ 0.004428000213584339 false 1.0 10 19 0.06003 22 0.059333 24 0.05489 23 0.054449 18 0.051572 20 0.04913 21 0.047613 9 0.046616 3 0.043592 4 0.043313 5 0.042214 17 0.040196 8 0.040139 7 0.039978 2 0.039415 1 0.039354 6 0.038597 16 0.037646 10 0.036529 11 0.035039 0 0.029562 15 0.029497 14 0.022749 12 0.018546 19 0.06003 22 0.059333 24 0.05489 23 0.054449 18 0.051572 20 0.04913 21 0.047613 9 0.046616 3 0.043592 4 0.043313 5 0.042214 17 0.040196 8 0.040139 7 0.039978 2 0.039415 1 0.039354 6 0.038597 16 0.037646 10 0.036529 11 0.035039 0 0.029562 15 0.029497 14 0.022749 12 0.018546 22 0.06367731550221209 19 0.0609314309470234 21 0.0580634101403762 18 0.057871968306126294 24 0.04893043964589595 23 0.04787202570941601 20 0.046271319506384745 11 0.04617738301825355 9 0.0459571561370039 17 0.04329002680978724 10 0.04309378140991772 16 0.03584371840492249 4 0.0355923608742745 0 0.03546275120522048 5 0.03478341929268694 3 0.03363536876822508 12 0.03304799385972153 6 0.03173733574649571 8 0.0316019807584489 7 0.03154638879102769 1 0.031106820013991364 2 0.03090634159825308 14 0.028863732624943694 15 0.024363886986930882 13 0.01546138507766618 __DUMMY__ 0.003910258864794547 false 1.0 11 10 0.078148 9 0.065776 22 0.06309 18 0.062862 11 0.057828 14 0.057035 21 0.053998 0 0.051362 13 0.045619 4 0.039155 5 0.039095 6 0.03683 3 0.036056 1 0.0353 2 0.035294 7 0.03517 8 0.035141 17 0.032426 12 0.032223 15 0.031716 19 0.027473 23 0.024806 24 0.011865 20 0.011732 10 0.078148 9 0.065776 22 0.06309 18 0.062862 11 0.057828 14 0.057035 21 0.053998 0 0.051362 13 0.045619 4 0.039155 5 0.039095 6 0.03683 3 0.036056 1 0.0353 2 0.035294 7 0.03517 8 0.035141 17 0.032426 12 0.032223 15 0.031716 19 0.027473 23 0.024806 24 0.011865 20 0.011732 10 0.06671387737862315 18 0.06553148653703084 22 0.06480244033531662 21 0.0628795286692488 11 0.05971294341612372 9 0.05392953298547859 14 0.04991165378470827 0 0.04677369761422897 19 0.04538182109996451 13 0.04477295857772409 12 0.04476779271674459 17 0.03896133557379993 23 0.032097602421362253 4 0.030990363286123646 5 0.030695862416176306 20 0.028546069642217252 6 0.028524997139134606 3 0.026770949884737327 15 0.026517868661058933 7 0.02637919125805882 8 0.02635026970236114 1 0.026323326400810435 2 0.02611208955544582 24 0.02566006906298111 16 0.016999461380420636 __DUMMY__ 0.003892810500119372 false 1.0 12 10 0.081965 9 0.074416 18 0.071128 22 0.06761 0 0.058848 11 0.048274 17 0.047515 14 0.046682 15 0.043665 19 0.040192 4 0.039883 3 0.039584 5 0.039436 8 0.038102 7 0.037894 21 0.037888 1 0.037669 2 0.03712 6 0.037101 23 0.019408 16 0.017131 20 0.015177 13 0.012912 24 0.0104 10 0.081965 9 0.074416 18 0.071128 22 0.06761 0 0.058848 11 0.048274 17 0.047515 14 0.046682 15 0.043665 19 0.040192 4 0.039883 3 0.039584 5 0.039436 8 0.038102 7 0.037894 21 0.037888 1 0.037669 2 0.03712 6 0.037101 23 0.019408 16 0.017131 20 0.015177 13 0.012912 24 0.0104 10 0.06892281296461746 18 0.0683619336595354 22 0.06651485812973884 9 0.06302074180326898 0 0.05386846379706838 11 0.051239839560192096 17 0.04913846997323283 19 0.04816021112482423 21 0.047976182588823746 14 0.04003846522726762 4 0.03542260062055541 5 0.034922088071676245 3 0.033416817720800726 15 0.03328510218064477 6 0.03302363887458278 8 0.032747115967926475 7 0.03264100211596015 1 0.03241927222713723 2 0.03191060804664144 23 0.027526265595073495 16 0.025780542388419272 20 0.02548432236008661 24 0.021593244676701248 13 0.019961091331486807 12 0.01911350205049693 __DUMMY__ 0.0035108069432405447 false 1.0 13 10 0.081661 9 0.075229 18 0.071661 22 0.067671 0 0.058074 11 0.048021 17 0.04789 14 0.046829 15 0.043284 19 0.040881 4 0.040088 5 0.039577 3 0.039568 21 0.0383 8 0.038067 7 0.037725 1 0.03769 2 0.0371 6 0.036988 23 0.019572 16 0.017082 20 0.015002 13 0.011838 24 0.010203 10 0.081661 9 0.075229 18 0.071661 22 0.067671 0 0.058074 11 0.048021 17 0.04789 14 0.046829 15 0.043284 19 0.040881 4 0.040088 5 0.039577 3 0.039568 21 0.0383 8 0.038067 7 0.037725 1 0.03769 2 0.0371 6 0.036988 23 0.019572 16 0.017082 20 0.015002 13 0.011838 24 0.010203 10 0.06878215480112315 18 0.0686084606139672 22 0.06654304513430372 9 0.06339679543440384 0 0.053510396966112574 11 0.05112278148554076 17 0.049311917161112225 19 0.04847891091046572 21 0.04816674601300363 14 0.04010644691413467 4 0.03551741445674648 5 0.034987296606611346 3 0.03340940087943707 15 0.033108841346039045 6 0.03297135132946908 8 0.03273091029381184 7 0.03256280990666102 1 0.0324289715458667 2 0.031901341556230825 23 0.02760211703956093 16 0.025757863726650183 20 0.025403357942671838 24 0.021502105157351015 13 0.019464264250686217 12 0.01911349320884987 __DUMMY__ 0.003510805319188824 false 1.0 14 23 0.08536 24 0.062803 4 0.059471 6 0.05938 5 0.059247 7 0.058489 8 0.058257 2 0.057892 1 0.057604 3 0.057275 20 0.051452 12 0.041708 19 0.03936 16 0.036375 21 0.035887 9 0.031061 17 0.030482 22 0.026226 18 0.025092 13 0.023652 0 0.017456 15 0.016253 14 0.006769 10 0.002449 23 0.08536 24 0.062803 4 0.059471 6 0.05938 5 0.059247 7 0.058489 8 0.058257 2 0.057892 1 0.057604 3 0.057275 20 0.051452 12 0.041708 19 0.03936 16 0.036375 21 0.035887 9 0.031061 17 0.030482 22 0.026226 18 0.025092 13 0.023652 0 0.017456 15 0.016253 14 0.006769 10 0.002449 23 0.06381989500122112 21 0.05665062073482891 24 0.054611201390729495 19 0.054397520723093395 20 0.05037807886887457 12 0.04970518565518699 22 0.04863413790517802 18 0.04638554382522142 4 0.040408295901196226 5 0.04002717117286505 6 0.038639541598446146 17 0.038267966968396315 7 0.03703392116038873 8 0.036881752258783505 3 0.03678161906409114 16 0.03669767005580666 1 0.036466852649635166 2 0.036395853636911175 9 0.03546203767568048 11 0.03233442980871273 13 0.030752190502313762 0 0.02850458854611197 10 0.026578821204136467 14 0.02284945657763289 15 0.01702977582190826 __DUMMY__ 0.004305871292649454 false 1.0 15 9 0.062734 3 0.055765 8 0.054657 7 0.054531 4 0.054425 1 0.054058 2 0.053915 5 0.053795 6 0.052874 22 0.051012 17 0.045967 0 0.045219 18 0.044402 10 0.043429 23 0.038088 15 0.036611 19 0.034114 24 0.032189 16 0.029813 21 0.027066 11 0.026156 20 0.024439 14 0.02342 12 0.001322 9 0.062734 3 0.055765 8 0.054657 7 0.054531 4 0.054425 1 0.054058 2 0.053915 5 0.053795 6 0.052874 22 0.051012 17 0.045967 0 0.045219 18 0.044402 10 0.043429 23 0.038088 15 0.036611 19 0.034114 24 0.032189 16 0.029813 21 0.027066 11 0.026156 20 0.024439 14 0.02342 12 0.001322 9 0.06017343578946338 22 0.057808953265625705 18 0.051174546673551674 17 0.048712344901780384 0 0.04834000604485033 4 0.04697580045540944 10 0.04695066195432468 5 0.04635335154478437 3 0.04611497563481186 8 0.0457689894685869 7 0.0456936982202877 6 0.045397759168606285 1 0.04535273395574904 2 0.04498076144548678 19 0.04064475384660177 21 0.039090766850945126 11 0.03758307399294032 23 0.03687943752164559 24 0.03138072261540707 16 0.030486105229725016 15 0.027936761272416902 20 0.02535175979239882 14 0.024158683881054823 12 0.014858990974341261 13 0.008599902611257022 __DUMMY__ 0.0032310228879478334 false 1.0 16 10 0.087849 18 0.08733 9 0.065199 22 0.062672 14 0.051217 21 0.049297 23 0.046171 19 0.045472 0 0.044671 11 0.03817 5 0.036677 4 0.03662 13 0.0351 17 0.034152 6 0.03338 15 0.032596 7 0.030737 8 0.030605 3 0.030593 1 0.030185 2 0.02964 20 0.026218 12 0.023521 24 0.011929 10 0.087849 18 0.08733 9 0.065199 22 0.062672 14 0.051217 21 0.049297 23 0.046171 19 0.045472 0 0.044671 11 0.03817 5 0.036677 4 0.03662 13 0.0351 17 0.034152 6 0.03338 15 0.032596 7 0.030737 8 0.030605 3 0.030593 1 0.030185 2 0.02964 20 0.026218 12 0.023521 24 0.011929 18 0.07780454284343945 10 0.07018665281570308 22 0.06557698295481039 21 0.06141901944241616 19 0.057045654639510966 9 0.0527775935998034 11 0.050446654662908694 14 0.04552247053001438 23 0.043202346468057706 0 0.04285933335750632 17 0.040731912443020955 12 0.03970987762500062 20 0.037992550351300725 13 0.036692509596671856 4 0.02897389335059958 5 0.028733978477592757 24 0.028139507388739445 15 0.026751520302891768 6 0.025823400507187993 3 0.023648746711876677 7 0.023432237895148506 8 0.023343937549067502 1 0.023035591414718597 2 0.022581721503030002 16 0.019441984386042974 __DUMMY__ 0.00412537918293938 false 1.0 17 20 0.103664 19 0.102886 21 0.084758 18 0.081588 24 0.078623 12 0.071376 23 0.065686 22 0.061617 16 0.051307 14 0.049537 11 0.049087 10 0.043449 13 0.041582 17 0.033674 15 0.032653 9 0.013411 4 0.008572 5 0.008545 0 0.008221 3 0.005617 6 0.001917 7 7.89E-4 8 7.57E-4 2 6.85E-4 20 0.103664 19 0.102886 21 0.084758 18 0.081588 24 0.078623 12 0.071376 23 0.065686 22 0.061617 16 0.051307 14 0.049537 11 0.049087 10 0.043449 13 0.041582 17 0.033674 15 0.032653 9 0.013411 4 0.008572 5 0.008545 0 0.008221 3 0.005617 6 0.001917 7 7.89E-4 8 7.57E-4 2 6.85E-4 19 0.08540038378127052 21 0.07914284522947883 20 0.0774958765027508 18 0.07494872875933457 22 0.06421454050264751 12 0.06386133574263116 24 0.06216151009664003 11 0.054441291490320974 23 0.054026033884563084 10 0.04763176319581069 14 0.045567140898540956 16 0.04388998104127167 13 0.040804665975053354 17 0.03929636276323736 15 0.027521708971729328 9 0.026516019786126076 0 0.023175345873506566 4 0.015217573718706101 5 0.01493959648598096 3 0.011383148327165311 6 0.010278464774373275 7 0.008641024246641732 8 0.008599490993523513 2 0.00827028468637887 1 0.008130012110543651 __DUMMY__ 0.004444870161773206 false 1.0 18 3 0.060626 4 0.057843 5 0.057273 8 0.057014 7 0.056881 1 0.056612 2 0.056293 9 0.055866 6 0.053987 23 0.049615 24 0.047175 22 0.046602 15 0.042062 18 0.041236 10 0.037802 20 0.035345 19 0.033247 14 0.030007 17 0.029115 21 0.028741 0 0.027461 11 0.021885 16 0.01616 13 0.001155 3 0.060626 4 0.057843 5 0.057273 8 0.057014 7 0.056881 1 0.056612 2 0.056293 9 0.055866 6 0.053987 23 0.049615 24 0.047175 22 0.046602 15 0.042062 18 0.041236 10 0.037802 20 0.035345 19 0.033247 14 0.030007 17 0.029115 21 0.028741 0 0.027461 11 0.021885 16 0.01616 13 0.001155 18 0.056707472521036764 22 0.05651509341086253 19 0.05239593292054 21 0.05055657656681502 9 0.04738244596272878 24 0.04681885443760852 10 0.04603151040270988 23 0.045875013840841444 20 0.04566337732224556 11 0.039857803514078895 4 0.03884449629782241 5 0.0383136172282671 3 0.03809659793341898 17 0.03722049736675252 14 0.037200746711811866 8 0.03572229465007788 7 0.035669057987324455 1 0.035409816473277685 6 0.03515455610549774 2 0.03508471350563279 15 0.0346261083024791 0 0.03202776197085405 16 0.02728473852750772 12 0.027108885967095972 13 0.02005123370873437 __DUMMY__ 0.004380796363977725 false 1.0 19 10 0.09498 18 0.079236 9 0.070809 22 0.068256 0 0.066389 11 0.063729 14 0.058009 17 0.049698 21 0.044969 19 0.041267 15 0.040559 13 0.035845 4 0.029909 5 0.029837 6 0.028377 3 0.027235 7 0.026985 8 0.026929 2 0.026867 1 0.026736 12 0.020547 16 0.017997 20 0.013885 23 0.010948 10 0.09498 18 0.079236 9 0.070809 22 0.068256 0 0.066389 11 0.063729 14 0.058009 17 0.049698 21 0.044969 19 0.041267 15 0.040559 13 0.035845 4 0.029909 5 0.029837 6 0.028377 3 0.027235 7 0.026985 8 0.026929 2 0.026867 1 0.026736 12 0.020547 16 0.017997 20 0.013885 23 0.010948 10 0.07721977168568912 18 0.0746597714432839 22 0.06764846882127867 11 0.0613195515990061 9 0.05978095175929263 0 0.05763677948311603 21 0.05388697745326258 19 0.051105086005542213 17 0.05042082658611477 14 0.04775375329331925 13 0.034264490941734435 12 0.03238521325454862 15 0.032111128734103475 4 0.027911833332786105 5 0.027600938320000552 16 0.0270911894494775 20 0.026749325687008746 6 0.02606394820592107 3 0.02440317679296156 7 0.024381236301168382 8 0.024359722612909356 1 0.02414837170704615 2 0.023976056018308534 23 0.022993555073917343 24 0.01656971289008344 __DUMMY__ 0.0035581625481193794 false 1.0 360 17 0.084266 0 0.082518 16 0.071707 9 0.053416 11 0.052553 22 0.052392 18 0.047256 6 0.04571 10 0.043179 8 0.042738 7 0.042616 19 0.042427 2 0.04229 1 0.042237 4 0.040742 5 0.03999 3 0.036443 23 0.028825 12 0.027742 21 0.026676 15 0.021812 13 0.011653 20 0.010522 24 0.010292 17 0.084266 0 0.082518 16 0.071707 9 0.053416 11 0.052553 22 0.052392 18 0.047256 6 0.04571 10 0.043179 8 0.042738 7 0.042616 19 0.042427 2 0.04229 1 0.042237 4 0.040742 5 0.03999 3 0.036443 23 0.028825 12 0.027742 21 0.026676 15 0.021812 13 0.011653 20 0.010522 24 0.010292 17 0.07236010737962925 0 0.0698693491095218 16 0.05828537897348147 22 0.05783671992895838 18 0.053027773218899656 9 0.053007576085316095 11 0.052681860999145805 19 0.04757213968012284 10 0.045824082817239424 6 0.040059332025382796 21 0.03879040305122771 8 0.03769829231038637 4 0.037698246184629094 7 0.03759903865363482 1 0.03731598383332307 2 0.037069172501018426 5 0.03705062289077825 3 0.03362164464466365 23 0.03179030304180209 12 0.03144696625992628 15 0.020460464022282382 24 0.019866987432035674 20 0.01958177713547966 13 0.01579769922415252 14 0.010441874970004482 __DUMMY__ 0.003246203626958001 false 1.0 361 17 0.062209 9 0.05801 0 0.056941 22 0.053934 8 0.050566 7 0.050357 6 0.050097 1 0.050045 2 0.049647 4 0.049476 3 0.048974 5 0.048747 16 0.048245 18 0.042849 19 0.040725 11 0.036382 10 0.03475 23 0.034368 24 0.031049 21 0.030907 15 0.026919 20 0.022789 12 0.012687 14 0.009328 17 0.062209 9 0.05801 0 0.056941 22 0.053934 8 0.050566 7 0.050357 6 0.050097 1 0.050045 2 0.049647 4 0.049476 3 0.048974 5 0.048747 16 0.048245 18 0.042849 19 0.040725 11 0.036382 10 0.03475 23 0.034368 24 0.031049 21 0.030907 15 0.026919 20 0.022789 12 0.012687 14 0.009328 22 0.060075836916968946 17 0.0592740196226855 9 0.05673949128224802 0 0.05610703192282471 18 0.05075372190352693 19 0.0456281055111525 11 0.04484630616775209 4 0.04291562427749765 16 0.04286032913937614 6 0.042710785373799215 5 0.04225695800257943 21 0.042234610672094275 8 0.042166912699841415 10 0.04214530998114826 7 0.042031655961722494 1 0.04176966461615454 2 0.04130595899429485 3 0.04082199307259548 23 0.03443654171646654 24 0.030641809379529733 20 0.024702188075384216 12 0.022975404881133775 15 0.021932902558546595 14 0.015938328261366017 13 0.00944008534496217 __DUMMY__ 0.003288423664348524 false 1.0 120 3 0.060842 4 0.059763 5 0.059668 9 0.059414 7 0.058528 8 0.058457 1 0.058313 2 0.058001 6 0.057011 22 0.050876 23 0.048156 24 0.043317 18 0.037364 17 0.035768 21 0.034096 0 0.033796 19 0.03159 10 0.031239 15 0.028392 20 0.026898 11 0.022704 14 0.020016 16 0.019696 12 0.006094 3 0.060842 4 0.059763 5 0.059668 9 0.059414 7 0.058528 8 0.058457 1 0.058313 2 0.058001 6 0.057011 22 0.050876 23 0.048156 24 0.043317 18 0.037364 17 0.035768 21 0.034096 0 0.033796 19 0.03159 10 0.031239 15 0.028392 20 0.026898 11 0.022704 14 0.020016 16 0.019696 12 0.006094 22 0.058395397802737774 9 0.05563602514686043 4 0.04783351710883143 18 0.04761743908286205 5 0.04749091936021506 21 0.046697378881864635 3 0.04655802307609929 7 0.04545108200217841 8 0.04539723942793607 6 0.04539529234379807 1 0.04523033708087154 2 0.04480027375144764 23 0.04382253906168709 17 0.042244212407309384 19 0.04188195940503219 24 0.040214076224299386 0 0.04015871374633939 10 0.03912334086267015 11 0.03749310416232462 20 0.0297500545390227 16 0.025856260295156235 14 0.023574867020649988 15 0.022524344220162713 12 0.021986463052253703 13 0.011431350313757126 __DUMMY__ 0.003435789623632687 false 1.0 362 17 0.062331 0 0.05798 9 0.057837 22 0.054763 8 0.049712 7 0.049577 6 0.049281 1 0.049182 2 0.048907 4 0.048705 16 0.048287 3 0.048232 5 0.047753 18 0.044465 19 0.040933 11 0.036645 10 0.03608 23 0.035145 21 0.031108 24 0.030881 15 0.026925 20 0.023592 12 0.012512 14 0.009164 17 0.062331 0 0.05798 9 0.057837 22 0.054763 8 0.049712 7 0.049577 6 0.049281 1 0.049182 2 0.048907 4 0.048705 16 0.048287 3 0.048232 5 0.047753 18 0.044465 19 0.040933 11 0.036645 10 0.03608 23 0.035145 21 0.031108 24 0.030881 15 0.026925 20 0.023592 12 0.012512 14 0.009164 22 0.060458123888208856 17 0.05933037198405091 9 0.0566598414115353 0 0.05658612339662742 18 0.05149880550954064 19 0.04572407945479423 11 0.04496763414670362 16 0.042879770539545246 10 0.04275852923268226 4 0.0425602657290766 6 0.04233468105739592 21 0.04232735129730791 5 0.04179879330563849 8 0.04177328905097175 7 0.04167214670518277 1 0.04137189115669519 2 0.04096488874643558 3 0.040479999914941715 23 0.0347948089569986 24 0.030564416427147644 20 0.025072423590909533 12 0.022894770730929954 15 0.021935709055613373 14 0.015862752229943773 13 0.009440102752807015 __DUMMY__ 0.0032884297283158333 false 1.0 121 22 0.096292 21 0.078103 11 0.072762 9 0.066447 18 0.056383 19 0.055652 0 0.05053 10 0.049914 17 0.048218 24 0.041604 4 0.036395 5 0.036038 3 0.034042 6 0.030677 7 0.030415 8 0.030326 23 0.029971 1 0.029851 2 0.029794 14 0.025387 12 0.024037 16 0.022917 20 0.017714 15 0.006533 22 0.096292 21 0.078103 11 0.072762 9 0.066447 18 0.056383 19 0.055652 0 0.05053 10 0.049914 17 0.048218 24 0.041604 4 0.036395 5 0.036038 3 0.034042 6 0.030677 7 0.030415 8 0.030326 23 0.029971 1 0.029851 2 0.029794 14 0.025387 12 0.024037 16 0.022917 20 0.017714 15 0.006533 22 0.08158225110501754 21 0.07231506158128669 11 0.06553509119761632 18 0.06021995956737146 19 0.058684994625709676 9 0.0558186020543265 10 0.050036125732110456 17 0.049027349490304885 0 0.04791886736687072 24 0.04077972968857366 12 0.03635897243689583 23 0.03491080606915601 4 0.03190581774474462 5 0.03144651633576167 16 0.03034485880182387 20 0.029706018215308355 14 0.028990312142426318 3 0.028483432896830314 6 0.027904211728901826 7 0.026745258015717963 8 0.02669354525923994 1 0.026341609104629526 2 0.02607827341231935 13 0.015856558217410183 15 0.01235688227076062 __DUMMY__ 0.003958894938885755 false 1.0 363 16 0.09147 17 0.080395 19 0.075111 0 0.061452 18 0.053806 20 0.04976 22 0.048467 11 0.044278 23 0.04315 24 0.038169 9 0.036243 21 0.034627 12 0.033234 10 0.033218 6 0.032202 7 0.031472 8 0.031469 1 0.031114 2 0.030623 4 0.029889 5 0.029333 3 0.028168 15 0.026819 13 0.00553 16 0.09147 17 0.080395 19 0.075111 0 0.061452 18 0.053806 20 0.04976 22 0.048467 11 0.044278 23 0.04315 24 0.038169 9 0.036243 21 0.034627 12 0.033234 10 0.033218 6 0.032202 7 0.031472 8 0.031469 1 0.031114 2 0.030623 4 0.029889 5 0.029333 3 0.028168 15 0.026819 13 0.00553 16 0.0705317448974185 19 0.07031965890345218 17 0.06891584305979091 18 0.05919613843404992 22 0.05604785540764597 0 0.055758944522195555 11 0.050678266818230386 21 0.04779237563961311 20 0.04642041855126223 23 0.04134569576623509 10 0.04119450402313451 12 0.04061584288669889 9 0.039481832867291726 24 0.03779504954431256 6 0.028276903595228192 4 0.02771107679150141 5 0.02719030600653202 8 0.02681067047547375 7 0.02678980661873668 1 0.026512985544955597 2 0.026074299069477266 3 0.024625525731323736 15 0.0239557694423793 13 0.017494828374251873 14 0.014042980360233758 __DUMMY__ 0.004420676668575015 false 1.0 122 22 0.067477 9 0.062284 18 0.047947 3 0.047454 21 0.047349 4 0.047056 5 0.046436 17 0.045576 7 0.045097 8 0.044934 0 0.044819 1 0.044522 2 0.044324 19 0.044005 10 0.043856 6 0.043758 11 0.043104 24 0.038531 23 0.036508 16 0.028236 15 0.026847 14 0.025008 20 0.024658 12 0.010213 22 0.067477 9 0.062284 18 0.047947 3 0.047454 21 0.047349 4 0.047056 5 0.046436 17 0.045576 7 0.045097 8 0.044934 0 0.044819 1 0.044522 2 0.044324 19 0.044005 10 0.043856 6 0.043758 11 0.043104 24 0.038531 23 0.036508 16 0.028236 15 0.026847 14 0.025008 20 0.024658 12 0.010213 22 0.06766772600700643 9 0.056442878134459674 18 0.0546948056833727 21 0.05459763565753335 19 0.05022927237445533 11 0.04990783444319501 17 0.048622308503331255 0 0.04697980706231805 10 0.04693482018294505 4 0.039469124138844944 5 0.03887454623121092 3 0.037626100053776486 24 0.0372851306355596 23 0.03700669935162 6 0.036816132594322974 7 0.036600293819984024 8 0.03652180288285877 1 0.036194842183888305 2 0.03583655386521582 16 0.03205988947989674 20 0.029485895897544048 14 0.0265687754235598 12 0.025668460284559345 15 0.021718106749558944 13 0.012493598010873373 __DUMMY__ 0.0036969603481091856 false 1.0 364 16 0.078375 17 0.074419 0 0.060405 19 0.05779 22 0.04465 18 0.044543 23 0.043052 6 0.041149 11 0.040805 8 0.040278 7 0.039966 1 0.039807 2 0.039573 20 0.039477 9 0.039188 4 0.038028 5 0.037927 3 0.036321 24 0.036125 12 0.034075 21 0.03154 10 0.028105 15 0.024019 13 0.010381 16 0.078375 17 0.074419 0 0.060405 19 0.05779 22 0.04465 18 0.044543 23 0.043052 6 0.041149 11 0.040805 8 0.040278 7 0.039966 1 0.039807 2 0.039573 20 0.039477 9 0.039188 4 0.038028 5 0.037927 3 0.036321 24 0.036125 12 0.034075 21 0.03154 10 0.028105 15 0.024019 13 0.010381 17 0.06926122051866061 16 0.06553694516446332 0 0.059454033759150704 19 0.05762701488254363 22 0.053032026735136 18 0.052213616051431676 11 0.047387993435866894 9 0.04370381884299025 21 0.04124181139207742 23 0.03965555617130494 10 0.037734246496605284 12 0.03691141640778941 6 0.0364562513510306 20 0.035907393013889156 8 0.034925838690177895 4 0.03473982989743109 7 0.03473411449316688 1 0.03455774095082935 5 0.03441175447181685 2 0.03420948371978832 24 0.03291963838273647 3 0.031723383636882256 15 0.02180634872812698 13 0.016312542492968568 14 0.009670381941200226 __DUMMY__ 0.0038655983719352075 false 1.0 365 0 0.087039 17 0.079302 9 0.065857 22 0.062658 11 0.059348 10 0.056694 18 0.054071 16 0.05325 6 0.045568 8 0.042825 7 0.042476 2 0.042274 1 0.042222 4 0.041938 5 0.041332 19 0.037718 3 0.037472 21 0.03253 12 0.024267 23 0.020377 13 0.011858 15 0.011754 14 0.003977 24 0.003191 0 0.087039 17 0.079302 9 0.065857 22 0.062658 11 0.059348 10 0.056694 18 0.054071 16 0.05325 6 0.045568 8 0.042825 7 0.042476 2 0.042274 1 0.042222 4 0.041938 5 0.041332 19 0.037718 3 0.037472 21 0.03253 12 0.024267 23 0.020377 13 0.011858 15 0.011754 14 0.003977 24 0.003191 0 0.07027196279571338 17 0.06727408726334153 22 0.06461117843628518 9 0.05921588345717438 11 0.05761665730182961 18 0.05690794346530392 10 0.05324668000683918 16 0.04577819810205731 19 0.04547588042684036 21 0.04492114835115657 6 0.03904464690728725 4 0.03782972344218972 5 0.03724818251900787 8 0.03675991234443462 7 0.03657817557724247 1 0.036346335250952023 2 0.036095190287535446 3 0.033562975347925635 12 0.031301538648077 23 0.02789234872536297 24 0.017606241584069645 13 0.017458989498227453 20 0.014859393691156601 14 0.01450330446173669 15 0.0142488413212524 __DUMMY__ 0.0033445807870008575 false 1.0 123 8 0.073587 7 0.07303 1 0.072867 6 0.072424 4 0.072134 2 0.072067 3 0.071573 5 0.071518 9 0.059264 23 0.053723 17 0.040095 22 0.039883 24 0.038625 0 0.038108 18 0.023794 21 0.021226 16 0.019851 15 0.016948 10 0.016596 20 0.014478 19 0.014412 11 0.012439 12 0.008404 14 0.002954 8 0.073587 7 0.07303 1 0.072867 6 0.072424 4 0.072134 2 0.072067 3 0.071573 5 0.071518 9 0.059264 23 0.053723 17 0.040095 22 0.039883 24 0.038625 0 0.038108 18 0.023794 21 0.021226 16 0.019851 15 0.016948 10 0.016596 20 0.014478 19 0.014412 11 0.012439 12 0.008404 14 0.002954 9 0.05650126982908179 4 0.055454515520324564 6 0.05504331147095932 5 0.0548819469602114 8 0.05476370520081482 7 0.054515566502457105 1 0.054356273074185474 2 0.053679010776260944 3 0.05328224407913996 22 0.05125547816624094 23 0.04591687781006839 17 0.045653401165990926 0 0.04443134526918778 18 0.03968649743653486 21 0.03733310446554431 24 0.03525858524538967 10 0.031818959431997654 11 0.03132514973675262 19 0.030638788358026695 16 0.02634361774699387 12 0.022203736659500255 20 0.020844697112914003 15 0.01678694247332748 14 0.013588157403181983 13 0.011489779285184317 __DUMMY__ 0.0029470388197288997 false 1.0 124 10 0.089534 18 0.083517 0 0.076869 22 0.076653 9 0.075365 11 0.065958 17 0.064607 19 0.050118 21 0.045692 14 0.035227 4 0.03027 5 0.030016 16 0.029747 6 0.029558 8 0.027723 7 0.027348 2 0.026876 1 0.026768 3 0.026295 15 0.02352 13 0.018784 12 0.018455 20 0.011679 23 0.009421 10 0.089534 18 0.083517 0 0.076869 22 0.076653 9 0.075365 11 0.065958 17 0.064607 19 0.050118 21 0.045692 14 0.035227 4 0.03027 5 0.030016 16 0.029747 6 0.029558 8 0.027723 7 0.027348 2 0.026876 1 0.026768 3 0.026295 15 0.02352 13 0.018784 12 0.018455 20 0.011679 23 0.009421 18 0.07503505148243034 10 0.07297958587686636 22 0.07159265667037183 0 0.06351231002910789 9 0.06293900583918864 11 0.061477780421146114 17 0.05833343681724185 19 0.05392220445147354 21 0.05305869234324445 14 0.0345321892299573 16 0.032906731538820025 12 0.029873788233913158 4 0.029596030387979567 5 0.029187323742662467 6 0.028295896313055607 8 0.026480221329352523 7 0.026290648378311993 1 0.025904141446486253 2 0.025705972301064157 3 0.025580724043226217 13 0.024031689489139862 20 0.02397638955642727 15 0.0227539613000546 23 0.02214939000658476 24 0.01635447272733962 __DUMMY__ 0.0035297060445537284 false 1.0 366 17 0.0726 16 0.070899 0 0.061566 19 0.051984 9 0.047157 6 0.045876 8 0.045648 22 0.045613 7 0.045393 1 0.045217 2 0.044985 18 0.044429 4 0.0435 5 0.042822 3 0.042448 23 0.04014 11 0.035913 24 0.033672 20 0.03324 10 0.031972 21 0.026009 15 0.025108 12 0.021747 13 0.002062 17 0.0726 16 0.070899 0 0.061566 19 0.051984 9 0.047157 6 0.045876 8 0.045648 22 0.045613 7 0.045393 1 0.045217 2 0.044985 18 0.044429 4 0.0435 5 0.042822 3 0.042448 23 0.04014 11 0.035913 24 0.033672 20 0.03324 10 0.031972 21 0.026009 15 0.025108 12 0.021747 13 0.002062 17 0.06710469008012311 0 0.0600016027454724 16 0.059071400717460594 22 0.054208592990543765 19 0.05305404033883494 18 0.05187785922272469 9 0.04926296395353307 11 0.0449716863427473 10 0.04055320249319848 6 0.03965205894076095 8 0.038564465350803705 4 0.03846940699931442 21 0.038420938641842525 7 0.038400955075537355 1 0.038214155336676 5 0.037867264571153754 2 0.0378563963804015 23 0.037511299958494386 3 0.035929440964672536 20 0.031123868569190895 24 0.03095871793531369 12 0.02922983741621813 15 0.02210429893530374 13 0.011632450284734207 14 0.010302761876402448 __DUMMY__ 0.0036556438785414116 false 1.0 125 9 0.064048 4 0.057295 5 0.056863 3 0.056734 7 0.05647 22 0.056441 8 0.056428 1 0.056296 6 0.056045 2 0.055754 0 0.047391 17 0.047333 23 0.04172 18 0.039479 21 0.037129 24 0.036212 19 0.032883 10 0.03281 11 0.030961 16 0.025914 20 0.019142 15 0.014481 12 0.012853 14 0.009315 9 0.064048 4 0.057295 5 0.056863 3 0.056734 7 0.05647 22 0.056441 8 0.056428 1 0.056296 6 0.056045 2 0.055754 0 0.047391 17 0.047333 23 0.04172 18 0.039479 21 0.037129 24 0.036212 19 0.032883 10 0.03281 11 0.030961 16 0.025914 20 0.019142 15 0.014481 12 0.012853 14 0.009315 22 0.061665960511676284 9 0.058086458082224963 17 0.05024504600266871 18 0.04981546823864599 0 0.049208352434225104 21 0.04789422155838351 4 0.04552308671740148 5 0.04501026130899893 6 0.044100582804923516 7 0.04343204113268876 8 0.0434285339613049 3 0.04324590158365162 19 0.04324040995460498 1 0.04323313644943583 11 0.04298408774843231 2 0.04271176943456398 10 0.041052125301659824 23 0.03913832467717588 24 0.03506189669893387 16 0.030940342119642167 12 0.02566059008292482 20 0.0252112259573963 14 0.01798675315633692 15 0.0159287093830742 13 0.011748168386132853 __DUMMY__ 0.003446546312892322 false 1.0 367 16 0.091435 17 0.080453 19 0.075056 0 0.06152 18 0.053966 20 0.049512 22 0.048493 11 0.044221 23 0.043953 24 0.038396 9 0.036369 21 0.03485 12 0.033391 10 0.032955 6 0.031938 8 0.031362 7 0.031291 1 0.031138 2 0.030572 4 0.029682 5 0.02911 3 0.028121 15 0.026745 13 0.005472 16 0.091435 17 0.080453 19 0.075056 0 0.06152 18 0.053966 20 0.049512 22 0.048493 11 0.044221 23 0.043953 24 0.038396 9 0.036369 21 0.03485 12 0.033391 10 0.032955 6 0.031938 8 0.031362 7 0.031291 1 0.031138 2 0.030572 4 0.029682 5 0.02911 3 0.028121 15 0.026745 13 0.005472 16 0.07051573538009165 19 0.07029453800690254 17 0.06894220382677388 18 0.05926897707679128 22 0.056059649383442774 0 0.05578987306341522 11 0.05065225266083085 21 0.047893926126245 20 0.04630739275637707 23 0.04171148772833408 10 0.04107464931052937 12 0.0406873317231412 9 0.039539199799672436 24 0.03789843145457385 6 0.028156605073964978 4 0.02761674676732487 5 0.027088687198886373 8 0.026761899134041367 7 0.02670732247818856 1 0.02652389527441646 2 0.02605104080190118 3 0.024604091098301275 15 0.023922034796780386 13 0.01746838887355942 14 0.014042967564870437 __DUMMY__ 0.004420672640643434 false 1.0 126 22 0.100492 21 0.097894 11 0.080664 19 0.067912 18 0.0639 9 0.056137 24 0.052972 10 0.050564 12 0.043788 23 0.039169 17 0.038267 0 0.037599 14 0.035225 20 0.034517 4 0.02726 5 0.026544 3 0.023036 6 0.019547 8 0.018378 7 0.018354 1 0.017988 16 0.017555 2 0.017492 13 0.014745 22 0.100492 21 0.097894 11 0.080664 19 0.067912 18 0.0639 9 0.056137 24 0.052972 10 0.050564 12 0.043788 23 0.039169 17 0.038267 0 0.037599 14 0.035225 20 0.034517 4 0.02726 5 0.026544 3 0.023036 6 0.019547 8 0.018378 7 0.018354 1 0.017988 16 0.017555 2 0.017492 13 0.014745 21 0.08544165601927223 22 0.08393506971484889 11 0.0704199170737932 19 0.0678850233153182 18 0.06575459409650275 10 0.05077493185130296 12 0.04970581534369589 24 0.049215772971516594 9 0.04810940645527314 20 0.04241070697129395 17 0.04219299411886634 23 0.040690367613806414 0 0.03852535327689153 14 0.0371599435006608 16 0.027527486454517833 13 0.026381276889609992 4 0.02487982172139466 5 0.024262726891358524 3 0.020413402089819604 6 0.019475921502266322 7 0.017803914557714975 8 0.017788368484761334 1 0.017483715673908825 2 0.01704356563999879 15 0.010316194789169859 __DUMMY__ 0.004402052982436465 false 1.0 368 16 0.091558 17 0.080229 19 0.075257 0 0.06157 18 0.053925 20 0.049541 22 0.048547 11 0.044264 23 0.044034 24 0.03846 9 0.036041 21 0.034855 12 0.033374 10 0.033125 6 0.031883 8 0.031267 7 0.031183 1 0.030976 2 0.030676 4 0.029616 5 0.029187 3 0.028222 15 0.02679 13 0.005418 16 0.091558 17 0.080229 19 0.075257 0 0.06157 18 0.053925 20 0.049541 22 0.048547 11 0.044264 23 0.044034 24 0.03846 9 0.036041 21 0.034855 12 0.033374 10 0.033125 6 0.031883 8 0.031267 7 0.031183 1 0.030976 2 0.030676 4 0.029616 5 0.029187 3 0.028222 15 0.02679 13 0.005418 16 0.07057186800386395 19 0.07038620550954254 17 0.06884024830158594 18 0.05925037933285374 22 0.05608432728156413 0 0.05581272827583918 11 0.05067191179675323 21 0.047896269480911156 20 0.04632066784457174 23 0.0417484466559229 10 0.04115215392061938 12 0.04067964248487126 9 0.03938982384670727 24 0.037927640323533095 6 0.028131586698130772 4 0.027586716281940156 5 0.02712380382395795 8 0.026718655682170692 7 0.02665815642152817 1 0.026450127687776225 2 0.026098456648423748 3 0.024650138229485138 15 0.023942568557997243 13 0.017443811468982762 14 0.014042986757924163 __DUMMY__ 0.00442067868254356 false 1.0 127 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.06341719788459811 22 0.06253689659999141 0 0.05448591946156149 18 0.052238440911002965 17 0.05170959431057514 10 0.0481008267700808 4 0.04737399312047818 5 0.04658630793641158 6 0.046460637100600555 7 0.04561227676293397 8 0.04560656010500645 1 0.045195445265464505 2 0.04475679160898202 3 0.04470539848032515 21 0.043676824648465506 11 0.04295116015069052 19 0.03718657396023441 23 0.03492855277354357 16 0.027052477640024643 24 0.02671046916836743 12 0.02080437696303819 14 0.01906800220462635 20 0.01776153961023705 15 0.016572068339356247 13 0.01125252503731021 __DUMMY__ 0.003249143186093397 false 1.0 369 17 0.08051 0 0.07658 16 0.070585 9 0.052167 22 0.050014 6 0.04813 11 0.046298 8 0.046199 7 0.045871 1 0.045628 2 0.04548 4 0.043495 5 0.043075 18 0.042765 19 0.04094 3 0.040241 10 0.036173 23 0.031917 12 0.026214 21 0.025437 15 0.023688 24 0.015091 20 0.013119 13 0.010382 17 0.08051 0 0.07658 16 0.070585 9 0.052167 22 0.050014 6 0.04813 11 0.046298 8 0.046199 7 0.045871 1 0.045628 2 0.04548 4 0.043495 5 0.043075 18 0.042765 19 0.04094 3 0.040241 10 0.036173 23 0.031917 12 0.026214 21 0.025437 15 0.023688 24 0.015091 20 0.013119 13 0.010382 17 0.07126539065272608 0 0.06734063055453915 16 0.058883998109225344 22 0.05615994679987925 9 0.052004358949152986 18 0.0507260799167532 11 0.049442758851163185 19 0.046951534457668496 10 0.042119808574436354 6 0.04122865298805611 8 0.03932353534453148 7 0.039124202117211904 1 0.038906720873213174 4 0.038881352267902194 2 0.03856845390100403 5 0.038388067752584534 21 0.03762553455616506 3 0.035271419965009924 23 0.03331410480507077 12 0.030871900271210177 24 0.022048452221605504 15 0.021921519695572274 20 0.020985107780760136 13 0.015303468904124403 14 0.010197821441893153 __DUMMY__ 0.0031451782485412178 false 1.0 128 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06430003975141013 22 0.06222437056664091 0 0.054193417409775076 17 0.05210701120189382 18 0.05195478788548156 4 0.0477066530400945 10 0.04687708775104716 5 0.046820207254272855 6 0.04678071826154535 7 0.04604369490903592 8 0.04596763513234561 1 0.045805748821614124 2 0.044778262336678844 3 0.04472873255387258 21 0.043953113463005615 11 0.042686132409572926 19 0.03730307071518756 23 0.03505017175747236 16 0.026952345431562 24 0.026595895339822567 12 0.02063296412293643 14 0.018657607500438624 20 0.017119617017444858 15 0.016259033632285924 13 0.011252535521252528 __DUMMY__ 0.003249146213309923 false 1.0 129 9 0.074863 4 0.059987 7 0.059758 8 0.059585 1 0.059431 22 0.059389 6 0.05937 5 0.058635 3 0.057976 2 0.057894 0 0.055456 17 0.050085 18 0.045477 10 0.043828 23 0.034822 21 0.032953 11 0.031461 19 0.023492 24 0.021346 16 0.01724 15 0.014737 14 0.01196 20 0.005356 12 0.004899 9 0.074863 4 0.059987 7 0.059758 8 0.059585 1 0.059431 22 0.059389 6 0.05937 5 0.058635 3 0.057976 2 0.057894 0 0.055456 17 0.050085 18 0.045477 10 0.043828 23 0.034822 21 0.032953 11 0.031461 19 0.023492 24 0.021346 16 0.01724 15 0.014737 14 0.01196 20 0.005356 12 0.004899 9 0.06400838881392236 22 0.06221362707055307 0 0.054109073636710685 18 0.0521387737278907 17 0.05198493469525448 4 0.04764653639612741 10 0.046877065913439465 6 0.04673224825433183 5 0.04671956222843336 7 0.04607581698659026 8 0.046004881575712024 1 0.04581690784027992 2 0.04481550933411244 3 0.044764582029730514 21 0.04404067245219808 11 0.04263813015803126 19 0.03737525981115136 23 0.03533432284137991 16 0.02692345028644687 24 0.026466377146029597 12 0.020645066564731748 14 0.018638033183739168 20 0.017209051899839126 15 0.01632005217438468 13 0.011252530279278932 __DUMMY__ 0.0032491446997009563 false 1.0 20 11 0.093164 22 0.090769 10 0.080318 0 0.079109 18 0.07093 9 0.068974 21 0.064717 17 0.062517 19 0.049273 12 0.032708 4 0.029454 16 0.02944 5 0.02879 6 0.027408 14 0.026602 8 0.024179 7 0.023973 1 0.023536 2 0.023441 3 0.023095 13 0.017718 23 0.016802 15 0.006951 24 0.00613 11 0.093164 22 0.090769 10 0.080318 0 0.079109 18 0.07093 9 0.068974 21 0.064717 17 0.062517 19 0.049273 12 0.032708 4 0.029454 16 0.02944 5 0.02879 6 0.027408 14 0.026602 8 0.024179 7 0.023973 1 0.023536 2 0.023441 3 0.023095 13 0.017718 23 0.016802 15 0.006951 24 0.00613 22 0.07923560484372187 11 0.07642112279011468 18 0.06779505360336131 10 0.06616216821829655 21 0.06556418688225754 0 0.06342171682244296 9 0.05774531745036445 17 0.05689938526076631 19 0.05524979164770976 12 0.040576277893954585 16 0.03386511710044128 14 0.029776220183092533 4 0.028170819144515843 5 0.02757781365687981 23 0.027212220342356208 6 0.02612002905156164 13 0.024993617224229516 8 0.023431380323959007 7 0.02334283890949405 1 0.023009593128632228 2 0.02272922582031565 3 0.022728921480790348 24 0.021839134366958814 20 0.01983304689947645 15 0.012508802657689215 __DUMMY__ 0.003790594296617264 false 1.0 21 21 0.067224 12 0.062021 22 0.059951 23 0.054906 18 0.054356 11 0.048751 9 0.045245 13 0.044159 19 0.043032 4 0.042032 24 0.04145 5 0.041042 6 0.039948 10 0.038929 8 0.036465 7 0.035976 1 0.035156 2 0.035011 3 0.034531 20 0.03409 0 0.033838 17 0.032814 14 0.027723 16 0.011351 21 0.067224 12 0.062021 22 0.059951 23 0.054906 18 0.054356 11 0.048751 9 0.045245 13 0.044159 19 0.043032 4 0.042032 24 0.04145 5 0.041042 6 0.039948 10 0.038929 8 0.036465 7 0.035976 1 0.035156 2 0.035011 3 0.034531 20 0.03409 0 0.033838 17 0.032814 14 0.027723 16 0.011351 21 0.07253738828636047 12 0.0700771825945731 22 0.059380246217988944 18 0.05783577577583144 11 0.05486382841039997 13 0.05316047046425587 19 0.052839392171158815 23 0.0513208393413339 24 0.04337787513834748 20 0.042579800510653715 10 0.042102311745342694 9 0.038044877862309284 17 0.03670566813710291 14 0.035934862054704045 0 0.03485901171782363 4 0.03173770874742595 5 0.03103631850072489 6 0.029810099678331245 8 0.02602890102797667 7 0.025795761362697737 1 0.025327827874470854 2 0.02511905453711951 3 0.024465842893506704 16 0.023363748412131603 15 0.008020529522942759 __DUMMY__ 0.003674677014485541 false 1.0 22 10 0.069824 18 0.069009 9 0.068029 22 0.063105 0 0.0505 17 0.047026 19 0.046036 3 0.042213 4 0.041544 15 0.041422 5 0.041024 11 0.040652 8 0.040269 7 0.040192 1 0.040007 2 0.039231 6 0.038564 14 0.037908 21 0.036848 23 0.028519 20 0.026803 16 0.023312 24 0.021725 13 0.006239 10 0.069824 18 0.069009 9 0.068029 22 0.063105 0 0.0505 17 0.047026 19 0.046036 3 0.042213 4 0.041544 15 0.041422 5 0.041024 11 0.040652 8 0.040269 7 0.040192 1 0.040007 2 0.039231 6 0.038564 14 0.037908 21 0.036848 23 0.028519 20 0.026803 16 0.023312 24 0.021725 13 0.006239 18 0.06799962224591617 22 0.06465575724429741 10 0.06343680718716178 9 0.059245050329361636 19 0.051876030332527405 0 0.048975632709169034 21 0.04886537118431149 11 0.0481676137466324 17 0.04816261549375772 14 0.03705829591734223 4 0.03536042644460382 5 0.0348308992374083 3 0.033764264557569576 8 0.0327384760579302 6 0.03271411085389683 7 0.03269984845304679 1 0.03249408752554524 15 0.032341513253831555 20 0.03233773725073074 23 0.03211393862408987 2 0.031894763728764736 16 0.02837541978321787 24 0.027841756277299585 12 0.020469656433182864 13 0.018035412041615587 __DUMMY__ 0.003544893086789214 false 1.0 23 0 0.083082 17 0.078083 10 0.06746 11 0.064121 18 0.063433 16 0.061595 22 0.055505 9 0.055068 19 0.046789 12 0.040726 21 0.037284 13 0.036878 6 0.032788 8 0.029177 7 0.02912 1 0.02906 4 0.028565 2 0.028182 5 0.027753 15 0.026217 14 0.024274 3 0.022547 23 0.019637 20 0.012658 0 0.083082 17 0.078083 10 0.06746 11 0.064121 18 0.063433 16 0.061595 22 0.055505 9 0.055068 19 0.046789 12 0.040726 21 0.037284 13 0.036878 6 0.032788 8 0.029177 7 0.02912 1 0.02906 4 0.028565 2 0.028182 5 0.027753 15 0.026217 14 0.024274 3 0.022547 23 0.019637 20 0.012658 0 0.06774202999561604 17 0.06638696154811236 18 0.0631671617444541 22 0.06094591349784283 11 0.060744087349570784 10 0.05992509112177442 9 0.0527087489168403 19 0.05154107426425156 16 0.05037979124002447 21 0.04827479689188703 12 0.04116463964521188 13 0.031872594321002985 6 0.031031859363851597 4 0.029598066922385244 5 0.028936320480869842 8 0.02822690279188488 7 0.028187873990048913 1 0.028053026687795943 23 0.027555742112380353 2 0.02738439191334159 14 0.026447235672128602 3 0.024461829459127886 20 0.023020612581011124 15 0.022523143256955615 24 0.016285150991238177 __DUMMY__ 0.0034349532403914304 false 1.0 24 0 0.091034 17 0.089019 16 0.071536 11 0.062435 22 0.057186 9 0.056568 18 0.05566 10 0.054475 19 0.044756 6 0.040082 12 0.038467 8 0.035954 7 0.035742 1 0.035728 2 0.035211 4 0.034448 5 0.033913 21 0.033006 3 0.028004 13 0.023582 23 0.021592 15 0.013466 20 0.004634 14 0.003502 0 0.091034 17 0.089019 16 0.071536 11 0.062435 22 0.057186 9 0.056568 18 0.05566 10 0.054475 19 0.044756 6 0.040082 12 0.038467 8 0.035954 7 0.035742 1 0.035728 2 0.035211 4 0.034448 5 0.033913 21 0.033006 3 0.028004 13 0.023582 23 0.021592 15 0.013466 20 0.004634 14 0.003502 17 0.07331960986737654 0 0.07315185776021835 22 0.06083075512878349 11 0.05779987927282978 18 0.056858803918515145 16 0.05626619312892983 9 0.05488976668916351 10 0.05132386109033956 19 0.04818681007088629 21 0.04289111006905476 6 0.037471853850044944 12 0.0367306979094644 4 0.035002530498132324 8 0.034573529739421675 5 0.03445629208408939 7 0.03444297871411939 1 0.034334042313753185 2 0.03381278040717596 3 0.029899470209668478 23 0.028468146667182326 13 0.02174087699609553 20 0.01644548205162059 15 0.015737874123591195 24 0.015410011864353599 14 0.012725216400416312 __DUMMY__ 0.0032295691747734295 false 1.0 25 0 0.088762 17 0.079466 9 0.06544 22 0.062651 11 0.059562 10 0.057004 18 0.054769 16 0.054158 6 0.045282 8 0.042586 7 0.042371 1 0.042117 2 0.041733 4 0.041467 5 0.040937 19 0.037461 3 0.036906 21 0.032609 12 0.023859 23 0.020973 13 0.012175 15 0.011244 14 0.00358 24 0.002888 0 0.088762 17 0.079466 9 0.06544 22 0.062651 11 0.059562 10 0.057004 18 0.054769 16 0.054158 6 0.045282 8 0.042586 7 0.042371 1 0.042117 2 0.041733 4 0.041467 5 0.040937 19 0.037461 3 0.036906 21 0.032609 12 0.023859 23 0.020973 13 0.012175 15 0.011244 14 0.00358 24 0.002888 0 0.07107448676573812 17 0.06735041731596725 22 0.06460785757815665 9 0.059021585809358804 11 0.05771628681686811 18 0.05723302534538716 10 0.053391031286542684 16 0.046201110305377775 19 0.045356125068655384 21 0.044957905437065154 6 0.038911389070643815 4 0.03761029201551797 5 0.03706415314147476 8 0.03664854967374141 7 0.036529231523053575 1 0.036297391412749895 2 0.035843153825267315 3 0.033299296012030445 12 0.0311114592895515 23 0.02816994508755703 13 0.01760663478356159 24 0.017465084961617458 20 0.014859379847868835 14 0.014318364655140532 15 0.014011265299979802 __DUMMY__ 0.0033445776711271387 false 1.0 26 10 0.098536 18 0.089289 9 0.074293 22 0.06858 0 0.058814 14 0.057093 11 0.05147 17 0.045107 21 0.044288 19 0.041821 15 0.041281 4 0.033117 5 0.032256 6 0.030434 13 0.029861 7 0.029283 8 0.029115 1 0.028911 3 0.028584 2 0.027601 23 0.025258 20 0.015441 12 0.01297 16 0.006595 10 0.098536 18 0.089289 9 0.074293 22 0.06858 0 0.058814 14 0.057093 11 0.05147 17 0.045107 21 0.044288 19 0.041821 15 0.041281 4 0.033117 5 0.032256 6 0.030434 13 0.029861 7 0.029283 8 0.029115 1 0.028911 3 0.028584 2 0.027601 23 0.025258 20 0.015441 12 0.01297 16 0.006595 18 0.07882632127572964 10 0.07566686661520862 22 0.06734821921448628 9 0.058085281985509295 21 0.05634063669814622 11 0.054703034097032525 19 0.054036055479322394 0 0.049805593130256225 14 0.04838258724497014 17 0.046323049703366245 15 0.0330269728497321 23 0.03286728081111015 13 0.03268958682209567 20 0.03226163482807044 12 0.0318153599792109 4 0.028323431499409885 5 0.027650601318112086 6 0.02554923119268539 7 0.0240192513387243 3 0.023946131379787 8 0.023927592695240845 1 0.02370879342396135 2 0.022887478349096695 16 0.022437804725923303 24 0.021528409987352327 __DUMMY__ 0.003842793355460183 false 1.0 27 10 0.081907 18 0.079837 9 0.074344 22 0.066466 0 0.051662 17 0.044924 4 0.044183 5 0.043379 14 0.042046 3 0.041226 6 0.04064 8 0.040307 1 0.040223 7 0.039985 11 0.039977 2 0.039394 15 0.039322 19 0.03773 21 0.036369 23 0.033277 20 0.015066 24 0.012425 13 0.00906 16 0.006252 10 0.081907 18 0.079837 9 0.074344 22 0.066466 0 0.051662 17 0.044924 4 0.044183 5 0.043379 14 0.042046 3 0.041226 6 0.04064 8 0.040307 1 0.040223 7 0.039985 11 0.039977 2 0.039394 15 0.039322 19 0.03773 21 0.036369 23 0.033277 20 0.015066 24 0.012425 13 0.00906 16 0.006252 18 0.07393312582816547 10 0.06736835901732878 22 0.06525480061252927 9 0.058349435898049605 19 0.05121790443859456 21 0.0507271134066686 11 0.04752210995162794 17 0.04638362732025233 0 0.046213314614921806 14 0.041229216778185855 23 0.03683297271237561 4 0.03433697775448594 5 0.03367972965914204 15 0.0336426228406364 20 0.031966325796167774 6 0.031260596049642514 3 0.03086299890455575 8 0.03021715420887701 7 0.03007240220349165 1 0.030045515475172598 2 0.029442360433247848 24 0.027175491913990702 12 0.024072394511608662 16 0.022468188067610584 13 0.022053382924330334 __DUMMY__ 0.003671878678340371 false 1.0 28 10 0.084526 18 0.081162 9 0.069039 22 0.064436 14 0.050192 0 0.048244 19 0.048181 15 0.047162 11 0.044765 17 0.04123 21 0.038445 3 0.036997 4 0.036949 5 0.036031 8 0.034704 7 0.034688 1 0.034434 2 0.03318 6 0.03285 20 0.030654 23 0.026575 24 0.017626 16 0.014095 13 0.013835 10 0.084526 18 0.081162 9 0.069039 22 0.064436 14 0.050192 0 0.048244 19 0.048181 15 0.047162 11 0.044765 17 0.04123 21 0.038445 3 0.036997 4 0.036949 5 0.036031 8 0.034704 7 0.034688 1 0.034434 2 0.03318 6 0.03285 20 0.030654 23 0.026575 24 0.017626 16 0.014095 13 0.013835 18 0.07590932677017148 10 0.07153954464558401 22 0.06531793490531032 9 0.05736512701861238 19 0.05574019708712425 21 0.05213864503443302 11 0.051211736156379035 14 0.04636196275247589 0 0.04587365889079231 17 0.04433000154400855 20 0.03794848056106055 15 0.03694866428345996 23 0.031767250382318556 4 0.030521154225156742 5 0.02982680349783141 3 0.028479887256225495 24 0.02756103810744196 6 0.02709375310671903 8 0.02707755872946155 7 0.02707259285769319 1 0.02683510480312107 2 0.02604833424798582 13 0.025062291149675023 16 0.02450291866215446 12 0.02369276318893792 __DUMMY__ 0.0037732701358660858 false 1.0 29 19 0.069841 22 0.065472 18 0.065365 20 0.058185 24 0.056483 21 0.054531 23 0.053704 10 0.049221 9 0.047555 3 0.037813 11 0.037385 4 0.03667 5 0.036269 15 0.034993 17 0.034884 14 0.034055 8 0.031935 7 0.031838 1 0.031587 2 0.031582 16 0.030736 6 0.029833 0 0.024245 12 0.015817 19 0.069841 22 0.065472 18 0.065365 20 0.058185 24 0.056483 21 0.054531 23 0.053704 10 0.049221 9 0.047555 3 0.037813 11 0.037385 4 0.03667 5 0.036269 15 0.034993 17 0.034884 14 0.034055 8 0.031935 7 0.031838 1 0.031587 2 0.031582 16 0.030736 6 0.029833 0 0.024245 12 0.015817 19 0.06769992521534496 18 0.0669170880838481 22 0.06621732722955548 21 0.06227697154367433 20 0.0531784564557728 10 0.05130010755894777 24 0.04962788321303773 11 0.048126753950645675 23 0.04706921709855051 9 0.045000174971406494 17 0.04069074909419264 14 0.03714742293656254 12 0.03377434477442789 16 0.03343648320836197 0 0.032445918684118974 4 0.03010929946874765 5 0.0296433757329413 15 0.029080276817551952 3 0.02844755086087835 8 0.02523768274690915 7 0.02521228469067554 6 0.025202958437937444 1 0.0249514921178299 2 0.02474388761814331 13 0.018370498532668658 __DUMMY__ 0.004091868957269037 false 1.0 370 22 0.069227 19 0.0679 17 0.064904 18 0.05991 21 0.057245 16 0.053629 0 0.053481 9 0.049873 11 0.048429 23 0.044275 24 0.04217 20 0.040601 10 0.036833 4 0.035982 5 0.035488 6 0.034311 7 0.03309 12 0.033049 8 0.032938 3 0.032685 1 0.03252 2 0.032419 15 0.00555 14 0.00349 22 0.069227 19 0.0679 17 0.064904 18 0.05991 21 0.057245 16 0.053629 0 0.053481 9 0.049873 11 0.048429 23 0.044275 24 0.04217 20 0.040601 10 0.036833 4 0.035982 5 0.035488 6 0.034311 7 0.03309 12 0.033049 8 0.032938 3 0.032685 1 0.03252 2 0.032419 15 0.00555 14 0.00349 22 0.06805342051675983 19 0.06634839488046157 21 0.06437399060106025 18 0.0630064075945455 17 0.05547778521541396 11 0.05423381808890875 0 0.04732223658529375 9 0.045876426863575875 16 0.04486355400604686 10 0.04425060997747564 12 0.04387623550847326 20 0.04364594623226846 23 0.042507893630874094 24 0.04246121061530988 4 0.029907865867166983 5 0.02940185186835136 6 0.027654926278832377 7 0.025943381942522045 3 0.025923539384800128 8 0.025861441652000536 1 0.02555009900952101 2 0.02530395220554829 14 0.021335334419737277 13 0.019425014163165395 15 0.012949890637941816 __DUMMY__ 0.0044447722539449714 false 1.0 371 19 0.06972 17 0.068679 22 0.066304 18 0.066269 0 0.061544 16 0.059895 9 0.054709 10 0.053714 11 0.050758 21 0.04395 20 0.037493 23 0.033791 4 0.032233 5 0.03185 6 0.031045 24 0.031035 8 0.030841 3 0.030742 7 0.030494 1 0.030268 2 0.030151 15 0.021986 12 0.01976 14 0.012768 19 0.06972 17 0.068679 22 0.066304 18 0.066269 0 0.061544 16 0.059895 9 0.054709 10 0.053714 11 0.050758 21 0.04395 20 0.037493 23 0.033791 4 0.032233 5 0.03185 6 0.031045 24 0.031035 8 0.030841 3 0.030742 7 0.030494 1 0.030268 2 0.030151 15 0.021986 12 0.01976 14 0.012768 22 0.06716339320297753 19 0.06586120706744354 18 0.06518381601884748 17 0.06011683985895147 21 0.0553747648172548 11 0.05528184586425432 0 0.05431218383508414 10 0.05200666894828544 9 0.0501810850343919 16 0.04956526013041948 20 0.03894033428023571 23 0.03624645506753765 24 0.035008078542174255 12 0.03419958770012935 4 0.029571734899517494 5 0.02910531509815817 6 0.027909375640385203 8 0.02673247447742502 7 0.026570525089985992 3 0.026535380516839766 1 0.026329535475583015 2 0.02604113146101425 14 0.0222875040780535 15 0.01990153589967026 13 0.0155438216500457 __DUMMY__ 0.0040301453453345975 false 1.0 130 9 0.063572 4 0.056995 22 0.056953 3 0.05678 5 0.056728 8 0.056297 7 0.056122 1 0.055833 2 0.055805 6 0.055715 0 0.047398 17 0.047281 23 0.041395 18 0.039773 21 0.037062 24 0.036016 10 0.033156 19 0.032939 11 0.031448 16 0.026148 20 0.019228 15 0.0147 12 0.012934 14 0.009721 9 0.063572 4 0.056995 22 0.056953 3 0.05678 5 0.056728 8 0.056297 7 0.056122 1 0.055833 2 0.055805 6 0.055715 0 0.047398 17 0.047281 23 0.041395 18 0.039773 21 0.037062 24 0.036016 10 0.033156 19 0.032939 11 0.031448 16 0.026148 20 0.019228 15 0.0147 12 0.012934 14 0.009721 22 0.061903958499298084 9 0.05786508700185612 17 0.05022082178506069 18 0.049952117749671614 0 0.04921156133792803 21 0.04786302524953963 4 0.04538355883979643 5 0.044947450958308724 6 0.043947107695557916 8 0.04336758488874232 7 0.043270197512271215 3 0.043267249152777035 19 0.04326640704702111 11 0.04321047931293543 1 0.04301782355486403 2 0.04273544225947284 10 0.041212960456306916 23 0.03898717894132419 24 0.03497073353834146 16 0.031049112073611995 12 0.025698227318339484 20 0.02525118836976832 14 0.01817550686866169 15 0.01603051901913985 13 0.011748157461468343 __DUMMY__ 0.0034465431079363706 false 1.0 372 16 0.088541 17 0.082923 0 0.069017 19 0.068622 18 0.05371 22 0.049674 11 0.04872 9 0.040093 20 0.039556 23 0.03908 10 0.037801 12 0.034186 6 0.033863 21 0.03332 8 0.032389 7 0.032285 1 0.032058 2 0.031855 4 0.030732 5 0.030291 24 0.029676 3 0.028259 15 0.024433 13 0.008917 16 0.088541 17 0.082923 0 0.069017 19 0.068622 18 0.05371 22 0.049674 11 0.04872 9 0.040093 20 0.039556 23 0.03908 10 0.037801 12 0.034186 6 0.033863 21 0.03332 8 0.032389 7 0.032285 1 0.032058 2 0.031855 4 0.030732 5 0.030291 24 0.029676 3 0.028259 15 0.024433 13 0.008917 17 0.07136185256952633 16 0.06874245239565473 19 0.06487399954591506 0 0.061690753825461186 18 0.05830166728530744 22 0.05680572073076735 11 0.05286738788210174 21 0.045435962566443465 10 0.04372911770497733 9 0.04320819860280509 12 0.03923052565987933 20 0.03827092972314768 23 0.03805251958386966 24 0.031483471864554996 6 0.030731175183021937 4 0.029483451775055444 5 0.029006883375190824 8 0.028891717525616825 7 0.028812529537913332 1 0.02859999646238548 2 0.02827541483379929 3 0.026023207449939835 15 0.021958401502082184 13 0.017753960700517872 14 0.012430214650826983 __DUMMY__ 0.003978487063238452 false 1.0 131 9 0.074775 22 0.060599 4 0.059558 5 0.059462 8 0.059162 7 0.059066 6 0.058927 1 0.058902 3 0.058551 2 0.058475 0 0.055065 17 0.049754 18 0.045025 10 0.044252 23 0.033522 21 0.032728 11 0.031185 19 0.023405 24 0.021354 16 0.017319 15 0.016289 14 0.012338 12 0.005463 20 0.004825 9 0.074775 22 0.060599 4 0.059558 5 0.059462 8 0.059162 7 0.059066 6 0.058927 1 0.058902 3 0.058551 2 0.058475 0 0.055065 17 0.049754 18 0.045025 10 0.044252 23 0.033522 21 0.032728 11 0.031185 19 0.023405 24 0.021354 16 0.017319 15 0.016289 14 0.012338 12 0.005463 20 0.004825 9 0.06396736437180182 22 0.06277727416764352 0 0.05392690186237062 18 0.05192818614345203 17 0.051830714790399836 4 0.047446665408373 5 0.04710479675966115 10 0.04707456362756621 6 0.04652585582050616 8 0.04580780644071517 7 0.04575342870672969 1 0.045570452904921746 2 0.04508614614450533 3 0.04503242377585182 21 0.04393583613609063 11 0.04250953624732973 19 0.037334713624019994 23 0.03472870398183284 16 0.026960239736158142 24 0.026470091600715364 12 0.020907795218888504 14 0.018814115044993827 15 0.017043040666674576 20 0.01696167859539476 13 0.011252525037310212 __DUMMY__ 0.0032491431860933984 false 1.0 373 17 0.085574 16 0.082167 0 0.078519 11 0.053919 19 0.051524 22 0.04896 18 0.047212 9 0.044088 12 0.042697 6 0.039931 10 0.036877 8 0.036726 7 0.036626 1 0.036503 2 0.035878 4 0.034504 23 0.03402 5 0.033936 21 0.033298 3 0.029401 13 0.022047 20 0.020779 15 0.017801 24 0.017014 17 0.085574 16 0.082167 0 0.078519 11 0.053919 19 0.051524 22 0.04896 18 0.047212 9 0.044088 12 0.042697 6 0.039931 10 0.036877 8 0.036726 7 0.036626 1 0.036503 2 0.035878 4 0.034504 23 0.03402 5 0.033936 21 0.033298 3 0.029401 13 0.022047 20 0.020779 15 0.017801 24 0.017014 17 0.07451442792441328 0 0.06889568777445351 16 0.06605480066434088 22 0.05580522796310087 11 0.0545536842565612 18 0.05353625096546151 19 0.05345520794290146 9 0.04697257757000161 10 0.04278424317754795 21 0.04239578775180599 12 0.04096509066253003 6 0.03609960207182118 23 0.03434371881944459 8 0.033395775475389515 7 0.03329999638919862 4 0.03325798929852788 1 0.03314426927342152 5 0.03271103692778607 2 0.03260190585171864 3 0.028528155005199677 20 0.02544190921776959 24 0.022849593555244175 13 0.022349335431537318 15 0.018485176664072338 14 0.01016632959608857 __DUMMY__ 0.0033922197696621666 false 1.0 132 18 0.082104 19 0.078302 22 0.068747 20 0.0632 17 0.059265 21 0.055905 24 0.050989 9 0.050651 23 0.045778 10 0.044967 16 0.04491 0 0.038923 11 0.036863 4 0.030548 5 0.030049 3 0.027727 12 0.0272 8 0.02686 6 0.026825 7 0.026339 1 0.02579 2 0.025251 15 0.018548 14 0.014258 18 0.082104 19 0.078302 22 0.068747 20 0.0632 17 0.059265 21 0.055905 24 0.050989 9 0.050651 23 0.045778 10 0.044967 16 0.04491 0 0.038923 11 0.036863 4 0.030548 5 0.030049 3 0.027727 12 0.0272 8 0.02686 6 0.026825 7 0.026339 1 0.02579 2 0.025251 15 0.018548 14 0.014258 18 0.07524332728624723 19 0.07260427880887699 22 0.06798189896139974 21 0.06388592306498062 20 0.056544525278698306 17 0.052452587376600746 10 0.04907387823769125 11 0.04836047976898472 24 0.04762039382410291 9 0.04581291711545847 23 0.043148510591824 16 0.040745689694220676 12 0.04044092825615628 0 0.03916422062354428 14 0.028325322865506354 4 0.02636966476742434 5 0.02585654099407196 6 0.02292183603706001 3 0.022740130903431875 8 0.021918105162864732 7 0.02168227676520106 15 0.021445726884829628 1 0.021285592465903377 2 0.020829156229819193 13 0.019322920119265632 __DUMMY__ 0.004223167915835751 false 1.0 374 16 0.101021 19 0.088846 17 0.084714 18 0.062223 0 0.062198 20 0.058338 22 0.052444 11 0.046589 23 0.044867 24 0.041175 21 0.037788 10 0.037193 12 0.0331 9 0.032756 15 0.029331 6 0.024249 8 0.023917 7 0.023861 1 0.023662 2 0.023447 4 0.022607 5 0.022434 3 0.021647 13 0.001595 16 0.101021 19 0.088846 17 0.084714 18 0.062223 0 0.062198 20 0.058338 22 0.052444 11 0.046589 23 0.044867 24 0.041175 21 0.037788 10 0.037193 12 0.0331 9 0.032756 15 0.029331 6 0.024249 8 0.023917 7 0.023861 1 0.023662 2 0.023447 4 0.022607 5 0.022434 3 0.021647 13 0.001595 19 0.07833692105125224 16 0.07425392482697946 17 0.06951856331740516 18 0.06408084689508813 22 0.058403163077016956 0 0.05424794318730455 20 0.05263958879157454 11 0.05224137264708039 21 0.05126999362554148 10 0.043353627045694024 23 0.04281862616339464 12 0.04200527928857081 24 0.0408672694281483 9 0.03681924624807756 15 0.025527996585466565 4 0.023185303047267125 6 0.023109220254524675 5 0.022847770853497065 8 0.021837274750211067 7 0.02180215087546814 1 0.02159201148611347 2 0.021290033309562712 3 0.020434577177667463 13 0.016922193261579368 14 0.015853144137024284 __DUMMY__ 0.0047419586684897975 false 1.0 375 11 0.10249 21 0.097539 22 0.091513 18 0.079301 19 0.075897 12 0.075581 10 0.07082 0 0.059647 17 0.053625 13 0.0486 9 0.043311 14 0.040553 16 0.03683 20 0.034497 23 0.031981 24 0.031669 4 0.008715 5 0.008387 6 0.004742 15 0.002934 3 5.52E-4 8 3.74E-4 1 3.42E-4 2 1.0E-4 11 0.10249 21 0.097539 22 0.091513 18 0.079301 19 0.075897 12 0.075581 10 0.07082 0 0.059647 17 0.053625 13 0.0486 9 0.043311 14 0.040553 16 0.03683 20 0.034497 23 0.031981 24 0.031669 4 0.008715 5 0.008387 6 0.004742 15 0.002934 3 5.52E-4 8 3.74E-4 1 3.42E-4 2 1.0E-4 21 0.08385235846770546 11 0.08084718226056163 22 0.07909369428369237 18 0.07284552147035017 19 0.07013235759507215 12 0.0645088388634504 10 0.06130103128434834 0 0.05094803342043817 17 0.05048836759809197 13 0.04310293928892054 9 0.04296355338949274 20 0.040260333432652784 14 0.03930764983325214 16 0.03680690688934922 24 0.03669946066759165 23 0.036092334429405716 4 0.01653315374475052 5 0.01610851844953898 6 0.013240006634904239 15 0.011557977986415764 3 0.01009606624784556 8 0.009922793291014895 1 0.009795911299222953 7 0.009763048056348544 2 0.009478806765440358 __DUMMY__ 0.004253154350142758 false 1.0 133 9 0.064651 22 0.058781 18 0.0548 4 0.052565 5 0.052209 3 0.050543 8 0.050473 6 0.050438 7 0.050044 1 0.049543 2 0.049263 17 0.048401 23 0.042923 0 0.042211 19 0.040963 10 0.039794 21 0.039118 24 0.036665 20 0.029088 11 0.025959 16 0.024162 15 0.019749 14 0.014598 12 0.013058 9 0.064651 22 0.058781 18 0.0548 4 0.052565 5 0.052209 3 0.050543 8 0.050473 6 0.050438 7 0.050044 1 0.049543 2 0.049263 17 0.048401 23 0.042923 0 0.042211 19 0.040963 10 0.039794 21 0.039118 24 0.036665 20 0.029088 11 0.025959 16 0.024162 15 0.019749 14 0.014598 12 0.013058 22 0.06245255657922657 18 0.06024135133493303 9 0.054541846425854405 21 0.052677130533621296 19 0.051660968853565206 17 0.048558273143360066 10 0.04598610696297402 0 0.043049470487473485 11 0.041882376297045595 23 0.041130636407028735 4 0.03934349743440723 5 0.038898435935684594 24 0.038351292542383196 6 0.037049550275036564 20 0.0363828699931246 3 0.03620645282907003 8 0.03609613499309664 7 0.035900242466165 1 0.035542460780334365 2 0.03518273001010457 16 0.030772856659691154 12 0.030743472436143938 14 0.025622687087856547 15 0.021064864522850814 13 0.016844791095978008 __DUMMY__ 0.0038169439129900743 false 1.0 134 21 0.089306 23 0.074078 12 0.073526 22 0.067606 24 0.063344 11 0.057441 19 0.054134 13 0.046992 18 0.043636 20 0.041524 4 0.036933 5 0.035195 6 0.03292 14 0.031128 9 0.029649 7 0.029012 8 0.028817 1 0.028238 17 0.02801 3 0.027283 2 0.026809 0 0.019399 10 0.017611 16 0.017409 21 0.089306 23 0.074078 12 0.073526 22 0.067606 24 0.063344 11 0.057441 19 0.054134 13 0.046992 18 0.043636 20 0.041524 4 0.036933 5 0.035195 6 0.03292 14 0.031128 9 0.029649 7 0.029012 8 0.028817 1 0.028238 17 0.02801 3 0.027283 2 0.026809 0 0.019399 10 0.017611 16 0.017409 21 0.08192421448298517 22 0.06760995258460281 12 0.0658629394560882 19 0.060940558652720515 11 0.05948581917148175 23 0.058140219691551503 18 0.055145262312397206 24 0.054462663354175773 20 0.045753368837040224 13 0.04342918384513126 17 0.03682662939796836 14 0.03509913527203222 9 0.03455171661057611 10 0.03405677105600294 4 0.029546224680043594 0 0.029469177223160895 5 0.028458005969416823 16 0.02745647799738326 6 0.026013475247837807 7 0.0228881404474964 8 0.022765876478930858 1 0.022382425072697113 3 0.022308943975863384 2 0.021517469409723086 15 0.009472975212864249 __DUMMY__ 0.004432373559828221 false 1.0 376 16 0.087871 17 0.08117 0 0.063512 19 0.05865 18 0.044796 11 0.043998 22 0.042967 23 0.041949 12 0.040411 20 0.039855 6 0.038815 8 0.037025 7 0.036886 1 0.036768 2 0.036182 24 0.035185 9 0.0349 4 0.03455 5 0.033997 21 0.031772 3 0.031373 15 0.02652 10 0.025146 13 0.015701 16 0.087871 17 0.08117 0 0.063512 19 0.05865 18 0.044796 11 0.043998 22 0.042967 23 0.041949 12 0.040411 20 0.039855 6 0.038815 8 0.037025 7 0.036886 1 0.036768 2 0.036182 24 0.035185 9 0.0349 4 0.03455 5 0.033997 21 0.031772 3 0.031373 15 0.02652 10 0.025146 13 0.015701 17 0.07381016718487539 16 0.07072040447191591 0 0.06254117046789928 19 0.05710913414246591 22 0.05233799994330245 18 0.05223486760099959 11 0.04930295376295668 9 0.0423811659472315 21 0.04043161292718687 12 0.039247806091625356 23 0.03804541879160196 10 0.036755446748966 6 0.0357479370393723 20 0.03453340365044778 8 0.03372522423676236 7 0.033604667582353 1 0.03345348165490017 4 0.033248016072755834 2 0.03292424080751823 5 0.03270851258573851 24 0.031137575826875735 3 0.029469813770210757 15 0.0233571534802128 13 0.018515217201919322 14 0.009241577093464487 __DUMMY__ 0.0034150309164419105 false 1.0 135 23 0.085441 12 0.069293 24 0.066406 21 0.065426 13 0.049177 4 0.048164 6 0.047276 5 0.047201 20 0.046612 7 0.044284 8 0.044137 1 0.043877 2 0.042859 19 0.042264 3 0.04161 22 0.03982 11 0.028883 16 0.02766 17 0.025386 18 0.025225 14 0.023238 9 0.020944 0 0.014522 15 0.010298 23 0.085441 12 0.069293 24 0.066406 21 0.065426 13 0.049177 4 0.048164 6 0.047276 5 0.047201 20 0.046612 7 0.044284 8 0.044137 1 0.043877 2 0.042859 19 0.042264 3 0.04161 22 0.03982 11 0.028883 16 0.02766 17 0.025386 18 0.025225 14 0.023238 9 0.020944 0 0.014522 15 0.010298 21 0.07138643645553751 12 0.06394238528219212 23 0.06365918140499893 24 0.05617156454854491 19 0.055509689933978486 22 0.05517523960787923 20 0.04780401445408372 11 0.046519335190799246 18 0.046238014925342893 13 0.044038688015252625 17 0.035564197368970284 4 0.0348731793031843 5 0.03414402028072059 6 0.03275157258361879 16 0.03210524978010129 14 0.030992473838503898 9 0.03056727515374502 7 0.030056734659119157 8 0.029943959752604048 1 0.029715471793304023 3 0.02905907351413372 2 0.029033211327809873 0 0.027183608911292383 10 0.025400228483071465 15 0.01357581131319516 __DUMMY__ 0.004589382118016533 false 1.0 377 17 0.085255 0 0.08084 16 0.075645 9 0.051098 11 0.050687 22 0.050211 18 0.045798 6 0.044974 19 0.04394 8 0.042197 7 0.042121 1 0.041971 2 0.041309 4 0.03963 10 0.039323 5 0.038888 3 0.035113 12 0.031713 23 0.02971 21 0.027345 15 0.021903 13 0.015106 20 0.013074 24 0.012149 17 0.085255 0 0.08084 16 0.075645 9 0.051098 11 0.050687 22 0.050211 18 0.045798 6 0.044974 19 0.04394 8 0.042197 7 0.042121 1 0.041971 2 0.041309 4 0.03963 10 0.039323 5 0.038888 3 0.035113 12 0.031713 23 0.02971 21 0.027345 15 0.021903 13 0.015106 20 0.013074 24 0.012149 17 0.07369096749763823 0 0.06967570435948259 16 0.06128248239318766 22 0.056219192973548056 18 0.05204185926411428 9 0.05173240836206318 11 0.05147085286866059 19 0.04806553595370995 10 0.043658083296005526 6 0.03999138735290999 21 0.038213927531626696 8 0.03768607206332824 7 0.03760364971977028 1 0.03743062773624276 4 0.03726251317139828 2 0.036848599956495365 5 0.03662104678676914 12 0.033189189852499704 3 0.03305865212740056 23 0.03214211004285125 15 0.020930472280066347 20 0.02053108810313136 24 0.020321638606788803 13 0.01730218959544487 14 0.009902038012329355 __DUMMY__ 0.0031277100925369435 false 1.0 136 19 0.07614 23 0.070095 16 0.064683 20 0.061658 18 0.059944 17 0.056891 24 0.051655 22 0.044986 4 0.038573 5 0.037918 6 0.036892 7 0.036801 8 0.036677 1 0.036443 21 0.036206 9 0.035945 3 0.035924 2 0.035164 0 0.032897 15 0.031318 10 0.029793 12 0.024283 11 0.020158 14 0.008957 19 0.07614 23 0.070095 16 0.064683 20 0.061658 18 0.059944 17 0.056891 24 0.051655 22 0.044986 4 0.038573 5 0.037918 6 0.036892 7 0.036801 8 0.036677 1 0.036443 21 0.036206 9 0.035945 3 0.035924 2 0.035164 0 0.032897 15 0.031318 10 0.029793 12 0.024283 11 0.020158 14 0.008957 19 0.07000343176156834 18 0.06302874621294595 22 0.05575700595794277 23 0.05538006903901549 20 0.05436927542659441 21 0.053734863331976045 17 0.05123017493435548 16 0.05000811495568132 24 0.0474163647791152 10 0.04062415746272166 11 0.03986735050957064 12 0.039440613577375876 9 0.038743525149472595 0 0.036609398857139035 4 0.03128590112937374 5 0.030709318834105503 6 0.029030298773615695 7 0.027885250149609537 8 0.027806679677546364 3 0.027636945379440753 1 0.027587618176832977 2 0.026778189602003854 15 0.02658748264350226 14 0.024679095404508036 13 0.01968317245564763 __DUMMY__ 0.004116955818338952 false 1.0 378 17 0.083762 16 0.08326 0 0.075824 19 0.051803 11 0.050402 22 0.046379 18 0.045952 9 0.042783 12 0.042285 6 0.040643 8 0.037716 7 0.037635 1 0.03742 2 0.037027 23 0.035538 10 0.035382 4 0.035235 5 0.034784 21 0.031346 3 0.030817 20 0.02422 13 0.021852 24 0.019007 15 0.018928 17 0.083762 16 0.08326 0 0.075824 19 0.051803 11 0.050402 22 0.046379 18 0.045952 9 0.042783 12 0.042285 6 0.040643 8 0.037716 7 0.037635 1 0.03742 2 0.037027 23 0.035538 10 0.035382 4 0.035235 5 0.034784 21 0.031346 3 0.030817 20 0.02422 13 0.021852 24 0.019007 15 0.018928 17 0.07465405432503922 0 0.06843760377330249 16 0.06771178906528773 22 0.05405432805733456 19 0.053266028046178866 18 0.05255877358471266 11 0.0524739590856935 9 0.046441214321422876 10 0.041724923926835175 21 0.04034285508294576 12 0.04021434600232987 6 0.03691864552202902 23 0.03490007070070131 8 0.034341581667162155 7 0.034247452146133575 1 0.03405272094876724 4 0.03388860438283883 2 0.03361205187379476 5 0.03339588722727006 3 0.02949324566144871 20 0.02653241129112386 24 0.023200493871841647 13 0.02168095807470716 15 0.01926011549648608 14 0.009275118183790157 __DUMMY__ 0.00332076768082257 false 1.0 137 19 0.12715 16 0.113091 20 0.087189 18 0.086808 17 0.082929 22 0.062016 11 0.053932 10 0.053384 21 0.052792 0 0.050956 23 0.050879 24 0.049915 15 0.040891 12 0.03695 9 0.023955 14 0.016035 5 0.003718 4 0.003329 3 0.001742 6 9.17E-4 13 6.42E-4 1 3.32E-4 7 3.24E-4 8 1.22E-4 19 0.12715 16 0.113091 20 0.087189 18 0.086808 17 0.082929 22 0.062016 11 0.053932 10 0.053384 21 0.052792 0 0.050956 23 0.050879 24 0.049915 15 0.040891 12 0.03695 9 0.023955 14 0.016035 5 0.003718 4 0.003329 3 0.001742 6 9.17E-4 13 6.42E-4 1 3.32E-4 7 3.24E-4 8 1.22E-4 19 0.09724883744699542 18 0.07688958803967035 16 0.07500317617522799 20 0.0698919774072899 22 0.06378901025757855 17 0.06369985102202046 21 0.06302751711304251 11 0.05623806149806306 10 0.05138454311744063 24 0.04864339374545986 12 0.0472399781121667 23 0.047225262657846975 0 0.04388681282271544 15 0.0318025751636344 9 0.03101389313592183 14 0.028659053294169137 13 0.02068880454147363 4 0.012775469590968107 5 0.01269256839455689 6 0.010020147179481135 3 0.009638740257518642 7 0.008645959707642911 8 0.00853403088178953 1 0.008510002938879936 2 0.008174799210514288 __DUMMY__ 0.004675946287931841 false 1.0 379 16 0.086519 17 0.081947 0 0.066765 19 0.056179 18 0.045077 22 0.043221 11 0.043197 6 0.040271 23 0.03957 8 0.038394 7 0.038289 9 0.038134 1 0.038048 2 0.037766 12 0.036963 20 0.035878 4 0.035754 5 0.035292 3 0.032815 24 0.031036 21 0.029061 10 0.028479 15 0.026978 13 0.014366 16 0.086519 17 0.081947 0 0.066765 19 0.056179 18 0.045077 22 0.043221 11 0.043197 6 0.040271 23 0.03957 8 0.038394 7 0.038289 9 0.038134 1 0.038048 2 0.037766 12 0.036963 20 0.035878 4 0.035754 5 0.035292 3 0.032815 24 0.031036 21 0.029061 10 0.028479 15 0.026978 13 0.014366 17 0.07393463683928177 16 0.06964927095718942 0 0.0640688010845097 19 0.055734726731553566 22 0.052528813005447594 18 0.05230818079912833 11 0.04899340404936673 9 0.04407227090959232 21 0.039240095994678495 10 0.03843338756514221 12 0.0376352614879635 23 0.036913313632895746 6 0.0365523653796762 8 0.034487396135584526 7 0.03438317422111491 1 0.034174574566408836 4 0.03395361816522811 2 0.03378537885917158 5 0.033455223869041976 20 0.03241471053624732 3 0.030278599207183173 24 0.02904019561429144 15 0.02327248968720705 13 0.017971983376398912 14 0.009250751889926868 __DUMMY__ 0.003467375435769826 false 1.0 138 22 0.084846 21 0.068638 11 0.067993 9 0.066384 18 0.062175 0 0.060233 17 0.057353 19 0.055133 10 0.055111 4 0.035693 5 0.034941 6 0.032596 12 0.032411 3 0.031421 7 0.03085 8 0.03075 1 0.030656 24 0.030402 2 0.030124 16 0.029026 23 0.027027 20 0.019046 14 0.017916 13 0.009276 22 0.084846 21 0.068638 11 0.067993 9 0.066384 18 0.062175 0 0.060233 17 0.057353 19 0.055133 10 0.055111 4 0.035693 5 0.034941 6 0.032596 12 0.032411 3 0.031421 7 0.03085 8 0.03075 1 0.030656 24 0.030402 2 0.030124 16 0.029026 23 0.027027 20 0.019046 14 0.017916 13 0.009276 22 0.07624867677188027 21 0.06872064195689727 11 0.06389926566158324 18 0.06356494953064643 19 0.058911696862927264 9 0.05530124114992816 17 0.053114009587161115 10 0.053009635849281346 0 0.05232961658460366 12 0.0416846621283027 24 0.035505483957363644 23 0.03339505298547797 16 0.033104932510615276 20 0.030925401626361204 4 0.03081806442785945 5 0.0301790617384749 6 0.028039330039702232 14 0.026404821675585242 3 0.026362587401435093 7 0.026084301762143228 8 0.026028752797589205 1 0.025859407434346005 2 0.025382685395965134 13 0.02173235118047955 15 0.009328855509054892 __DUMMY__ 0.004064513474335436 false 1.0 139 21 0.100022 12 0.089518 23 0.074344 13 0.070036 22 0.064728 11 0.064327 24 0.063277 14 0.042428 19 0.041413 4 0.036992 6 0.035035 5 0.034981 7 0.031219 1 0.03006 8 0.029889 20 0.029382 2 0.028764 3 0.027272 18 0.025812 17 0.022537 9 0.021558 0 0.017412 16 0.012834 15 0.006161 21 0.100022 12 0.089518 23 0.074344 13 0.070036 22 0.064728 11 0.064327 24 0.063277 14 0.042428 19 0.041413 4 0.036992 6 0.035035 5 0.034981 7 0.031219 1 0.03006 8 0.029889 20 0.029382 2 0.028764 3 0.027272 18 0.025812 17 0.022537 9 0.021558 0 0.017412 16 0.012834 15 0.006161 21 0.08740794907397632 12 0.07312174553917523 22 0.0668230231130713 11 0.06293494179994708 23 0.0579862481136507 19 0.054813069084519925 24 0.05444711974513731 13 0.05390592418060502 18 0.04666819758224872 14 0.04032127631408529 20 0.03957589465913 17 0.03415497092547046 9 0.031231517968287603 4 0.02971239119563419 0 0.028645070374286298 5 0.02849648646518352 6 0.027081015515289512 10 0.025766618504363337 16 0.024760060636276834 7 0.02402058014016933 8 0.02336621624870056 1 0.023337342640568283 2 0.022533366861599236 3 0.02246695005029191 15 0.011884508406561209 __DUMMY__ 0.004537514861770656 false 1.0 30 10 0.102727 18 0.086739 9 0.078159 22 0.071133 14 0.062278 0 0.060386 11 0.055592 15 0.045963 17 0.043604 21 0.042954 19 0.04074 4 0.033203 5 0.032504 3 0.030994 6 0.029733 8 0.029497 7 0.029237 1 0.029042 2 0.028688 13 0.026925 20 0.015 23 0.013663 12 0.00649 16 0.004751 10 0.102727 18 0.086739 9 0.078159 22 0.071133 14 0.062278 0 0.060386 11 0.055592 15 0.045963 17 0.043604 21 0.042954 19 0.04074 4 0.033203 5 0.032504 3 0.030994 6 0.029733 8 0.029497 7 0.029237 1 0.029042 2 0.028688 13 0.026925 20 0.015 23 0.013663 12 0.00649 16 0.004751 10 0.07997865799971088 18 0.07883584834949128 22 0.06830683054566826 9 0.06121206074571378 11 0.056280424971542765 21 0.05404711997174154 19 0.052908388771551296 14 0.051711711026324124 0 0.051613020373617154 17 0.04592664757268119 15 0.036620396494295784 20 0.03120226279629598 13 0.030946907606542222 4 0.028455381029314792 5 0.027858419897334806 12 0.02680989577576505 23 0.026011644142074 6 0.02535774766935726 3 0.02532551655899477 8 0.024349592435347806 7 0.02423188571620772 1 0.02401478677019533 2 0.023638557016027247 16 0.02104264395766353 24 0.01952862357323611 __DUMMY__ 0.003785028233305229 false 1.0 31 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.05647271290545149 4 0.05537155826494784 5 0.05499261602268552 6 0.0549373032424618 1 0.054761530908075444 7 0.05464559805420549 8 0.05450417862497626 2 0.05389110273177944 3 0.05349387483607181 22 0.0511310275646535 23 0.04595193616946351 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235916 24 0.03512905609660305 10 0.031741523468311016 11 0.03122696784021763 19 0.030683059987402877 16 0.026302599497096766 12 0.02217931306520858 20 0.020816584766715905 15 0.01673716051990459 14 0.013559119680263396 13 0.011489784582152628 __DUMMY__ 0.002947040178359979 false 1.0 32 9 0.067434 3 0.060684 4 0.060261 8 0.059959 7 0.059854 5 0.059713 1 0.059607 2 0.059014 6 0.058559 22 0.053095 0 0.044332 17 0.042369 23 0.04018 18 0.039728 10 0.038656 24 0.031104 21 0.029716 15 0.029174 19 0.026648 11 0.022981 16 0.020355 14 0.01957 20 0.015853 12 0.001154 9 0.067434 3 0.060684 4 0.060261 8 0.059959 7 0.059854 5 0.059713 1 0.059607 2 0.059014 6 0.058559 22 0.053095 0 0.044332 17 0.042369 23 0.04018 18 0.039728 10 0.038656 24 0.031104 21 0.029716 15 0.029174 19 0.026648 11 0.022981 16 0.020355 14 0.01957 20 0.015853 12 0.001154 9 0.062118817404060556 22 0.05764940912091067 4 0.050845011289461804 5 0.05028199554871788 8 0.049578093345005715 3 0.04955274930566492 7 0.04952236003626688 6 0.04942534045157622 1 0.04930893216130957 2 0.048719292180153424 0 0.04801283731648231 18 0.04736956564338791 17 0.04724634670182078 10 0.04299290504580637 21 0.03919732026163955 23 0.038567139458879365 19 0.03586486725757485 11 0.03501866301986378 24 0.030913551807505983 16 0.02645458658370762 15 0.023800889618295396 14 0.020859207651568675 20 0.020595116180841127 12 0.014837206083655706 13 0.008345982948601463 __DUMMY__ 0.002921813577241346 false 1.0 33 9 0.065785 22 0.05938 0 0.052328 3 0.051421 4 0.051159 8 0.05088 17 0.050798 7 0.050725 1 0.050649 5 0.050493 2 0.04994 6 0.049595 18 0.047777 10 0.045559 19 0.037668 11 0.03674 21 0.035544 23 0.034153 16 0.029794 24 0.029732 15 0.025758 20 0.019639 14 0.018493 12 0.005988 9 0.065785 22 0.05938 0 0.052328 3 0.051421 4 0.051159 8 0.05088 17 0.050798 7 0.050725 1 0.050649 5 0.050493 2 0.04994 6 0.049595 18 0.047777 10 0.045559 19 0.037668 11 0.03674 21 0.035544 23 0.034153 16 0.029794 24 0.029732 15 0.025758 20 0.019639 14 0.018493 12 0.005988 22 0.06241769872791289 9 0.06108830571286478 0 0.053613991176615375 18 0.05313962230532869 17 0.05307415289623656 10 0.04794680236036002 11 0.04442635050416938 4 0.04432574758305808 21 0.043794445413906764 5 0.0437000406162157 19 0.04343484707229106 6 0.04300426930734626 8 0.04292905947747058 7 0.042829118974104054 3 0.04271010317510903 1 0.0426741472183194 2 0.042064364675518426 23 0.03429704784673393 16 0.03287196145880214 24 0.029564951709016834 20 0.022789317524687908 15 0.021631933105633477 14 0.02064213797011725 12 0.018737134629623477 13 0.009084181785616085 __DUMMY__ 0.003208266772941743 false 1.0 34 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06430003975141012 22 0.062224370566640916 0 0.05419341740977507 17 0.052107011201893816 18 0.05195478788548156 4 0.0477066530400945 10 0.04687708775104715 5 0.04682020725427285 6 0.04678071826154534 7 0.04604369490903592 8 0.04596763513234561 1 0.04580574882161412 2 0.044778262336678844 3 0.04472873255387257 21 0.04395311346300561 11 0.04268613240957293 19 0.03730307071518755 23 0.03505017175747236 16 0.026952345431561994 24 0.026595895339822567 12 0.02063296412293642 14 0.018657607500438624 20 0.017119617017444855 15 0.01625903363228592 13 0.01125253552125253 __DUMMY__ 0.0032491462133099223 false 1.0 35 22 0.078423 9 0.063741 21 0.059241 11 0.05492 18 0.050686 19 0.048249 0 0.047055 17 0.046444 10 0.045688 4 0.04325 5 0.04299 3 0.042618 24 0.039933 8 0.039659 7 0.039527 1 0.03916 2 0.039047 6 0.038972 23 0.033645 16 0.026101 14 0.025143 20 0.021218 15 0.018512 12 0.01578 22 0.078423 9 0.063741 21 0.059241 11 0.05492 18 0.050686 19 0.048249 0 0.047055 17 0.046444 10 0.045688 4 0.04325 5 0.04299 3 0.042618 24 0.039933 8 0.039659 7 0.039527 1 0.03916 2 0.039047 6 0.038972 23 0.033645 16 0.026101 14 0.025143 20 0.021218 15 0.018512 12 0.01578 22 0.07290402399074992 21 0.06202280459416137 18 0.05673639897637651 11 0.05626261033305313 9 0.05541709147713637 19 0.054118258930440206 17 0.04858775033949754 10 0.04757169494544145 0 0.04684558572055209 24 0.03945658852914977 23 0.036507853512430265 4 0.036244984648795206 5 0.035825610339241844 3 0.033766291306853886 6 0.033009909164856764 8 0.032380125774895366 7 0.03232494720896238 1 0.032012898181439875 16 0.031791143047658746 2 0.031713387853620496 12 0.030736250898799194 20 0.030155315518654018 14 0.027686237385164843 15 0.01790328374859633 13 0.01424764751416048 __DUMMY__ 0.0037713060593120174 false 1.0 36 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.05647271290545149 4 0.05537155826494784 5 0.05499261602268552 6 0.0549373032424618 1 0.054761530908075444 7 0.05464559805420549 8 0.05450417862497626 2 0.05389110273177944 3 0.05349387483607181 22 0.0511310275646535 23 0.04595193616946351 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235917 24 0.035129056096603065 10 0.031741523468311016 11 0.03122696784021763 19 0.030683059987402877 16 0.026302599497096766 12 0.02217931306520858 20 0.020816584766715905 15 0.01673716051990459 14 0.013559119680263396 13 0.011489784582152628 __DUMMY__ 0.002947040178359979 false 1.0 37 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.0564727129054515 4 0.05537155826494785 5 0.05499261602268553 6 0.05493730324246181 1 0.05476153090807546 7 0.0546455980542055 8 0.054504178624976266 2 0.053891102731779446 3 0.05349387483607182 22 0.051131027564653514 23 0.04595193616946352 17 0.0455833478309345 0 0.04430596949022618 18 0.03970495635947152 21 0.03744007731235916 24 0.035129056096603065 10 0.03174152346831101 11 0.031226967840217626 19 0.03068305998740288 16 0.02630259949709677 12 0.02217931306520858 20 0.02081658476671591 15 0.016737160519904593 14 0.013559119680263397 13 0.011489784582152626 __DUMMY__ 0.0029470401783599793 false 1.0 38 9 0.067885 3 0.060218 4 0.060119 8 0.059868 7 0.059817 1 0.059611 5 0.059124 2 0.058566 6 0.058413 22 0.052612 0 0.043924 17 0.042986 23 0.040562 18 0.040217 10 0.038504 24 0.031399 21 0.02974 15 0.028869 19 0.026685 11 0.023305 16 0.020263 14 0.019705 20 0.016287 12 0.001318 9 0.067885 3 0.060218 4 0.060119 8 0.059868 7 0.059817 1 0.059611 5 0.059124 2 0.058566 6 0.058413 22 0.052612 0 0.043924 17 0.042986 23 0.040562 18 0.040217 10 0.038504 24 0.031399 21 0.02974 15 0.028869 19 0.026685 11 0.023305 16 0.020263 14 0.019705 20 0.016287 12 0.001318 9 0.06232579960972259 22 0.057427911713686275 4 0.050779938618831615 5 0.050011860392907156 8 0.04953641523329647 7 0.04950545440346465 6 0.049358430823000385 3 0.04933903952289434 1 0.049310835026999074 2 0.0485138387688716 0 0.04782573297413249 18 0.0475939600894797 17 0.047529461110148746 10 0.042923234058392525 21 0.03920838423178828 23 0.03874243543041445 19 0.03588189040481246 11 0.03516734654806781 24 0.031048925906173308 16 0.026412417897170932 15 0.02366100331024896 14 0.020921167748143003 20 0.020794242471874162 12 0.014912461672296476 13 0.00834599443478628 __DUMMY__ 0.002921817598396309 false 1.0 39 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.0564727129054515 4 0.05537155826494785 5 0.05499261602268553 6 0.05493730324246181 1 0.05476153090807546 7 0.0546455980542055 8 0.054504178624976266 2 0.053891102731779446 3 0.05349387483607182 22 0.051131027564653514 23 0.04595193616946352 17 0.0455833478309345 0 0.04430596949022618 18 0.03970495635947152 21 0.03744007731235916 24 0.035129056096603065 10 0.03174152346831101 11 0.031226967840217626 19 0.03068305998740288 16 0.02630259949709677 12 0.02217931306520858 20 0.02081658476671591 15 0.016737160519904593 14 0.013559119680263397 13 0.011489784582152626 __DUMMY__ 0.0029470401783599793 false 1.0 380 17 0.062772 0 0.055073 9 0.054091 16 0.052984 22 0.051045 8 0.05036 7 0.050202 1 0.049957 6 0.049869 2 0.049704 4 0.048984 3 0.048901 5 0.048488 19 0.041979 18 0.041224 23 0.037325 24 0.03362 11 0.033464 15 0.030996 10 0.030828 21 0.029192 20 0.026769 12 0.013244 14 0.008929 17 0.062772 0 0.055073 9 0.054091 16 0.052984 22 0.051045 8 0.05036 7 0.050202 1 0.049957 6 0.049869 2 0.049704 4 0.048984 3 0.048901 5 0.048488 19 0.041979 18 0.041224 23 0.037325 24 0.03362 11 0.033464 15 0.030996 10 0.030828 21 0.029192 20 0.026769 12 0.013244 14 0.008929 17 0.05889717187421561 22 0.05810176303474855 9 0.05420575584526105 0 0.05392755432527348 18 0.05010129171495719 19 0.04652345689685074 16 0.04507906853571338 11 0.0425695174791759 4 0.04245035876025167 6 0.04228303133933717 5 0.0419013908129327 8 0.04181362676077128 7 0.0417012586407983 1 0.04146721316107826 21 0.04129921218859967 2 0.04107811426654055 3 0.040636786624125204 10 0.03996444566014091 23 0.03634672891225577 24 0.03274024716045163 20 0.027860745009638106 15 0.025587473541721074 12 0.023195379231069162 14 0.01701578375939776 13 0.009915336887441763 __DUMMY__ 0.003337287577252985 false 1.0 381 14 0.121546 15 0.115736 18 0.103513 10 0.0958 20 0.078475 13 0.070326 19 0.065983 21 0.048858 22 0.046931 11 0.037723 9 0.035245 12 0.03344 24 0.033384 23 0.029969 17 0.028001 16 0.022168 0 0.015603 4 0.005584 5 0.004961 3 0.003658 7 0.00105 6 8.56E-4 8 8.24E-4 1 3.65E-4 14 0.121546 15 0.115736 18 0.103513 10 0.0958 20 0.078475 13 0.070326 19 0.065983 21 0.048858 22 0.046931 11 0.037723 9 0.035245 12 0.03344 24 0.033384 23 0.029969 17 0.028001 16 0.022168 0 0.015603 4 0.005584 5 0.004961 3 0.003658 7 0.00105 6 8.56E-4 8 8.24E-4 1 3.65E-4 18 0.08767431489042012 14 0.0840614063314385 10 0.07560704814629426 15 0.0731249618521508 19 0.06739030534292613 20 0.06672078431824421 21 0.05896647081692197 13 0.05631159045112248 22 0.055092594212965425 11 0.047019109451796944 12 0.0438677228859683 24 0.03868838951024201 9 0.03691101589594732 17 0.03652127735173733 23 0.03572117720932897 16 0.030103289195450134 0 0.026356619157490577 4 0.01297772879583072 5 0.01243707134802928 3 0.009840242814689504 6 0.009083976521378889 7 0.008172974330513862 8 0.008066113934288362 1 0.007727102508249868 2 0.0073870997015542585 __DUMMY__ 0.0041696130250197 false 1.0 382 14 0.163422 15 0.157877 13 0.106301 10 0.099061 18 0.091877 20 0.064255 19 0.043821 21 0.041993 12 0.036805 22 0.034854 11 0.03414 9 0.032247 23 0.021868 24 0.021566 17 0.016399 16 0.010496 0 0.009276 4 0.004635 5 0.004557 3 0.002316 6 0.001113 8 5.17E-4 1 3.76E-4 7 2.25E-4 14 0.163422 15 0.157877 13 0.106301 10 0.099061 18 0.091877 20 0.064255 19 0.043821 21 0.041993 12 0.036805 22 0.034854 11 0.03414 9 0.032247 23 0.021868 24 0.021566 17 0.016399 16 0.010496 0 0.009276 4 0.004635 5 0.004557 3 0.002316 6 0.001113 8 5.17E-4 1 3.76E-4 7 2.25E-4 14 0.10568313162863713 15 0.09424356523004124 18 0.08082128361021584 13 0.07639913009593369 10 0.07570404333738777 20 0.060127952808287935 21 0.05608819108615111 19 0.055695269901872686 22 0.04814883233424345 12 0.047651061601578656 11 0.044785902465070374 9 0.03417358456919399 24 0.033657525406756914 23 0.03261887955206098 17 0.029922617335524915 16 0.02399523855382873 0 0.022056533708643675 4 0.012581874330557822 5 0.012301914600166388 6 0.009383841617079123 3 0.0090232723728253 8 0.007922921679330402 7 0.007775937845232346 1 0.007727704931991417 2 0.007394655330554165 __DUMMY__ 0.004115134066833963 false 1.0 140 9 0.075762 4 0.060201 1 0.059654 5 0.059591 7 0.059584 6 0.05956 8 0.059532 22 0.059023 3 0.058339 2 0.058259 0 0.055137 17 0.050124 18 0.04401 10 0.043377 23 0.033493 21 0.03248 11 0.03122 19 0.023049 24 0.021717 16 0.01741 15 0.015883 14 0.012315 12 0.005626 20 0.004653 9 0.075762 4 0.060201 1 0.059654 5 0.059591 7 0.059584 6 0.05956 8 0.059532 22 0.059023 3 0.058339 2 0.058259 0 0.055137 17 0.050124 18 0.04401 10 0.043377 23 0.033493 21 0.03248 11 0.03122 19 0.023049 24 0.021717 16 0.01741 15 0.015883 14 0.012315 12 0.005626 20 0.004653 9 0.06442721637371603 22 0.062043155526065895 0 0.05396049319309766 17 0.05200312700125571 18 0.051455398364925166 4 0.04774625015692969 5 0.04716493509495547 6 0.04682078122681389 10 0.046666990107604125 7 0.04599478082353367 8 0.045980213040046215 1 0.045920813384652794 2 0.044985564889521774 3 0.044933705864548736 21 0.043820346659499486 11 0.04252588054849888 19 0.03716890636638136 23 0.03471522673389024 16 0.02700265706236433 24 0.026639219244124577 12 0.020983747993252644 14 0.018803418060078705 20 0.01688156846800052 15 0.01685392208168009 13 0.011252535521252527 __DUMMY__ 0.003249146213309924 false 1.0 141 9 0.059445 3 0.056799 4 0.054038 7 0.053594 8 0.053509 5 0.05328 1 0.053223 2 0.052778 6 0.050539 22 0.05024 18 0.045587 10 0.044113 23 0.043443 15 0.041903 24 0.041368 19 0.035934 17 0.034105 0 0.033651 20 0.032596 14 0.032067 21 0.030801 11 0.025587 16 0.019848 13 0.001553 9 0.059445 3 0.056799 4 0.054038 7 0.053594 8 0.053509 5 0.05328 1 0.053223 2 0.052778 6 0.050539 22 0.05024 18 0.045587 10 0.044113 23 0.043443 15 0.041903 24 0.041368 19 0.035934 17 0.034105 0 0.033651 20 0.032596 14 0.032067 21 0.030801 11 0.025587 16 0.019848 13 0.001553 22 0.058349523788007 18 0.05770152770393534 9 0.05290764879931105 10 0.050411932977051474 19 0.049631824056741984 21 0.04790588805772428 17 0.04099420449292764 11 0.040894105423483526 23 0.040706290222379184 24 0.03988245735992506 4 0.039749456536983564 3 0.03914409073218013 5 0.039115636639114285 20 0.038832772366160805 0 0.0384732316576646 7 0.03726406372752092 8 0.037222332494520075 1 0.0369647019715167 6 0.0365862447770258 2 0.03654482713163695 14 0.035829154025590365 15 0.033604840777045564 16 0.027524670721236794 12 0.022610319781898168 13 0.017221615587979973 __DUMMY__ 0.003926638190438788 false 1.0 383 15 0.1606 14 0.147302 10 0.088733 18 0.088646 13 0.068532 20 0.066116 19 0.041342 9 0.041224 22 0.035707 23 0.032538 24 0.031697 21 0.029272 3 0.01972 4 0.018491 5 0.018219 11 0.015414 8 0.015333 7 0.014918 1 0.014739 2 0.014534 17 0.013845 6 0.012852 12 0.005211 16 0.005015 15 0.1606 14 0.147302 10 0.088733 18 0.088646 13 0.068532 20 0.066116 19 0.041342 9 0.041224 22 0.035707 23 0.032538 24 0.031697 21 0.029272 3 0.01972 4 0.018491 5 0.018219 11 0.015414 8 0.015333 7 0.014918 1 0.014739 2 0.014534 17 0.013845 6 0.012852 12 0.005211 16 0.005015 15 0.0977537783573054 14 0.09756595785494457 18 0.08070027574490891 10 0.07206082305870416 20 0.061960888776186315 19 0.05542930152819904 13 0.05518154056929338 22 0.04825497391824598 21 0.04765155322662752 9 0.03927476816470532 24 0.0381662232807552 23 0.037181422471044466 11 0.03442528112199271 17 0.02973589169293829 12 0.02888709251892554 16 0.022599911016708413 4 0.019274422346158816 5 0.0189016922037998 0 0.017990776646639114 3 0.017859211878504977 8 0.015321993004423344 7 0.015121819519945609 6 0.015000133173711568 1 0.014910754023652807 2 0.014652034525829544 __DUMMY__ 0.004137479375849342 false 1.0 384 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.08173139725377185 21 0.0747814299364694 19 0.07256813993247596 10 0.07170313114316186 22 0.06995690817685628 11 0.06880531670887126 12 0.057848708464817704 14 0.050030746245390896 20 0.049919643974429086 17 0.04946103286857874 0 0.04814581462297257 13 0.04777103106494228 9 0.04377044044418885 16 0.037793540370397276 24 0.03312738643024186 23 0.032032255805693216 15 0.025459533761028424 4 0.013929304398159342 5 0.013516943485360212 6 0.011117196479669961 3 0.008798205676985082 7 0.008564835381216362 8 0.00845070086408699 1 0.00833129435819226 2 0.007931215662356578 __DUMMY__ 0.004453846489685776 false 1.0 142 19 0.108304 21 0.107862 20 0.094267 18 0.089012 22 0.084129 24 0.079354 12 0.064295 23 0.062577 11 0.050989 10 0.050576 14 0.04471 9 0.034792 13 0.028366 17 0.026789 16 0.025732 5 0.011414 4 0.010929 3 0.00853 15 0.008345 0 0.007432 8 6.13E-4 6 5.13E-4 7 4.57E-4 2 1.2E-5 19 0.108304 21 0.107862 20 0.094267 18 0.089012 22 0.084129 24 0.079354 12 0.064295 23 0.062577 11 0.050989 10 0.050576 14 0.04471 9 0.034792 13 0.028366 17 0.026789 16 0.025732 5 0.011414 4 0.010929 3 0.00853 15 0.008345 0 0.007432 8 6.13E-4 6 5.13E-4 7 4.57E-4 2 1.2E-5 21 0.09050408785633371 19 0.08774803809472825 18 0.07807444153730912 22 0.07523359604202758 20 0.07251503440710408 24 0.062465432459576475 12 0.06082972519662966 11 0.05583383286183039 23 0.05239830596450905 10 0.05074073602807283 14 0.04309013858631614 9 0.03673706097815188 17 0.03605982177294356 13 0.03465794084577779 16 0.03165081392654018 0 0.0230307595870241 4 0.016400073988314588 5 0.01635759937826328 15 0.015425117740331298 3 0.012769286275836851 6 0.009688316270240808 8 0.00856670336034147 7 0.00851990187443326 1 0.008163953639912106 2 0.007982360480738335 __DUMMY__ 0.004556920846713209 false 1.0 143 9 0.07274 22 0.067457 0 0.065091 17 0.05934 18 0.05308 10 0.052262 4 0.049984 6 0.049374 5 0.049324 7 0.04874 8 0.048599 1 0.048575 2 0.048054 3 0.047851 11 0.047204 21 0.039222 19 0.036743 16 0.028992 23 0.026773 24 0.019007 12 0.0118 15 0.010522 14 0.010164 20 0.009102 9 0.07274 22 0.067457 0 0.065091 17 0.05934 18 0.05308 10 0.052262 4 0.049984 6 0.049374 5 0.049324 7 0.04874 8 0.048599 1 0.048575 2 0.048054 3 0.047851 11 0.047204 21 0.039222 19 0.036743 16 0.028992 23 0.026773 24 0.019007 12 0.0118 15 0.010522 14 0.010164 20 0.009102 22 0.06803406118978388 9 0.06161123408879041 0 0.05810993584262501 18 0.05790559397739143 17 0.05644542631179744 11 0.05291406182930928 10 0.05182131862172938 21 0.05077039855386462 19 0.046974086269269695 4 0.0401841638652474 5 0.0395670369959004 6 0.03899364697386847 7 0.037693152490229025 8 0.03764168659271826 1 0.03748591263387289 2 0.0369756858519069 3 0.036959241712913544 16 0.03329071171710794 23 0.03134549872294592 12 0.027034518653436597 24 0.026831422360495738 20 0.02145980051507256 14 0.01946591855249541 15 0.013817161490321287 13 0.013154960991740546 __DUMMY__ 0.003513363195166072 false 1.0 385 10 0.083737 18 0.072025 22 0.066583 9 0.064665 11 0.063711 21 0.058535 14 0.055858 0 0.053604 13 0.04994 12 0.039807 4 0.034941 17 0.0347 5 0.034275 6 0.032657 19 0.03253 7 0.029813 8 0.029748 1 0.029457 3 0.029118 2 0.028863 23 0.025702 15 0.024715 20 0.014489 24 0.010528 10 0.083737 18 0.072025 22 0.066583 9 0.064665 11 0.063711 21 0.058535 14 0.055858 0 0.053604 13 0.04994 12 0.039807 4 0.034941 17 0.0347 5 0.034275 6 0.032657 19 0.03253 7 0.029813 8 0.029748 1 0.029457 3 0.029118 2 0.028863 23 0.025702 15 0.024715 20 0.014489 24 0.010528 18 0.06961008733367084 10 0.06931194707786367 22 0.06623134116823302 21 0.06401472578555362 11 0.06180108142682637 9 0.05405858417774969 14 0.04873165857426798 0 0.048184004819017134 19 0.04710078247410778 12 0.04703963137106027 13 0.04574145442576228 17 0.04027305740838708 23 0.03230047248561423 4 0.029679953508931198 20 0.029175803919744274 5 0.02910856717572604 6 0.02728352170731021 7 0.024660798521480287 8 0.024610449307903515 24 0.024576312578895167 1 0.024387480160484597 3 0.02430572778978712 2 0.023894658446859614 15 0.02330444569265784 16 0.0168440410529147 __DUMMY__ 0.0037694116091915703 false 1.0 144 9 0.074319 22 0.070094 0 0.060619 17 0.056279 18 0.054418 4 0.05088 10 0.05048 5 0.049883 6 0.049467 8 0.048695 7 0.048585 1 0.048317 3 0.048078 2 0.047778 21 0.04475 11 0.044603 19 0.037068 23 0.029807 16 0.022958 24 0.022263 12 0.013781 14 0.010335 20 0.00992 15 0.006623 9 0.074319 22 0.070094 0 0.060619 17 0.056279 18 0.054418 4 0.05088 10 0.05048 5 0.049883 6 0.049467 8 0.048695 7 0.048585 1 0.048317 3 0.048078 2 0.047778 21 0.04475 11 0.044603 19 0.037068 23 0.029807 16 0.022958 24 0.022263 12 0.013781 14 0.010335 20 0.00992 15 0.006623 22 0.0686783961432635 9 0.06062363006525516 18 0.05906248983560107 21 0.054931032832619554 0 0.053845771522444755 17 0.05335277163110841 11 0.05161477959949242 10 0.050911900368335636 19 0.04836718634055672 4 0.039555674263370096 5 0.03880017246783026 6 0.037781830994318887 8 0.036386656877735034 7 0.03633750949145299 1 0.036089428473029865 3 0.03596893069056837 2 0.03559192625119324 23 0.03396649284189115 12 0.030228406229721994 24 0.030001338445683118 16 0.02998673890744584 20 0.02438345348440977 14 0.021522087273950323 13 0.015498408994174541 15 0.012703476883421494 __DUMMY__ 0.0038095090911259024 false 1.0 386 14 0.146504 15 0.120707 13 0.117334 10 0.093165 18 0.085359 12 0.061893 20 0.057363 21 0.056361 11 0.047654 19 0.042952 22 0.038269 9 0.029944 23 0.025609 24 0.020859 0 0.015812 17 0.015432 16 0.007423 4 0.005829 5 0.005567 6 0.003251 8 7.69E-4 1 7.5E-4 3 6.02E-4 7 5.93E-4 14 0.146504 15 0.120707 13 0.117334 10 0.093165 18 0.085359 12 0.061893 20 0.057363 21 0.056361 11 0.047654 19 0.042952 22 0.038269 9 0.029944 23 0.025609 24 0.020859 0 0.015812 17 0.015432 16 0.007423 4 0.005829 5 0.005567 6 0.003251 8 7.69E-4 1 7.5E-4 3 6.02E-4 7 5.93E-4 14 0.09739349545711336 13 0.08307572157071154 18 0.07706447315842824 15 0.0746348281705213 10 0.0727584669195994 21 0.06417114599633247 12 0.061334932265448956 20 0.0555931535437603 19 0.05456454291391098 11 0.05242559010751653 22 0.05026774258839362 23 0.03425046550704328 9 0.03319611456441015 24 0.032829953622625446 17 0.029152923918649293 0 0.025705190971536774 16 0.021660894842822024 4 0.013232281173347949 5 0.012870225517567125 6 0.010541966607527287 3 0.008045044215202022 8 0.007998721494288426 7 0.007907652872669306 1 0.007872683153947652 2 0.007368612995689337 __DUMMY__ 0.0040831758509370965 false 1.0 145 9 0.071627 22 0.066744 0 0.060703 18 0.056548 17 0.054717 10 0.050594 4 0.050446 7 0.050041 6 0.049784 5 0.049434 8 0.049324 1 0.048848 3 0.048286 2 0.047935 11 0.042584 21 0.039456 19 0.034868 23 0.032404 16 0.025152 24 0.022039 15 0.014858 14 0.013076 20 0.012803 12 0.007729 9 0.071627 22 0.066744 0 0.060703 18 0.056548 17 0.054717 10 0.050594 4 0.050446 7 0.050041 6 0.049784 5 0.049434 8 0.049324 1 0.048848 3 0.048286 2 0.047935 11 0.042584 21 0.039456 19 0.034868 23 0.032404 16 0.025152 24 0.022039 15 0.014858 14 0.013076 20 0.012803 12 0.007729 22 0.06697497761628138 9 0.061498149338532135 18 0.05853905278470267 0 0.05569098607727274 17 0.05386504762234142 10 0.05024232068287562 21 0.04970362881044846 11 0.04939753904623838 19 0.044888075941818935 4 0.04157210984335353 5 0.040797180864591887 6 0.04039004298227986 7 0.03959751090572998 8 0.039271969666072354 1 0.03891954534354403 3 0.03846953896045739 2 0.03821812172108722 23 0.034402035561914915 16 0.030869021118927958 24 0.02826451783723329 12 0.023939036218611945 20 0.02257643521051121 14 0.02022933489855334 15 0.015985485435508054 13 0.012287632087410594 __DUMMY__ 0.0034107034237006164 false 1.0 387 10 0.10203 18 0.100604 11 0.077949 19 0.073817 22 0.072043 21 0.068798 14 0.064722 0 0.063174 13 0.056486 17 0.05602 12 0.05283 9 0.052281 20 0.043945 16 0.037834 15 0.036564 23 0.015023 24 0.011228 4 0.005267 5 0.00486 6 0.003393 7 4.97E-4 8 3.46E-4 1 2.71E-4 3 1.7E-5 10 0.10203 18 0.100604 11 0.077949 19 0.073817 22 0.072043 21 0.068798 14 0.064722 0 0.063174 13 0.056486 17 0.05602 12 0.05283 9 0.052281 20 0.043945 16 0.037834 15 0.036564 23 0.015023 24 0.011228 4 0.005267 5 0.00486 6 0.003393 7 4.97E-4 8 3.46E-4 1 2.71E-4 3 1.7E-5 18 0.08551459740559711 10 0.07893361655629245 21 0.07051649790450293 19 0.07045613228196533 22 0.07012802379168483 11 0.06968757433213159 12 0.05354390500129583 14 0.05315682943316555 0 0.052417454432580994 17 0.05129752464640652 13 0.047820802071735814 9 0.04728778152874955 20 0.046156075132656196 16 0.03686371132363793 15 0.02930644216363962 23 0.027180729209416766 24 0.02637559968958094 4 0.013476948496603932 5 0.013026693269166736 6 0.011005796751170121 3 0.008484752706827045 7 0.008457426720148093 8 0.008366561604918193 1 0.008225606490235519 2 0.007903598670738442 __DUMMY__ 0.004409318385151693 false 1.0 146 9 0.073342 22 0.065435 0 0.059384 17 0.055941 18 0.054779 4 0.051193 7 0.050601 1 0.050455 6 0.050222 8 0.050058 5 0.049827 10 0.04932 3 0.048508 2 0.048153 11 0.04212 21 0.039313 19 0.035164 23 0.031323 16 0.024487 24 0.022593 15 0.014785 14 0.013012 20 0.011696 12 0.008292 9 0.073342 22 0.065435 0 0.059384 17 0.055941 18 0.054779 4 0.051193 7 0.050601 1 0.050455 6 0.050222 8 0.050058 5 0.049827 10 0.04932 3 0.048508 2 0.048153 11 0.04212 21 0.039313 19 0.035164 23 0.031323 16 0.024487 24 0.022593 15 0.014785 14 0.013012 20 0.011696 12 0.008292 22 0.066364024542738 9 0.06229838693669193 18 0.05771344743997964 0 0.055075382190663505 17 0.054436165332945124 10 0.04964772417139291 21 0.04963682669657465 11 0.04918093916499891 19 0.04502614476899627 4 0.04192064744474231 5 0.04098052154045167 6 0.04059438397521266 7 0.03985878565585198 1 0.039669415158360304 8 0.039614443894015736 3 0.038573083856046575 2 0.038319800324470805 23 0.03389752680851455 16 0.030558648306979953 24 0.02852300848707625 12 0.024201732873473613 20 0.022059809825546207 14 0.020199440270857617 15 0.01595139679971265 13 0.012287614884932853 __DUMMY__ 0.003410698648773331 false 1.0 388 19 0.106964 18 0.08004 20 0.078901 16 0.077882 21 0.075306 22 0.066777 11 0.062792 17 0.062612 12 0.060596 24 0.05481 10 0.052449 23 0.047028 0 0.042612 14 0.032161 13 0.029529 9 0.026625 15 0.026536 4 0.0053 5 0.004824 6 0.002 3 0.001978 7 9.05E-4 8 7.39E-4 1 6.31E-4 19 0.106964 18 0.08004 20 0.078901 16 0.077882 21 0.075306 22 0.066777 11 0.062792 17 0.062612 12 0.060596 24 0.05481 10 0.052449 23 0.047028 0 0.042612 14 0.032161 13 0.029529 9 0.026625 15 0.026536 4 0.0053 5 0.004824 6 0.002 3 0.001978 7 9.05E-4 8 7.39E-4 1 6.31E-4 19 0.08737206370409187 21 0.07544305176597545 18 0.0735555566762637 22 0.06693408989531899 20 0.06513521117995641 11 0.06189352082451182 12 0.06017030271716739 16 0.0571198136996776 17 0.05350349842353756 10 0.05122693189961299 24 0.0507138365413876 23 0.04516470572304972 0 0.040153730151076934 14 0.036564671606758865 13 0.035780724376280354 9 0.03244081983817407 15 0.023260161672779136 4 0.01348120558115505 5 0.012996461848801523 6 0.010255423566777163 3 0.009290750230348097 7 0.008488499462294725 8 0.008383134184506133 1 0.008223336603634768 2 0.007745776764272255 __DUMMY__ 0.004702721062589964 false 1.0 147 22 0.0761 9 0.073093 0 0.059517 18 0.058919 21 0.058192 11 0.055486 10 0.055379 17 0.050485 4 0.046194 5 0.045088 6 0.04405 7 0.042739 8 0.042665 1 0.042421 3 0.041778 2 0.041105 19 0.038135 23 0.030854 12 0.024433 24 0.022733 14 0.016366 16 0.013181 13 0.011098 20 0.00999 22 0.0761 9 0.073093 0 0.059517 18 0.058919 21 0.058192 11 0.055486 10 0.055379 17 0.050485 4 0.046194 5 0.045088 6 0.04405 7 0.042739 8 0.042665 1 0.042421 3 0.041778 2 0.041105 19 0.038135 23 0.030854 12 0.024433 24 0.022733 14 0.016366 16 0.013181 13 0.011098 20 0.00999 22 0.0717723979920865 21 0.06358949429739746 18 0.061455888699094775 9 0.05872880302467618 11 0.057841819559333936 10 0.053082432624748495 0 0.052054850766280636 19 0.04972529531489844 17 0.049386501217946716 12 0.0382235898476189 4 0.03629913753223378 5 0.0354997719192248 23 0.03514509561099845 6 0.03403887976649347 7 0.03223228032541398 8 0.032186205286505044 1 0.03195885728711697 3 0.031707443489612706 24 0.031323410340874526 2 0.031110401350885004 14 0.02587399660748178 20 0.025735924554987414 16 0.024672884111321458 13 0.02339656916789283 15 0.009029805408337109 __DUMMY__ 0.003928263896538622 false 1.0 389 14 0.092172 10 0.090288 13 0.088482 18 0.08244 21 0.068777 11 0.068003 22 0.065122 12 0.063517 9 0.053565 15 0.047422 0 0.046957 19 0.038797 17 0.03186 20 0.022887 23 0.019628 4 0.01938 5 0.018983 6 0.017644 8 0.012332 7 0.012076 2 0.011698 1 0.011665 3 0.010268 24 0.00604 14 0.092172 10 0.090288 13 0.088482 18 0.08244 21 0.068777 11 0.068003 22 0.065122 12 0.063517 9 0.053565 15 0.047422 0 0.046957 19 0.038797 17 0.03186 20 0.022887 23 0.019628 4 0.01938 5 0.018983 6 0.017644 8 0.012332 7 0.012076 2 0.011698 1 0.011665 3 0.010268 24 0.00604 18 0.07350636404957397 10 0.0705552798646222 21 0.070295962858461 22 0.06592179932390595 14 0.06546710439395192 13 0.06481262287570282 11 0.06452554330477903 12 0.06017766661115613 19 0.05052658733704223 9 0.047813760288628285 0 0.04473350131198496 17 0.039138247957778205 20 0.03345113553503777 15 0.033107436261040506 23 0.029971353200801996 24 0.023673527494722298 4 0.021979319175865816 5 0.021522509930164222 6 0.019877627736968866 16 0.017645880509009892 8 0.015943416994948306 7 0.015824545026174325 1 0.015516343367189734 2 0.015328738263506766 3 0.01485612949050512 __DUMMY__ 0.0038275968364777104 false 1.0 148 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06430003975141013 22 0.06222437056664092 0 0.054193417409775076 17 0.052107011201893816 18 0.05195478788548155 4 0.04770665304009451 10 0.04687708775104716 5 0.046820207254272855 6 0.04678071826154535 7 0.04604369490903592 8 0.04596763513234562 1 0.045805748821614124 2 0.044778262336678844 3 0.04472873255387258 21 0.04395311346300561 11 0.04268613240957293 19 0.03730307071518755 23 0.03505017175747236 16 0.026952345431561994 24 0.02659589533982257 12 0.020632964122936425 14 0.018657607500438624 20 0.01711961701744485 15 0.016259033632285924 13 0.011252535521252528 __DUMMY__ 0.003249146213309923 false 1.0 149 9 0.059207 3 0.058401 4 0.056291 5 0.055848 7 0.054891 1 0.054613 8 0.054551 2 0.053689 22 0.053281 6 0.051811 23 0.050421 18 0.045333 24 0.044761 10 0.040767 15 0.039042 21 0.036233 19 0.034617 14 0.032367 20 0.031873 0 0.027684 17 0.027239 11 0.025178 16 0.010174 13 0.001729 9 0.059207 3 0.058401 4 0.056291 5 0.055848 7 0.054891 1 0.054613 8 0.054551 2 0.053689 22 0.053281 6 0.051811 23 0.050421 18 0.045333 24 0.044761 10 0.040767 15 0.039042 21 0.036233 19 0.034617 14 0.032367 20 0.031873 0 0.027684 17 0.027239 11 0.025178 16 0.010174 13 0.001729 22 0.06078257498298109 18 0.05739446253472868 21 0.05482587584461808 19 0.051268449621455214 9 0.050217992694597265 10 0.04714663344417369 23 0.04547575251173869 24 0.04433502186427137 11 0.04294349136675113 20 0.040882214165409436 4 0.03898176391115223 5 0.03849546720490463 3 0.037649663611084336 14 0.03685367631876244 17 0.036722176548807065 7 0.035573369001200325 8 0.03539780644350941 1 0.03530691810498319 6 0.03514655168388258 2 0.03466971808469226 0 0.03383908089357813 15 0.030409463463962647 12 0.027672938601774 16 0.023347088129616028 13 0.020374592374690897 __DUMMY__ 0.004287256592675296 false 1.0 40 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.05647271290545149 4 0.05537155826494784 5 0.05499261602268552 6 0.0549373032424618 1 0.054761530908075444 7 0.05464559805420549 8 0.05450417862497626 2 0.05389110273177944 3 0.05349387483607181 22 0.0511310275646535 23 0.04595193616946351 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235916 24 0.035129056096603065 10 0.031741523468311016 11 0.03122696784021763 19 0.030683059987402877 16 0.026302599497096766 12 0.02217931306520858 20 0.020816584766715905 15 0.01673716051990459 14 0.013559119680263396 13 0.011489784582152628 __DUMMY__ 0.002947040178359979 false 1.0 41 2 0.073987 3 0.073485 1 0.072767 8 0.072462 7 0.072438 5 0.072388 6 0.072073 4 0.071957 9 0.058558 23 0.053553 22 0.039749 17 0.039526 24 0.038245 0 0.037735 18 0.023509 21 0.021197 16 0.019783 15 0.017056 10 0.016651 20 0.014389 19 0.014357 11 0.012423 12 0.008547 14 0.003163 2 0.073987 3 0.073485 1 0.072767 8 0.072462 7 0.072438 5 0.072388 6 0.072073 4 0.071957 9 0.058558 23 0.053553 22 0.039749 17 0.039526 24 0.038245 0 0.037735 18 0.023509 21 0.021197 16 0.019783 15 0.017056 10 0.016651 20 0.014389 19 0.014357 11 0.012423 12 0.008547 14 0.003163 9 0.05617584471128158 4 0.05537296683976627 5 0.05528308138177327 6 0.054881545647525155 2 0.05456421076637457 1 0.05431022160404388 8 0.05424511282572949 7 0.05424269536449675 3 0.05416375557635392 22 0.05119374929702823 23 0.0458385474466898 17 0.045391125222153585 0 0.04425942731174622 18 0.03955514450194272 21 0.03731976942723049 24 0.03508343171918732 10 0.03184434464368271 11 0.03131780236539945 19 0.030613460734369213 16 0.026312292956566858 12 0.022269682403394324 20 0.020803685918753544 15 0.016836747666841994 14 0.013684522251550674 13 0.011489789879125818 __DUMMY__ 0.0029470415369923114 false 1.0 42 3 0.072394 2 0.071918 1 0.070766 5 0.070705 8 0.070477 7 0.070455 4 0.070301 6 0.069576 9 0.057823 23 0.053874 24 0.041643 22 0.041029 17 0.036679 0 0.034474 18 0.024974 21 0.023847 15 0.019253 20 0.01842 16 0.018227 10 0.01786 19 0.01722 11 0.013042 12 0.008298 14 0.006745 3 0.072394 2 0.071918 1 0.070766 5 0.070705 8 0.070477 7 0.070455 4 0.070301 6 0.069576 9 0.057823 23 0.053874 24 0.041643 22 0.041029 17 0.036679 0 0.034474 18 0.024974 21 0.023847 15 0.019253 20 0.01842 16 0.018227 10 0.01786 19 0.01722 11 0.013042 12 0.008298 14 0.006745 9 0.05448665312489648 4 0.053077508597002755 5 0.052980378033754195 22 0.052751562564236486 3 0.052034478835350124 6 0.051853515991251285 2 0.05170506090152392 1 0.05147026743437418 7 0.05142238180021125 8 0.05140839918349869 23 0.04667669529134409 17 0.0428062111219483 21 0.0414764081487047 18 0.04112077537876723 0 0.04092167099130998 24 0.03869528776108017 19 0.03399043673811068 11 0.03283655615543802 10 0.032427000960268744 16 0.02519948194234145 20 0.025048949302440535 12 0.024488469140362342 15 0.017702725061308648 14 0.017070004241390657 13 0.01308627490685756 __DUMMY__ 0.0032628463922275974 false 1.0 43 22 0.094702 21 0.081371 11 0.074964 9 0.062282 19 0.054844 18 0.054358 17 0.04772 0 0.047682 10 0.045286 24 0.044538 4 0.036404 5 0.035237 12 0.033631 23 0.03324 3 0.032902 6 0.030868 7 0.030085 8 0.030029 1 0.029731 2 0.029347 14 0.023502 16 0.02204 20 0.019643 13 0.005593 22 0.094702 21 0.081371 11 0.074964 9 0.062282 19 0.054844 18 0.054358 17 0.04772 0 0.047682 10 0.045286 24 0.044538 4 0.036404 5 0.035237 12 0.033631 23 0.03324 3 0.032902 6 0.030868 7 0.030085 8 0.030029 1 0.029731 2 0.029347 14 0.023502 16 0.02204 20 0.019643 13 0.005593 22 0.08074926757531692 21 0.07389209110551212 11 0.06648966766461374 18 0.059051814877162295 19 0.05804713244192027 9 0.05381141913915199 17 0.048572578735863604 10 0.04764295512176764 0 0.04639721662720919 24 0.04227597788601594 12 0.04099682989812563 23 0.036624667469475236 4 0.032084962836601796 5 0.031249871777612154 20 0.03053505155185317 16 0.029659213643610682 6 0.028168212978152366 3 0.028108842959992924 14 0.02806201082867811 7 0.026757600565516963 8 0.026716644925932693 1 0.026455909941854577 2 0.026035508192904348 13 0.018598328484011738 15 0.009128990779673826 __DUMMY__ 0.0038872319914702853 false 1.0 44 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.0564727129054515 4 0.05537155826494785 5 0.05499261602268553 6 0.05493730324246181 1 0.05476153090807546 7 0.0546455980542055 8 0.054504178624976266 2 0.053891102731779446 3 0.05349387483607182 22 0.051131027564653514 23 0.04595193616946352 17 0.0455833478309345 0 0.04430596949022618 18 0.03970495635947152 21 0.03744007731235916 24 0.035129056096603065 10 0.03174152346831101 11 0.031226967840217626 19 0.03068305998740288 16 0.02630259949709677 12 0.02217931306520858 20 0.02081658476671591 15 0.016737160519904593 14 0.013559119680263397 13 0.011489784582152626 __DUMMY__ 0.0029470401783599793 false 1.0 45 22 0.084797 9 0.074236 0 0.066462 11 0.065736 17 0.059588 21 0.059424 18 0.057991 10 0.056053 19 0.044709 4 0.042776 5 0.041643 6 0.040365 8 0.03947 7 0.039292 1 0.039136 3 0.03912 2 0.038123 16 0.025104 24 0.024228 23 0.023474 12 0.01874 14 0.012515 20 0.006884 15 1.34E-4 22 0.084797 9 0.074236 0 0.066462 11 0.065736 17 0.059588 21 0.059424 18 0.057991 10 0.056053 19 0.044709 4 0.042776 5 0.041643 6 0.040365 8 0.03947 7 0.039292 1 0.039136 3 0.03912 2 0.038123 16 0.025104 24 0.024228 23 0.023474 12 0.01874 14 0.012515 20 0.006884 15 1.34E-4 22 0.0766465704155384 11 0.06259536053750342 21 0.06215869205568296 9 0.061155592977454744 18 0.060571396943697106 0 0.057632372481545395 17 0.05580170621487313 10 0.05341357272634 19 0.05198770857708282 4 0.03578843734063253 5 0.034958276649527345 6 0.03357817023271617 12 0.032205853848594486 8 0.03209600737283078 7 0.03201072977736499 1 0.03180195851789766 3 0.03173926211069594 16 0.03145644896159954 2 0.03107356268835618 24 0.030598779753308145 23 0.030418420509926714 20 0.021914419112865343 14 0.021541986122071578 13 0.014462122452925509 15 0.00870127318294815 __DUMMY__ 0.0036913184360207792 false 1.0 46 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.05647271290545149 4 0.05537155826494784 5 0.05499261602268552 6 0.0549373032424618 1 0.054761530908075444 7 0.05464559805420549 8 0.05450417862497626 2 0.05389110273177944 3 0.05349387483607181 22 0.0511310275646535 23 0.04595193616946351 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235916 24 0.035129056096603065 10 0.031741523468311016 11 0.03122696784021763 19 0.030683059987402877 16 0.026302599497096766 12 0.02217931306520858 20 0.020816584766715905 15 0.01673716051990459 14 0.013559119680263396 13 0.011489784582152628 __DUMMY__ 0.002947040178359979 false 1.0 47 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06430003975141012 22 0.062224370566640916 0 0.05419341740977507 17 0.052107011201893816 18 0.05195478788548156 4 0.0477066530400945 10 0.04687708775104715 5 0.04682020725427285 6 0.04678071826154534 7 0.04604369490903592 8 0.04596763513234561 1 0.04580574882161412 2 0.044778262336678844 3 0.04472873255387257 21 0.04395311346300561 11 0.04268613240957293 19 0.03730307071518755 23 0.03505017175747236 16 0.026952345431561994 24 0.026595895339822567 12 0.02063296412293642 14 0.018657607500438624 20 0.017119617017444855 15 0.01625903363228592 13 0.01125253552125253 __DUMMY__ 0.0032491462133099223 false 1.0 48 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.05647271290545149 4 0.05537155826494784 5 0.05499261602268552 6 0.0549373032424618 1 0.054761530908075444 7 0.05464559805420549 8 0.05450417862497626 2 0.05389110273177944 3 0.05349387483607181 22 0.0511310275646535 23 0.04595193616946351 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235917 24 0.035129056096603065 10 0.031741523468311016 11 0.03122696784021763 19 0.030683059987402877 16 0.026302599497096766 12 0.02217931306520858 20 0.020816584766715905 15 0.01673716051990459 14 0.013559119680263396 13 0.011489784582152628 __DUMMY__ 0.002947040178359979 false 1.0 49 18 0.100112 19 0.085179 10 0.083378 20 0.081903 14 0.066468 21 0.060412 12 0.055048 22 0.054725 15 0.053518 13 0.053224 11 0.05315 16 0.049719 17 0.048159 24 0.038039 0 0.036906 23 0.034015 9 0.031554 4 0.004912 5 0.004546 6 0.002393 3 0.001387 7 0.001078 1 1.07E-4 8 6.7E-5 18 0.100112 19 0.085179 10 0.083378 20 0.081903 14 0.066468 21 0.060412 12 0.055048 22 0.054725 15 0.053518 13 0.053224 11 0.05315 16 0.049719 17 0.048159 24 0.038039 0 0.036906 23 0.034015 9 0.031554 4 0.004912 5 0.004546 6 0.002393 3 0.001387 7 0.001078 1 1.07E-4 8 6.7E-5 18 0.08618029885937363 19 0.07692710099640479 10 0.06964014007842433 20 0.0677088878207084 21 0.06488400223597722 22 0.06000829338989793 14 0.055992953385659565 11 0.05500874448849662 12 0.05326371174422179 17 0.04675310194992019 13 0.04609378677458022 16 0.04322345045440495 15 0.041604271275534906 24 0.04101075122599762 23 0.03742236139557663 0 0.03729426165248249 9 0.036043867189152534 4 0.012972254509912053 5 0.012540439456775826 6 0.010043044470624872 3 0.009134570934913353 7 0.008476729212169637 8 0.008000963187947826 1 0.00789365197467269 2 0.007667281663545005 __DUMMY__ 0.004211079672624981 false 1.0 390 10 0.111658 18 0.109467 19 0.087257 22 0.078679 11 0.073377 0 0.071006 17 0.068457 9 0.060218 14 0.058666 16 0.054045 21 0.053565 15 0.051206 20 0.042374 13 0.027368 12 0.02358 23 0.013449 4 0.00428 5 0.00415 24 0.003054 3 0.001601 6 0.001504 8 5.32E-4 7 3.4E-4 2 1.66E-4 10 0.111658 18 0.109467 19 0.087257 22 0.078679 11 0.073377 0 0.071006 17 0.068457 9 0.060218 14 0.058666 16 0.054045 21 0.053565 15 0.051206 20 0.042374 13 0.027368 12 0.02358 23 0.013449 4 0.00428 5 0.00415 24 0.003054 3 0.001601 6 0.001504 8 5.32E-4 7 3.4E-4 2 1.66E-4 18 0.08947554146501517 10 0.08259028597301098 19 0.07739997080200815 22 0.07196339997047538 11 0.06583840037683522 21 0.06144014384655019 17 0.05784540525749047 0 0.05568022773369658 9 0.0503319257163576 14 0.0497619884971092 20 0.046658039263967666 16 0.046418924697399624 12 0.03843608625216764 15 0.03800962614387842 13 0.03283210214615299 23 0.027191729126054637 24 0.02310513433424655 4 0.013222006523592301 5 0.012904355594031114 6 0.0104197849071927 3 0.009643421116411905 8 0.008892234022158857 7 0.008811660981906127 1 0.008524172535033885 2 0.008410672314850928 __DUMMY__ 0.004192760402405664 false 1.0 391 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.08147757686034841 21 0.07468538668322737 19 0.07263455100549973 10 0.07222693741247986 22 0.07006171098827049 11 0.0689199520029637 12 0.057940414074212396 20 0.05046968771859454 14 0.050248394783870956 17 0.049425874398389406 0 0.04810972106002393 13 0.047758345958663094 9 0.04368098049689785 16 0.03777243768821421 24 0.03327576280272568 23 0.031390843715551196 15 0.02548572700109068 4 0.013793524342461004 5 0.013407380894205989 6 0.01095005219531068 3 0.008800538249586983 8 0.008426816683625462 7 0.008407524891109847 1 0.008264807537067955 2 0.007931208236167182 __DUMMY__ 0.004453842319441392 false 1.0 392 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.08147757686034841 21 0.07468538668322737 19 0.07263455100549973 10 0.07222693741247986 22 0.07006171098827049 11 0.0689199520029637 12 0.057940414074212396 20 0.05046968771859454 14 0.050248394783870956 17 0.049425874398389406 0 0.04810972106002393 13 0.047758345958663094 9 0.04368098049689785 16 0.03777243768821421 24 0.03327576280272568 23 0.031390843715551196 15 0.02548572700109068 4 0.013793524342461004 5 0.013407380894205989 6 0.01095005219531068 3 0.008800538249586983 8 0.008426816683625462 7 0.008407524891109847 1 0.008264807537067955 2 0.007931208236167182 __DUMMY__ 0.004453842319441392 false 1.0 150 17 0.091141 0 0.082833 16 0.078798 9 0.054677 22 0.053475 18 0.052628 11 0.048835 19 0.04804 10 0.042729 6 0.042416 8 0.039548 1 0.039404 7 0.039327 2 0.038175 4 0.037002 5 0.036512 3 0.031808 12 0.029212 21 0.028288 23 0.026214 15 0.021433 20 0.014616 13 0.01201 24 0.01088 17 0.091141 0 0.082833 16 0.078798 9 0.054677 22 0.053475 18 0.052628 11 0.048835 19 0.04804 10 0.042729 6 0.042416 8 0.039548 1 0.039404 7 0.039327 2 0.038175 4 0.037002 5 0.036512 3 0.031808 12 0.029212 21 0.028288 23 0.026214 15 0.021433 20 0.014616 13 0.01201 24 0.01088 17 0.07628209647279581 0 0.07097030740789756 16 0.0619617940216924 22 0.05878381382566105 18 0.055506511105136 9 0.05398008389737703 11 0.051640650543752935 19 0.049995768675898784 10 0.04582868135133192 21 0.039552241390925454 6 0.03859450639106478 8 0.036221647818354595 7 0.036078468386091946 1 0.03600688497436634 4 0.03593203973150705 5 0.0354038531203104 2 0.03515507285376045 12 0.032108355907333526 3 0.03135875391064496 23 0.03004880729268001 20 0.02059399806803424 15 0.019698573023256803 24 0.019484165795852562 13 0.01571890214106427 14 0.009888175475408456 __DUMMY__ 0.0032058464178006097 false 1.0 151 21 0.098428 19 0.090995 12 0.080123 18 0.077258 22 0.075216 20 0.071127 11 0.069542 24 0.058284 23 0.051244 10 0.050929 13 0.04822 17 0.044579 16 0.044159 14 0.039813 0 0.034354 9 0.031492 4 0.008607 5 0.008081 15 0.007941 6 0.003915 3 0.002478 7 0.001347 8 0.001218 1 6.5E-4 21 0.098428 19 0.090995 12 0.080123 18 0.077258 22 0.075216 20 0.071127 11 0.069542 24 0.058284 23 0.051244 10 0.050929 13 0.04822 17 0.044579 16 0.044159 14 0.039813 0 0.034354 9 0.031492 4 0.008607 5 0.008081 15 0.007941 6 0.003915 3 0.002478 7 0.001347 8 0.001218 1 6.5E-4 21 0.08553059274320961 19 0.07783188745938213 18 0.07122915597580792 22 0.07109160493973447 12 0.06796556600881691 11 0.06462444989508194 20 0.05934036101300613 24 0.05153590875994956 10 0.05024741380236285 23 0.04678189567495549 17 0.044742406110629976 13 0.04352146306445681 16 0.039652459838267984 14 0.03926567624729189 0 0.03680080147043606 9 0.036138091483152425 4 0.016513317849078044 5 0.01599683575274694 15 0.013586733634459522 6 0.012670324326555467 3 0.011042636758691332 7 0.010247992936195542 8 0.010160814950867469 1 0.00978965823285925 2 0.009284298633419045 __DUMMY__ 0.004407652438585188 false 1.0 393 10 0.102238 18 0.100642 11 0.077973 19 0.073899 22 0.071783 21 0.068922 14 0.064039 0 0.063114 13 0.056505 17 0.055886 12 0.052459 9 0.052199 20 0.043652 16 0.037655 15 0.036177 23 0.015974 24 0.010934 4 0.005507 5 0.005175 6 0.003615 7 6.85E-4 8 4.94E-4 1 4.54E-4 3 1.8E-5 10 0.102238 18 0.100642 11 0.077973 19 0.073899 22 0.071783 21 0.068922 14 0.064039 0 0.063114 13 0.056505 17 0.055886 12 0.052459 9 0.052199 20 0.043652 16 0.037655 15 0.036177 23 0.015974 24 0.010934 4 0.005507 5 0.005175 6 0.003615 7 6.85E-4 8 4.94E-4 1 4.54E-4 3 1.8E-5 18 0.0855323322244529 10 0.07903069135423983 21 0.07057436941866388 19 0.07049440215423304 22 0.07000668029425065 11 0.06969877527035631 12 0.053370757164572444 14 0.05283806939952115 0 0.05238945208701928 17 0.05123498607465198 13 0.04782966948116371 9 0.047249511656481856 20 0.046019330345163076 16 0.0367801709927121 15 0.029125827034766436 23 0.02762456638657027 24 0.02623838819632844 4 0.013588957878850874 5 0.013173705583365851 6 0.011109405429748547 7 0.008545167402908197 3 0.00848521941258641 8 0.008435634057303808 1 0.008311013644198813 2 0.007903598670738443 __DUMMY__ 0.004409318385151694 false 1.0 394 18 0.094794 10 0.090482 19 0.07718 11 0.075784 21 0.075122 22 0.07181 12 0.059804 14 0.059603 0 0.055864 13 0.055613 17 0.052903 20 0.051426 9 0.046417 16 0.039655 15 0.030471 24 0.022699 23 0.022655 4 0.005974 5 0.005558 6 0.003613 7 8.87E-4 8 6.21E-4 1 5.39E-4 3 5.26E-4 18 0.094794 10 0.090482 19 0.07718 11 0.075784 21 0.075122 22 0.07181 12 0.059804 14 0.059603 0 0.055864 13 0.055613 17 0.052903 20 0.051426 9 0.046417 16 0.039655 15 0.030471 24 0.022699 23 0.022655 4 0.005974 5 0.005558 6 0.003613 7 8.87E-4 8 6.21E-4 1 5.39E-4 3 5.26E-4 18 0.08182635763603144 21 0.07443913341073169 19 0.07235037660168817 10 0.07182104085876549 22 0.07003081228867977 11 0.06858334344227095 12 0.05790436559135655 20 0.05036341491848709 14 0.050221241381200314 17 0.04936594964766802 0 0.04801047069164163 13 0.04754860933113826 9 0.04370860206168347 16 0.03786185665218125 24 0.03326265426350538 23 0.03176958686659491 15 0.025628984608283972 4 0.01392741870735408 5 0.013468241969157389 6 0.011160256984950516 3 0.008796324790551882 7 0.008667823027055838 8 0.00852232175508766 1 0.00837576195832551 2 0.00793120823616718 __DUMMY__ 0.00445384231944139 false 1.0 152 21 0.0829 22 0.070137 12 0.062128 11 0.061082 18 0.055142 9 0.051173 13 0.050983 10 0.050824 23 0.044265 14 0.043533 19 0.041908 24 0.041305 4 0.036361 5 0.036173 0 0.034771 6 0.032052 3 0.030546 20 0.029955 7 0.02922 1 0.02902 8 0.028899 2 0.028696 17 0.024221 15 0.004705 21 0.0829 22 0.070137 12 0.062128 11 0.061082 18 0.055142 9 0.051173 13 0.050983 10 0.050824 23 0.044265 14 0.043533 19 0.041908 24 0.041305 4 0.036361 5 0.036173 0 0.034771 6 0.032052 3 0.030546 20 0.029955 7 0.02922 1 0.02902 8 0.028899 2 0.028696 17 0.024221 15 0.004705 21 0.07833039530452662 22 0.0682678693339939 11 0.060971874148153395 12 0.06062111972690782 18 0.060539356632011924 19 0.05366447401615167 10 0.050638819258483854 13 0.046794640969511477 9 0.0453532310866925 23 0.043260806656011216 24 0.04264088962666758 14 0.042021206588817785 20 0.03911460942041574 0 0.03716652769366092 17 0.03464390369924805 4 0.029606358674173227 5 0.029256183317273716 6 0.026053696818846138 3 0.024106994768524473 7 0.023369128473715552 8 0.02319243346163005 1 0.023154324858912688 2 0.022802201153837402 16 0.017991365462527126 15 0.012127075052524774 __DUMMY__ 0.004310513796780357 false 1.0 395 10 0.102054 18 0.100635 11 0.07768 19 0.073737 22 0.071674 21 0.06863 14 0.063679 0 0.062788 13 0.056266 17 0.056009 9 0.052641 12 0.052415 20 0.043697 16 0.03758 15 0.03638 23 0.016009 24 0.011083 4 0.005582 5 0.005084 6 0.003721 8 9.64E-4 7 8.89E-4 1 7.84E-4 3 1.9E-5 10 0.102054 18 0.100635 11 0.07768 19 0.073737 22 0.071674 21 0.06863 14 0.063679 0 0.062788 13 0.056266 17 0.056009 9 0.052641 12 0.052415 20 0.043697 16 0.03758 15 0.03638 23 0.016009 24 0.011083 4 0.005582 5 0.005084 6 0.003721 8 9.64E-4 7 8.89E-4 1 7.84E-4 3 1.9E-5 18 0.08552902536724862 10 0.07894478065053337 21 0.07043805846308253 19 0.07041876295637413 22 0.06995577671771629 11 0.06956199801787806 12 0.053350197212316194 14 0.05267003074474403 0 0.05223728163002699 17 0.05129236694461048 13 0.04771810453436191 9 0.04745577345423718 20 0.04604031061705625 16 0.03674515091158637 15 0.029220554666515818 23 0.02764088818798624 24 0.026307915076417932 4 0.013623954452425037 5 0.013131229230843575 6 0.011158871032331567 8 0.00865498172487425 7 0.008640371345307027 3 0.008485682158029037 1 0.008465022594113558 2 0.007903594982085146 __DUMMY__ 0.00440931632729837 false 1.0 153 17 0.091245 0 0.082998 16 0.079001 9 0.055578 22 0.053797 18 0.052564 11 0.048546 19 0.048072 10 0.042564 6 0.042214 8 0.039228 1 0.039022 7 0.03893 2 0.038165 4 0.036826 5 0.036462 3 0.031783 12 0.029774 21 0.02841 23 0.0256 15 0.022161 20 0.013953 13 0.012027 24 0.011079 17 0.091245 0 0.082998 16 0.079001 9 0.055578 22 0.053797 18 0.052564 11 0.048546 19 0.048072 10 0.042564 6 0.042214 8 0.039228 1 0.039022 7 0.03893 2 0.038165 4 0.036826 5 0.036462 3 0.031783 12 0.029774 21 0.02841 23 0.0256 15 0.022161 20 0.013953 13 0.012027 24 0.011079 17 0.07633016679684049 0 0.07104652662208814 16 0.062055543348977456 22 0.05893248319329808 18 0.0554770239357062 9 0.054395979098615134 11 0.051507313846851574 19 0.050010584028809105 10 0.04575256995139024 21 0.03960858548727146 6 0.038501311422401485 8 0.03607398922309328 7 0.035895271263810355 4 0.03585084228267031 1 0.03583061084994065 5 0.035380808920952994 2 0.03515048992858087 12 0.03236776967444149 3 0.03134724441724477 23 0.02976545094634042 20 0.02028801765201443 15 0.020034590576058064 24 0.01957602976271074 13 0.015726762789916682 14 0.009888184602937927 __DUMMY__ 0.0032058493770379063 false 1.0 154 19 0.106871 18 0.079289 20 0.078657 16 0.078482 21 0.075486 22 0.066678 11 0.063537 17 0.063014 12 0.061046 24 0.055592 10 0.052611 23 0.046151 0 0.043047 14 0.032121 13 0.029586 15 0.026864 9 0.026315 4 0.005284 5 0.004567 3 0.001996 6 0.001728 8 5.82E-4 7 3.23E-4 1 1.73E-4 19 0.106871 18 0.079289 20 0.078657 16 0.078482 21 0.075486 22 0.066678 11 0.063537 17 0.063014 12 0.061046 24 0.055592 10 0.052611 23 0.046151 0 0.043047 14 0.032121 13 0.029586 15 0.026864 9 0.026315 4 0.005284 5 0.004567 3 0.001996 6 0.001728 8 5.82E-4 7 3.23E-4 1 1.73E-4 19 0.08732842117935855 21 0.07552717785271539 18 0.0732040187971729 22 0.06688766832948459 20 0.06502093858498023 11 0.06224206081786977 12 0.0603807982428962 16 0.057400506840156136 17 0.053691541442244174 10 0.051302668782683504 24 0.05107970658482466 23 0.044754245301820865 0 0.04035723444417734 14 0.036545902052897344 13 0.035807347611177445 9 0.0322957080755646 15 0.023413618438510947 4 0.013473699366564739 5 0.012876179027546387 6 0.010128125260347247 3 0.00929916038724613 8 0.008309653394594458 7 0.008216137416366072 1 0.00800900141796923 2 0.007745765890234613 __DUMMY__ 0.004702714460596722 false 1.0 396 14 0.122589 13 0.112365 15 0.083013 10 0.08117 18 0.075829 12 0.074081 21 0.068184 20 0.053895 11 0.052355 22 0.042719 19 0.042628 23 0.035053 9 0.030389 24 0.028525 0 0.014996 5 0.013777 4 0.013424 6 0.01031 17 0.009674 3 0.007482 1 0.007007 8 0.006949 7 0.006895 2 0.006689 14 0.122589 13 0.112365 15 0.083013 10 0.08117 18 0.075829 12 0.074081 21 0.068184 20 0.053895 11 0.052355 22 0.042719 19 0.042628 23 0.035053 9 0.030389 24 0.028525 0 0.014996 5 0.013777 4 0.013424 6 0.01031 17 0.009674 3 0.007482 1 0.007007 8 0.006949 7 0.006895 2 0.006689 14 0.08545457275588571 13 0.0797880248739252 18 0.07296394944410202 21 0.07046758400650925 10 0.06728779694282067 12 0.06696949165096466 15 0.05587647233088361 19 0.055426521210400995 11 0.055199091895834614 20 0.05445274404066798 22 0.053109383883611715 23 0.03888893920286662 24 0.036963644189367866 9 0.0334642761198805 17 0.026440341670202313 0 0.02528096439037517 16 0.01832401757187496 4 0.016569259345438365 5 0.01649153382900565 6 0.013477569682157233 3 0.011108983079020009 8 0.01057759089010558 7 0.010552781941218217 1 0.010492926993805945 2 0.010189578818810321 __DUMMY__ 0.0041819592402649215 false 1.0 397 14 0.130581 15 0.117113 10 0.100321 18 0.097846 13 0.072996 20 0.060576 19 0.051285 22 0.050196 21 0.047717 9 0.044946 11 0.038687 23 0.028343 24 0.026685 12 0.025036 17 0.016907 0 0.014069 4 0.013863 5 0.012947 3 0.011336 6 0.008187 8 0.008171 7 0.008038 1 0.007297 2 0.006857 14 0.130581 15 0.117113 10 0.100321 18 0.097846 13 0.072996 20 0.060576 19 0.051285 22 0.050196 21 0.047717 9 0.044946 11 0.038687 23 0.028343 24 0.026685 12 0.025036 17 0.016907 0 0.014069 4 0.013863 5 0.012947 3 0.011336 6 0.008187 8 0.008171 7 0.008038 1 0.007297 2 0.006857 14 0.09033738389802272 18 0.08576907245986816 10 0.07920851427246636 15 0.07635898330064345 19 0.06011215658406306 20 0.058451393254005495 13 0.058402022674155625 21 0.05719948773951066 22 0.05579689250298271 11 0.04680933317484712 9 0.04150966959215897 12 0.03900279631599351 24 0.03458788131049168 23 0.03457877941601833 17 0.030933908510383683 0 0.02543444310040728 16 0.019414394131110405 4 0.01663438446311005 5 0.015966719073507104 3 0.013307059994440406 6 0.012316977397875304 8 0.011352964264032083 7 0.0112948061485314 1 0.010828019028563425 2 0.010462527050161255 __DUMMY__ 0.003929430342649597 false 1.0 155 9 0.074539 22 0.062031 0 0.058724 5 0.056702 4 0.056406 6 0.056007 7 0.055684 8 0.055644 1 0.055523 2 0.055148 3 0.055148 17 0.052398 18 0.047088 10 0.046373 11 0.036285 21 0.034512 23 0.030752 19 0.02692 16 0.021624 24 0.020718 15 0.015835 14 0.01209 12 0.007839 20 0.00601 9 0.074539 22 0.062031 0 0.058724 5 0.056702 4 0.056406 6 0.056007 7 0.055684 8 0.055644 1 0.055523 2 0.055148 3 0.055148 17 0.052398 18 0.047088 10 0.046373 11 0.036285 21 0.034512 23 0.030752 19 0.02692 16 0.021624 24 0.020718 15 0.015835 14 0.01209 12 0.007839 20 0.00601 22 0.06420055199272709 9 0.0636420998306497 0 0.05570201621786953 18 0.053577325697522805 17 0.053261345432449154 10 0.048477077472305494 11 0.04583588246022033 21 0.04579439936791614 4 0.045194428067488426 5 0.045030926175080054 6 0.044303821488966603 7 0.04327638014295046 8 0.04326911352038967 1 0.043086704594313824 2 0.0426288968109455 3 0.04259110285171263 19 0.03993765820947556 23 0.03318814626179263 16 0.029263360152789804 24 0.026438490929447077 12 0.022661147511434117 14 0.019103501725606684 20 0.018019301039908436 15 0.016682541786946982 13 0.011550178770756066 __DUMMY__ 0.0032836014883353432 false 1.0 398 18 0.094719 10 0.089962 19 0.077299 11 0.076158 21 0.075374 22 0.071993 12 0.059814 14 0.059651 0 0.056012 13 0.055787 17 0.053133 20 0.051188 9 0.046381 16 0.039737 15 0.030527 24 0.022834 23 0.022126 4 0.005863 5 0.005637 6 0.003506 7 7.01E-4 8 5.97E-4 3 5.29E-4 1 4.72E-4 18 0.094719 10 0.089962 19 0.077299 11 0.076158 21 0.075374 22 0.071993 12 0.059814 14 0.059651 0 0.056012 13 0.055787 17 0.053133 20 0.051188 9 0.046381 16 0.039737 15 0.030527 24 0.022834 23 0.022126 4 0.005863 5 0.005637 6 0.003506 7 7.01E-4 8 5.97E-4 3 5.29E-4 1 4.72E-4 18 0.08179124547740563 21 0.07455711026371442 19 0.07240608789337448 10 0.0715775965589599 22 0.07011648595572675 11 0.06875843607328498 12 0.05790904721250667 20 0.05025199233511452 14 0.050243713162720846 17 0.0494736269341205 0 0.048079758684663236 13 0.047630069539150145 9 0.043691748225543094 16 0.03790024594561214 24 0.03332585614903183 23 0.031521929107754205 15 0.025655201686724582 4 0.013875452712587886 5 0.01350522677624324 6 0.011110163638644364 3 0.008797729276896918 7 0.008580744873663835 8 0.008511085864327401 1 0.008344395096619786 2 0.00793120823616718 __DUMMY__ 0.004453842319441391 false 1.0 156 9 0.063058 4 0.056731 5 0.056679 6 0.055548 1 0.05453 7 0.054466 8 0.054444 3 0.053813 2 0.053773 10 0.049165 22 0.047827 18 0.043127 14 0.042223 0 0.040154 23 0.038924 21 0.037585 13 0.035115 15 0.032008 11 0.03087 17 0.028527 12 0.024277 24 0.022428 19 0.013578 20 0.011149 9 0.063058 4 0.056731 5 0.056679 6 0.055548 1 0.05453 7 0.054466 8 0.054444 3 0.053813 2 0.053773 10 0.049165 22 0.047827 18 0.043127 14 0.042223 0 0.040154 23 0.038924 21 0.037585 13 0.035115 15 0.032008 11 0.03087 17 0.028527 12 0.024277 24 0.022428 19 0.013578 20 0.011149 22 0.055391286044214644 9 0.05367438805218083 18 0.052274121772206084 21 0.05193254457669384 10 0.049734755619327095 11 0.043575267530462876 4 0.04294109105398703 5 0.04265009119462246 6 0.04131888606843844 0 0.04107303806633012 14 0.04083517973635308 23 0.03981464808332298 7 0.03952121578334991 8 0.039505143682459234 1 0.0394643570060911 3 0.038950613183449626 2 0.03886917591507681 12 0.0388397179204063 13 0.03849793809226273 17 0.0363095252788721 19 0.03426958502275548 24 0.030276086852558393 15 0.026345927738689573 20 0.02525172987222455 16 0.015263386071704287 __DUMMY__ 0.003420299781960421 false 1.0 157 3 0.060996 4 0.05792 5 0.057386 8 0.057231 7 0.057131 1 0.056983 2 0.056646 9 0.056009 6 0.054066 23 0.049615 24 0.047309 22 0.046451 15 0.042013 18 0.041084 10 0.037701 20 0.035136 19 0.032908 14 0.029882 21 0.029154 17 0.029038 0 0.027107 11 0.021808 16 0.015816 13 6.11E-4 3 0.060996 4 0.05792 5 0.057386 8 0.057231 7 0.057131 1 0.056983 2 0.056646 9 0.056009 6 0.054066 23 0.049615 24 0.047309 22 0.046451 15 0.042013 18 0.041084 10 0.037701 20 0.035136 19 0.032908 14 0.029882 21 0.029154 17 0.029038 0 0.027107 11 0.021808 16 0.015816 13 6.11E-4 18 0.056636991735632504 22 0.05644507648253503 19 0.052238673473101675 21 0.05074827019726878 9 0.0474488470304279 24 0.046881078661690036 10 0.04598468552578448 23 0.04587505641612227 20 0.04556643625689232 11 0.03982210976235242 4 0.038880263090889614 5 0.038366088810898764 3 0.03826832646853897 17 0.037184801167418055 14 0.037142776784470005 8 0.035823023532078606 7 0.035785099995320965 1 0.03558200655049136 2 0.03524855063999873 6 0.03519124754527414 15 0.03460340269267858 0 0.03186352308602794 16 0.02712513559700077 12 0.0271089111260733 13 0.019798816941363866 __DUMMY__ 0.004380800429668825 false 1.0 399 14 0.123425 13 0.11298 15 0.083404 10 0.08145 18 0.076049 12 0.074536 21 0.068185 20 0.05409 11 0.052634 19 0.042966 22 0.04285 23 0.035268 9 0.030097 24 0.028557 0 0.015002 5 0.013308 4 0.013237 6 0.009946 17 0.009492 3 0.006993 8 0.006608 1 0.006391 7 0.00634 2 0.006192 14 0.123425 13 0.11298 15 0.083404 10 0.08145 18 0.076049 12 0.074536 21 0.068185 20 0.05409 11 0.052634 19 0.042966 22 0.04285 23 0.035268 9 0.030097 24 0.028557 0 0.015002 5 0.013308 4 0.013237 6 0.009946 17 0.009492 3 0.006993 8 0.006608 1 0.006391 7 0.00634 2 0.006192 14 0.08584334582834473 13 0.08007400845993172 18 0.07306621119119673 21 0.07046798358733003 10 0.06741797204932501 12 0.0671810656175013 15 0.056058287999252436 19 0.05558368516084326 11 0.055328813113439165 20 0.054543394641894165 22 0.053170267116861486 23 0.038988906975642404 24 0.03697849411205596 9 0.033328425671003636 17 0.026355662567084565 0 0.02528373168017599 16 0.01832400052560392 4 0.016482263751830543 5 0.01627337033612528 6 0.013308248131428774 3 0.010881521900341638 8 0.010418970134111062 7 0.010294622392991575 1 0.01020639428755034 2 0.009958397418217616 __DUMMY__ 0.004181955349916618 false 1.0 158 9 0.074716 4 0.059992 22 0.059716 7 0.059651 8 0.059603 6 0.059407 1 0.059016 5 0.058474 3 0.057758 2 0.057673 0 0.055755 17 0.050481 18 0.045306 10 0.04429 23 0.034442 21 0.032562 11 0.031775 19 0.023286 24 0.021363 16 0.017223 15 0.014728 14 0.012196 20 0.005716 12 0.004873 9 0.074716 4 0.059992 22 0.059716 7 0.059651 8 0.059603 6 0.059407 1 0.059016 5 0.058474 3 0.057758 2 0.057673 0 0.055755 17 0.050481 18 0.045306 10 0.04429 23 0.034442 21 0.032562 11 0.031775 19 0.023286 24 0.021363 16 0.017223 15 0.014728 14 0.012196 20 0.005716 12 0.004873 9 0.0639398495535906 22 0.06236590133120852 0 0.054248311710437896 17 0.05216936198291674 18 0.05205906517965119 4 0.04764882124297233 10 0.047092243913712965 6 0.046749441082048926 5 0.046644517207072286 7 0.04602592834524861 8 0.046013223973249494 1 0.04562353832321082 2 0.044712515219810324 3 0.04466298550622406 21 0.04385848493681508 11 0.04278436663592031 19 0.03727926034563138 23 0.03515726776326966 16 0.026915505789688345 24 0.02647427189972269 12 0.02063293528747469 14 0.018747955895391827 20 0.01737674106787393 15 0.01631584433902365 13 0.011252519795346378 __DUMMY__ 0.0032491416724872504 false 1.0 159 6 0.073077 8 0.07249 7 0.072436 1 0.072077 2 0.071629 4 0.071541 5 0.070726 3 0.069579 9 0.06092 23 0.04986 0 0.046838 17 0.045894 22 0.040396 24 0.030256 18 0.024523 16 0.023457 10 0.019827 21 0.019515 11 0.017323 15 0.012852 19 0.011889 12 0.01185 20 0.007586 13 0.003458 6 0.073077 8 0.07249 7 0.072436 1 0.072077 2 0.071629 4 0.071541 5 0.070726 3 0.069579 9 0.06092 23 0.04986 0 0.046838 17 0.045894 22 0.040396 24 0.030256 18 0.024523 16 0.023457 10 0.019827 21 0.019515 11 0.017323 15 0.012852 19 0.011889 12 0.01185 20 0.007586 13 0.003458 9 0.0572378540431135 6 0.0558244921644064 4 0.05548034157234932 5 0.054820932955863884 8 0.054717574378079836 7 0.05469513073251063 1 0.054452192745959 2 0.05393832787984915 3 0.05266087029746364 22 0.05083669675142775 0 0.04901846167400249 17 0.04901719601313038 23 0.0441197766257261 18 0.03962927028597811 21 0.03556271335587501 11 0.033027126006359625 10 0.032899707586140234 24 0.030916610021808736 19 0.029119120682799787 16 0.028851129745716568 12 0.023572008786204128 20 0.017310966458482232 15 0.015024833747592852 13 0.012908993264252936 14 0.011525448271060645 __DUMMY__ 0.0028322239538468696 false 1.0 50 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.05647271290545149 4 0.05537155826494784 5 0.05499261602268552 6 0.0549373032424618 1 0.054761530908075444 7 0.05464559805420549 8 0.05450417862497626 2 0.05389110273177944 3 0.05349387483607181 22 0.05113102756465351 23 0.04595193616946351 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235916 24 0.035129056096603065 10 0.031741523468311016 11 0.03122696784021763 19 0.030683059987402877 16 0.026302599497096766 12 0.02217931306520858 20 0.020816584766715905 15 0.01673716051990459 14 0.013559119680263396 13 0.011489784582152628 __DUMMY__ 0.002947040178359979 false 1.0 51 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 22 0.06423411035747302 9 0.0638436000288359 0 0.05584240804777137 18 0.05412824236351737 17 0.053825790872557316 10 0.048579219314396634 11 0.04607797684520707 21 0.046041158815947135 4 0.045284442327350086 5 0.044417918426798604 6 0.04430939887347095 7 0.04349188497291055 8 0.04340904464592572 1 0.04325695858894387 2 0.042242611306663104 3 0.0422094824087535 19 0.04032437170046848 23 0.03354314060435527 16 0.02901796520309369 24 0.026493992615712947 12 0.022127455941519898 14 0.018790934886360966 20 0.01820962641646831 15 0.01546449109642988 13 0.011550173382547203 __DUMMY__ 0.003283599956520901 false 1.0 52 22 0.088834 11 0.072042 9 0.069235 21 0.06824 0 0.062045 18 0.057159 17 0.056314 10 0.054013 19 0.04876 4 0.038697 5 0.038168 6 0.035608 3 0.03473 8 0.034058 7 0.033977 1 0.033775 2 0.033165 24 0.029524 12 0.027599 16 0.025334 23 0.023829 14 0.018513 20 0.010602 13 0.005778 22 0.088834 11 0.072042 9 0.069235 21 0.06824 0 0.062045 18 0.057159 17 0.056314 10 0.054013 19 0.04876 4 0.038697 5 0.038168 6 0.035608 3 0.03473 8 0.034058 7 0.033977 1 0.033775 2 0.033165 24 0.029524 12 0.027599 16 0.025334 23 0.023829 14 0.018513 20 0.010602 13 0.005778 22 0.07860029514208747 21 0.06743406708620289 11 0.06582833176448002 18 0.06040869073037114 9 0.05794259656865378 19 0.05468940199258509 0 0.05454450688716735 17 0.05355293776266715 10 0.05222737301681416 12 0.037624422222051125 24 0.034075358606766186 4 0.03329750318813314 5 0.032751827317945424 16 0.031403680152170294 23 0.03125716087379071 6 0.03064683660930409 3 0.029037592400114047 8 0.028818948824589703 7 0.028787233612325578 1 0.02855262452200798 2 0.028018651907419236 14 0.025084974330226655 20 0.024854831961698225 13 0.018147645969504883 15 0.008611250178805457 __DUMMY__ 0.0038012563721181013 false 1.0 53 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.05647271290545149 4 0.05537155826494784 5 0.05499261602268552 6 0.0549373032424618 1 0.054761530908075444 7 0.05464559805420549 8 0.05450417862497626 2 0.05389110273177944 3 0.05349387483607181 22 0.05113102756465351 23 0.04595193616946351 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235916 24 0.035129056096603065 10 0.031741523468311016 11 0.03122696784021763 19 0.030683059987402877 16 0.026302599497096766 12 0.02217931306520858 20 0.020816584766715905 15 0.01673716051990459 14 0.013559119680263396 13 0.011489784582152628 __DUMMY__ 0.002947040178359979 false 1.0 54 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 22 0.06423411035747302 9 0.0638436000288359 0 0.05584240804777137 18 0.05412824236351736 17 0.053825790872557316 10 0.04857921931439663 11 0.04607797684520707 21 0.04604115881594714 4 0.045284442327350086 5 0.044417918426798604 6 0.04430939887347095 7 0.04349188497291055 8 0.04340904464592572 1 0.04325695858894387 2 0.042242611306663104 3 0.0422094824087535 19 0.04032437170046848 23 0.033543140604355266 16 0.02901796520309369 24 0.026493992615712947 12 0.0221274559415199 14 0.018790934886360966 20 0.018209626416468314 15 0.015464491096429882 13 0.011550173382547203 __DUMMY__ 0.0032835999565209014 false 1.0 55 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.06415416941953143 22 0.06249217519205615 0 0.054178459782006506 17 0.052210380909850314 18 0.05216809786310478 4 0.047680055256035206 5 0.047014422247791954 6 0.04673548742020275 10 0.0467107363400928 8 0.04597737511246975 7 0.04592486077048156 1 0.04586067620850168 2 0.04486906097681954 3 0.04481859954416131 21 0.04385477858420794 11 0.042542145607282526 19 0.03723781724016023 23 0.03497886435747076 16 0.026924835288209385 24 0.02650829113666007 12 0.02067487121922564 14 0.018701379829156997 20 0.016879689347513424 15 0.0164011021236037 13 0.01125252503731021 __DUMMY__ 0.0032491431860933975 false 1.0 56 9 0.074038 4 0.070324 8 0.069494 5 0.069272 6 0.069182 7 0.069129 3 0.068881 1 0.068587 2 0.06836 22 0.051501 0 0.043603 23 0.043577 10 0.039475 17 0.037861 18 0.034673 21 0.026436 24 0.025626 15 0.018934 11 0.016256 14 0.014929 19 0.010745 20 0.00474 16 0.004372 13 9.0E-6 9 0.074038 4 0.070324 8 0.069494 5 0.069272 6 0.069182 7 0.069129 3 0.068881 1 0.068587 2 0.06836 22 0.051501 0 0.043603 23 0.043577 10 0.039475 17 0.037861 18 0.034673 21 0.026436 24 0.025626 15 0.018934 11 0.016256 14 0.014929 19 0.010745 20 0.00474 16 0.004372 13 9.0E-6 9 0.06441615056501844 22 0.0564908176244309 4 0.055213876963767984 5 0.05443185457162022 6 0.054099352342671006 8 0.05361359634113589 7 0.05344649665744498 1 0.05311192837362529 3 0.052882719053103995 2 0.05268810422062837 0 0.04723068107649345 18 0.044893408908730933 17 0.044726343405467876 10 0.04310473767524999 23 0.04062113081744191 21 0.0383184432666295 11 0.03210033084629 24 0.028584102455647596 19 0.02842357087965509 14 0.019215332726694588 16 0.018870931379656043 15 0.018844665481194327 12 0.01593952618301479 20 0.015788003828506293 13 0.0099597244824511 __DUMMY__ 0.0029841698734296355 false 1.0 57 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 22 0.06423411035747302 9 0.0638436000288359 0 0.05584240804777137 18 0.05412824236351736 17 0.053825790872557316 10 0.04857921931439663 11 0.04607797684520707 21 0.046041158815947135 4 0.045284442327350086 5 0.044417918426798604 6 0.04430939887347095 7 0.04349188497291055 8 0.04340904464592572 1 0.04325695858894387 2 0.04224261130666311 3 0.0422094824087535 19 0.04032437170046848 23 0.033543140604355266 16 0.029017965203093687 24 0.026493992615712947 12 0.022127455941519898 14 0.018790934886360963 20 0.01820962641646831 15 0.01546449109642988 13 0.011550173382547203 __DUMMY__ 0.0032835999565209014 false 1.0 58 9 0.074959 22 0.062954 4 0.061886 5 0.060927 6 0.060195 8 0.059712 7 0.059507 1 0.059302 3 0.058889 2 0.058432 0 0.050593 10 0.04572 18 0.043113 21 0.041437 17 0.039375 23 0.036655 11 0.036379 24 0.021658 14 0.018869 19 0.015641 12 0.013042 13 0.009938 15 0.009909 16 9.07E-4 9 0.074959 22 0.062954 4 0.061886 5 0.060927 6 0.060195 8 0.059712 7 0.059507 1 0.059302 3 0.058889 2 0.058432 0 0.050593 10 0.04572 18 0.043113 21 0.041437 17 0.039375 23 0.036655 11 0.036379 24 0.021658 14 0.018869 19 0.015641 12 0.013042 13 0.009938 15 0.009909 16 9.07E-4 22 0.06457719949471895 9 0.061569350669058415 21 0.052526549406347656 18 0.0518752176183719 0 0.049135182888910695 10 0.04769003832669031 11 0.04695888694597005 4 0.04639924354928967 5 0.045663699213235154 6 0.04462467697291889 17 0.04452944461685766 8 0.04331079570707145 7 0.043221983632747825 1 0.04301425105207042 3 0.04265999777413505 2 0.042349739779504215 23 0.0375335524851852 19 0.03570871865089142 12 0.02967723204467627 24 0.029051898833410878 14 0.024965929826829453 13 0.020535392154350105 16 0.01791205745495105 20 0.017636974317929967 15 0.0133906905194666 __DUMMY__ 0.0034812960644105876 false 1.0 59 19 0.069385 17 0.068642 18 0.066784 22 0.066426 0 0.060808 16 0.059642 9 0.054969 10 0.052978 11 0.049837 21 0.044523 20 0.03738 23 0.034625 4 0.032012 5 0.031592 7 0.031109 1 0.031082 8 0.031037 6 0.030974 3 0.030877 24 0.030429 2 0.030292 15 0.022057 12 0.020019 14 0.012524 19 0.069385 17 0.068642 18 0.066784 22 0.066426 0 0.060808 16 0.059642 9 0.054969 10 0.052978 11 0.049837 21 0.044523 20 0.03738 23 0.034625 4 0.032012 5 0.031592 7 0.031109 1 0.031082 8 0.031037 6 0.030974 3 0.030877 24 0.030429 2 0.030292 15 0.022057 12 0.020019 14 0.012524 22 0.0672202557685029 19 0.06570460040729117 18 0.06542425856736594 17 0.06009944426958544 21 0.05564231837677084 11 0.054851529448173744 0 0.05396828554778334 10 0.051662774968749076 9 0.050302441232029066 16 0.049446987367225 20 0.03888747750108676 23 0.036635961441812644 24 0.034724941303356 12 0.03432050664334249 4 0.029468447180708894 5 0.0289847449874359 6 0.027876158311687334 7 0.02685775130863403 8 0.026823979113343194 1 0.026709718074693592 3 0.02659839149217028 2 0.026106946051192095 14 0.022173486319323296 15 0.019934663895548942 13 0.015543792607022577 __DUMMY__ 0.004030137815165565 false 1.0 160 9 0.076328 4 0.060089 7 0.059566 8 0.059441 6 0.059439 22 0.059251 1 0.059214 5 0.059172 3 0.058276 2 0.058195 0 0.055201 17 0.049745 18 0.04408 10 0.043945 23 0.033582 21 0.032527 11 0.031571 19 0.023096 24 0.021546 16 0.017556 15 0.015636 14 0.012364 12 0.005393 20 0.004787 9 0.076328 4 0.060089 7 0.059566 8 0.059441 6 0.059439 22 0.059251 1 0.059214 5 0.059172 3 0.058276 2 0.058195 0 0.055201 17 0.049745 18 0.04408 10 0.043945 23 0.033582 21 0.032527 11 0.031571 19 0.023096 24 0.021546 16 0.017556 15 0.015636 14 0.012364 12 0.005393 20 0.004787 9 0.06469085645086074 22 0.062149340016698126 0 0.05399028234154393 17 0.05182654630169881 18 0.05148798376966343 4 0.04769405291419412 5 0.046969722720608044 10 0.046931570154751266 6 0.04676439178125931 7 0.04598637412905295 8 0.04593779943255904 1 0.0457158187773341 2 0.04495572964723085 3 0.04490433649463258 21 0.043842221112037144 11 0.04268937346182869 19 0.037190783917480624 23 0.034756671053118054 16 0.02707065832281037 24 0.02655954678929764 12 0.020875195583603803 14 0.01882623586314061 20 0.01694398426474155 15 0.016738849720874523 13 0.011252530279278928 __DUMMY__ 0.003249144699700956 false 1.0 161 20 0.102961 19 0.099234 21 0.083902 12 0.078846 18 0.078706 24 0.076404 23 0.059355 16 0.056119 22 0.054326 13 0.053098 14 0.048478 11 0.047942 10 0.041654 17 0.039909 15 0.033762 0 0.014057 9 0.01317 5 0.006316 4 0.006224 3 0.00323 6 0.001616 7 3.16E-4 8 2.96E-4 2 7.8E-5 20 0.102961 19 0.099234 21 0.083902 12 0.078846 18 0.078706 24 0.076404 23 0.059355 16 0.056119 22 0.054326 13 0.053098 14 0.048478 11 0.047942 10 0.041654 17 0.039909 15 0.033762 0 0.014057 9 0.01317 5 0.006316 4 0.006224 3 0.00323 6 0.001616 7 3.16E-4 8 2.96E-4 2 7.8E-5 19 0.08358664797009634 21 0.07938886693173941 20 0.07708535673431252 18 0.07358541357419002 12 0.06870150345983514 24 0.06088923929027057 22 0.06077021625747276 11 0.054475793839368084 23 0.05076897721414326 13 0.047730643484682665 10 0.04687152478910861 16 0.046062189557573366 14 0.045749261773788526 17 0.042151514706147836 15 0.02793677524362778 9 0.02607526699348515 0 0.02602449462210411 4 0.013684822939518126 5 0.013464332879222732 6 0.009767043417887797 3 0.009676576785910704 7 0.00792873840705941 8 0.007898417803007035 1 0.007647028683103469 2 0.007503987952748454 __DUMMY__ 0.004575364689596156 false 1.0 162 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.06382481488400814 22 0.06275025498368261 0 0.05422923721393302 18 0.052205831551050165 17 0.05191223819028183 4 0.04746343593634873 10 0.047144906675464386 5 0.04690122118395579 6 0.04655846518045896 8 0.04579895532872799 7 0.04575109946673305 1 0.04542557417713144 2 0.04488769489679256 3 0.04483630176813569 21 0.043932575200095345 11 0.042719167847026306 19 0.03736080111198223 23 0.0350030884534357 16 0.027054341032021947 24 0.026471954992712658 12 0.02077828947507595 14 0.018730262405115192 20 0.017198795227051557 15 0.016559024595375126 13 0.011252525037310212 __DUMMY__ 0.0032491431860933984 false 1.0 163 21 0.081615 22 0.069049 12 0.061134 11 0.060893 18 0.054893 10 0.052483 9 0.050785 13 0.049939 23 0.044785 14 0.043445 19 0.041698 24 0.041575 4 0.036488 5 0.03584 0 0.034185 6 0.032281 20 0.031322 3 0.030592 8 0.029525 7 0.029507 1 0.029221 2 0.028775 17 0.025037 15 0.004933 21 0.081615 22 0.069049 12 0.061134 11 0.060893 18 0.054893 10 0.052483 9 0.050785 13 0.049939 23 0.044785 14 0.043445 19 0.041698 24 0.041575 4 0.036488 5 0.03584 0 0.034185 6 0.032281 20 0.031322 3 0.030592 8 0.029525 7 0.029507 1 0.029221 2 0.028775 17 0.025037 15 0.004933 21 0.07772854049445761 22 0.0677582824043791 11 0.060883329152391336 18 0.06042271138162936 12 0.0601555604281707 19 0.05356609728272918 10 0.05141577318344845 13 0.046305671098625455 9 0.04517149355611317 23 0.043504323690817234 24 0.04276732171353043 14 0.0419799729046928 20 0.03975481318433374 0 0.036892062488535694 17 0.035026053691821026 4 0.02966582410934705 5 0.029100212078021718 6 0.02616093469509347 3 0.024128527162074295 7 0.02350353138253614 8 0.023485604036305976 1 0.02324845054636777 2 0.0228391894099279 16 0.017991357036433876 15 0.012233851110226313 __DUMMY__ 0.004310511777990217 false 1.0 164 10 0.103051 18 0.097812 22 0.082571 11 0.077805 9 0.070575 0 0.06937 21 0.068633 19 0.056846 17 0.054493 14 0.053349 13 0.042355 12 0.038289 15 0.02052 20 0.019409 4 0.018507 5 0.017894 6 0.01608 16 0.015028 1 0.013462 7 0.013393 8 0.013087 3 0.012525 23 0.012501 2 0.012442 10 0.103051 18 0.097812 22 0.082571 11 0.077805 9 0.070575 0 0.06937 21 0.068633 19 0.056846 17 0.054493 14 0.053349 13 0.042355 12 0.038289 15 0.02052 20 0.019409 4 0.018507 5 0.017894 6 0.01608 16 0.015028 1 0.013462 7 0.013393 8 0.013087 3 0.012525 23 0.012501 2 0.012442 18 0.08195125176023232 10 0.07806403412044129 22 0.07482081237011334 11 0.06863735592204989 21 0.06838964822866543 19 0.05954772787920779 9 0.0575841238278784 0 0.05665791884469935 17 0.05114002768288744 14 0.04546079139971302 12 0.04442523600857702 13 0.039020752449685524 20 0.03131825305821864 23 0.025662720300749457 16 0.02541794820976281 4 0.0220527914456705 5 0.021492040187886537 15 0.020628792430825528 24 0.019868922031931965 6 0.01955792845880153 7 0.01715059458128436 1 0.01706228810142113 8 0.01699326749448983 3 0.016789350917729977 2 0.01636083113553166 __DUMMY__ 0.003944591151545189 false 1.0 165 10 0.103841 18 0.090619 11 0.090341 22 0.077989 21 0.074653 13 0.070606 14 0.069492 0 0.068812 12 0.062341 9 0.058854 19 0.054483 17 0.048782 15 0.025969 20 0.02013 16 0.019164 4 0.011281 5 0.010684 23 0.010672 6 0.009571 8 0.00473 7 0.004655 2 0.004561 1 0.00447 3 0.003301 10 0.103841 18 0.090619 11 0.090341 22 0.077989 21 0.074653 13 0.070606 14 0.069492 0 0.068812 12 0.062341 9 0.058854 19 0.054483 17 0.048782 15 0.025969 20 0.02013 16 0.019164 4 0.011281 5 0.010684 23 0.010672 6 0.009571 8 0.00473 7 0.004655 2 0.004561 1 0.00447 3 0.003301 10 0.07965447047499842 18 0.07951351967694899 11 0.07589741724546192 22 0.07274405282506478 21 0.07240672577180621 19 0.059180154815233026 12 0.05790454332625061 0 0.05645990686436495 13 0.05492197515204233 14 0.0548051629365825 9 0.05123674164107273 17 0.04824491888534969 20 0.032261207052809625 16 0.027505667393445087 23 0.024500367835585474 15 0.02358842963214372 24 0.019436485040988636 4 0.01732701252541976 5 0.016783529333384967 6 0.015192874790524644 8 0.011583237969447309 7 0.011561537896583502 1 0.011354139116412488 2 0.011191937978920633 3 0.010892232550146132 __DUMMY__ 0.0038517512690118176 false 1.0 166 10 0.104414 18 0.098683 11 0.089184 22 0.079386 0 0.072816 21 0.068076 19 0.067519 17 0.060534 14 0.060099 9 0.05729 13 0.054771 12 0.051365 16 0.034177 15 0.028674 20 0.02603 23 0.010646 4 0.008585 5 0.008153 6 0.006971 2 0.003031 8 0.002708 1 0.002666 7 0.002516 3 0.001706 10 0.104414 18 0.098683 11 0.089184 22 0.079386 0 0.072816 21 0.068076 19 0.067519 17 0.060534 14 0.060099 9 0.05729 13 0.054771 12 0.051365 16 0.034177 15 0.028674 20 0.02603 23 0.010646 4 0.008585 5 0.008153 6 0.006971 2 0.003031 8 0.002708 1 0.002666 7 0.002516 3 0.001706 18 0.0824602350525023 10 0.07936951303892278 11 0.07416871952977498 22 0.07372865246563391 21 0.06724140959148063 19 0.06402954710366032 0 0.059433893150439544 17 0.05476241202045229 9 0.05235842388589278 12 0.04909478692744274 14 0.048198970199664876 13 0.04372187323684727 16 0.03456124978326439 20 0.03315761735225572 15 0.02466122664920314 23 0.023896787374719817 24 0.018781350459600086 4 0.017724255003643337 5 0.017241748289937173 6 0.01568269216618401 8 0.012572289042385122 7 0.01248673650254008 1 0.01243246233511412 2 0.0123770449749916 3 0.012107369942915343 __DUMMY__ 0.00374873392053172 false 1.0 167 0 0.089632 17 0.082228 9 0.061514 11 0.061152 16 0.059445 22 0.058759 10 0.056259 18 0.053163 6 0.04423 2 0.040981 8 0.040969 7 0.040799 1 0.040771 4 0.039515 5 0.039197 19 0.03798 3 0.035126 21 0.031547 12 0.02927 23 0.021144 13 0.017715 15 0.013488 14 0.004309 24 8.07E-4 0 0.089632 17 0.082228 9 0.061514 11 0.061152 16 0.059445 22 0.058759 10 0.056259 18 0.053163 6 0.04423 2 0.040981 8 0.040969 7 0.040799 1 0.040771 4 0.039515 5 0.039197 19 0.03798 3 0.035126 21 0.031547 12 0.02927 23 0.021144 13 0.017715 15 0.013488 14 0.004309 24 8.07E-4 0 0.0719144060838865 17 0.0690783083758321 22 0.06236650299483593 11 0.057974139731476165 9 0.05738754067534212 18 0.05605519732070458 10 0.05273385204177166 16 0.04907339947701079 19 0.04508519604507744 21 0.043564773091163946 6 0.038990710743374256 4 0.03715314493361209 5 0.03670820441711268 8 0.036478260835158975 7 0.03637658327137784 1 0.036255780861522355 2 0.03607487058832009 12 0.033055580550447376 3 0.03295699636072049 23 0.02821810988862058 13 0.01967546319605534 24 0.016099591031910575 15 0.015118796684633212 20 0.014335477036479577 14 0.013991602142824236 __DUMMY__ 0.003277511620729089 false 1.0 168 10 0.115086 18 0.109108 11 0.088827 22 0.088704 21 0.08505 14 0.069127 9 0.066982 0 0.064592 19 0.062372 13 0.061741 12 0.055494 17 0.046179 20 0.02479 15 0.019545 23 0.012131 4 0.008844 5 0.008581 6 0.005 16 0.004125 1 8.73E-4 24 8.49E-4 8 7.09E-4 7 6.57E-4 3 6.35E-4 10 0.115086 18 0.109108 11 0.088827 22 0.088704 21 0.08505 14 0.069127 9 0.066982 0 0.064592 19 0.062372 13 0.061741 12 0.055494 17 0.046179 20 0.02479 15 0.019545 23 0.012131 4 0.008844 5 0.008581 6 0.005 16 0.004125 1 8.73E-4 24 8.49E-4 8 7.09E-4 7 6.57E-4 3 6.35E-4 18 0.08747569339417631 10 0.08328544320962743 21 0.07784815661529329 22 0.0773806649821672 11 0.0740930335273124 19 0.063210611085736 12 0.05506088532462257 14 0.0545380936650144 9 0.05425504313416487 0 0.05264349388943302 13 0.050556286453837626 17 0.04593785889239557 20 0.03585442959402787 23 0.026515488877733168 24 0.021752912161828494 15 0.020485452556290126 16 0.02002661888745023 4 0.016511707234118517 5 0.016124523804549235 6 0.01320514166153326 3 0.010059616715229883 8 0.009931541014578379 7 0.009926939117337765 1 0.009908800788695979 2 0.009292573729178081 __DUMMY__ 0.0041189896836684925 false 1.0 169 0 0.086305 17 0.077722 10 0.06726 11 0.064106 18 0.06236 9 0.061206 22 0.060599 16 0.05505 19 0.042773 6 0.037471 21 0.035586 8 0.034354 7 0.034195 1 0.034077 4 0.033778 2 0.033715 5 0.033307 12 0.031273 3 0.028812 13 0.024724 15 0.020015 23 0.018292 14 0.016747 20 0.006275 0 0.086305 17 0.077722 10 0.06726 11 0.064106 18 0.06236 9 0.061206 22 0.060599 16 0.05505 19 0.042773 6 0.037471 21 0.035586 8 0.034354 7 0.034195 1 0.034077 4 0.033778 2 0.033715 5 0.033307 12 0.031273 3 0.028812 13 0.024724 15 0.020015 23 0.018292 14 0.016747 20 0.006275 0 0.06880499311682073 17 0.06545403518335799 22 0.06380244687224487 18 0.06254789082207622 11 0.06065118593863502 10 0.05983856090080312 9 0.05610063531596147 19 0.04931694132570422 21 0.04793778419343419 16 0.04602109356137851 12 0.03634091458266674 6 0.033456728220276004 4 0.03241920650927959 5 0.03191114584673235 8 0.030941525372398453 7 0.03085647986453676 1 0.03069009791966938 2 0.030260919521685605 3 0.027834314061137073 23 0.02692214557994678 13 0.02583777347689072 14 0.023060761102466763 20 0.019784638397288175 15 0.019113800365627914 24 0.016577944657428043 __DUMMY__ 0.003516037291553275 false 1.0 60 9 0.07489 4 0.060087 22 0.060029 8 0.059432 6 0.059338 5 0.059335 7 0.059143 1 0.059045 3 0.058372 2 0.05829 0 0.055621 17 0.050142 18 0.044819 10 0.043743 23 0.033566 21 0.032162 11 0.031611 19 0.023303 24 0.021719 16 0.01739 15 0.015435 14 0.012401 12 0.005172 20 0.004954 9 0.07489 4 0.060087 22 0.060029 8 0.059432 6 0.059338 5 0.059335 7 0.059143 1 0.059045 3 0.058372 2 0.05829 0 0.055621 17 0.050142 18 0.044819 10 0.043743 23 0.033566 21 0.032162 11 0.031611 19 0.023303 24 0.021719 16 0.01739 15 0.015435 14 0.012401 12 0.005172 20 0.004954 9 0.06402099653983058 22 0.06251179905002088 0 0.05418596383484141 17 0.05201151227305609 18 0.05183226974750925 4 0.04769314343552723 5 0.047045677896016616 10 0.04683749063421201 6 0.04671736287460911 8 0.04593362819671073 7 0.04578934166442417 1 0.045637111688739684 2 0.04500000619095577 3 0.04494907886284944 21 0.043672206857692644 11 0.04270802728594063 19 0.03728723186845351 23 0.034749233669525134 16 0.026993340093697228 24 0.026640150940991297 12 0.02077225280450954 14 0.018843481025347223 20 0.01702178884644034 15 0.01664522198353711 13 0.011252535521252532 __DUMMY__ 0.003249146213309925 false 1.0 61 4 0.074279 6 0.073582 5 0.07322 7 0.072778 8 0.072736 1 0.07238 2 0.072131 3 0.071944 9 0.059659 23 0.054987 22 0.041626 24 0.04016 17 0.037219 0 0.035706 21 0.023833 18 0.023712 10 0.016165 16 0.015779 15 0.014126 19 0.014091 20 0.01405 11 0.012892 12 0.0095 14 0.003447 4 0.074279 6 0.073582 5 0.07322 7 0.072778 8 0.072736 1 0.07238 2 0.072131 3 0.071944 9 0.059659 23 0.054987 22 0.041626 24 0.04016 17 0.037219 0 0.035706 21 0.023833 18 0.023712 10 0.016165 16 0.015779 15 0.014126 19 0.014091 20 0.01405 11 0.012892 12 0.0095 14 0.003447 9 0.056060217445852815 4 0.05536504060591818 5 0.05458362441797532 6 0.05417626271818137 22 0.05313339777144578 7 0.05302032740495138 8 0.05297968576642026 1 0.052735557590310164 3 0.05235243739039033 2 0.05232139716898525 23 0.046781756900582554 17 0.04324774094811308 0 0.042027550655729336 21 0.04080066721096595 18 0.040466994666892964 24 0.03738416295473993 11 0.032586081050894077 19 0.031995736988975634 10 0.03197715084145419 12 0.02395187592335466 16 0.023774844078171386 20 0.022211946558361933 15 0.015346180333171477 14 0.015210725223521127 13 0.01229365414579513 __DUMMY__ 0.003214983238845715 false 1.0 62 5 0.074675 4 0.073613 6 0.073188 2 0.072978 3 0.072785 1 0.072563 8 0.072472 7 0.072404 9 0.059185 23 0.054663 22 0.041665 24 0.039706 17 0.036896 0 0.035556 18 0.023844 21 0.023715 10 0.016053 16 0.015768 15 0.014428 19 0.014079 20 0.013861 11 0.012819 12 0.009518 14 0.003566 5 0.074675 4 0.073613 6 0.073188 2 0.072978 3 0.072785 1 0.072563 8 0.072472 7 0.072404 9 0.059185 23 0.054663 22 0.041665 24 0.039706 17 0.036896 0 0.035556 18 0.023844 21 0.023715 10 0.016053 16 0.015768 15 0.014428 19 0.014079 20 0.013861 11 0.012819 12 0.009518 14 0.003566 9 0.055841093197603164 5 0.055256462268749626 4 0.05505713552545406 6 0.05399412847321209 22 0.053151480384829544 8 0.052857662001382526 7 0.05284744002736791 1 0.052820224977763355 3 0.052741361530682915 2 0.05271309566148825 23 0.04663198359457735 17 0.04309842677069176 0 0.04195822999963509 21 0.04074614211847759 18 0.04052806847066926 24 0.03717426937138131 11 0.03255235621848041 19 0.03199021781659721 10 0.03192539196995025 12 0.023960221216645844 16 0.02376977969998286 20 0.02212457410096758 15 0.015485838364671645 14 0.015265764511808274 13 0.012293665514888282 __DUMMY__ 0.0032149862120417635 false 1.0 63 1 0.072835 7 0.072641 3 0.072462 8 0.072175 4 0.07201 5 0.071812 2 0.071487 6 0.070884 23 0.068309 24 0.052908 9 0.05161 22 0.03681 17 0.031201 20 0.028423 21 0.027103 0 0.023692 18 0.022831 19 0.022054 16 0.017612 15 0.014153 12 0.013647 10 0.007809 11 0.00321 14 0.002321 1 0.072835 7 0.072641 3 0.072462 8 0.072175 4 0.07201 5 0.071812 2 0.071487 6 0.070884 23 0.068309 24 0.052908 9 0.05161 22 0.03681 17 0.031201 20 0.028423 21 0.027103 0 0.023692 18 0.022831 19 0.022054 16 0.017612 15 0.014153 12 0.013647 10 0.007809 11 0.00321 14 0.002321 23 0.054956042409673216 22 0.05242624987559969 21 0.049085742030556725 4 0.048696963512603386 5 0.04832913370678264 24 0.048100374894527065 9 0.04713134214601657 6 0.04673782163431618 3 0.046559879408550435 7 0.046518005935781065 1 0.04647694797329614 8 0.04626767255545555 2 0.04561210088154632 18 0.043744545451615394 19 0.04318482154544367 17 0.03933338971573178 20 0.03675541590554587 12 0.03321693827329033 0 0.032852953970894085 11 0.03167038821022464 10 0.02862535926152739 16 0.027319722608240362 14 0.01883519503474499 13 0.0173358297572034 15 0.01615256632793647 __DUMMY__ 0.004074596972896805 false 1.0 64 22 0.092359 21 0.088793 11 0.078285 19 0.056179 18 0.054498 9 0.054392 24 0.049211 12 0.046069 10 0.042987 0 0.041917 17 0.04143 23 0.041251 4 0.032284 5 0.031194 14 0.030006 3 0.027722 6 0.02701 20 0.025702 7 0.025404 8 0.02526 1 0.024585 2 0.02432 16 0.020828 13 0.018314 22 0.092359 21 0.088793 11 0.078285 19 0.056179 18 0.054498 9 0.054392 24 0.049211 12 0.046069 10 0.042987 0 0.041917 17 0.04143 23 0.041251 4 0.032284 5 0.031194 14 0.030006 3 0.027722 6 0.02701 20 0.025702 7 0.025404 8 0.02526 1 0.024585 2 0.02432 16 0.020828 13 0.018314 22 0.07960546439499357 21 0.07854376325636062 11 0.06828778483696533 18 0.05963938439797494 19 0.05961705295955889 9 0.04917601385665162 12 0.04828725475301654 10 0.0466087468962117 24 0.04538981028449485 17 0.044886255714329235 0 0.0426365976524231 23 0.04089776140868749 20 0.03483776815539228 14 0.032195767190201924 4 0.02935917803696509 16 0.0289233652116163 5 0.02856480264137501 13 0.02590830606228609 6 0.025441645401052218 3 0.02481830039456141 7 0.02360471737672722 8 0.023518158283000985 1 0.023085880484787033 2 0.02273224433487945 15 0.00935152263356939 __DUMMY__ 0.004082453381917725 false 1.0 65 23 0.087572 24 0.067345 4 0.060175 5 0.059431 6 0.059138 7 0.058388 2 0.058132 3 0.057979 8 0.057946 1 0.057943 20 0.051511 12 0.046023 21 0.040591 19 0.040212 16 0.030841 9 0.029352 22 0.027229 17 0.02704 18 0.024537 13 0.024248 15 0.012075 0 0.011175 14 0.007887 11 0.003231 23 0.087572 24 0.067345 4 0.060175 5 0.059431 6 0.059138 7 0.058388 2 0.058132 3 0.057979 8 0.057946 1 0.057943 20 0.051511 12 0.046023 21 0.040591 19 0.040212 16 0.030841 9 0.029352 22 0.027229 17 0.02704 18 0.024537 13 0.024248 15 0.012075 0 0.011175 14 0.007887 11 0.003231 23 0.06437931055684348 21 0.057153359197176665 24 0.05590734180761979 19 0.05314698903394549 12 0.049915286687142006 20 0.049116106551041656 22 0.04851987830190722 18 0.0454483474759767 4 0.04200104482169609 5 0.04137523701639349 6 0.039886282373874975 3 0.03853055654326176 7 0.038444515292235276 8 0.03820215876149955 1 0.03809456341007467 2 0.037965157783296934 17 0.036712026062033824 9 0.035786349017820955 16 0.033377850802309796 11 0.03261762201428048 13 0.02990580679963412 0 0.026029604574218324 10 0.025356338169061757 14 0.022690136424234595 15 0.015260933223071428 __DUMMY__ 0.004177197299349053 false 1.0 66 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.06415416941953143 22 0.06249217519205615 0 0.054178459782006506 17 0.052210380909850314 18 0.05216809786310478 4 0.047680055256035206 5 0.047014422247791954 6 0.046735487420202754 10 0.04671073634009279 8 0.04597737511246975 7 0.04592486077048156 1 0.04586067620850168 2 0.04486906097681954 3 0.044818599544161314 21 0.04385477858420794 11 0.042542145607282526 19 0.03723781724016024 23 0.03497886435747075 16 0.026924835288209388 24 0.02650829113666007 12 0.020674871219225628 14 0.018701379829157 20 0.016879689347513428 15 0.0164011021236037 13 0.01125252503731021 __DUMMY__ 0.0032491431860933975 false 1.0 67 23 0.072906 5 0.066284 3 0.065838 4 0.065386 2 0.063622 1 0.062304 7 0.061898 6 0.061818 8 0.061473 24 0.058335 9 0.049597 22 0.048262 21 0.042816 19 0.034167 20 0.034111 18 0.032522 17 0.027958 12 0.022122 0 0.019436 16 0.013386 10 0.011989 11 0.011784 15 0.007676 14 0.004314 23 0.072906 5 0.066284 3 0.065838 4 0.065386 2 0.063622 1 0.062304 7 0.061898 6 0.061818 8 0.061473 24 0.058335 9 0.049597 22 0.048262 21 0.042816 19 0.034167 20 0.034111 18 0.032522 17 0.027958 12 0.022122 0 0.019436 16 0.013386 10 0.011989 11 0.011784 15 0.007676 14 0.004314 22 0.05781063874215623 23 0.0571526692349403 21 0.05610799774509971 24 0.049947481298271396 5 0.047681341396316274 4 0.047553213957625476 9 0.0475515852783208 18 0.04637039254349158 19 0.04582279698938325 3 0.045361394809713226 6 0.04447183251399961 2 0.04386518517414585 1 0.04351659800278395 7 0.043457448034190625 8 0.043216938172573806 20 0.03662280729521601 17 0.036562933526557775 12 0.03643843036051783 11 0.03517438325993914 0 0.030830199998350162 10 0.029746316718384798 16 0.022509910312753654 14 0.01932531113414035 13 0.01723767594004985 15 0.011835450045475237 __DUMMY__ 0.003829067515603171 false 1.0 68 21 0.06978 23 0.063933 22 0.061756 24 0.05484 12 0.054295 4 0.050467 5 0.049882 6 0.046593 9 0.045366 11 0.044095 3 0.043991 8 0.043677 7 0.043221 1 0.043153 2 0.042891 18 0.037741 19 0.035756 13 0.032759 20 0.027723 0 0.026232 17 0.02573 10 0.024386 14 0.023787 16 0.007945 21 0.06978 23 0.063933 22 0.061756 24 0.05484 12 0.054295 4 0.050467 5 0.049882 6 0.046593 9 0.045366 11 0.044095 3 0.043991 8 0.043677 7 0.043221 1 0.043153 2 0.042891 18 0.037741 19 0.035756 13 0.032759 20 0.027723 0 0.026232 17 0.02573 10 0.024386 14 0.023787 16 0.007945 21 0.07151411879590909 22 0.06520698007377555 12 0.05454653127491488 11 0.052779723810935875 23 0.05266869544141718 18 0.05177996003781789 19 0.05069468102997258 24 0.04933840414408529 9 0.04360771269848712 10 0.037452964588286196 4 0.037213801972609775 20 0.03717858357359789 5 0.036662480727349414 17 0.036012922714774555 13 0.03484584022854081 6 0.03378637393536302 0 0.03362873529905466 3 0.031603068646301205 8 0.031199928177641816 7 0.031021347704321592 1 0.030849106653030655 14 0.030603599109229194 2 0.030507246109628895 16 0.022020510634719017 15 0.009035153876401159 __DUMMY__ 0.004241528741834822 false 1.0 69 21 0.100829 19 0.094446 22 0.085236 20 0.078615 18 0.076847 24 0.074857 11 0.07322 12 0.067331 23 0.049273 10 0.043861 16 0.043534 17 0.042619 14 0.042528 13 0.032436 9 0.029153 0 0.022558 15 0.016652 4 0.009139 5 0.008447 3 0.004887 6 0.001979 8 8.62E-4 7 5.66E-4 1 1.27E-4 21 0.100829 19 0.094446 22 0.085236 20 0.078615 18 0.076847 24 0.074857 11 0.07322 12 0.067331 23 0.049273 10 0.043861 16 0.043534 17 0.042619 14 0.042528 13 0.032436 9 0.029153 0 0.022558 15 0.016652 4 0.009139 5 0.008447 3 0.004887 6 0.001979 8 8.62E-4 7 5.66E-4 1 1.27E-4 21 0.08653090740666396 19 0.08059440046436499 22 0.076206033814541 18 0.07213493554724378 11 0.06641164503263074 20 0.0639140118346532 12 0.06098020939515377 24 0.05968674819811012 10 0.04766125576880056 23 0.045592614063617996 17 0.04417489555349351 14 0.04110656184836154 16 0.0400127905127793 13 0.03520287358837523 9 0.03500692125552748 0 0.031070869195615674 15 0.01894165055793073 4 0.01612582554843924 5 0.015523610222598964 3 0.011667328474040707 6 0.011002007134054517 8 0.009346598918082689 7 0.009229737439497973 1 0.008879852929317601 2 0.00862114725600426 __DUMMY__ 0.004374568040100571 false 1.0 170 10 0.101307 18 0.087733 11 0.072463 22 0.071841 9 0.067435 14 0.064352 0 0.063118 21 0.060041 13 0.053981 17 0.043715 19 0.043235 12 0.039862 15 0.03145 4 0.024216 5 0.02374 6 0.022058 1 0.018991 7 0.018938 8 0.018914 2 0.018288 3 0.018144 20 0.015919 23 0.013512 16 0.006748 10 0.101307 18 0.087733 11 0.072463 22 0.071841 9 0.067435 14 0.064352 0 0.063118 21 0.060041 13 0.053981 17 0.043715 19 0.043235 12 0.039862 15 0.03145 4 0.024216 5 0.02374 6 0.022058 1 0.018991 7 0.018938 8 0.018914 2 0.018288 3 0.018144 20 0.015919 23 0.013512 16 0.006748 10 0.07954881634946678 18 0.07838291623429136 22 0.06895897963199947 11 0.06553452976364335 21 0.0631006784411846 9 0.05673487940958146 0 0.05376362245528303 14 0.05277646961077512 19 0.052200251263305485 13 0.04576302405911568 17 0.04536430074915162 12 0.04431670480629528 20 0.029351866475313206 15 0.02773615681526596 23 0.02536245415184556 4 0.02469955619150343 5 0.024216969944017622 6 0.022352278207824042 16 0.020171120387189163 7 0.019769674774469764 8 0.019743457324484303 1 0.019690309258882217 3 0.019451824840857734 2 0.019139491728962125 24 0.018231109812966526 __DUMMY__ 0.003638557312325228 false 1.0 171 14 0.104884 13 0.102647 10 0.098735 18 0.088126 12 0.07197 11 0.069997 21 0.066502 15 0.064294 22 0.053356 19 0.051178 0 0.043585 20 0.041856 9 0.040241 17 0.031642 23 0.018869 16 0.015987 24 0.009074 4 0.007481 5 0.007298 6 0.006167 8 0.00171 7 0.001571 1 0.001553 2 0.00128 14 0.104884 13 0.102647 10 0.098735 18 0.088126 12 0.07197 11 0.069997 21 0.066502 15 0.064294 22 0.053356 19 0.051178 0 0.043585 20 0.041856 9 0.040241 17 0.031642 23 0.018869 16 0.015987 24 0.009074 4 0.007481 5 0.007298 6 0.006167 8 0.00171 7 0.001571 1 0.001553 2 0.00128 18 0.07923611905935649 10 0.07764127166319548 14 0.07634028394114409 13 0.07503886243178778 21 0.06968724495282085 12 0.06544818809654884 11 0.06529307323649411 22 0.05940341844733342 19 0.05814474620517739 20 0.045645444768377716 15 0.04503161158295314 0 0.0414136115736447 9 0.040157689557190276 17 0.037656357083635475 23 0.02934618511326994 24 0.025054376050956503 16 0.024743979853740723 4 0.0140807441595017 5 0.013749012870699297 6 0.011980588476193673 8 0.00845183661584284 7 0.008389927783157475 1 0.008278463362662483 2 0.00798101145831166 3 0.007749964943550817 __DUMMY__ 0.0040559867124530845 false 1.0 172 22 0.101339 11 0.100729 10 0.097716 18 0.094949 21 0.089539 19 0.071033 0 0.068933 9 0.064978 17 0.057559 14 0.055875 12 0.047198 13 0.037996 16 0.026396 20 0.022312 15 0.015481 24 0.013642 23 0.009003 4 0.008345 5 0.007676 6 0.004119 3 0.001708 7 0.001345 1 0.001107 8 0.001022 22 0.101339 11 0.100729 10 0.097716 18 0.094949 21 0.089539 19 0.071033 0 0.068933 9 0.064978 17 0.057559 14 0.055875 12 0.047198 13 0.037996 16 0.026396 20 0.022312 15 0.015481 24 0.013642 23 0.009003 4 0.008345 5 0.007676 6 0.004119 3 0.001708 7 0.001345 1 0.001107 8 0.001022 22 0.08424204538109685 18 0.08023634245579492 11 0.07966654408300883 21 0.0785204563960662 10 0.07453863323148294 19 0.06695619463163577 0 0.05653359176659807 9 0.05479595409687709 17 0.0532306584459933 12 0.04828737599298513 14 0.04532658685680317 13 0.03547663518630051 20 0.03291706472458659 16 0.031792130202432496 24 0.027155971981240964 23 0.024398304583156904 15 0.017554036211291858 4 0.017315632538896127 5 0.016718796876274714 6 0.013940476410204598 3 0.011776937981146905 7 0.01153051067621289 8 0.011366613257866197 1 0.011282049373763179 2 0.010534673916335745 __DUMMY__ 0.0039057827419480533 false 1.0 173 21 0.107147 22 0.096631 19 0.094047 11 0.087032 18 0.075276 12 0.064297 24 0.063481 20 0.060853 10 0.054584 17 0.043782 23 0.04203 16 0.039501 14 0.039333 9 0.038263 0 0.03467 13 0.02609 5 0.010223 4 0.009985 3 0.0056 15 0.004205 6 0.002238 8 2.55E-4 2 2.43E-4 7 2.33E-4 21 0.107147 22 0.096631 19 0.094047 11 0.087032 18 0.075276 12 0.064297 24 0.063481 20 0.060853 10 0.054584 17 0.043782 23 0.04203 16 0.039501 14 0.039333 9 0.038263 0 0.03467 13 0.02609 5 0.010223 4 0.009985 3 0.0056 15 0.004205 6 0.002238 8 2.55E-4 2 2.43E-4 7 2.33E-4 21 0.09016035108996046 22 0.08194244851449191 19 0.08038306112064907 11 0.07363103249835704 18 0.07121865584538267 12 0.060231736578950514 20 0.05510864733016827 24 0.054184243324375055 10 0.05273078839996746 17 0.04467048833005278 23 0.04218508005584082 9 0.039312588125347846 14 0.039309708910576294 16 0.03793439927475122 0 0.03705647977336755 13 0.03253409600538409 4 0.01645811831457939 5 0.016296017550038042 15 0.012102796655993762 3 0.011845573659633929 6 0.011060672375730753 7 0.008947652568500329 8 0.008928681269201367 1 0.008693804952857376 2 0.008610503616067182 __DUMMY__ 0.004462373859774912 false 1.0 174 18 0.093384 10 0.089569 19 0.077659 11 0.076796 21 0.075305 22 0.072475 14 0.061194 12 0.060501 0 0.056207 13 0.056018 17 0.053058 20 0.050501 9 0.046018 16 0.040062 15 0.030524 24 0.023766 23 0.020478 4 0.006098 5 0.00608 6 0.003428 3 6.36E-4 7 1.14E-4 2 9.8E-5 8 3.1E-5 18 0.093384 10 0.089569 19 0.077659 11 0.076796 21 0.075305 22 0.072475 14 0.061194 12 0.060501 0 0.056207 13 0.056018 17 0.053058 20 0.050501 9 0.046018 16 0.040062 15 0.030524 24 0.023766 23 0.020478 4 0.006098 5 0.00608 6 0.003428 3 6.36E-4 7 1.14E-4 2 9.8E-5 8 3.1E-5 18 0.08116624905386623 21 0.07452480707777867 19 0.07257462625477835 10 0.07139360884776066 22 0.07034214009516195 11 0.06905712350266185 12 0.058230674585519074 14 0.050966087306182475 20 0.04993036496210211 17 0.049438514775494706 0 0.04817105029709033 13 0.04773821498771763 9 0.04352180537779418 16 0.03805239863299064 24 0.03376218324022188 23 0.030750397942216446 15 0.025653797200379552 4 0.013985470809615421 5 0.013712622593193016 6 0.011073646993673523 3 0.008847822623203069 7 0.008305933712152507 8 0.0082461061072313 1 0.0081234225783347 2 0.007977088123438236 __DUMMY__ 0.004453842319441391 false 1.0 175 10 0.100058 18 0.092596 11 0.09024 21 0.086632 22 0.086244 13 0.069559 12 0.067192 14 0.064352 9 0.06328 0 0.062392 19 0.050804 17 0.040586 23 0.016881 20 0.016874 4 0.015526 5 0.015234 6 0.012202 15 0.010096 8 0.007077 1 0.006983 7 0.006889 2 0.006644 3 0.006245 24 0.005415 10 0.100058 18 0.092596 11 0.09024 21 0.086632 22 0.086244 13 0.069559 12 0.067192 14 0.064352 9 0.06328 0 0.062392 19 0.050804 17 0.040586 23 0.016881 20 0.016874 4 0.015526 5 0.015234 6 0.012202 15 0.010096 8 0.007077 1 0.006983 7 0.006889 2 0.006644 3 0.006245 24 0.005415 18 0.07943810940862371 21 0.07888335136993295 22 0.07621034891078558 10 0.07595623693400666 11 0.0749356296846053 12 0.06111620005465322 19 0.05761370582939782 13 0.05470405019696346 9 0.05234651947493996 14 0.05231818753522725 0 0.0515413060248828 17 0.04316574703083593 20 0.03200546281737624 23 0.028872777741209325 24 0.023973821745173478 4 0.019668537030732774 5 0.01926702691446909 16 0.017964267959953203 6 0.016624460152965034 15 0.015741645630805712 8 0.012910799073283394 7 0.01284120107805501 1 0.012765984199991556 3 0.01264458310624438 2 0.0124013484980369 __DUMMY__ 0.004088691596849573 false 1.0 176 11 0.09749 21 0.084183 10 0.079948 18 0.079358 22 0.077367 12 0.074467 19 0.069817 13 0.063841 14 0.058794 0 0.058492 17 0.049419 20 0.04115 9 0.038998 16 0.037985 24 0.027607 23 0.022299 15 0.02045 5 0.006736 4 0.006598 6 0.004325 2 3.02E-4 7 2.41E-4 1 9.2E-5 3 4.3E-5 11 0.09749 21 0.084183 10 0.079948 18 0.079358 22 0.077367 12 0.074467 19 0.069817 13 0.063841 14 0.058794 0 0.058492 17 0.049419 20 0.04115 9 0.038998 16 0.037985 24 0.027607 23 0.022299 15 0.02045 5 0.006736 4 0.006598 6 0.004325 2 3.02E-4 7 2.41E-4 1 9.2E-5 3 4.3E-5 11 0.07906823100188441 21 0.07904483253746053 18 0.07358447096579772 22 0.07292108884208585 19 0.06862521102434212 10 0.06572742816761974 12 0.06503131337427522 13 0.05082250047122766 0 0.049255812300326114 14 0.048706578857346625 17 0.04776755805701611 20 0.04500005984857098 9 0.040116244042255576 16 0.03718675901921101 24 0.036049282713804816 23 0.032130309331104764 15 0.019771732208677895 4 0.01468963902415117 5 0.014485513361527225 6 0.011977211706759952 3 0.008982089537182695 7 0.008818217540674458 8 0.008678685505207239 1 0.008611752674506722 2 0.00851258565638261 __DUMMY__ 0.0044348922306006976 false 1.0 177 11 0.089892 22 0.08369 21 0.077353 10 0.069616 9 0.062527 0 0.060813 18 0.058336 12 0.054962 13 0.045753 14 0.040427 17 0.038432 4 0.034888 5 0.034439 19 0.033065 6 0.031926 8 0.027874 1 0.027617 7 0.027605 23 0.027591 2 0.027013 3 0.026875 24 0.015574 16 0.002482 15 0.00125 11 0.089892 22 0.08369 21 0.077353 10 0.069616 9 0.062527 0 0.060813 18 0.058336 12 0.054962 13 0.045753 14 0.040427 17 0.038432 4 0.034888 5 0.034439 19 0.033065 6 0.031926 8 0.027874 1 0.027617 7 0.027605 23 0.027591 2 0.027013 3 0.026875 24 0.015574 16 0.002482 15 0.00125 11 0.07643891414294592 22 0.07613207256726007 21 0.07562976210136445 18 0.062258354859514725 10 0.0606145226952112 12 0.056328609592534044 9 0.05216147182322364 0 0.05198908685820901 19 0.049096340080933686 17 0.04299162692051104 13 0.04295194687438477 14 0.039143921533781816 23 0.03379627355895336 4 0.0289613490319075 24 0.028733347129370906 5 0.02848131615467261 6 0.026179018933733225 8 0.02283422524656881 7 0.022730348519329244 20 0.02263324267554184 1 0.022607503015117714 3 0.02234684057227908 2 0.02211719162534226 16 0.01967907017134325 15 0.009094550552924274 __DUMMY__ 0.004069092763041611 false 1.0 178 0 0.090843 17 0.090033 11 0.081071 22 0.073566 16 0.072126 18 0.055697 9 0.055395 21 0.054587 19 0.053398 10 0.051192 12 0.050571 6 0.032365 4 0.028064 5 0.027272 8 0.027177 7 0.027154 1 0.026926 2 0.02597 13 0.023686 23 0.022268 3 0.019436 24 0.006633 20 0.002758 14 0.001811 0 0.090843 17 0.090033 11 0.081071 22 0.073566 16 0.072126 18 0.055697 9 0.055395 21 0.054587 19 0.053398 10 0.051192 12 0.050571 6 0.032365 4 0.028064 5 0.027272 8 0.027177 7 0.027154 1 0.026926 2 0.02597 13 0.023686 23 0.022268 3 0.019436 24 0.006633 20 0.002758 14 0.001811 17 0.07123491387878628 22 0.07029012077160532 0 0.06999566691929453 11 0.0691040108853227 18 0.058424716112686466 21 0.05829754574391184 19 0.055302104191919395 16 0.055098278005978 9 0.052093368027565326 10 0.05016104637148385 12 0.04681944781565181 6 0.03072141193489218 23 0.030000115484391188 4 0.029469430838059724 5 0.02880816721787608 8 0.027182427994443155 7 0.027169498328661824 1 0.026942356537961974 2 0.026232554728307548 13 0.02515936626834037 3 0.023077963432069047 24 0.021686949747287604 20 0.01916026232411947 14 0.015183753552803013 15 0.008813768286283346 __DUMMY__ 0.0035707546002980255 false 1.0 179 10 0.100327 18 0.089075 11 0.084883 13 0.076218 14 0.071196 0 0.069237 22 0.064004 21 0.062407 12 0.062322 19 0.05752 17 0.054822 9 0.049017 15 0.03991 16 0.035522 20 0.028326 23 0.010666 6 0.008852 5 0.00834 4 0.008306 1 0.004683 8 0.004516 7 0.004457 2 0.004089 3 0.001304 10 0.100327 18 0.089075 11 0.084883 13 0.076218 14 0.071196 0 0.069237 22 0.064004 21 0.062407 12 0.062322 19 0.05752 17 0.054822 9 0.049017 15 0.03991 16 0.035522 20 0.028326 23 0.010666 6 0.008852 5 0.00834 4 0.008306 1 0.004683 8 0.004516 7 0.004457 2 0.004089 3 0.001304 10 0.07990892275188076 18 0.07986429216371106 11 0.07273092236655886 22 0.06575441842061056 21 0.06507206404869054 19 0.05988432779051947 13 0.05766332526234228 0 0.05740203894402958 14 0.056934780587658336 12 0.056234252841041533 17 0.05135228787556925 9 0.04758936115923188 20 0.035456155283467225 16 0.03470009031627948 15 0.0320793348877724 23 0.02326059861505479 24 0.017749726410879768 4 0.015927704538936608 5 0.015680558159216172 6 0.014925904511524259 8 0.011630728880478761 7 0.011601552784954285 1 0.011599620795775591 2 0.011123054661701005 3 0.010075425505428675 __DUMMY__ 0.0037985504366866985 false 1.0 70 6 0.07578 4 0.075065 7 0.074746 8 0.074514 5 0.07426 1 0.074094 2 0.073703 3 0.072557 9 0.060187 23 0.054208 17 0.040624 22 0.039951 0 0.039412 24 0.036585 18 0.022517 21 0.020563 16 0.018644 10 0.015318 15 0.013225 11 0.012162 19 0.011674 20 0.01073 12 0.009322 14 1.59E-4 6 0.07578 4 0.075065 7 0.074746 8 0.074514 5 0.07426 1 0.074094 2 0.073703 3 0.072557 9 0.060187 23 0.054208 17 0.040624 22 0.039951 0 0.039412 24 0.036585 18 0.022517 21 0.020563 16 0.018644 10 0.015318 15 0.013225 11 0.012162 19 0.011674 20 0.01073 12 0.009322 14 1.59E-4 9 0.0574115324999767 4 0.05708836518681874 6 0.056840973336871846 5 0.05642478468273872 7 0.05560918646705944 8 0.05549548973882492 1 0.05522169806062303 2 0.0547325392158389 3 0.05408855293880876 22 0.05144419959834972 23 0.04590622186450022 17 0.04584123650248667 0 0.04515913555944357 18 0.039075053333537085 21 0.036744878883197 24 0.03410545709377568 10 0.03143640485948303 11 0.031044877918465757 19 0.0290856922745761 16 0.025422298880627255 12 0.02187605160930648 20 0.018727388718598453 15 0.015142944287485357 14 0.01224259407186579 13 0.010936959852164719 __DUMMY__ 0.0028954825645760626 false 1.0 71 23 0.090307 24 0.065106 5 0.060886 2 0.060863 3 0.060643 4 0.060503 6 0.059745 1 0.059251 7 0.059223 8 0.058865 20 0.051009 12 0.040442 19 0.039543 21 0.039055 16 0.030307 9 0.030044 22 0.028549 17 0.028461 18 0.027329 13 0.019286 15 0.012431 0 0.012301 14 0.005029 11 8.2E-4 23 0.090307 24 0.065106 5 0.060886 2 0.060863 3 0.060643 4 0.060503 6 0.059745 1 0.059251 7 0.059223 8 0.058865 20 0.051009 12 0.040442 19 0.039543 21 0.039055 16 0.030307 9 0.030044 22 0.028549 17 0.028461 18 0.027329 13 0.019286 15 0.012431 0 0.012301 14 0.005029 11 8.2E-4 23 0.06592935311842252 21 0.055634489846831364 24 0.05460137366643475 19 0.05184111789295014 22 0.04882512437260418 20 0.04788179362444976 12 0.04653766911458189 18 0.0458053746706459 4 0.043083107396034756 5 0.0429814652802081 6 0.04118186740324573 3 0.0407309588122988 2 0.040261842391526075 7 0.03986955136409784 1 0.039741716230680006 8 0.03966135484677275 17 0.03743854697908563 9 0.0365058980714496 16 0.03292818156080394 11 0.030854721527063797 13 0.026813722363576865 0 0.026754780235681164 10 0.024593065198085427 14 0.020448645049500273 15 0.015077099663040322 __DUMMY__ 0.004017179319928265 false 1.0 72 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06430003975141012 22 0.062224370566640916 0 0.05419341740977507 17 0.052107011201893816 18 0.05195478788548156 4 0.0477066530400945 10 0.04687708775104715 5 0.04682020725427285 6 0.04678071826154534 7 0.04604369490903592 8 0.04596763513234561 1 0.04580574882161412 2 0.044778262336678844 3 0.04472873255387257 21 0.0439531134630056 11 0.04268613240957293 19 0.03730307071518755 23 0.03505017175747236 16 0.026952345431561997 24 0.026595895339822567 12 0.02063296412293642 14 0.018657607500438624 20 0.017119617017444855 15 0.01625903363228592 13 0.01125253552125253 __DUMMY__ 0.0032491462133099227 false 1.0 73 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.07160874290900184 0 0.06841828381074841 22 0.0630923626656502 18 0.057189942069507615 9 0.056543533329391764 16 0.05417326475965395 11 0.05286171902067719 19 0.04954148410201177 10 0.04762034711787527 21 0.043486157458591336 6 0.03832172879703423 4 0.03671517612460798 5 0.036344273743738706 8 0.03617151973162207 7 0.035994483059309884 1 0.0358133446286133 2 0.03530878293032537 3 0.0325280409702408 12 0.0306383086018302 23 0.02981195282478096 24 0.021212576430865025 20 0.019882329453979174 15 0.016968187030139234 13 0.014388122656650897 14 0.011954140210836461 __DUMMY__ 0.003411195562316252 false 1.0 74 17 0.089417 0 0.083846 16 0.0731 9 0.059227 22 0.055355 18 0.053398 11 0.047712 10 0.045173 19 0.045027 6 0.044097 8 0.041444 1 0.041179 7 0.041165 2 0.040303 4 0.039063 5 0.038517 3 0.034356 21 0.027444 23 0.024749 12 0.024677 15 0.021379 20 0.011056 24 0.009276 13 0.009039 17 0.089417 0 0.083846 16 0.0731 9 0.059227 22 0.055355 18 0.053398 11 0.047712 10 0.045173 19 0.045027 6 0.044097 8 0.041444 1 0.041179 7 0.041165 2 0.040303 4 0.039063 5 0.038517 3 0.034356 21 0.027444 23 0.024749 12 0.024677 15 0.021379 20 0.011056 24 0.009276 13 0.009039 17 0.07487566264827192 0 0.07104779438258974 22 0.060007878153305216 16 0.05847921672529618 9 0.056255536382143374 18 0.05607440735005325 11 0.05130270493243557 19 0.048643078690370524 10 0.047276617019610244 21 0.039676970773127575 6 0.039217248546341274 8 0.03696953090599496 4 0.03685367795476117 7 0.03680085319012921 1 0.036697659504662694 5 0.03629845978532499 2 0.03601091942606546 3 0.03252486433632953 12 0.03001677369195453 23 0.02936600640005968 15 0.019517568006637634 20 0.019047720116720557 24 0.018941254770647273 13 0.014465807632486572 14 0.01035688439792002 __DUMMY__ 0.003274904276760926 false 1.0 75 3 0.060027 9 0.05967 4 0.058793 8 0.058612 7 0.058514 5 0.058477 2 0.058433 1 0.058271 6 0.057296 22 0.048172 23 0.046097 17 0.042559 0 0.040349 24 0.038921 18 0.037915 10 0.032765 19 0.0314 21 0.029245 15 0.027837 16 0.026925 20 0.02564 11 0.02151 14 0.015781 12 0.006793 3 0.060027 9 0.05967 4 0.058793 8 0.058612 7 0.058514 5 0.058477 2 0.058433 1 0.058271 6 0.057296 22 0.048172 23 0.046097 17 0.042559 0 0.040349 24 0.038921 18 0.037915 10 0.032765 19 0.0314 21 0.029245 15 0.027837 16 0.026925 20 0.02564 11 0.02151 14 0.015781 12 0.006793 9 0.05769617852859229 22 0.055794989599662885 4 0.04915359565558402 5 0.048697397929210885 3 0.04812175162904959 8 0.0478403005874016 6 0.04781137637566133 7 0.04778337873082079 17 0.04775987229841684 1 0.0475644405137412 2 0.04734805485360824 18 0.04717427185286856 0 0.04617180228779067 23 0.04146936695370978 10 0.04027199513541386 21 0.04004018132832298 19 0.039372905448396944 11 0.03527166247811095 24 0.035062168970272915 16 0.030440461619595818 20 0.026134934582617134 15 0.022981902824765237 14 0.019243634959910685 12 0.018769878352889815 13 0.008982000004594783 __DUMMY__ 0.0030414964989900427 false 1.0 76 0 0.085463 17 0.0793 9 0.063325 22 0.059148 16 0.056145 11 0.056037 10 0.051289 18 0.050028 6 0.047917 8 0.044708 7 0.044611 2 0.044383 1 0.044261 4 0.043688 5 0.043578 3 0.039159 19 0.036252 21 0.030755 12 0.02597 23 0.024427 13 0.01203 15 0.011661 24 0.004744 14 0.00112 0 0.085463 17 0.0793 9 0.063325 22 0.059148 16 0.056145 11 0.056037 10 0.051289 18 0.050028 6 0.047917 8 0.044708 7 0.044611 2 0.044383 1 0.044261 4 0.043688 5 0.043578 3 0.039159 19 0.036252 21 0.030755 12 0.02597 23 0.024427 13 0.01203 15 0.011661 24 0.004744 14 0.00112 0 0.06917622304181802 17 0.0672086138166387 22 0.06257127105425771 9 0.05786694137449002 11 0.055401026670116586 18 0.05468154272523779 10 0.05016275197136012 16 0.04730036147762213 19 0.04467949804310454 21 0.043711016058035734 6 0.04041607978921681 4 0.03891064066842499 5 0.038562130848041096 8 0.037951818820203674 7 0.03788771868510374 1 0.03761459338346008 2 0.03739472296282378 3 0.034672114689016514 12 0.03181988261601311 23 0.03014238461113711 24 0.018684504456795155 13 0.017249546101592666 20 0.015106545863946857 15 0.014518724539774593 14 0.012985391948227365 __DUMMY__ 0.003323953783541115 false 1.0 77 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 22 0.06188629033019873 9 0.05781208249455808 17 0.05022919091779196 18 0.04982332609597376 0 0.04925759156795001 21 0.047820714634064884 4 0.0454895678543925 5 0.04507205804564095 6 0.0440800839156214 8 0.043388507720570485 3 0.04332071861189347 7 0.043317622597748406 19 0.04323339546791444 1 0.04302991230214254 11 0.043006365464656165 2 0.04278751686313407 10 0.04115251671991441 23 0.03902948955679893 24 0.03505256505838053 16 0.03102214486814457 12 0.025725659475625308 20 0.02520655299520156 14 0.018067173094973604 15 0.01599425277730435 13 0.011748157461468347 __DUMMY__ 0.0034465431079363715 false 1.0 78 9 0.067768 22 0.062144 0 0.056307 4 0.053584 5 0.05337 17 0.053197 6 0.052756 3 0.052665 8 0.052644 7 0.052528 2 0.052229 1 0.052159 18 0.046116 10 0.04234 11 0.038935 21 0.037805 19 0.03447 23 0.033818 24 0.028168 16 0.027599 20 0.014017 15 0.013089 12 0.012147 14 0.010146 9 0.067768 22 0.062144 0 0.056307 4 0.053584 5 0.05337 17 0.053197 6 0.052756 3 0.052665 8 0.052644 7 0.052528 2 0.052229 1 0.052159 18 0.046116 10 0.04234 11 0.038935 21 0.037805 19 0.03447 23 0.033818 24 0.028168 16 0.027599 20 0.014017 15 0.013089 12 0.012147 14 0.010146 22 0.06478714664446827 9 0.060540549225467366 0 0.054774966065521506 17 0.05409647803503355 18 0.05351599964477418 21 0.04769681103625497 11 0.047342752909362455 10 0.04652884300698267 19 0.044065887355668236 4 0.04355538906530763 5 0.04313687549965253 6 0.042433247058278625 8 0.04152224512831977 7 0.04144118324103676 1 0.04114455008017821 3 0.04109458682985825 2 0.04090261638527558 23 0.03442248673328049 16 0.0324176914705734 24 0.03013602018414203 12 0.024609372156431913 20 0.021991437993161233 14 0.018023545521413616 15 0.015319222591487063 13 0.011156032693540308 __DUMMY__ 0.0033440634445296357 false 1.0 79 22 0.095564 21 0.09086 11 0.084046 19 0.058465 18 0.055341 9 0.055161 12 0.04882 24 0.047317 10 0.04676 0 0.046216 17 0.043758 23 0.033145 14 0.032419 4 0.029648 5 0.02888 3 0.02451 6 0.024175 20 0.024052 16 0.022932 8 0.022079 7 0.022052 1 0.021396 2 0.021222 13 0.021182 22 0.095564 21 0.09086 11 0.084046 19 0.058465 18 0.055341 9 0.055161 12 0.04882 24 0.047317 10 0.04676 0 0.046216 17 0.043758 23 0.033145 14 0.032419 4 0.029648 5 0.02888 3 0.02451 6 0.024175 20 0.024052 16 0.022932 8 0.022079 7 0.022052 1 0.021396 2 0.021222 13 0.021182 22 0.0813173717745692 21 0.07980926070721624 11 0.07132952271360168 19 0.06088430794969796 18 0.06010138127737898 12 0.049867220567098726 9 0.049451962203635666 10 0.048383444221050814 17 0.046116588238412984 0 0.044770094456921344 24 0.0445303946366249 23 0.037043749753451476 20 0.03407211402093934 14 0.03330205332909289 16 0.03008315102900647 4 0.027936679153528574 13 0.027366012827467597 5 0.027293209568242903 6 0.023927734081925743 3 0.023083958732854053 7 0.02182075124552314 8 0.021814227455289176 1 0.02137666216935669 2 0.021065565062917176 15 0.009176183925445945 __DUMMY__ 0.004076398898750111 false 1.0 180 11 0.09161 0 0.089166 22 0.081587 17 0.074101 10 0.072559 18 0.065804 9 0.062094 21 0.059121 19 0.048849 16 0.045814 12 0.043622 6 0.028197 13 0.027772 4 0.026804 5 0.02637 8 0.024161 7 0.023911 1 0.023847 2 0.023466 3 0.019983 14 0.018125 23 0.016244 15 0.004368 24 0.002424 11 0.09161 0 0.089166 22 0.081587 17 0.074101 10 0.072559 18 0.065804 9 0.062094 21 0.059121 19 0.048849 16 0.045814 12 0.043622 6 0.028197 13 0.027772 4 0.026804 5 0.02637 8 0.024161 7 0.023911 1 0.023847 2 0.023466 3 0.019983 14 0.018125 23 0.016244 15 0.004368 24 0.002424 11 0.07591734423481272 22 0.07493688569211758 0 0.06907784982396764 18 0.06509539131441877 17 0.06302302557041496 10 0.0624878073776397 21 0.06245505586105183 9 0.05489364615149166 19 0.05448419485147887 12 0.04552716542092321 16 0.04189130904690136 13 0.029511339527622287 4 0.027178406137771605 6 0.02688715441506045 5 0.026691937248670236 23 0.026488429135475312 14 0.025131980657641263 8 0.02377093062472889 7 0.023657355390445497 1 0.02350152118521981 2 0.023083233929349075 3 0.021464674698590674 24 0.019354021703500028 20 0.018856214677604437 15 0.010902401325186387 __DUMMY__ 0.0037307239979158763 false 1.0 181 10 0.107119 18 0.093166 11 0.069976 22 0.067664 0 0.06725 14 0.064783 9 0.062242 19 0.054491 17 0.052885 21 0.050306 13 0.047151 15 0.04476 12 0.032066 20 0.027651 16 0.026692 4 0.017667 5 0.017145 6 0.01637 7 0.014075 8 0.014 2 0.01374 1 0.01365 3 0.013496 23 0.011656 10 0.107119 18 0.093166 11 0.069976 22 0.067664 0 0.06725 14 0.064783 9 0.062242 19 0.054491 17 0.052885 21 0.050306 13 0.047151 15 0.04476 12 0.032066 20 0.027651 16 0.026692 4 0.017667 5 0.017145 6 0.01637 7 0.014075 8 0.014 2 0.01374 1 0.01365 3 0.013496 23 0.011656 10 0.08350878215287649 18 0.08244534579016607 22 0.06704593968610156 11 0.0640227133947704 19 0.058730177527322375 21 0.057506429368902906 0 0.05625696253222603 9 0.05457979156661234 14 0.053001209460249346 17 0.05072540942889633 13 0.0412172887790184 12 0.03909001671541699 20 0.03570747635571997 15 0.03530994744774195 16 0.030796792849778064 23 0.023955752033705528 4 0.02101782712428604 5 0.02050576460331874 6 0.019062590670545755 24 0.01781797003093446 7 0.016981310525660143 8 0.016942868311482808 3 0.0168229527429865 1 0.01666729503448162 2 0.016489152071485418 __DUMMY__ 0.003792233795313756 false 1.0 182 10 0.111189 18 0.103961 11 0.075189 14 0.070048 22 0.069582 0 0.065983 19 0.063658 21 0.057444 9 0.057403 13 0.055533 17 0.054808 15 0.045966 12 0.041493 20 0.0348 16 0.030505 23 0.012814 4 0.009541 5 0.009046 6 0.008253 7 0.005252 8 0.004849 1 0.004741 2 0.004251 3 0.00369 10 0.111189 18 0.103961 11 0.075189 14 0.070048 22 0.069582 0 0.065983 19 0.063658 21 0.057444 9 0.057403 13 0.055533 17 0.054808 15 0.045966 12 0.041493 20 0.0348 16 0.030505 23 0.012814 4 0.009541 5 0.009046 6 0.008253 7 0.005252 8 0.004849 1 0.004741 2 0.004251 3 0.00369 18 0.08879321053186431 10 0.08663008452200467 22 0.0680798810127904 11 0.0671069949317003 19 0.06409666395931735 21 0.061826338355977305 14 0.05730083800640527 0 0.05517162959948387 9 0.05170904982826542 17 0.05119704399178749 13 0.046772517936448495 12 0.04463398342452829 20 0.04036931509584917 15 0.0368079551924921 16 0.032480472587731506 23 0.024217989776102716 24 0.017954400655373723 4 0.015996415959266555 5 0.015512422183000609 6 0.013941925850539329 7 0.011497700012026782 8 0.011304794262150012 1 0.011151476680667924 3 0.010984690845830869 2 0.010724704730364076 __DUMMY__ 0.003737500068031467 false 1.0 183 21 0.102645 12 0.090318 11 0.0858 19 0.081169 22 0.079477 18 0.071418 13 0.063684 20 0.056585 10 0.055679 24 0.050121 14 0.04798 23 0.043807 17 0.039736 0 0.03829 16 0.035929 9 0.030217 4 0.008935 5 0.008486 6 0.004532 15 0.002644 3 0.001383 8 5.14E-4 7 4.53E-4 1 1.97E-4 21 0.102645 12 0.090318 11 0.0858 19 0.081169 22 0.079477 18 0.071418 13 0.063684 20 0.056585 10 0.055679 24 0.050121 14 0.04798 23 0.043807 17 0.039736 0 0.03829 16 0.035929 9 0.030217 4 0.008935 5 0.008486 6 0.004532 15 0.002644 3 0.001383 8 5.14E-4 7 4.53E-4 1 1.97E-4 21 0.08819986134913035 12 0.07385665109594171 19 0.07379605014268273 11 0.0733179431448323 22 0.07330856932673299 18 0.06953695899354968 10 0.05389525019367356 20 0.05287248824336838 13 0.05245878624935996 24 0.047125559616120104 14 0.04462739891989665 23 0.04276793961316428 17 0.04237122103171592 0 0.03884834069416178 16 0.03577310150502187 9 0.035209886119052326 4 0.015628045223149655 5 0.015152514980796483 6 0.011909221033927987 15 0.01172193768150133 3 0.009356424893814523 8 0.008682963696914745 7 0.008677036888151536 1 0.008424835266032767 2 0.00814465654928111 __DUMMY__ 0.004336357548025335 false 1.0 184 10 0.08339 18 0.076114 0 0.071602 11 0.068762 22 0.061411 17 0.059916 13 0.057918 9 0.056341 14 0.053387 21 0.05073 12 0.047772 19 0.044747 15 0.035545 16 0.034687 6 0.024451 4 0.022731 5 0.022245 8 0.020305 7 0.020134 1 0.020018 2 0.019539 23 0.016294 20 0.016124 3 0.015836 10 0.08339 18 0.076114 0 0.071602 11 0.068762 22 0.061411 17 0.059916 13 0.057918 9 0.056341 14 0.053387 21 0.05073 12 0.047772 19 0.044747 15 0.035545 16 0.034687 6 0.024451 4 0.022731 5 0.022245 8 0.020305 7 0.020134 1 0.020018 2 0.019539 23 0.016294 20 0.016124 3 0.015836 18 0.07054764995193907 10 0.06796019284059814 22 0.06406034446902764 11 0.0638264249031472 21 0.05890763550671803 0 0.058333681108690146 17 0.05410609464862416 19 0.05242583099906894 9 0.051007997413911786 12 0.048954258555863224 13 0.046799941265681565 14 0.04493948069685493 16 0.03489323320133001 20 0.02846094433481588 15 0.027692770690037796 23 0.027384582945473152 4 0.02481079682537586 6 0.024519005455262848 5 0.0243091740722191 8 0.021332177216285563 7 0.02125274917940088 1 0.021085246151003233 2 0.020634456026643367 24 0.019094039451730604 3 0.019027734728050635 __DUMMY__ 0.003633557362246275 false 1.0 185 11 0.124029 22 0.094357 21 0.083505 0 0.081907 10 0.076643 18 0.07571 17 0.071402 12 0.066266 19 0.063777 16 0.048853 9 0.048126 13 0.045782 14 0.035634 20 0.015566 24 0.013667 23 0.010149 4 0.00945 6 0.009187 5 0.008452 15 0.005099 8 0.003441 7 0.003322 2 0.002846 1 0.00283 11 0.124029 22 0.094357 21 0.083505 0 0.081907 10 0.076643 18 0.07571 17 0.071402 12 0.066266 19 0.063777 16 0.048853 9 0.048126 13 0.045782 14 0.035634 20 0.015566 24 0.013667 23 0.010149 4 0.00945 6 0.009187 5 0.008452 15 0.005099 8 0.003441 7 0.003322 2 0.002846 1 0.00283 11 0.09212432864296062 22 0.08155415989379917 21 0.07788551641625545 18 0.0699234153005027 19 0.06364872003417511 10 0.06322611530426175 0 0.062215370173155295 12 0.05995569266387114 17 0.05907143805314686 9 0.045887984192995925 16 0.042088214423756334 13 0.04064011845467209 14 0.03544355290087868 20 0.029454256394678045 24 0.028096660447157227 23 0.02586020765454545 4 0.017618961106017492 5 0.016871753128396987 6 0.016077127881510646 8 0.012056623750686227 7 0.012029547372790406 1 0.011658317273556538 2 0.011440098063981767 15 0.010600666492297923 3 0.01047725439516567 __DUMMY__ 0.004093899584784548 false 1.0 186 11 0.103086 10 0.084946 21 0.081566 18 0.079092 22 0.078022 12 0.073011 13 0.066195 19 0.065539 0 0.063926 14 0.060474 17 0.050858 9 0.041697 16 0.036202 20 0.033324 15 0.022521 24 0.020864 23 0.017788 5 0.006902 4 0.006861 6 0.004984 2 7.83E-4 1 5.69E-4 7 4.63E-4 8 3.28E-4 11 0.103086 10 0.084946 21 0.081566 18 0.079092 22 0.078022 12 0.073011 13 0.066195 19 0.065539 0 0.063926 14 0.060474 17 0.050858 9 0.041697 16 0.036202 20 0.033324 15 0.022521 24 0.020864 23 0.017788 5 0.006902 4 0.006861 6 0.004984 2 7.83E-4 1 5.69E-4 7 4.63E-4 8 3.28E-4 11 0.08197104206327271 21 0.07762226602822671 18 0.07360184803545979 22 0.07358343285269876 10 0.06853615392983856 19 0.0664210359382173 12 0.06372987026995963 0 0.05230539484716319 13 0.05142441971218527 14 0.04935450582772003 17 0.04867915947250171 9 0.04189864435134391 20 0.040712449773494086 16 0.03622646432743787 24 0.032365224663403025 23 0.029607465822905188 15 0.020672217106349134 4 0.014921963237778288 5 0.014671654448629425 6 0.012397752590059386 3 0.009090254071798037 7 0.00905281499068087 1 0.008962973831119837 8 0.008961108544312936 2 0.00885981343905746 __DUMMY__ 0.00437006982438667 false 1.0 187 10 0.101415 18 0.088737 11 0.071808 22 0.071644 9 0.066926 14 0.064025 0 0.0628 21 0.059275 13 0.053337 17 0.043502 19 0.042892 12 0.039682 15 0.031586 4 0.023954 5 0.023756 6 0.022005 7 0.019096 1 0.019077 8 0.018985 2 0.018485 3 0.018339 20 0.017143 23 0.01439 16 0.00714 10 0.101415 18 0.088737 11 0.071808 22 0.071644 9 0.066926 14 0.064025 0 0.0628 21 0.059275 13 0.053337 17 0.043502 19 0.042892 12 0.039682 15 0.031586 4 0.023954 5 0.023756 6 0.022005 7 0.019096 1 0.019077 8 0.018985 2 0.018485 3 0.018339 20 0.017143 23 0.01439 16 0.00714 10 0.0795990457880145 18 0.07884924991925718 22 0.06886755623749395 11 0.06523040649113629 21 0.06274500414520562 9 0.05649855084122282 0 0.05361599215164227 14 0.052624658760836426 19 0.05204100942586225 13 0.04546399085866739 17 0.045265424987444895 12 0.04423315337946226 20 0.029920323339170548 15 0.02779934142141775 23 0.025770223779124753 4 0.024577905476049995 5 0.024224422889206832 6 0.02232768559549206 16 0.02035318520383244 7 0.019843068853226054 8 0.019776448294458526 1 0.019730266228532013 3 0.019542401545357895 2 0.019230996949903902 24 0.018231126746140528 __DUMMY__ 0.00363856069184105 false 1.0 188 11 0.107445 0 0.083452 22 0.079362 17 0.077073 10 0.074602 18 0.072384 21 0.07031 19 0.069936 16 0.067195 12 0.064817 13 0.048399 9 0.041962 14 0.03554 20 0.021572 15 0.017222 23 0.015047 24 0.012149 6 0.009419 4 0.007763 5 0.007581 8 0.004333 7 0.004267 1 0.004161 2 0.00401 11 0.107445 0 0.083452 22 0.079362 17 0.077073 10 0.074602 18 0.072384 21 0.07031 19 0.069936 16 0.067195 12 0.064817 13 0.048399 9 0.041962 14 0.03554 20 0.021572 15 0.017222 23 0.015047 24 0.012149 6 0.009419 4 0.007763 5 0.007581 8 0.004333 7 0.004267 1 0.004161 2 0.00401 11 0.08396303264585679 22 0.07379399032225825 21 0.0715486971545817 18 0.06858138633453395 19 0.06768491079930151 0 0.06258860137687815 17 0.062164089486384265 10 0.061819902606438694 12 0.0600413724094799 16 0.05228912297355669 13 0.042331759690601135 9 0.041896076783057325 14 0.035428542738000716 20 0.033722843332891585 23 0.02866880076528809 24 0.027974554542625228 15 0.016957358984256866 4 0.01617647081137344 5 0.01581843185212745 6 0.015600305502866538 8 0.011873749228511268 7 0.011869294299085651 1 0.011682458977851641 2 0.011397561780151808 3 0.009829148473596245 __DUMMY__ 0.004297536128445138 false 1.0 189 22 0.084034 18 0.083545 10 0.079442 9 0.073926 0 0.069319 17 0.064562 11 0.063871 19 0.061141 21 0.053019 4 0.032183 16 0.031197 5 0.031068 6 0.029126 3 0.028867 8 0.028514 7 0.028149 1 0.027946 2 0.027402 14 0.022733 20 0.019924 23 0.019465 24 0.014241 15 0.013987 12 0.01234 22 0.084034 18 0.083545 10 0.079442 9 0.073926 0 0.069319 17 0.064562 11 0.063871 19 0.061141 21 0.053019 4 0.032183 16 0.031197 5 0.031068 6 0.029126 3 0.028867 8 0.028514 7 0.028149 1 0.027946 2 0.027402 14 0.022733 20 0.019924 23 0.019465 24 0.014241 15 0.013987 12 0.01234 22 0.07585953298630481 18 0.0745910246095378 10 0.06671685824812806 11 0.06138755520647474 9 0.06092363212616889 19 0.060556674891907386 21 0.05881951078320301 0 0.05840014356602281 17 0.05749797592745693 16 0.033807833479042114 4 0.02987972861639176 20 0.029494329169271676 5 0.02906960144171361 12 0.028832780292846524 14 0.02858360500092426 23 0.02814541811685551 6 0.027235035014603688 3 0.026100036221762317 8 0.025959485382131546 7 0.025790210784567925 1 0.025563358533303562 24 0.02541675284075128 2 0.025067674347074676 15 0.01722930797306325 13 0.015471332606966766 __DUMMY__ 0.0036006018335251943 false 1.0 80 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 22 0.06188629033019873 9 0.05781208249455808 17 0.05022919091779196 18 0.04982332609597376 0 0.04925759156795001 21 0.047820714634064884 4 0.0454895678543925 5 0.04507205804564095 6 0.0440800839156214 8 0.043388507720570485 3 0.04332071861189347 7 0.043317622597748406 19 0.04323339546791444 1 0.04302991230214254 11 0.043006365464656165 2 0.04278751686313407 10 0.04115251671991441 23 0.03902948955679893 24 0.03505256505838053 16 0.03102214486814457 12 0.025725659475625308 20 0.02520655299520156 14 0.018067173094973604 15 0.01599425277730435 13 0.011748157461468347 __DUMMY__ 0.0034465431079363715 false 1.0 81 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.056472712905451514 4 0.05537155826494785 5 0.05499261602268552 6 0.0549373032424618 1 0.05476153090807546 7 0.05464559805420549 8 0.05450417862497626 2 0.053891102731779446 3 0.05349387483607181 22 0.051131027564653514 23 0.045951936169463525 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235917 24 0.035129056096603065 10 0.031741523468311016 11 0.031226967840217626 19 0.030683059987402884 16 0.026302599497096766 12 0.022179313065208584 20 0.020816584766715916 15 0.01673716051990459 14 0.013559119680263397 13 0.01148978458215263 __DUMMY__ 0.0029470401783599793 false 1.0 82 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.056472712905451514 4 0.05537155826494784 5 0.05499261602268552 6 0.0549373032424618 1 0.05476153090807545 7 0.05464559805420549 8 0.05450417862497626 2 0.053891102731779446 3 0.05349387483607181 22 0.051131027564653514 23 0.04595193616946351 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235917 24 0.035129056096603065 10 0.031741523468311016 11 0.031226967840217626 19 0.030683059987402884 16 0.026302599497096766 12 0.022179313065208584 20 0.020816584766715916 15 0.01673716051990459 14 0.013559119680263397 13 0.01148978458215263 __DUMMY__ 0.0029470401783599793 false 1.0 83 1 0.070539 3 0.070211 7 0.069993 8 0.069629 4 0.069341 5 0.069254 2 0.069251 6 0.068176 9 0.063917 23 0.04988 22 0.045172 24 0.036917 17 0.036386 0 0.036381 18 0.029367 21 0.026302 10 0.024811 15 0.02024 19 0.016301 20 0.014376 11 0.014342 16 0.012893 14 0.011329 12 0.004992 1 0.070539 3 0.070211 7 0.069993 8 0.069629 4 0.069341 5 0.069254 2 0.069251 6 0.068176 9 0.063917 23 0.04988 22 0.045172 24 0.036917 17 0.036386 0 0.036381 18 0.029367 21 0.026302 10 0.024811 15 0.02024 19 0.016301 20 0.014376 11 0.014342 16 0.012893 14 0.011329 12 0.004992 9 0.057860497792047494 22 0.05447389832405169 4 0.052886322784694136 5 0.05256025167201403 1 0.051760657375427156 7 0.05160111765326193 6 0.051569677842864155 8 0.05141549050248112 3 0.05134107811671767 2 0.05086590359357853 23 0.044289079608530985 17 0.04337073322429852 18 0.04320810644562412 0 0.04265078089158274 21 0.04152912152814515 10 0.036080189773155635 24 0.03560818473863862 11 0.03317044414250082 19 0.03315952167566436 16 0.0231932743484985 20 0.022446744125242928 12 0.021892562195674065 14 0.01883302696257074 15 0.018627071099773997 13 0.012395211859257434 __DUMMY__ 0.0032110517237035154 false 1.0 84 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.0564727129054515 4 0.05537155826494785 5 0.05499261602268553 6 0.05493730324246181 1 0.05476153090807546 7 0.0546455980542055 8 0.054504178624976266 2 0.053891102731779446 3 0.05349387483607182 22 0.051131027564653514 23 0.04595193616946352 17 0.0455833478309345 0 0.04430596949022618 18 0.03970495635947152 21 0.03744007731235916 24 0.035129056096603065 10 0.03174152346831101 11 0.031226967840217626 19 0.03068305998740288 16 0.02630259949709677 12 0.02217931306520858 20 0.02081658476671591 15 0.016737160519904593 14 0.013559119680263397 13 0.011489784582152626 __DUMMY__ 0.0029470401783599793 false 1.0 85 17 0.085326 0 0.080392 16 0.067003 9 0.062091 22 0.058208 18 0.0536 11 0.048531 10 0.045323 19 0.044962 6 0.044807 1 0.042372 7 0.042369 8 0.04223 2 0.04118 4 0.04063 5 0.040373 3 0.036137 21 0.030766 23 0.024936 12 0.023412 15 0.017654 20 0.010899 24 0.010628 13 0.006168 17 0.085326 0 0.080392 16 0.067003 9 0.062091 22 0.058208 18 0.0536 11 0.048531 10 0.045323 19 0.044962 6 0.044807 1 0.042372 7 0.042369 8 0.04223 2 0.04118 4 0.04063 5 0.040373 3 0.036137 21 0.030766 23 0.024936 12 0.023412 15 0.017654 20 0.010899 24 0.010628 13 0.006168 17 0.07119510852595196 0 0.06775684787271956 22 0.06243696061903792 9 0.05717498267181234 18 0.056619607093126315 16 0.053806088688893236 11 0.052590311426711486 19 0.0493876918952578 10 0.04750978772282871 21 0.04369126247168487 6 0.0385477450373221 4 0.03695188224654124 5 0.03653076918124807 7 0.03636740569696642 8 0.03632965549902432 1 0.03624995923748946 2 0.03542089126489753 3 0.032668038575153886 12 0.03078155704404857 23 0.029929164918226 24 0.02106431043113865 20 0.020090180016848484 15 0.017286680125029187 13 0.014247747391058392 14 0.011954162441107443 __DUMMY__ 0.00341120190587592 false 1.0 86 10 0.093126 18 0.081863 9 0.07168 22 0.070247 0 0.069866 11 0.064476 17 0.055453 14 0.050379 19 0.046297 21 0.045905 15 0.035836 13 0.031531 5 0.02859 4 0.028249 6 0.027252 7 0.025526 8 0.02545 1 0.025288 2 0.025152 3 0.025056 16 0.024295 12 0.022298 20 0.01497 23 0.011213 10 0.093126 18 0.081863 9 0.07168 22 0.070247 0 0.069866 11 0.064476 17 0.055453 14 0.050379 19 0.046297 21 0.045905 15 0.035836 13 0.031531 5 0.02859 4 0.028249 6 0.027252 7 0.025526 8 0.02545 1 0.025288 2 0.025152 3 0.025056 16 0.024295 12 0.022298 20 0.01497 23 0.011213 10 0.07565119847196558 18 0.07541519499905512 22 0.06850134893699612 11 0.061246619256133665 9 0.060339360351576304 0 0.05937566780664917 21 0.053988033868811576 17 0.05339507008835258 19 0.05325136301155473 14 0.04334234392738481 12 0.03277410188540681 13 0.03147801174905721 16 0.030279463266442236 15 0.029532176163160125 4 0.027541507237304974 5 0.02741822171512559 20 0.0270831965728728 6 0.025980262072054075 7 0.024178470079422896 8 0.02415110553319175 1 0.023950133270650768 3 0.023847785650411304 2 0.023649894181214243 23 0.023196570876633772 24 0.016793424665884793 __DUMMY__ 0.0036394743626869145 false 1.0 87 20 0.128408 19 0.124824 18 0.108166 24 0.089645 21 0.07411 23 0.07007 16 0.064041 22 0.063258 17 0.0555 12 0.048813 10 0.036487 15 0.029607 11 0.024909 14 0.021676 9 0.0214 4 0.008655 5 0.007767 0 0.006138 3 0.005363 13 0.004834 8 0.002252 7 0.001868 6 0.001751 1 4.59E-4 20 0.128408 19 0.124824 18 0.108166 24 0.089645 21 0.07411 23 0.07007 16 0.064041 22 0.063258 17 0.0555 12 0.048813 10 0.036487 15 0.029607 11 0.024909 14 0.021676 9 0.0214 4 0.008655 5 0.007767 0 0.006138 3 0.005363 13 0.004834 8 0.002252 7 0.001868 6 0.001751 1 4.59E-4 19 0.09573304343458558 20 0.08966806734641682 18 0.0879450311949024 21 0.07281218708909414 24 0.06734922976846416 22 0.06461698132830988 23 0.05557660823557736 12 0.051455218651076544 16 0.05028605838306541 17 0.04995066366858742 10 0.04461323669833593 11 0.04193554012575311 14 0.033081752604545656 9 0.03060289758357347 15 0.028181394032766396 13 0.022509493117225894 0 0.02200655143064113 4 0.015320527310583408 5 0.01462995781058832 3 0.011533976756697874 6 0.010250975259108805 8 0.009511658108403443 7 0.009341607859968697 1 0.008541590785672177 2 0.00813719359700778 __DUMMY__ 0.004408557819048046 false 1.0 88 18 0.078259 19 0.076924 22 0.066384 20 0.061935 17 0.058079 21 0.05531 9 0.051346 24 0.051239 23 0.04519 16 0.0449 10 0.044359 0 0.038125 11 0.036389 5 0.031724 4 0.031514 3 0.029134 12 0.028144 6 0.027948 8 0.027486 7 0.027307 1 0.026794 2 0.026709 15 0.019983 14 0.014816 18 0.078259 19 0.076924 22 0.066384 20 0.061935 17 0.058079 21 0.05531 9 0.051346 24 0.051239 23 0.04519 16 0.0449 10 0.044359 0 0.038125 11 0.036389 5 0.031724 4 0.031514 3 0.029134 12 0.028144 6 0.027948 8 0.027486 7 0.027307 1 0.026794 2 0.026709 15 0.019983 14 0.014816 18 0.07344404938621515 19 0.07195946142807721 22 0.06687613704705563 21 0.06360751569169407 20 0.05595258006565453 17 0.0518976092306816 10 0.04878938042956729 11 0.04813868850787023 24 0.047737406557980054 9 0.04613817200335225 23 0.04287336924680252 12 0.040882703117719146 16 0.04074102914367278 0 0.03879080543657156 14 0.028586458803629162 4 0.026821728203716446 5 0.026640389104604204 6 0.02344736786209308 3 0.02339856379389783 8 0.02221105950487819 7 0.022135273931569464 15 0.022117262099891385 1 0.021755436071345384 2 0.02151145427768983 13 0.01932292916165406 __DUMMY__ 0.004223169892116998 false 1.0 89 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.07160874290900185 0 0.06841828381074842 22 0.0630923626656502 18 0.05718994206950762 9 0.05654353332939177 16 0.05417326475965396 11 0.05286171902067719 19 0.04954148410201177 10 0.04762034711787528 21 0.043486157458591336 6 0.03832172879703422 4 0.036715176124607986 5 0.036344273743738706 8 0.036171519731622075 7 0.0359944830593099 1 0.035813344628613304 2 0.035308782930325376 3 0.032528040970240805 12 0.030638308601830203 23 0.02981195282478096 24 0.021212576430865028 20 0.01988232945397918 15 0.016968187030139237 13 0.0143881226566509 14 0.011954140210836465 __DUMMY__ 0.0034111955623162514 false 1.0 190 12 0.095073 21 0.093075 11 0.086539 13 0.07969 22 0.070339 18 0.057498 10 0.055974 19 0.054214 0 0.049246 14 0.049173 17 0.039055 9 0.036421 23 0.035513 24 0.033077 20 0.032423 16 0.026167 4 0.018108 5 0.017728 6 0.016898 8 0.01131 7 0.011224 1 0.011083 2 0.01104 3 0.009132 12 0.095073 21 0.093075 11 0.086539 13 0.07969 22 0.070339 18 0.057498 10 0.055974 19 0.054214 0 0.049246 14 0.049173 17 0.039055 9 0.036421 23 0.035513 24 0.033077 20 0.032423 16 0.026167 4 0.018108 5 0.017728 6 0.016898 8 0.01131 7 0.011224 1 0.011083 2 0.01104 3 0.009132 21 0.08393685172721341 12 0.07740884152711172 11 0.07476370287737338 22 0.06910751816757961 18 0.0621944685593636 13 0.06147586374546913 19 0.05981309794918333 10 0.054114782863448736 0 0.04542006224133954 14 0.044874336014019946 17 0.04248770230227758 20 0.03946852243390376 9 0.03850358318740711 23 0.03812275109039139 24 0.037631455951682005 16 0.03092148403349124 4 0.02014805468525813 5 0.01970735849442242 6 0.018172555908066403 8 0.01400006269847779 7 0.013976437262036493 1 0.013789435340976793 2 0.013577421863541403 3 0.012940316249870664 15 0.009177639023497518 __DUMMY__ 0.00426569380259699 false 1.0 191 11 0.125519 22 0.096459 21 0.086121 0 0.080362 10 0.079764 18 0.077842 17 0.067836 19 0.065594 12 0.065153 9 0.049113 13 0.04467 16 0.044045 14 0.03723 20 0.015625 24 0.015245 23 0.011483 4 0.009119 5 0.008568 6 0.007895 15 0.003729 8 0.002443 7 0.002241 2 0.002006 1 0.001937 11 0.125519 22 0.096459 21 0.086121 0 0.080362 10 0.079764 18 0.077842 17 0.067836 19 0.065594 12 0.065153 9 0.049113 13 0.04467 16 0.044045 14 0.03723 20 0.015625 24 0.015245 23 0.011483 4 0.009119 5 0.008568 6 0.007895 15 0.003729 8 0.002443 7 0.002241 2 0.002006 1 0.001937 11 0.09256419760527154 22 0.08226100891494108 21 0.07871085300094702 18 0.07155667765074038 10 0.06531396374003144 19 0.06486394703754925 0 0.061545621907740655 12 0.059185224705212744 17 0.05758162690345689 9 0.04630753151635235 13 0.04022858287080434 16 0.04016625665438823 14 0.03660967813726004 20 0.029989919233190245 24 0.028594652624312503 23 0.026249797151886887 4 0.017146636489728355 5 0.016611832976943127 6 0.01516756931852408 8 0.01131475468211463 7 0.011246294419934562 1 0.010965863232384156 2 0.010777594694207781 15 0.010671751942398618 3 0.010212725852295115 __DUMMY__ 0.004155436737384113 false 1.0 192 21 0.097017 12 0.083564 11 0.082491 19 0.080269 18 0.076825 22 0.07596 13 0.059793 10 0.058452 20 0.05616 14 0.047985 24 0.046872 17 0.044458 23 0.042742 0 0.039865 16 0.036465 9 0.033015 15 0.010146 4 0.008918 5 0.008033 6 0.005213 1 0.001954 7 0.001759 8 0.001197 3 8.47E-4 21 0.097017 12 0.083564 11 0.082491 19 0.080269 18 0.076825 22 0.07596 13 0.059793 10 0.058452 20 0.05616 14 0.047985 24 0.046872 17 0.044458 23 0.042742 0 0.039865 16 0.036465 9 0.033015 15 0.010146 4 0.008918 5 0.008033 6 0.005213 1 0.001954 7 0.001759 8 0.001197 3 8.47E-4 21 0.08442631684476906 19 0.07211245337064424 22 0.07182530973889943 11 0.0715594063395829 18 0.07124638475850041 12 0.06922207794565448 10 0.0548538286621863 20 0.05071279104331651 13 0.0490376249372967 17 0.04548804400388884 24 0.04455650919303672 14 0.04297677291973945 23 0.04169179818625126 0 0.04093526352956397 9 0.037701664416744364 16 0.03607565909404566 4 0.016671019584668753 5 0.015982553995679567 15 0.014398982423490662 6 0.013438143331896068 7 0.010522000383065562 1 0.010483636828047607 8 0.010238986755175428 3 0.010198695312379012 2 0.009363417937611782 __DUMMY__ 0.004280658463865236 false 1.0 193 21 0.0964 12 0.095853 11 0.086072 13 0.076856 22 0.07247 18 0.062201 19 0.061534 10 0.056804 14 0.049116 0 0.047016 20 0.039965 17 0.039828 24 0.037464 23 0.036553 9 0.034791 16 0.029287 4 0.014777 5 0.014501 6 0.012982 7 0.007608 8 0.007421 1 0.007323 2 0.007213 3 0.005966 21 0.0964 12 0.095853 11 0.086072 13 0.076856 22 0.07247 18 0.062201 19 0.061534 10 0.056804 14 0.049116 0 0.047016 20 0.039965 17 0.039828 24 0.037464 23 0.036553 9 0.034791 16 0.029287 4 0.014777 5 0.014501 6 0.012982 7 0.007608 8 0.007421 1 0.007323 2 0.007213 3 0.005966 21 0.08563531245768795 12 0.07760234153219285 11 0.07425098393850947 22 0.0701009553997337 18 0.06462382160216758 19 0.06380060750887592 13 0.059775685010577014 10 0.05430692975694944 14 0.04491489037793359 20 0.04381427905006788 0 0.04380792844120838 17 0.04267756861586737 24 0.04034605103174375 23 0.03898796029795519 9 0.03745891718609086 16 0.032522275584085825 4 0.01844388281819299 5 0.018051212136739526 6 0.016109288065627805 7 0.012111172056160975 8 0.012002944557032947 1 0.011853040830665957 2 0.01161195697681127 3 0.01138124271370458 15 0.009473692511698363 __DUMMY__ 0.004335059541719057 false 1.0 194 10 0.091342 18 0.089241 22 0.082903 21 0.075808 11 0.073228 9 0.062383 14 0.057867 19 0.057373 0 0.045649 12 0.040231 13 0.039318 17 0.033484 23 0.031067 20 0.029718 4 0.024286 5 0.023319 24 0.021843 15 0.021239 3 0.018437 6 0.018125 1 0.016153 7 0.016055 8 0.015923 2 0.015006 10 0.091342 18 0.089241 22 0.082903 21 0.075808 11 0.073228 9 0.062383 14 0.057867 19 0.057373 0 0.045649 12 0.040231 13 0.039318 17 0.033484 23 0.031067 20 0.029718 4 0.024286 5 0.023319 24 0.021843 15 0.021239 3 0.018437 6 0.018125 1 0.016153 7 0.016055 8 0.015923 2 0.015006 18 0.07840179670149398 22 0.07503849708505375 21 0.07348845367641245 10 0.07226954706044393 11 0.06668587167935708 19 0.061209536750192244 9 0.05230536137340427 14 0.04917213427871268 12 0.046991163093974476 0 0.04343534666778277 17 0.03985056604867384 13 0.03895085030144854 20 0.03851600943077871 23 0.03549398746974519 24 0.03205347325273505 4 0.023821353709131753 5 0.023100296756161345 15 0.02152976077672882 6 0.019300750681456622 3 0.01859810043896341 16 0.017983099041691365 7 0.017189786796567193 8 0.01710584875447053 1 0.017104248244220986 2 0.01636383220753412 __DUMMY__ 0.004040327722864868 false 1.0 195 11 0.102364 10 0.085184 21 0.081262 18 0.079226 22 0.077554 12 0.071927 13 0.065872 19 0.065373 0 0.063681 14 0.060077 17 0.050637 9 0.04184 16 0.03635 20 0.033896 15 0.022653 24 0.02099 23 0.018954 4 0.006863 5 0.006748 6 0.005231 7 9.89E-4 1 7.81E-4 8 7.79E-4 2 7.69E-4 11 0.102364 10 0.085184 21 0.081262 18 0.079226 22 0.077554 12 0.071927 13 0.065872 19 0.065373 0 0.063681 14 0.060077 17 0.050637 9 0.04184 16 0.03635 20 0.033896 15 0.022653 24 0.02099 23 0.018954 4 0.006863 5 0.006748 6 0.005231 7 9.89E-4 1 7.81E-4 8 7.79E-4 2 7.69E-4 11 0.08163365924415915 21 0.07748023025064738 18 0.07366450629851148 22 0.07336475105334402 10 0.06864741342281147 19 0.06634348816075383 12 0.06322330101986941 0 0.052190920432581056 13 0.051273492187885496 14 0.049168994007189534 17 0.0485758995779959 9 0.041965493878686595 20 0.040979788585481715 16 0.036295647915341296 24 0.03242412491658058 23 0.03015240076060801 15 0.020733915948582204 4 0.014922904896006764 5 0.014599690593876632 6 0.012513191927722243 7 0.009298641261807742 8 0.009171884101426995 3 0.009090258320058121 1 0.009062054583693241 2 0.00885327478767405 __DUMMY__ 0.0043700718667050754 false 1.0 196 10 0.099199 11 0.095465 18 0.092225 22 0.084713 21 0.081534 0 0.068576 19 0.064731 12 0.062847 14 0.062426 13 0.061761 9 0.056637 17 0.054194 16 0.027273 20 0.025238 15 0.020043 23 0.010843 4 0.007899 24 0.007633 5 0.007484 6 0.005658 8 0.001172 7 9.14E-4 1 8.87E-4 2 6.5E-4 10 0.099199 11 0.095465 18 0.092225 22 0.084713 21 0.081534 0 0.068576 19 0.064731 12 0.062847 14 0.062426 13 0.061761 9 0.056637 17 0.054194 16 0.027273 20 0.025238 15 0.020043 23 0.010843 4 0.007899 24 0.007633 5 0.007484 6 0.005658 8 0.001172 7 9.14E-4 1 8.87E-4 2 6.5E-4 18 0.07989060360300346 11 0.07795946800295944 10 0.0768847838585969 22 0.07656482362105908 21 0.07496636715327357 19 0.063890453909915 0 0.05690303359517858 12 0.05611260934957406 17 0.05153380808944404 9 0.05115582766614961 14 0.049683075469970264 13 0.04798050674012676 20 0.03395709227390374 16 0.03165313312831397 23 0.024422825591692645 24 0.02318369220538444 15 0.020125421306496718 4 0.016525683766217752 5 0.016053814902166095 6 0.014103171982378348 8 0.01080609895539612 7 0.01069971468054158 1 0.01055666084062477 3 0.010309972501214541 2 0.010223585036069965 __DUMMY__ 0.0038537717703486783 false 1.0 197 0 0.087185 17 0.079165 9 0.065315 22 0.062363 11 0.059799 10 0.056762 18 0.054132 16 0.05319 6 0.045493 8 0.042881 7 0.042505 1 0.042318 2 0.04203 4 0.041815 5 0.041247 19 0.037414 3 0.037233 21 0.032703 12 0.024317 23 0.020879 13 0.012058 15 0.01146 14 0.003978 24 0.003758 0 0.087185 17 0.079165 9 0.065315 22 0.062363 11 0.059799 10 0.056762 18 0.054132 16 0.05319 6 0.045493 8 0.042881 7 0.042505 1 0.042318 2 0.04203 4 0.041815 5 0.041247 19 0.037414 3 0.037233 21 0.032703 12 0.024317 23 0.020879 13 0.012058 15 0.01146 14 0.003978 24 0.003758 0 0.07033990548792879 17 0.0672102087144323 22 0.06447370449761823 9 0.05896335964593067 11 0.05782668362272785 18 0.05693630481655739 10 0.05327830543414581 16 0.045750206895790305 19 0.04533423203120641 21 0.04500169151196311 6 0.0390096748345105 4 0.037772393654501885 5 0.03720855402677652 8 0.0367859634194318 7 0.036591649970248524 1 0.03639101908354233 2 0.03598149918957256 3 0.033451615655558445 12 0.03132479995235217 23 0.02812615901265907 24 0.017870339059077263 13 0.017552135094592854 20 0.014859379847868833 14 0.014503756759495704 15 0.014111880110383616 __DUMMY__ 0.003344577671127138 false 1.0 198 11 0.102584 0 0.092769 17 0.091027 22 0.08381 16 0.078061 18 0.076926 19 0.076763 10 0.071608 21 0.068101 12 0.058969 9 0.047709 13 0.032309 20 0.018704 23 0.017531 14 0.016918 6 0.011079 24 0.008936 4 0.008739 5 0.007865 15 0.007133 8 0.006097 7 0.005801 1 0.005663 2 0.004899 11 0.102584 0 0.092769 17 0.091027 22 0.08381 16 0.078061 18 0.076926 19 0.076763 10 0.071608 21 0.068101 12 0.058969 9 0.047709 13 0.032309 20 0.018704 23 0.017531 14 0.016918 6 0.011079 24 0.008936 4 0.008739 5 0.007865 15 0.007133 8 0.006097 7 0.005801 1 0.005663 2 0.004899 11 0.08035708173910125 22 0.07511908410460884 18 0.07040610114936757 19 0.06936454689247179 17 0.06925354423982658 21 0.0684370631413216 0 0.06781137380010593 10 0.06064193610624182 16 0.0571246213206663 12 0.055409933870710124 9 0.045710932777812886 13 0.03379386782234257 20 0.031096884099223693 23 0.029159142369327404 14 0.026086152309872573 24 0.025200041539162322 4 0.017700407264216903 6 0.017623902657002387 5 0.01701715039874855 8 0.014029348172754584 7 0.013902259124742486 1 0.013712119792629419 2 0.013131949274985386 15 0.012833173331031882 3 0.011027119052078146 __DUMMY__ 0.004050263649647094 false 1.0 199 11 0.095226 0 0.094973 17 0.090821 18 0.07572 16 0.075289 10 0.075052 22 0.07278 19 0.063734 12 0.06208 21 0.058224 9 0.047604 13 0.044543 14 0.024364 6 0.015627 15 0.015241 20 0.014238 23 0.014071 4 0.011309 5 0.010729 8 0.009288 7 0.00928 1 0.009021 2 0.008934 3 0.001853 11 0.095226 0 0.094973 17 0.090821 18 0.07572 16 0.075289 10 0.075052 22 0.07278 19 0.063734 12 0.06208 21 0.058224 9 0.047604 13 0.044543 14 0.024364 6 0.015627 15 0.015241 20 0.014238 23 0.014071 4 0.011309 5 0.010729 8 0.009288 7 0.00928 1 0.009021 2 0.008934 3 0.001853 11 0.07675772677274273 0 0.07095540927709353 17 0.07077381533395315 22 0.07037121590750484 18 0.0697729585440144 10 0.06300515251223973 19 0.06201014842102008 21 0.06176338713270944 16 0.05623956521994284 12 0.0539018605448618 9 0.04755282411134922 13 0.03686958306424819 14 0.027976289029342495 20 0.026657436955013967 23 0.026189218620279228 6 0.02094184061476895 4 0.019910167055443052 5 0.01935567039891252 24 0.019141924912811824 7 0.016809813490263725 8 0.01680860964145168 15 0.016684070572541704 1 0.016559421754147464 2 0.01627540003667918 3 0.013037829855566504 __DUMMY__ 0.003678660221097851 false 1.0 90 20 0.128899 19 0.12713 18 0.108503 24 0.091388 21 0.075695 23 0.069717 16 0.06464 22 0.063606 17 0.055844 12 0.050186 10 0.03422 15 0.031492 9 0.02369 11 0.022164 14 0.020898 5 0.00946 4 0.008758 3 0.005643 0 0.003203 13 0.001849 6 0.001356 8 9.01E-4 7 7.05E-4 2 5.3E-5 20 0.128899 19 0.12713 18 0.108503 24 0.091388 21 0.075695 23 0.069717 16 0.06464 22 0.063606 17 0.055844 12 0.050186 10 0.03422 15 0.031492 9 0.02369 11 0.022164 14 0.020898 5 0.00946 4 0.008758 3 0.005643 0 0.003203 13 0.001849 6 0.001356 8 9.01E-4 7 7.05E-4 2 5.3E-5 19 0.09680982660849956 20 0.08989737139649634 18 0.08810242736113172 21 0.07355230368925758 24 0.06816311861347427 22 0.06477950282194522 23 0.0554118082183927 12 0.0520963363127212 16 0.050565772385876874 17 0.05011131059774662 10 0.04355472929055418 11 0.04065383936435016 14 0.03271849722211408 9 0.03167217948094462 15 0.02906156851945173 13 0.021115720304486704 0 0.02063612483738672 5 0.01542047558511405 4 0.015368628160088375 3 0.01166472228645526 6 0.010066543056436525 8 0.008880841353868919 7 0.008798573694286813 1 0.008327274323305276 2 0.008161944638082409 __DUMMY__ 0.0044085598775319215 false 1.0 91 22 0.067539 18 0.066248 9 0.062263 17 0.058994 19 0.055856 0 0.053285 10 0.049058 21 0.046942 11 0.042896 4 0.040907 5 0.040203 6 0.039 8 0.038605 7 0.038577 3 0.038494 1 0.037768 2 0.037425 16 0.036628 23 0.035627 20 0.034357 24 0.034259 12 0.018475 15 0.014167 14 0.012425 22 0.067539 18 0.066248 9 0.062263 17 0.058994 19 0.055856 0 0.053285 10 0.049058 21 0.046942 11 0.042896 4 0.040907 5 0.040203 6 0.039 8 0.038605 7 0.038577 3 0.038494 1 0.037768 2 0.037425 16 0.036628 23 0.035627 20 0.034357 24 0.034259 12 0.018475 15 0.014167 14 0.012425 22 0.06792454897038809 18 0.06621105624411609 19 0.05946695260592085 21 0.0572951947528999 17 0.05437751942365766 9 0.05385628916048014 11 0.05117809057761738 10 0.050685273555728355 0 0.049147386371038104 20 0.038601740603367844 24 0.037192387407718075 16 0.037058813284334816 23 0.036965072851615675 4 0.033359533500647444 12 0.03333682308990958 5 0.03273574532964418 6 0.031122127902795976 3 0.029979056204445437 8 0.0299464106933812 7 0.029930730295726328 1 0.029415019731494043 2 0.029021929660626864 14 0.023897988803898984 15 0.01732819471795018 13 0.01605335798032993 __DUMMY__ 0.00391275628026687 false 1.0 92 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.056472712905451514 4 0.05537155826494785 5 0.05499261602268552 6 0.0549373032424618 1 0.05476153090807546 7 0.05464559805420549 8 0.05450417862497626 2 0.053891102731779446 3 0.05349387483607181 22 0.051131027564653514 23 0.045951936169463525 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235917 24 0.035129056096603065 10 0.031741523468311016 11 0.031226967840217626 19 0.030683059987402884 16 0.026302599497096766 12 0.022179313065208584 20 0.020816584766715916 15 0.01673716051990459 14 0.013559119680263397 13 0.01148978458215263 __DUMMY__ 0.0029470401783599793 false 1.0 93 1 0.068425 7 0.068412 8 0.068256 4 0.067688 6 0.067276 5 0.066665 3 0.066486 2 0.06643 9 0.064095 23 0.049344 22 0.045277 17 0.041254 0 0.041068 18 0.034202 24 0.033994 10 0.027804 21 0.024247 19 0.01896 15 0.018471 11 0.016983 16 0.016644 20 0.014512 14 0.00769 12 0.005817 1 0.068425 7 0.068412 8 0.068256 4 0.067688 6 0.067276 5 0.066665 3 0.066486 2 0.06643 9 0.064095 23 0.049344 22 0.045277 17 0.041254 0 0.041068 18 0.034202 24 0.033994 10 0.027804 21 0.024247 19 0.01896 15 0.018471 11 0.016983 16 0.016644 20 0.014512 14 0.00769 12 0.005817 9 0.05714708442472485 22 0.05529720182554145 4 0.05006259838104718 5 0.04930578978972323 6 0.04901207792320773 7 0.04861705037530763 8 0.04852846989654693 1 0.0485230757639324 18 0.047597494459793256 3 0.04739713910055137 2 0.047315326743714504 17 0.04597297819966093 0 0.04504018330051782 23 0.04342481354037356 21 0.042224218621796324 10 0.039311522825491114 19 0.03654302271446168 11 0.03615351191876942 24 0.03419468086750713 16 0.025723877028875405 20 0.024129973966760723 12 0.024086790660589517 14 0.01874387475044529 15 0.01820725440555463 13 0.01414401291781296 __DUMMY__ 0.003295975597292688 false 1.0 94 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06430003975141013 22 0.06222437056664092 0 0.054193417409775076 17 0.052107011201893816 18 0.05195478788548155 4 0.04770665304009451 10 0.04687708775104716 5 0.046820207254272855 6 0.04678071826154535 7 0.04604369490903592 8 0.04596763513234562 1 0.045805748821614124 2 0.044778262336678844 3 0.04472873255387258 21 0.04395311346300561 11 0.04268613240957293 19 0.037303070715187556 23 0.03505017175747236 16 0.026952345431561994 24 0.02659589533982257 12 0.020632964122936425 14 0.018657607500438624 20 0.01711961701744485 15 0.016259033632285924 13 0.011252535521252528 __DUMMY__ 0.003249146213309923 false 1.0 95 7 0.073564 1 0.073132 8 0.073007 6 0.072614 4 0.072151 2 0.07202 3 0.071527 5 0.071431 9 0.059352 23 0.05384 17 0.039934 22 0.039817 24 0.03835 0 0.037933 18 0.023848 21 0.02135 16 0.019917 15 0.016854 10 0.016639 20 0.014549 19 0.014506 11 0.012338 12 0.008348 14 0.002977 7 0.073564 1 0.073132 8 0.073007 6 0.072614 4 0.072151 2 0.07202 3 0.071527 5 0.071431 9 0.059352 23 0.05384 17 0.039934 22 0.039817 24 0.03835 0 0.037933 18 0.023848 21 0.02135 16 0.019917 15 0.016854 10 0.016639 20 0.014549 19 0.014506 11 0.012338 12 0.008348 14 0.002977 9 0.056541891322797314 4 0.05546240392116937 6 0.05513095524051005 5 0.054841889181243594 7 0.054761799249341485 8 0.05449636648224848 1 0.05447849240152906 2 0.05365739252348861 3 0.05326108647641965 22 0.05122509837710766 23 0.04597085900526034 17 0.04557921970263019 0 0.044350708456683395 18 0.03971142888645636 21 0.03739030485740921 24 0.03513183838695703 10 0.03183881245308045 11 0.03127861601530016 19 0.03068215210101385 16 0.026374069084958686 12 0.02217794024257363 20 0.020877448460116913 15 0.016743622458370733 14 0.013598773297215754 13 0.011489789879125818 __DUMMY__ 0.0029470415369923114 false 1.0 96 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.056472712905451514 4 0.05537155826494785 5 0.05499261602268552 6 0.0549373032424618 1 0.05476153090807546 7 0.05464559805420549 8 0.05450417862497626 2 0.053891102731779446 3 0.05349387483607181 22 0.051131027564653514 23 0.045951936169463525 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235917 24 0.035129056096603065 10 0.031741523468311016 11 0.031226967840217626 19 0.030683059987402884 16 0.026302599497096766 12 0.022179313065208584 20 0.020816584766715916 15 0.01673716051990459 14 0.013559119680263397 13 0.011489784582152628 __DUMMY__ 0.0029470401783599793 false 1.0 97 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.056472712905451514 4 0.05537155826494785 5 0.05499261602268552 6 0.0549373032424618 1 0.05476153090807546 7 0.05464559805420549 8 0.05450417862497626 2 0.053891102731779446 3 0.05349387483607181 22 0.051131027564653514 23 0.045951936169463525 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235917 24 0.035129056096603065 10 0.031741523468311016 11 0.031226967840217626 19 0.030683059987402884 16 0.026302599497096766 12 0.022179313065208584 20 0.020816584766715916 15 0.01673716051990459 14 0.013559119680263397 13 0.011489784582152628 __DUMMY__ 0.0029470401783599793 false 1.0 98 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 9 0.05647271290545149 4 0.05537155826494784 5 0.05499261602268552 6 0.0549373032424618 1 0.05476153090807545 7 0.05464559805420549 8 0.05450417862497626 2 0.05389110273177944 3 0.05349387483607181 22 0.0511310275646535 23 0.04595193616946351 17 0.04558334783093449 0 0.04430596949022617 18 0.03970495635947152 21 0.03744007731235916 24 0.035129056096603065 10 0.031741523468311016 11 0.03122696784021763 19 0.030683059987402877 16 0.026302599497096766 12 0.02217931306520858 20 0.020816584766715905 15 0.01673716051990459 14 0.013559119680263396 13 0.011489784582152624 __DUMMY__ 0.0029470401783599784 false 1.0 99 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.06382481488400812 22 0.06275025498368261 0 0.05422923721393301 18 0.052205831551050165 17 0.05191223819028183 4 0.047463435936348726 10 0.047144906675464386 5 0.04690122118395579 6 0.04655846518045896 8 0.04579895532872799 7 0.04575109946673305 1 0.04542557417713144 2 0.04488769489679256 3 0.04483630176813569 21 0.043932575200095345 11 0.042719167847026306 19 0.03736080111198223 23 0.0350030884534357 16 0.027054341032021947 24 0.026471954992712658 12 0.02077828947507595 14 0.018730262405115192 20 0.01719879522705156 15 0.016559024595375126 13 0.011252525037310212 __DUMMY__ 0.0032491431860933975 false 1.0
reznikmm/matreshka
Ada
3,742
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with League.Holders.Generic_Enumerations; package AMF.UMLDI.Holders.UML_Inherited_State_Border_Kinds is new League.Holders.Generic_Enumerations (AMF.UMLDI.UMLDI_UML_Inherited_State_Border_Kind); pragma Preelaborate (AMF.UMLDI.Holders.UML_Inherited_State_Border_Kinds);
bitslab/CompilerInterrupts
Ada
3,724
adb
---------------------------------------------------------------- -- ZLib for Ada thick binding. -- -- -- -- Copyright (C) 2002-2004 Dmitriy Anisimkov -- -- -- -- Open source license information is in the zlib.ads file. -- ---------------------------------------------------------------- -- -- $Id: buffer_demo.adb,v 1.1.1.1 2012/03/29 17:21:39 uid42307 Exp $ -- This demo program provided by Dr Steve Sangwine <[email protected]> -- -- Demonstration of a problem with Zlib-Ada (already fixed) when a buffer -- of exactly the correct size is used for decompressed data, and the last -- few bytes passed in to Zlib are checksum bytes. -- This program compresses a string of text, and then decompresses the -- compressed text into a buffer of the same size as the original text. with Ada.Streams; use Ada.Streams; with Ada.Text_IO; with ZLib; use ZLib; procedure Buffer_Demo is EOL : Character renames ASCII.LF; Text : constant String := "Four score and seven years ago our fathers brought forth," & EOL & "upon this continent, a new nation, conceived in liberty," & EOL & "and dedicated to the proposition that `all men are created equal'."; Source : Stream_Element_Array (1 .. Text'Length); for Source'Address use Text'Address; begin Ada.Text_IO.Put (Text); Ada.Text_IO.New_Line; Ada.Text_IO.Put_Line ("Uncompressed size : " & Positive'Image (Text'Length) & " bytes"); declare Compressed_Data : Stream_Element_Array (1 .. Text'Length); L : Stream_Element_Offset; begin Compress : declare Compressor : Filter_Type; I : Stream_Element_Offset; begin Deflate_Init (Compressor); -- Compress the whole of T at once. Translate (Compressor, Source, I, Compressed_Data, L, Finish); pragma Assert (I = Source'Last); Close (Compressor); Ada.Text_IO.Put_Line ("Compressed size : " & Stream_Element_Offset'Image (L) & " bytes"); end Compress; -- Now we decompress the data, passing short blocks of data to Zlib -- (because this demonstrates the problem - the last block passed will -- contain checksum information and there will be no output, only a -- check inside Zlib that the checksum is correct). Decompress : declare Decompressor : Filter_Type; Uncompressed_Data : Stream_Element_Array (1 .. Text'Length); Block_Size : constant := 4; -- This makes sure that the last block contains -- only Adler checksum data. P : Stream_Element_Offset := Compressed_Data'First - 1; O : Stream_Element_Offset; begin Inflate_Init (Decompressor); loop Translate (Decompressor, Compressed_Data (P + 1 .. Stream_Element_Offset'Min (P + Block_Size, L)), P, Uncompressed_Data (Total_Out (Decompressor) + 1 .. Uncompressed_Data'Last), O, No_Flush); Ada.Text_IO.Put_Line ("Total in : " & Count'Image (Total_In (Decompressor)) & ", out : " & Count'Image (Total_Out (Decompressor))); exit when P = L; end loop; Ada.Text_IO.New_Line; Ada.Text_IO.Put_Line ("Decompressed text matches original text : " & Boolean'Image (Uncompressed_Data = Source)); end Decompress; end; end Buffer_Demo;
reznikmm/matreshka
Ada
4,137
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Presentation_Display_Date_Time_Attributes; package Matreshka.ODF_Presentation.Display_Date_Time_Attributes is type Presentation_Display_Date_Time_Attribute_Node is new Matreshka.ODF_Presentation.Abstract_Presentation_Attribute_Node and ODF.DOM.Presentation_Display_Date_Time_Attributes.ODF_Presentation_Display_Date_Time_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Presentation_Display_Date_Time_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Presentation_Display_Date_Time_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Presentation.Display_Date_Time_Attributes;
reznikmm/matreshka
Ada
4,605
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Fo.Border_Right_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Fo_Border_Right_Attribute_Node is begin return Self : Fo_Border_Right_Attribute_Node do Matreshka.ODF_Fo.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Fo_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Fo_Border_Right_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Border_Right_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Fo_URI, Matreshka.ODF_String_Constants.Border_Right_Attribute, Fo_Border_Right_Attribute_Node'Tag); end Matreshka.ODF_Fo.Border_Right_Attributes;
stcarrez/dynamo
Ada
78,834
adb
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . P A R T -- -- -- -- B o d y -- -- -- -- Copyright (C) 2001-2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Atree; use Atree; with Err_Vars; use Err_Vars; with Opt; use Opt; with Osint; use Osint; with Output; use Output; with Prj.Com; use Prj.Com; with Prj.Dect; with Prj.Env; use Prj.Env; with Prj.Err; use Prj.Err; with Sinput; use Sinput; with Sinput.P; use Sinput.P; with Snames; with Table; with Ada.Characters.Handling; use Ada.Characters.Handling; with Ada.Exceptions; use Ada.Exceptions; with GNAT.HTable; use GNAT.HTable; package body Prj.Part is Buffer : String_Access; Buffer_Last : Natural := 0; Dir_Sep : Character renames GNAT.OS_Lib.Directory_Separator; ------------------------------------ -- Local Packages and Subprograms -- ------------------------------------ type With_Id is new Nat; No_With : constant With_Id := 0; type With_Record is record Path : Path_Name_Type; Location : Source_Ptr; Limited_With : Boolean; Node : Project_Node_Id; Next : With_Id; end record; -- Information about an imported project, to be put in table Withs below package Withs is new Table.Table (Table_Component_Type => With_Record, Table_Index_Type => With_Id, Table_Low_Bound => 1, Table_Initial => 10, Table_Increment => 100, Table_Name => "Prj.Part.Withs"); -- Table used to store temporarily paths and locations of imported -- projects. These imported projects will be effectively parsed later: just -- before parsing the current project for the non limited withed projects, -- after getting its name; after complete parsing of the current project -- for the limited withed projects. type Names_And_Id is record Path_Name : Path_Name_Type; Canonical_Path_Name : Path_Name_Type; Id : Project_Node_Id; Limited_With : Boolean; end record; package Project_Stack is new Table.Table (Table_Component_Type => Names_And_Id, Table_Index_Type => Nat, Table_Low_Bound => 1, Table_Initial => 10, Table_Increment => 100, Table_Name => "Prj.Part.Project_Stack"); -- This table is used to detect circular dependencies -- for imported and extended projects and to get the project ids of -- limited imported projects when there is a circularity with at least -- one limited imported project file. package Virtual_Hash is new GNAT.HTable.Simple_HTable (Header_Num => Header_Num, Element => Project_Node_Id, No_Element => Project_Node_High_Bound, Key => Project_Node_Id, Hash => Prj.Tree.Hash, Equal => "="); -- Hash table to store the node ids of projects for which a virtual -- extending project need to be created. The corresponding value is the -- head of a list of WITH clauses corresponding to the context of the -- enclosing EXTEND ALL projects. Note: Default_Element is Project_Node_ -- High_Bound because we want Empty_Node to be a possible value. package Processed_Hash is new GNAT.HTable.Simple_HTable (Header_Num => Header_Num, Element => Boolean, No_Element => False, Key => Project_Node_Id, Hash => Prj.Tree.Hash, Equal => "="); -- Hash table to store the project process when looking for project that -- need to have a virtual extending project, to avoid processing the same -- project twice. function Has_Circular_Dependencies (Flags : Processing_Flags; Normed_Path_Name : Path_Name_Type; Canonical_Path_Name : Path_Name_Type) return Boolean; -- Check for a circular dependency in the loaded project. -- Generates an error message in such a case. procedure Read_Project_Qualifier (Flags : Processing_Flags; In_Tree : Project_Node_Tree_Ref; Is_Config_File : Boolean; Qualifier_Location : out Source_Ptr; Project : Project_Node_Id); -- Check if there is a qualifier before the reserved word "project" -- Hash table to cache project path to avoid looking for them on the path procedure Check_Extending_All_Imports (Flags : Processing_Flags; In_Tree : Project_Node_Tree_Ref; Project : Project_Node_Id); -- Check that a non extending-all project does not import an -- extending-all project. procedure Check_Aggregate_Imports (Flags : Processing_Flags; In_Tree : Project_Node_Tree_Ref; Project : Project_Node_Id); -- Check that an aggregate project only imports abstract projects procedure Check_Import_Aggregate (Flags : Processing_Flags; In_Tree : Project_Node_Tree_Ref; Project : Project_Node_Id); -- Check that a non aggregate project does not import an aggregate project procedure Create_Virtual_Extending_Project (For_Project : Project_Node_Id; Main_Project : Project_Node_Id; Extension_Withs : Project_Node_Id; In_Tree : Project_Node_Tree_Ref); -- Create a virtual extending project of For_Project. Main_Project is -- the extending all project. Extension_Withs is the head of a WITH clause -- list to be added to the created virtual project. -- -- The String_Value_Of is not set for the automatically added with -- clause and keeps the default value of No_Name. This enables Prj.PP -- to skip these automatically added with clauses to be processed. procedure Look_For_Virtual_Projects_For (Proj : Project_Node_Id; In_Tree : Project_Node_Tree_Ref; Potentially_Virtual : Boolean); -- Look for projects that need to have a virtual extending project. -- This procedure is recursive. If called with Potentially_Virtual set to -- True, then Proj may need an virtual extending project; otherwise it -- does not (because it is already extended), but other projects that it -- imports may need to be virtually extended. type Extension_Origin is (None, Extending_Simple, Extending_All); -- Type of parameter From_Extended for procedures Parse_Single_Project and -- Post_Parse_Context_Clause. Extending_All means that we are parsing the -- tree rooted at an extending all project. procedure Parse_Single_Project (In_Tree : Project_Node_Tree_Ref; Project : out Project_Node_Id; Extends_All : out Boolean; Path_Name_Id : Path_Name_Type; Extended : Boolean; From_Extended : Extension_Origin; In_Limited : Boolean; Packages_To_Check : String_List_Access; Depth : Natural; Current_Dir : String; Is_Config_File : Boolean; Env : in out Environment; Implicit_Project : Boolean := False); -- Parse a project file. This is a recursive procedure: it calls itself for -- imported and extended projects. When From_Extended is not None, if the -- project has already been parsed and is an extended project A, return the -- ultimate (not extended) project that extends A. When In_Limited is True, -- the importing path includes at least one "limited with". When parsing -- configuration projects, do not allow a depth > 1. -- -- Is_Config_File should be set to True if the project represents a config -- file (.cgpr) since some specific checks apply. -- -- If Implicit_Project is True, change the Directory of the project node -- to be the Current_Dir. Recursive calls to Parse_Single_Project are -- always done with the default False value for Implicit_Project. procedure Pre_Parse_Context_Clause (In_Tree : Project_Node_Tree_Ref; Context_Clause : out With_Id; Is_Config_File : Boolean; Flags : Processing_Flags); -- Parse the context clause of a project. Store the paths and locations of -- the imported projects in table Withs. Does nothing if there is no -- context clause (if the current token is not "with" or "limited" followed -- by "with"). -- Is_Config_File should be set to True if the project represents a config -- file (.cgpr) since some specific checks apply. procedure Post_Parse_Context_Clause (Context_Clause : With_Id; In_Tree : Project_Node_Tree_Ref; In_Limited : Boolean; Limited_Withs : Boolean; Imported_Projects : in out Project_Node_Id; Project_Directory : Path_Name_Type; From_Extended : Extension_Origin; Packages_To_Check : String_List_Access; Depth : Natural; Current_Dir : String; Is_Config_File : Boolean; Env : in out Environment); -- Parse the imported projects that have been stored in table Withs, if -- any. From_Extended is used for the call to Parse_Single_Project below. -- -- When In_Limited is True, the importing path includes at least one -- "limited with". When Limited_Withs is False, only non limited withed -- projects are parsed. When Limited_Withs is True, only limited withed -- projects are parsed. -- -- Is_Config_File should be set to True if the project represents a config -- file (.cgpr) since some specific checks apply. function Project_Name_From (Path_Name : String; Is_Config_File : Boolean) return Name_Id; -- Returns the name of the project that corresponds to its path name. -- Returns No_Name if the path name is invalid, because the corresponding -- project name does not have the syntax of an ada identifier. function Copy_With_Clause (With_Clause : Project_Node_Id; In_Tree : Project_Node_Tree_Ref; Next_Clause : Project_Node_Id) return Project_Node_Id; -- Return a copy of With_Clause in In_Tree, whose Next_With_Clause is the -- indicated one. ---------------------- -- Copy_With_Clause -- ---------------------- function Copy_With_Clause (With_Clause : Project_Node_Id; In_Tree : Project_Node_Tree_Ref; Next_Clause : Project_Node_Id) return Project_Node_Id is New_With_Clause : constant Project_Node_Id := Default_Project_Node (In_Tree, N_With_Clause); begin Set_Name_Of (New_With_Clause, In_Tree, Name_Of (With_Clause, In_Tree)); Set_Path_Name_Of (New_With_Clause, In_Tree, Path_Name_Of (With_Clause, In_Tree)); Set_Project_Node_Of (New_With_Clause, In_Tree, Project_Node_Of (With_Clause, In_Tree)); Set_Next_With_Clause_Of (New_With_Clause, In_Tree, Next_Clause); return New_With_Clause; end Copy_With_Clause; -------------------------------------- -- Create_Virtual_Extending_Project -- -------------------------------------- procedure Create_Virtual_Extending_Project (For_Project : Project_Node_Id; Main_Project : Project_Node_Id; Extension_Withs : Project_Node_Id; In_Tree : Project_Node_Tree_Ref) is Virtual_Name : constant String := Virtual_Prefix & Get_Name_String (Name_Of (For_Project, In_Tree)); -- The name of the virtual extending project Virtual_Name_Id : Name_Id; -- Virtual extending project name id Virtual_Path_Id : Path_Name_Type; -- Fake path name of the virtual extending project. The directory is -- the same directory as the extending all project. -- The source of the virtual extending project is something like: -- project V$<project name> extends <project path> is -- for Source_Dirs use (); -- end V$<project name>; -- The project directory cannot be specified during parsing; it will be -- put directly in the virtual extending project data during processing. -- Nodes that made up the virtual extending project Virtual_Project : Project_Node_Id; With_Clause : constant Project_Node_Id := Default_Project_Node (In_Tree, N_With_Clause); Project_Declaration : Project_Node_Id; Source_Dirs_Declaration : constant Project_Node_Id := Default_Project_Node (In_Tree, N_Declarative_Item); Source_Dirs_Attribute : constant Project_Node_Id := Default_Project_Node (In_Tree, N_Attribute_Declaration, List); Source_Dirs_Expression : constant Project_Node_Id := Default_Project_Node (In_Tree, N_Expression, List); Source_Dirs_Term : constant Project_Node_Id := Default_Project_Node (In_Tree, N_Term, List); Source_Dirs_List : constant Project_Node_Id := Default_Project_Node (In_Tree, N_Literal_String_List, List); begin -- Get the virtual path name Get_Name_String (Path_Name_Of (Main_Project, In_Tree)); while Name_Len > 0 and then not Is_Directory_Separator (Name_Buffer (Name_Len)) loop Name_Len := Name_Len - 1; end loop; Name_Buffer (Name_Len + 1 .. Name_Len + Virtual_Name'Length) := Virtual_Name; Name_Len := Name_Len + Virtual_Name'Length; Virtual_Path_Id := Name_Find; -- Get the virtual name id Name_Len := Virtual_Name'Length; Name_Buffer (1 .. Name_Len) := Virtual_Name; Virtual_Name_Id := Name_Find; Virtual_Project := Create_Project (In_Tree => In_Tree, Name => Virtual_Name_Id, Full_Path => Virtual_Path_Id, Is_Config_File => False); Project_Declaration := Project_Declaration_Of (Virtual_Project, In_Tree); -- Add a WITH clause to the main project to import the newly created -- virtual extending project. Set_Name_Of (With_Clause, In_Tree, Virtual_Name_Id); Set_Path_Name_Of (With_Clause, In_Tree, Virtual_Path_Id); Set_Project_Node_Of (With_Clause, In_Tree, Virtual_Project); Set_Next_With_Clause_Of (With_Clause, In_Tree, First_With_Clause_Of (Main_Project, In_Tree)); Set_First_With_Clause_Of (Main_Project, In_Tree, With_Clause); -- Copy with clauses for projects imported by the extending-all project declare Org_With_Clause : Project_Node_Id := Extension_Withs; New_With_Clause : Project_Node_Id := Empty_Node; begin while Present (Org_With_Clause) loop New_With_Clause := Copy_With_Clause (Org_With_Clause, In_Tree, New_With_Clause); Org_With_Clause := Next_With_Clause_Of (Org_With_Clause, In_Tree); end loop; Set_First_With_Clause_Of (Virtual_Project, In_Tree, New_With_Clause); end; -- Virtual project node Set_Location_Of (Virtual_Project, In_Tree, Location_Of (Main_Project, In_Tree)); Set_Extended_Project_Path_Of (Virtual_Project, In_Tree, Path_Name_Of (For_Project, In_Tree)); -- Project declaration Set_First_Declarative_Item_Of (Project_Declaration, In_Tree, Source_Dirs_Declaration); Set_Extended_Project_Of (Project_Declaration, In_Tree, For_Project); -- Source_Dirs declaration Set_Current_Item_Node (Source_Dirs_Declaration, In_Tree, Source_Dirs_Attribute); -- Source_Dirs attribute Set_Name_Of (Source_Dirs_Attribute, In_Tree, Snames.Name_Source_Dirs); Set_Expression_Of (Source_Dirs_Attribute, In_Tree, Source_Dirs_Expression); -- Source_Dirs expression Set_First_Term (Source_Dirs_Expression, In_Tree, Source_Dirs_Term); -- Source_Dirs term Set_Current_Term (Source_Dirs_Term, In_Tree, Source_Dirs_List); -- Source_Dirs empty list: nothing to do end Create_Virtual_Extending_Project; ----------------------------------- -- Look_For_Virtual_Projects_For -- ----------------------------------- Extension_Withs : Project_Node_Id; -- Head of the current EXTENDS ALL imports list. When creating virtual -- projects for an EXTENDS ALL, we import in each virtual project all -- of the projects that appear in WITH clauses of the extending projects. -- This ensures that virtual projects share a consistent environment (in -- particular if a project imported by one of the extending projects -- replaces some runtime units). procedure Look_For_Virtual_Projects_For (Proj : Project_Node_Id; In_Tree : Project_Node_Tree_Ref; Potentially_Virtual : Boolean) is Declaration : Project_Node_Id := Empty_Node; -- Node for the project declaration of Proj With_Clause : Project_Node_Id := Empty_Node; -- Node for a with clause of Proj Imported : Project_Node_Id := Empty_Node; -- Node for a project imported by Proj Extended : Project_Node_Id := Empty_Node; -- Node for the eventual project extended by Proj Extends_All : Boolean := False; -- Set True if Proj is an EXTENDS ALL project Saved_Extension_Withs : constant Project_Node_Id := Extension_Withs; begin -- Nothing to do if Proj is undefined or has already been processed if Present (Proj) and then not Processed_Hash.Get (Proj) then -- Make sure the project will not be processed again Processed_Hash.Set (Proj, True); Declaration := Project_Declaration_Of (Proj, In_Tree); if Present (Declaration) then Extended := Extended_Project_Of (Declaration, In_Tree); Extends_All := Is_Extending_All (Proj, In_Tree); end if; -- If this is a project that may need a virtual extending project -- and it is not itself an extending project, put it in the list. if Potentially_Virtual and then No (Extended) then Virtual_Hash.Set (Proj, Extension_Withs); end if; -- Now check the projects it imports With_Clause := First_With_Clause_Of (Proj, In_Tree); while Present (With_Clause) loop Imported := Project_Node_Of (With_Clause, In_Tree); if Present (Imported) then Look_For_Virtual_Projects_For (Imported, In_Tree, Potentially_Virtual => True); end if; if Extends_All then -- This is an EXTENDS ALL project: prepend each of its WITH -- clauses to the currently active list of extension deps. Extension_Withs := Copy_With_Clause (With_Clause, In_Tree, Extension_Withs); end if; With_Clause := Next_With_Clause_Of (With_Clause, In_Tree); end loop; -- Check also the eventual project extended by Proj. As this project -- is already extended, call recursively with Potentially_Virtual -- being False. Look_For_Virtual_Projects_For (Extended, In_Tree, Potentially_Virtual => False); Extension_Withs := Saved_Extension_Withs; end if; end Look_For_Virtual_Projects_For; ----------- -- Parse -- ----------- procedure Parse (In_Tree : Project_Node_Tree_Ref; Project : out Project_Node_Id; Project_File_Name : String; Errout_Handling : Errout_Mode := Always_Finalize; Packages_To_Check : String_List_Access; Store_Comments : Boolean := False; Current_Directory : String := ""; Is_Config_File : Boolean; Env : in out Prj.Tree.Environment; Target_Name : String := ""; Implicit_Project : Boolean := False) is Dummy : Boolean; pragma Warnings (Off, Dummy); Real_Project_File_Name : String_Access := Osint.To_Canonical_File_Spec (Project_File_Name); Path_Name_Id : Path_Name_Type; begin In_Tree.Incomplete_With := False; Project_Stack.Init; Tree_Private_Part.Projects_Htable.Reset (In_Tree.Projects_HT); if not Is_Initialized (Env.Project_Path) then Prj.Env.Initialize_Default_Project_Path (Env.Project_Path, Target_Name); end if; if Real_Project_File_Name = null then Real_Project_File_Name := new String'(Project_File_Name); end if; Project := Empty_Node; Find_Project (Env.Project_Path, Project_File_Name => Real_Project_File_Name.all, Directory => Current_Directory, Path => Path_Name_Id); Free (Real_Project_File_Name); if Errout_Handling /= Never_Finalize then Prj.Err.Initialize; end if; Prj.Err.Scanner.Set_Comment_As_Token (Store_Comments); Prj.Err.Scanner.Set_End_Of_Line_As_Token (Store_Comments); if Path_Name_Id = No_Path then declare P : String_Access; begin Get_Path (Env.Project_Path, Path => P); Prj.Com.Fail ("project file """ & Project_File_Name & """ not found in " & P.all); Project := Empty_Node; return; end; end if; -- Parse the main project file begin Parse_Single_Project (In_Tree => In_Tree, Project => Project, Extends_All => Dummy, Path_Name_Id => Path_Name_Id, Extended => False, From_Extended => None, In_Limited => False, Packages_To_Check => Packages_To_Check, Depth => 0, Current_Dir => Current_Directory, Is_Config_File => Is_Config_File, Env => Env, Implicit_Project => Implicit_Project); exception when Types.Unrecoverable_Error => -- Unrecoverable_Error is raised when a line is too long. -- A meaningful error message will be displayed later. Project := Empty_Node; end; -- If Project is an extending-all project, create the eventual -- virtual extending projects and check that there are no illegally -- imported projects. if Present (Project) and then Is_Extending_All (Project, In_Tree) then -- First look for projects that potentially need a virtual -- extending project. Virtual_Hash.Reset; Processed_Hash.Reset; -- Mark the extending all project as processed, to avoid checking -- the imported projects in case of a "limited with" on this -- extending all project. Processed_Hash.Set (Project, True); declare Declaration : constant Project_Node_Id := Project_Declaration_Of (Project, In_Tree); begin Extension_Withs := First_With_Clause_Of (Project, In_Tree); Look_For_Virtual_Projects_For (Extended_Project_Of (Declaration, In_Tree), In_Tree, Potentially_Virtual => False); end; -- Now, check the projects directly imported by the main project. -- Remove from the potentially virtual any project extended by one -- of these imported projects. declare With_Clause : Project_Node_Id; Imported : Project_Node_Id := Empty_Node; Declaration : Project_Node_Id := Empty_Node; begin With_Clause := First_With_Clause_Of (Project, In_Tree); while Present (With_Clause) loop Imported := Project_Node_Of (With_Clause, In_Tree); if Present (Imported) then Declaration := Project_Declaration_Of (Imported, In_Tree); if Extended_Project_Of (Declaration, In_Tree) /= Empty_Node then loop Imported := Extended_Project_Of (Declaration, In_Tree); exit when No (Imported); Virtual_Hash.Remove (Imported); Declaration := Project_Declaration_Of (Imported, In_Tree); end loop; end if; end if; With_Clause := Next_With_Clause_Of (With_Clause, In_Tree); end loop; end; -- Now create all the virtual extending projects declare Proj : Project_Node_Id := Empty_Node; Withs : Project_Node_Id; begin Virtual_Hash.Get_First (Proj, Withs); while Withs /= Project_Node_High_Bound loop Create_Virtual_Extending_Project (Proj, Project, Withs, In_Tree); Virtual_Hash.Get_Next (Proj, Withs); end loop; end; end if; -- If there were any kind of error during the parsing, serious -- or not, then the parsing fails. if Total_Errors_Detected > 0 then Project := Empty_Node; end if; case Errout_Handling is when Always_Finalize => Prj.Err.Finalize; -- Reinitialize to avoid duplicate warnings later on Prj.Err.Initialize; when Finalize_If_Error => if No (Project) then Prj.Err.Finalize; Prj.Err.Initialize; end if; when Never_Finalize => null; end case; exception when X : others => -- Internal error Write_Line (Exception_Information (X)); Write_Str ("Exception "); Write_Str (Exception_Name (X)); Write_Line (" raised, while processing project file"); Project := Empty_Node; end Parse; ------------------------------ -- Pre_Parse_Context_Clause -- ------------------------------ procedure Pre_Parse_Context_Clause (In_Tree : Project_Node_Tree_Ref; Context_Clause : out With_Id; Is_Config_File : Boolean; Flags : Processing_Flags) is Current_With_Clause : With_Id := No_With; Limited_With : Boolean := False; Current_With : With_Record; Current_With_Node : Project_Node_Id := Empty_Node; begin -- Assume no context clause Context_Clause := No_With; With_Loop : -- If Token is not WITH or LIMITED, there is no context clause, or we -- have exhausted the with clauses. while Token = Tok_With or else Token = Tok_Limited loop Current_With_Node := Default_Project_Node (Of_Kind => N_With_Clause, In_Tree => In_Tree); Limited_With := Token = Tok_Limited; if Is_Config_File then Error_Msg (Flags, "configuration project cannot import " & "other configuration projects", Token_Ptr); end if; if Limited_With then Scan (In_Tree); -- past LIMITED Expect (Tok_With, "WITH"); exit With_Loop when Token /= Tok_With; end if; Comma_Loop : loop Scan (In_Tree); -- past WITH or "," Expect (Tok_String_Literal, "literal string"); if Token /= Tok_String_Literal then return; end if; -- Store path and location in table Withs Current_With := (Path => Path_Name_Type (Token_Name), Location => Token_Ptr, Limited_With => Limited_With, Node => Current_With_Node, Next => No_With); Withs.Increment_Last; Withs.Table (Withs.Last) := Current_With; if Current_With_Clause = No_With then Context_Clause := Withs.Last; else Withs.Table (Current_With_Clause).Next := Withs.Last; end if; Current_With_Clause := Withs.Last; Scan (In_Tree); if Token = Tok_Semicolon then Set_End_Of_Line (Current_With_Node); Set_Previous_Line_Node (Current_With_Node); -- End of (possibly multiple) with clause; Scan (In_Tree); -- past semicolon exit Comma_Loop; elsif Token = Tok_Comma then Set_Is_Not_Last_In_List (Current_With_Node, In_Tree); else Error_Msg (Flags, "expected comma or semi colon", Token_Ptr); exit Comma_Loop; end if; Current_With_Node := Default_Project_Node (Of_Kind => N_With_Clause, In_Tree => In_Tree); end loop Comma_Loop; end loop With_Loop; end Pre_Parse_Context_Clause; ------------------------------- -- Post_Parse_Context_Clause -- ------------------------------- procedure Post_Parse_Context_Clause (Context_Clause : With_Id; In_Tree : Project_Node_Tree_Ref; In_Limited : Boolean; Limited_Withs : Boolean; Imported_Projects : in out Project_Node_Id; Project_Directory : Path_Name_Type; From_Extended : Extension_Origin; Packages_To_Check : String_List_Access; Depth : Natural; Current_Dir : String; Is_Config_File : Boolean; Env : in out Environment) is Current_With_Clause : With_Id := Context_Clause; Current_Project : Project_Node_Id := Imported_Projects; Previous_Project : Project_Node_Id := Empty_Node; Next_Project : Project_Node_Id := Empty_Node; Project_Directory_Path : constant String := Get_Name_String (Project_Directory); Current_With : With_Record; Extends_All : Boolean := False; Imported_Path_Name_Id : Path_Name_Type; begin -- Set Current_Project to the last project in the current list, if the -- list is not empty. if Present (Current_Project) then while Present (Next_With_Clause_Of (Current_Project, In_Tree)) loop Current_Project := Next_With_Clause_Of (Current_Project, In_Tree); end loop; end if; while Current_With_Clause /= No_With loop Current_With := Withs.Table (Current_With_Clause); Current_With_Clause := Current_With.Next; if Limited_Withs = Current_With.Limited_With then Find_Project (Env.Project_Path, Project_File_Name => Get_Name_String (Current_With.Path), Directory => Project_Directory_Path, Path => Imported_Path_Name_Id); if Imported_Path_Name_Id = No_Path then if Env.Flags.Ignore_Missing_With then In_Tree.Incomplete_With := True; Env.Flags.Incomplete_Withs := True; else -- The project file cannot be found Error_Msg_File_1 := File_Name_Type (Current_With.Path); Error_Msg (Env.Flags, "unknown project file: {", Current_With.Location); -- If this is not imported by the main project file, display -- the import path. if Project_Stack.Last > 1 then for Index in reverse 1 .. Project_Stack.Last loop Error_Msg_File_1 := File_Name_Type (Project_Stack.Table (Index).Path_Name); Error_Msg (Env.Flags, "\imported by {", Current_With.Location); end loop; end if; end if; else -- New with clause declare Resolved_Path : constant String := Normalize_Pathname (Get_Name_String (Imported_Path_Name_Id), Directory => Current_Dir, Resolve_Links => Opt.Follow_Links_For_Files, Case_Sensitive => True); Withed_Project : Project_Node_Id := Empty_Node; begin Previous_Project := Current_Project; if No (Current_Project) then -- First with clause of the context clause Current_Project := Current_With.Node; Imported_Projects := Current_Project; else Next_Project := Current_With.Node; Set_Next_With_Clause_Of (Current_Project, In_Tree, Next_Project); Current_Project := Next_Project; end if; Set_String_Value_Of (Current_Project, In_Tree, Name_Id (Current_With.Path)); Set_Location_Of (Current_Project, In_Tree, Current_With.Location); -- If it is a limited with, check if we have a circularity. -- If we have one, get the project id of the limited -- imported project file, and do not parse it. if (In_Limited or Limited_Withs) and then Project_Stack.Last > 1 then declare Canonical_Path_Name : Path_Name_Type; begin Name_Len := Resolved_Path'Length; Name_Buffer (1 .. Name_Len) := Resolved_Path; Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len)); Canonical_Path_Name := Name_Find; for Index in 1 .. Project_Stack.Last loop if Project_Stack.Table (Index).Canonical_Path_Name = Canonical_Path_Name then -- We have found the limited imported project, -- get its project id, and do not parse it. Withed_Project := Project_Stack.Table (Index).Id; exit; end if; end loop; end; end if; -- Parse the imported project if its project id is unknown if No (Withed_Project) then Parse_Single_Project (In_Tree => In_Tree, Project => Withed_Project, Extends_All => Extends_All, Path_Name_Id => Imported_Path_Name_Id, Extended => False, From_Extended => From_Extended, In_Limited => In_Limited or Limited_Withs, Packages_To_Check => Packages_To_Check, Depth => Depth, Current_Dir => Current_Dir, Is_Config_File => Is_Config_File, Env => Env); else Extends_All := Is_Extending_All (Withed_Project, In_Tree); end if; if No (Withed_Project) then -- If parsing unsuccessful, remove the context clause Current_Project := Previous_Project; if No (Current_Project) then Imported_Projects := Empty_Node; else Set_Next_With_Clause_Of (Current_Project, In_Tree, Empty_Node); end if; else -- If parsing was successful, record project name and -- path name in with clause Set_Project_Node_Of (Node => Current_Project, In_Tree => In_Tree, To => Withed_Project, Limited_With => Current_With.Limited_With); Set_Name_Of (Current_Project, In_Tree, Name_Of (Withed_Project, In_Tree)); Name_Len := Resolved_Path'Length; Name_Buffer (1 .. Name_Len) := Resolved_Path; Set_Path_Name_Of (Current_Project, In_Tree, Name_Find); if Extends_All then Set_Is_Extending_All (Current_Project, In_Tree); end if; end if; end; end if; end if; end loop; end Post_Parse_Context_Clause; --------------------------------- -- Check_Extending_All_Imports -- --------------------------------- procedure Check_Extending_All_Imports (Flags : Processing_Flags; In_Tree : Project_Node_Tree_Ref; Project : Project_Node_Id) is With_Clause : Project_Node_Id; Imported : Project_Node_Id; begin if not Is_Extending_All (Project, In_Tree) then With_Clause := First_With_Clause_Of (Project, In_Tree); while Present (With_Clause) loop Imported := Project_Node_Of (With_Clause, In_Tree); if Is_Extending_All (With_Clause, In_Tree) then Error_Msg_Name_1 := Name_Of (Imported, In_Tree); Error_Msg (Flags, "cannot import extending-all project %%", Token_Ptr); exit; end if; With_Clause := Next_With_Clause_Of (With_Clause, In_Tree); end loop; end if; end Check_Extending_All_Imports; ----------------------------- -- Check_Aggregate_Imports -- ----------------------------- procedure Check_Aggregate_Imports (Flags : Processing_Flags; In_Tree : Project_Node_Tree_Ref; Project : Project_Node_Id) is With_Clause, Imported : Project_Node_Id; begin if Project_Qualifier_Of (Project, In_Tree) = Aggregate then With_Clause := First_With_Clause_Of (Project, In_Tree); while Present (With_Clause) loop Imported := Project_Node_Of (With_Clause, In_Tree); if Project_Qualifier_Of (Imported, In_Tree) /= Abstract_Project then Error_Msg_Name_1 := Name_Id (Path_Name_Of (Imported, In_Tree)); Error_Msg (Flags, "can only import abstract projects, not %%", Token_Ptr); exit; end if; With_Clause := Next_With_Clause_Of (With_Clause, In_Tree); end loop; end if; end Check_Aggregate_Imports; ---------------------------- -- Check_Import_Aggregate -- ---------------------------- procedure Check_Import_Aggregate (Flags : Processing_Flags; In_Tree : Project_Node_Tree_Ref; Project : Project_Node_Id) is With_Clause : Project_Node_Id; Imported : Project_Node_Id; begin if Project_Qualifier_Of (Project, In_Tree) /= Aggregate then With_Clause := First_With_Clause_Of (Project, In_Tree); while Present (With_Clause) loop Imported := Project_Node_Of (With_Clause, In_Tree); if Project_Qualifier_Of (Imported, In_Tree) = Aggregate then Error_Msg_Name_1 := Name_Id (Path_Name_Of (Imported, In_Tree)); Error_Msg (Flags, "cannot import aggregate project %%", Token_Ptr); exit; end if; With_Clause := Next_With_Clause_Of (With_Clause, In_Tree); end loop; end if; end Check_Import_Aggregate; ---------------------------- -- Read_Project_Qualifier -- ---------------------------- procedure Read_Project_Qualifier (Flags : Processing_Flags; In_Tree : Project_Node_Tree_Ref; Is_Config_File : Boolean; Qualifier_Location : out Source_Ptr; Project : Project_Node_Id) is Proj_Qualifier : Project_Qualifier := Unspecified; begin Qualifier_Location := Token_Ptr; if Token = Tok_Abstract then Proj_Qualifier := Abstract_Project; Scan (In_Tree); elsif Token = Tok_Identifier then case Token_Name is when Snames.Name_Standard => Proj_Qualifier := Standard; Scan (In_Tree); when Snames.Name_Aggregate => Proj_Qualifier := Aggregate; Scan (In_Tree); if Token = Tok_Identifier and then Token_Name = Snames.Name_Library then Proj_Qualifier := Aggregate_Library; Scan (In_Tree); end if; when Snames.Name_Library => Proj_Qualifier := Library; Scan (In_Tree); when Snames.Name_Configuration => if not Is_Config_File then Error_Msg (Flags, "configuration projects cannot belong to a user" & " project tree", Token_Ptr); end if; Proj_Qualifier := Configuration; Scan (In_Tree); when others => null; end case; end if; if Is_Config_File and then Proj_Qualifier = Unspecified then -- Set the qualifier to Configuration, even if the token doesn't -- exist in the source file itself, so that we can differentiate -- project files and configuration files later on. Proj_Qualifier := Configuration; end if; if Proj_Qualifier /= Unspecified then if Is_Config_File and then Proj_Qualifier /= Configuration then Error_Msg (Flags, "a configuration project cannot be qualified except " & "as configuration project", Qualifier_Location); end if; Set_Project_Qualifier_Of (Project, In_Tree, Proj_Qualifier); end if; end Read_Project_Qualifier; ------------------------------- -- Has_Circular_Dependencies -- ------------------------------- function Has_Circular_Dependencies (Flags : Processing_Flags; Normed_Path_Name : Path_Name_Type; Canonical_Path_Name : Path_Name_Type) return Boolean is begin for Index in reverse 1 .. Project_Stack.Last loop exit when Project_Stack.Table (Index).Limited_With; if Canonical_Path_Name = Project_Stack.Table (Index).Canonical_Path_Name then Error_Msg (Flags, "circular dependency detected", Token_Ptr); Error_Msg_Name_1 := Name_Id (Normed_Path_Name); Error_Msg (Flags, "\ %% is imported by", Token_Ptr); for Current in reverse 1 .. Project_Stack.Last loop Error_Msg_Name_1 := Name_Id (Project_Stack.Table (Current).Path_Name); if Project_Stack.Table (Current).Canonical_Path_Name /= Canonical_Path_Name then Error_Msg (Flags, "\ %% which itself is imported by", Token_Ptr); else Error_Msg (Flags, "\ %%", Token_Ptr); exit; end if; end loop; return True; end if; end loop; return False; end Has_Circular_Dependencies; -------------------------- -- Parse_Single_Project -- -------------------------- procedure Parse_Single_Project (In_Tree : Project_Node_Tree_Ref; Project : out Project_Node_Id; Extends_All : out Boolean; Path_Name_Id : Path_Name_Type; Extended : Boolean; From_Extended : Extension_Origin; In_Limited : Boolean; Packages_To_Check : String_List_Access; Depth : Natural; Current_Dir : String; Is_Config_File : Boolean; Env : in out Environment; Implicit_Project : Boolean := False) is Path_Name : constant String := Get_Name_String (Path_Name_Id); Normed_Path_Name : Path_Name_Type; Canonical_Path_Name : Path_Name_Type; Resolved_Path_Name : Path_Name_Type; Project_Directory : Path_Name_Type; Project_Scan_State : Saved_Project_Scan_State; Source_Index : Source_File_Index; Extending : Boolean := False; Extended_Project : Project_Node_Id := Empty_Node; A_Project_Name_And_Node : Tree_Private_Part.Project_Name_And_Node := Tree_Private_Part.Projects_Htable.Get_First (In_Tree.Projects_HT); Name_From_Path : constant Name_Id := Project_Name_From (Path_Name, Is_Config_File => Is_Config_File); Name_Of_Project : Name_Id := No_Name; Duplicated : Boolean := False; First_With : With_Id; Imported_Projects : Project_Node_Id := Empty_Node; use Tree_Private_Part; Project_Comment_State : Tree.Comment_State; Qualifier_Location : Source_Ptr; begin Extends_All := False; declare Normed_Path : constant String := Normalize_Pathname (Path_Name, Directory => Current_Dir, Resolve_Links => False, Case_Sensitive => True); Canonical_Path : constant String := Normalize_Pathname (Normed_Path, Directory => Current_Dir, Resolve_Links => Opt.Follow_Links_For_Files, Case_Sensitive => False); begin Name_Len := Normed_Path'Length; Name_Buffer (1 .. Name_Len) := Normed_Path; Normed_Path_Name := Name_Find; Name_Len := Canonical_Path'Length; Name_Buffer (1 .. Name_Len) := Canonical_Path; Canonical_Path_Name := Name_Find; if Opt.Follow_Links_For_Files then Resolved_Path_Name := Canonical_Path_Name; else Name_Len := 0; Add_Str_To_Name_Buffer (Normalize_Pathname (Canonical_Path, Resolve_Links => True, Case_Sensitive => False)); Resolved_Path_Name := Name_Find; end if; end; if Has_Circular_Dependencies (Env.Flags, Normed_Path_Name, Canonical_Path_Name) then Project := Empty_Node; return; end if; -- Put the new path name on the stack Project_Stack.Append ((Path_Name => Normed_Path_Name, Canonical_Path_Name => Canonical_Path_Name, Id => Empty_Node, Limited_With => In_Limited)); -- Check if the project file has already been parsed while A_Project_Name_And_Node /= Tree_Private_Part.No_Project_Name_And_Node loop if A_Project_Name_And_Node.Resolved_Path = Resolved_Path_Name then if Extended then if A_Project_Name_And_Node.Extended then if A_Project_Name_And_Node.Proj_Qualifier /= Abstract_Project then Error_Msg (Env.Flags, "cannot extend the same project file several times", Token_Ptr); end if; elsif not A_Project_Name_And_Node.From_Extended then Error_Msg (Env.Flags, "cannot extend an already imported project file", Token_Ptr); else -- Register this project as being extended A_Project_Name_And_Node.Extended := True; Tree_Private_Part.Projects_Htable.Set (In_Tree.Projects_HT, A_Project_Name_And_Node.Name, A_Project_Name_And_Node); end if; elsif A_Project_Name_And_Node.Extended then Extends_All := Is_Extending_All (A_Project_Name_And_Node.Node, In_Tree); -- If the imported project is an extended project A, and we are -- in an extended project, replace A with the ultimate project -- extending A. if From_Extended /= None then declare Decl : Project_Node_Id := Project_Declaration_Of (A_Project_Name_And_Node.Node, In_Tree); Prj : Project_Node_Id := A_Project_Name_And_Node.Node; begin -- Loop through extending projects to find the ultimate -- extending project, that is the one that is not -- extended. For an abstract project, as it can be -- extended several times, there is no extending project -- registered, so the loop does not execute and the -- resulting project is the abstract project. while Extending_Project_Of (Decl, In_Tree) /= Empty_Node loop Prj := Extending_Project_Of (Decl, In_Tree); Decl := Project_Declaration_Of (Prj, In_Tree); end loop; A_Project_Name_And_Node.Node := Prj; end; else Error_Msg (Env.Flags, "cannot import an already extended project file", Token_Ptr); end if; elsif A_Project_Name_And_Node.From_Extended then -- This project is now imported from a non extending project. -- Indicate this in has table Projects.HT. A_Project_Name_And_Node.From_Extended := False; Tree_Private_Part.Projects_Htable.Set (In_Tree.Projects_HT, A_Project_Name_And_Node.Name, A_Project_Name_And_Node); end if; Project := A_Project_Name_And_Node.Node; Project_Stack.Decrement_Last; return; end if; A_Project_Name_And_Node := Tree_Private_Part.Projects_Htable.Get_Next (In_Tree.Projects_HT); end loop; -- We never encountered this project file. Save the scan state, load the -- project file and start to scan it. Save_Project_Scan_State (Project_Scan_State); Source_Index := Load_Project_File (Path_Name); Tree.Save (Project_Comment_State); -- If we cannot find it, we stop if Source_Index = No_Source_File then Project := Empty_Node; Project_Stack.Decrement_Last; return; end if; Prj.Err.Scanner.Initialize_Scanner (Source_Index); Tree.Reset_State; Scan (In_Tree); if not Is_Config_File and then Name_From_Path = No_Name and then not Implicit_Project then -- The project file name is not correct (no or bad extension, or not -- following Ada identifier's syntax). Error_Msg_File_1 := File_Name_Type (Canonical_Path_Name); Error_Msg (Env.Flags, "?{ is not a valid path name for a project file", Token_Ptr); end if; if Current_Verbosity >= Medium then Debug_Increase_Indent ("Parsing """ & Path_Name & '"'); end if; Project_Directory := Path_Name_Type (Get_Directory (File_Name_Type (Normed_Path_Name))); -- Is there any imported project? Pre_Parse_Context_Clause (In_Tree => In_Tree, Is_Config_File => Is_Config_File, Context_Clause => First_With, Flags => Env.Flags); Project := Default_Project_Node (Of_Kind => N_Project, In_Tree => In_Tree); Project_Stack.Table (Project_Stack.Last).Id := Project; Set_Directory_Of (Project, In_Tree, Project_Directory); Set_Path_Name_Of (Project, In_Tree, Normed_Path_Name); Read_Project_Qualifier (Env.Flags, In_Tree, Is_Config_File, Qualifier_Location, Project); Set_Location_Of (Project, In_Tree, Token_Ptr); Expect (Tok_Project, "PROJECT"); -- Mark location of PROJECT token if present if Token = Tok_Project then Scan (In_Tree); -- past PROJECT Set_Location_Of (Project, In_Tree, Token_Ptr); end if; -- Clear the Buffer Buffer_Last := 0; loop Expect (Tok_Identifier, "identifier"); -- If the token is not an identifier, clear the buffer before -- exiting to indicate that the name of the project is ill-formed. if Token /= Tok_Identifier then Buffer_Last := 0; exit; end if; -- Add the identifier name to the buffer Get_Name_String (Token_Name); Add_To_Buffer (Name_Buffer (1 .. Name_Len), Buffer, Buffer_Last); -- Scan past the identifier Scan (In_Tree); -- If we have a dot, add a dot to the Buffer and look for the next -- identifier. exit when Token /= Tok_Dot; Add_To_Buffer (".", Buffer, Buffer_Last); -- Scan past the dot Scan (In_Tree); end loop; -- See if this is an extending project if Token = Tok_Extends then if Is_Config_File then Error_Msg (Env.Flags, "extending configuration project not allowed", Token_Ptr); end if; -- Make sure that gnatmake will use mapping files Opt.Create_Mapping_File := True; -- We are extending another project Extending := True; Scan (In_Tree); -- past EXTENDS if Token = Tok_All then Extends_All := True; Set_Is_Extending_All (Project, In_Tree); Scan (In_Tree); -- scan past ALL end if; end if; -- If the name is well formed, Buffer_Last is > 0 if Buffer_Last > 0 then -- The Buffer contains the name of the project Name_Len := Buffer_Last; Name_Buffer (1 .. Name_Len) := Buffer (1 .. Buffer_Last); Name_Of_Project := Name_Find; Set_Name_Of (Project, In_Tree, Name_Of_Project); -- To get expected name of the project file, replace dots by dashes for Index in 1 .. Name_Len loop if Name_Buffer (Index) = '.' then Name_Buffer (Index) := '-'; end if; end loop; Canonical_Case_File_Name (Name_Buffer (1 .. Name_Len)); declare Expected_Name : constant Name_Id := Name_Find; Extension : String_Access; begin -- Output a warning if the actual name is not the expected name if not Is_Config_File and then (Name_From_Path /= No_Name) and then Expected_Name /= Name_From_Path then Error_Msg_Name_1 := Expected_Name; if Is_Config_File then Extension := new String'(Config_Project_File_Extension); else Extension := new String'(Project_File_Extension); end if; Error_Msg (Env.Flags, "?file name does not match project name, should be `%%" & Extension.all & "`", Token_Ptr); end if; end; -- Read the original casing of the project name and put it in the -- project node. declare Loc : Source_Ptr; begin Loc := Location_Of (Project, In_Tree); for J in 1 .. Name_Len loop Name_Buffer (J) := Sinput.Source (Loc); Loc := Loc + 1; end loop; Set_Display_Name_Of (Project, In_Tree, Name_Find); end; declare From_Ext : Extension_Origin := None; begin -- Extending_All is always propagated if From_Extended = Extending_All or else Extends_All then From_Ext := Extending_All; -- Otherwise, From_Extended is set to Extending_Single if the -- current project is an extending project. elsif Extended then From_Ext := Extending_Simple; end if; Post_Parse_Context_Clause (In_Tree => In_Tree, Context_Clause => First_With, In_Limited => In_Limited, Limited_Withs => False, Imported_Projects => Imported_Projects, Project_Directory => Project_Directory, From_Extended => From_Ext, Packages_To_Check => Packages_To_Check, Depth => Depth + 1, Current_Dir => Current_Dir, Is_Config_File => Is_Config_File, Env => Env); Set_First_With_Clause_Of (Project, In_Tree, Imported_Projects); end; if not Is_Config_File then declare Name_And_Node : Tree_Private_Part.Project_Name_And_Node := Tree_Private_Part.Projects_Htable.Get_First (In_Tree.Projects_HT); Project_Name : Name_Id := Name_And_Node.Name; begin -- Check if we already have a project with this name while Project_Name /= No_Name and then Project_Name /= Name_Of_Project loop Name_And_Node := Tree_Private_Part.Projects_Htable.Get_Next (In_Tree.Projects_HT); Project_Name := Name_And_Node.Name; end loop; -- Report an error if we already have a project with this name if Project_Name /= No_Name then Duplicated := True; Error_Msg_Name_1 := Project_Name; Error_Msg (Env.Flags, "duplicate project name %%", Location_Of (Project, In_Tree)); Error_Msg_Name_1 := Name_Id (Path_Name_Of (Name_And_Node.Node, In_Tree)); Error_Msg (Env.Flags, "\already in %%", Location_Of (Project, In_Tree)); end if; end; end if; end if; if Extending then Expect (Tok_String_Literal, "literal string"); if Token = Tok_String_Literal then Set_Extended_Project_Path_Of (Project, In_Tree, Path_Name_Type (Token_Name)); declare Original_Path_Name : constant String := Get_Name_String (Token_Name); Extended_Project_Path_Name_Id : Path_Name_Type; begin Find_Project (Env.Project_Path, Project_File_Name => Original_Path_Name, Directory => Get_Name_String (Project_Directory), Path => Extended_Project_Path_Name_Id); if Extended_Project_Path_Name_Id = No_Path then -- We could not find the project file to extend Error_Msg_Name_1 := Token_Name; Error_Msg (Env.Flags, "unknown project file: %%", Token_Ptr); -- If not in the main project file, display the import path if Project_Stack.Last > 1 then Error_Msg_Name_1 := Name_Id (Project_Stack.Table (Project_Stack.Last).Path_Name); Error_Msg (Env.Flags, "\extended by %%", Token_Ptr); for Index in reverse 1 .. Project_Stack.Last - 1 loop Error_Msg_Name_1 := Name_Id (Project_Stack.Table (Index).Path_Name); Error_Msg (Env.Flags, "\imported by %%", Token_Ptr); end loop; end if; else declare From_Ext : Extension_Origin := None; begin if From_Extended = Extending_All or else Extends_All then From_Ext := Extending_All; end if; Parse_Single_Project (In_Tree => In_Tree, Project => Extended_Project, Extends_All => Extends_All, Path_Name_Id => Extended_Project_Path_Name_Id, Extended => True, From_Extended => From_Ext, In_Limited => In_Limited, Packages_To_Check => Packages_To_Check, Depth => Depth + 1, Current_Dir => Current_Dir, Is_Config_File => Is_Config_File, Env => Env); end; if Present (Extended_Project) then if Project_Qualifier_Of (Extended_Project, In_Tree) = Aggregate then Error_Msg_Name_1 := Name_Id (Path_Name_Of (Extended_Project, In_Tree)); Error_Msg (Env.Flags, "cannot extend aggregate project %%", Location_Of (Project, In_Tree)); end if; -- A project that extends an extending-all project is -- also an extending-all project. if Is_Extending_All (Extended_Project, In_Tree) then Set_Is_Extending_All (Project, In_Tree); end if; -- An abstract project can only extend an abstract -- project. Otherwise we may have an abstract project -- with sources if it inherits sources from the project -- it extends. if Project_Qualifier_Of (Project, In_Tree) = Abstract_Project and then Project_Qualifier_Of (Extended_Project, In_Tree) /= Abstract_Project then Error_Msg (Env.Flags, "an abstract project can only extend " & "another abstract project", Qualifier_Location); end if; end if; end if; end; Scan (In_Tree); -- past the extended project path end if; end if; Check_Extending_All_Imports (Env.Flags, In_Tree, Project); Check_Aggregate_Imports (Env.Flags, In_Tree, Project); Check_Import_Aggregate (Env.Flags, In_Tree, Project); -- Check that a project with a name including a dot either imports -- or extends the project whose name precedes the last dot. if Name_Of_Project /= No_Name then Get_Name_String (Name_Of_Project); else Name_Len := 0; end if; -- Look for the last dot while Name_Len > 0 and then Name_Buffer (Name_Len) /= '.' loop Name_Len := Name_Len - 1; end loop; -- If a dot was found, check if parent project is imported or extended if Name_Len > 0 then Name_Len := Name_Len - 1; declare Parent_Name : constant Name_Id := Name_Find; Parent_Found : Boolean := False; Parent_Node : Project_Node_Id := Empty_Node; With_Clause : Project_Node_Id := First_With_Clause_Of (Project, In_Tree); Imp_Proj_Name : Name_Id; begin -- If there is an extended project, check its name if Present (Extended_Project) then Parent_Node := Extended_Project; Parent_Found := Name_Of (Extended_Project, In_Tree) = Parent_Name; end if; -- If the parent project is not the extended project, -- check each imported project until we find the parent project. Imported_Loop : while not Parent_Found and then Present (With_Clause) loop Parent_Node := Project_Node_Of (With_Clause, In_Tree); Extension_Loop : while Present (Parent_Node) loop Imp_Proj_Name := Name_Of (Parent_Node, In_Tree); Parent_Found := Imp_Proj_Name = Parent_Name; exit Imported_Loop when Parent_Found; Parent_Node := Extended_Project_Of (Project_Declaration_Of (Parent_Node, In_Tree), In_Tree); end loop Extension_Loop; With_Clause := Next_With_Clause_Of (With_Clause, In_Tree); end loop Imported_Loop; if Parent_Found then Set_Parent_Project_Of (Project, In_Tree, To => Parent_Node); else -- If the parent project was not found, report an error Error_Msg_Name_1 := Name_Of_Project; Error_Msg_Name_2 := Parent_Name; Error_Msg (Env.Flags, "project %% does not import or extend project %%", Location_Of (Project, In_Tree)); end if; end; end if; Expect (Tok_Is, "IS"); Set_End_Of_Line (Project); Set_Previous_Line_Node (Project); Set_Next_End_Node (Project); declare Project_Declaration : Project_Node_Id := Empty_Node; begin -- No need to Scan past "is", Prj.Dect.Parse will do it Prj.Dect.Parse (In_Tree => In_Tree, Declarations => Project_Declaration, Current_Project => Project, Extends => Extended_Project, Packages_To_Check => Packages_To_Check, Is_Config_File => Is_Config_File, Flags => Env.Flags); Set_Project_Declaration_Of (Project, In_Tree, Project_Declaration); if Present (Extended_Project) and then Project_Qualifier_Of (Extended_Project, In_Tree) /= Abstract_Project then Set_Extending_Project_Of (Project_Declaration_Of (Extended_Project, In_Tree), In_Tree, To => Project); end if; end; Expect (Tok_End, "END"); Remove_Next_End_Node; -- Skip "end" if present if Token = Tok_End then Scan (In_Tree); end if; -- Clear the Buffer Buffer_Last := 0; -- Store the name following "end" in the Buffer. The name may be made of -- several simple names. loop Expect (Tok_Identifier, "identifier"); -- If we don't have an identifier, clear the buffer before exiting to -- avoid checking the name. if Token /= Tok_Identifier then Buffer_Last := 0; exit; end if; -- Add the identifier to the Buffer Get_Name_String (Token_Name); Add_To_Buffer (Name_Buffer (1 .. Name_Len), Buffer, Buffer_Last); -- Scan past the identifier Scan (In_Tree); exit when Token /= Tok_Dot; Add_To_Buffer (".", Buffer, Buffer_Last); Scan (In_Tree); end loop; -- If we have a valid name, check if it is the name of the project if Name_Of_Project /= No_Name and then Buffer_Last > 0 then if To_Lower (Buffer (1 .. Buffer_Last)) /= Get_Name_String (Name_Of (Project, In_Tree)) then -- Invalid name: report an error Error_Msg (Env.Flags, "expected """ & Get_Name_String (Name_Of (Project, In_Tree)) & """", Token_Ptr); end if; end if; Expect (Tok_Semicolon, "`;`"); -- Check that there is no more text following the end of the project -- source. if Token = Tok_Semicolon then Set_Previous_End_Node (Project); Scan (In_Tree); if Token /= Tok_EOF then Error_Msg (Env.Flags, "unexpected text following end of project", Token_Ptr); end if; end if; if not Duplicated and then Name_Of_Project /= No_Name then -- Add the name of the project to the hash table, so that we can -- check that no other subsequent project will have the same name. Tree_Private_Part.Projects_Htable.Set (T => In_Tree.Projects_HT, K => Name_Of_Project, E => (Name => Name_Of_Project, Node => Project, Resolved_Path => Resolved_Path_Name, Extended => Extended, From_Extended => From_Extended /= None, Proj_Qualifier => Project_Qualifier_Of (Project, In_Tree))); end if; declare From_Ext : Extension_Origin := None; begin -- Extending_All is always propagated if From_Extended = Extending_All or else Extends_All then From_Ext := Extending_All; -- Otherwise, From_Extended is set to Extending_Single if the -- current project is an extending project. elsif Extended then From_Ext := Extending_Simple; end if; Post_Parse_Context_Clause (In_Tree => In_Tree, Context_Clause => First_With, In_Limited => In_Limited, Limited_Withs => True, Imported_Projects => Imported_Projects, Project_Directory => Project_Directory, From_Extended => From_Ext, Packages_To_Check => Packages_To_Check, Depth => Depth + 1, Current_Dir => Current_Dir, Is_Config_File => Is_Config_File, Env => Env); Set_First_With_Clause_Of (Project, In_Tree, Imported_Projects); end; -- Restore the scan state, in case we are not the main project Restore_Project_Scan_State (Project_Scan_State); -- And remove the project from the project stack Project_Stack.Decrement_Last; -- Indicate if there are unkept comments Tree.Set_Project_File_Includes_Unkept_Comments (Node => Project, In_Tree => In_Tree, To => Tree.There_Are_Unkept_Comments); -- And restore the comment state that was saved Tree.Restore_And_Free (Project_Comment_State); Debug_Decrease_Indent; if Project /= Empty_Node and then Implicit_Project then Name_Len := 0; Add_Str_To_Name_Buffer (Current_Dir); Add_Char_To_Name_Buffer (Dir_Sep); In_Tree.Project_Nodes.Table (Project).Directory := Name_Find; end if; end Parse_Single_Project; ----------------------- -- Project_Name_From -- ----------------------- function Project_Name_From (Path_Name : String; Is_Config_File : Boolean) return Name_Id is Canonical : String (1 .. Path_Name'Length) := Path_Name; First : Natural := Canonical'Last; Last : Natural := First; Index : Positive; begin if Current_Verbosity = High then Debug_Output ("Project_Name_From (""" & Canonical & """)"); end if; -- If the path name is empty, return No_Name to indicate failure if First = 0 then return No_Name; end if; Canonical_Case_File_Name (Canonical); -- Look for the last dot in the path name while First > 0 and then Canonical (First) /= '.' loop First := First - 1; end loop; -- If we have a dot, check that it is followed by the correct extension if First > 0 and then Canonical (First) = '.' then if (not Is_Config_File and then Canonical (First .. Last) = Project_File_Extension and then First /= 1) or else (Is_Config_File and then Canonical (First .. Last) = Config_Project_File_Extension and then First /= 1) then -- Look for the last directory separator, if any First := First - 1; Last := First; while First > 0 and then Canonical (First) /= '/' and then Canonical (First) /= Dir_Sep loop First := First - 1; end loop; else -- Not the correct extension, return No_Name to indicate failure return No_Name; end if; -- If no dot in the path name, return No_Name to indicate failure else return No_Name; end if; First := First + 1; -- If the extension is the file name, return No_Name to indicate failure if First > Last then return No_Name; end if; -- Put the name in lower case into Name_Buffer Name_Len := Last - First + 1; Name_Buffer (1 .. Name_Len) := To_Lower (Canonical (First .. Last)); Index := 1; -- Check if it is a well formed project name. Return No_Name if it is -- ill formed. loop if not Is_Letter (Name_Buffer (Index)) then return No_Name; else loop Index := Index + 1; exit when Index >= Name_Len; if Name_Buffer (Index) = '_' then if Name_Buffer (Index + 1) = '_' then return No_Name; end if; end if; exit when Name_Buffer (Index) = '-'; if Name_Buffer (Index) /= '_' and then not Is_Alphanumeric (Name_Buffer (Index)) then return No_Name; end if; end loop; end if; if Index >= Name_Len then if Is_Alphanumeric (Name_Buffer (Name_Len)) then -- All checks have succeeded. Return name in Name_Buffer return Name_Find; else return No_Name; end if; elsif Name_Buffer (Index) = '-' then Index := Index + 1; end if; end loop; end Project_Name_From; end Prj.Part;
albinjal/ada_basic
Ada
875
ads
with Ada.Text_IO; package Sorted_List is CANTFIND_ERROR: exception; type List_Type is private; function Empty(List: List_Type) return Boolean; function Member(List: List_Type; Search: Integer) return Boolean; function Find(List: List_Type; Search: Integer) return Integer; function Length(List: List_Type) return Integer; procedure Insert(List: in out List_Type; Int: in Integer); procedure Put(File: in Ada.Text_IO.File_Type; List: in List_Type); procedure Remove(List: in out List_Type; Search: in Integer); procedure Delete(List: in out List_Type); procedure Find(List: in List_Type; Search: in Integer; Data: out Integer); private type Post; type List_Type is access Post; type Post is record Data: Integer; Point: List_Type; end record; end Sorted_List;
reznikmm/matreshka
Ada
4,648
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Style.Text_Autospace_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Style_Text_Autospace_Attribute_Node is begin return Self : Style_Text_Autospace_Attribute_Node do Matreshka.ODF_Style.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Style_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Style_Text_Autospace_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Text_Autospace_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Style_URI, Matreshka.ODF_String_Constants.Text_Autospace_Attribute, Style_Text_Autospace_Attribute_Node'Tag); end Matreshka.ODF_Style.Text_Autospace_Attributes;
reznikmm/matreshka
Ada
3,749
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Text_Label_Followed_By_Attributes is pragma Preelaborate; type ODF_Text_Label_Followed_By_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Text_Label_Followed_By_Attribute_Access is access all ODF_Text_Label_Followed_By_Attribute'Class with Storage_Size => 0; end ODF.DOM.Text_Label_Followed_By_Attributes;
charlie5/cBound
Ada
1,410
ads
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_alloc_color_planes_cookie_t is -- Item -- type Item is record sequence : aliased Interfaces.C.unsigned; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_alloc_color_planes_cookie_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_alloc_color_planes_cookie_t.Item, Element_Array => xcb.xcb_alloc_color_planes_cookie_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_alloc_color_planes_cookie_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_alloc_color_planes_cookie_t.Pointer, Element_Array => xcb.xcb_alloc_color_planes_cookie_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_alloc_color_planes_cookie_t;
optikos/oasis
Ada
3,595
adb
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Defining_Identifiers is function Create (Identifier_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Defining_Identifier is begin return Result : Defining_Identifier := (Identifier_Token => Identifier_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Defining_Identifier is begin return Result : Implicit_Defining_Identifier := (Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Identifier_Token (Self : Defining_Identifier) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Identifier_Token; end Identifier_Token; overriding function Image (Self : Defining_Identifier) return Text is begin return Self.Identifier_Token.Image; end Image; overriding function Is_Part_Of_Implicit (Self : Implicit_Defining_Identifier) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Defining_Identifier) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Defining_Identifier) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; overriding function Image (Self : Implicit_Defining_Identifier) return Text is pragma Unreferenced (Self); begin return ""; end Image; procedure Initialize (Self : aliased in out Base_Defining_Identifier'Class) is begin null; end Initialize; overriding function Is_Defining_Identifier_Element (Self : Base_Defining_Identifier) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Defining_Identifier_Element; overriding function Is_Defining_Name_Element (Self : Base_Defining_Identifier) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Defining_Name_Element; overriding procedure Visit (Self : not null access Base_Defining_Identifier; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Defining_Identifier (Self); end Visit; overriding function To_Defining_Identifier_Text (Self : aliased in out Defining_Identifier) return Program.Elements.Defining_Identifiers .Defining_Identifier_Text_Access is begin return Self'Unchecked_Access; end To_Defining_Identifier_Text; overriding function To_Defining_Identifier_Text (Self : aliased in out Implicit_Defining_Identifier) return Program.Elements.Defining_Identifiers .Defining_Identifier_Text_Access is pragma Unreferenced (Self); begin return null; end To_Defining_Identifier_Text; end Program.Nodes.Defining_Identifiers;
stcarrez/ada-util
Ada
20,249
adb
----------------------------------------------------------------------- -- util-log-loggers -- Utility Log Package -- Copyright (C) 2001 - 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings; with Ada.Strings.Fixed; with Ada.Calendar; with Ada.Unchecked_Deallocation; with Ada.IO_Exceptions; with Util.Strings; with Util.Strings.Builders; with Util.Strings.Formats; with Util.Log.Appenders.Factories; with Util.Log.Appenders.Consoles; with Util.Log.Appenders.Files; with Util.Log.Appenders.Rolling_Files; package body Util.Log.Loggers is use Ada.Strings; use Ada.Strings.Fixed; use Log.Appenders; function Traceback (E : in Exception_Occurrence) return String is separate; package File_Factory is new Util.Log.Appenders.Factories (Name => "File", Create => Files.Create'Access); package Rolling_File_Factory is new Util.Log.Appenders.Factories (Name => "RollingFile", Create => Rolling_Files.Create'Access); package Console_Factory is new Util.Log.Appenders.Factories (Name => "Console", Create => Consoles.Create'Access); -- The log manager controls the configuration of loggers. -- The log appenders are shared by loggers and they are created by -- the log manager when a logger is created. -- protected type Log_Manager is -- Initialize the log environment with the property file. procedure Initialize (Name : in String); -- Initialize the log environment with the property file. procedure Initialize (Properties : in Util.Properties.Manager); -- Create and initialize the logger procedure Create (Name : in String; Log : out Logger_Info_Access); -- Remove the logger from the list procedure Remove (Log : in out Logger_Info_Access); private -- Initialize the logger by reading the configuration, setting its level -- and creating the appender procedure Initialize (Log : in out Logger_Info); -- Re-initializes the loggers after the configuration is changed. procedure Initialize_Again; -- Find the appender to be used for the given logger. -- Create the appender if necessary. procedure Find_Appender (Property : in String; Appender : out Appender_Access); -- Obtain an appender given its name. If the appender does not exist, it is created. procedure Build_Appender (Name : in String; Appender : out Appender_Access); procedure Create_Default_Appender; Config : Properties.Manager; Appenders : Log.Appenders.Appender_List; Default_Level : Level_Type := WARN_LEVEL; Default_Appender : Log.Appenders.Appender_Access := null; First_Logger : Logger_Info_Access := null; end Log_Manager; Manager : Log_Manager; function Get_Appender (Value : in String) return String with Inline_Always; -- Get the logger property associated with a given logger function Get_Logger_Property (Properties : in Util.Properties.Manager; Name : in String) return String; -- ------------------------------ -- Get the log appender name from the property value -- ------------------------------ function Get_Appender (Value : in String) return String is Pos : constant Natural := Index (Value, ","); begin if Pos <= Value'First or else Pos >= Value'Last then return ""; else return Trim (Value (Pos + 1 .. Value'Last), Both); end if; end Get_Appender; -- ------------------------------ -- Get the logger property associated with a given logger -- ------------------------------ function Get_Logger_Property (Properties : in Util.Properties.Manager; Name : in String) return String is Prop_Name : constant String := "logger." & Name; Pos : Natural := Prop_Name'Last; begin while Pos > Prop_Name'First loop if Properties.Exists (Prop_Name (Prop_Name'First .. Pos)) then return Trim (Properties.Get (Prop_Name (Prop_Name'First .. Pos)), Both); end if; Pos := Util.Strings.Rindex (Prop_Name, '.', Pos); if Pos > 0 then Pos := Pos - 1; end if; end loop; return ""; end Get_Logger_Property; -- ------------------------------ -- Initialize the log environment with the property file. -- ------------------------------ procedure Initialize (Name : in String) is begin Manager.Initialize (Name); end Initialize; -- ------------------------------ -- Initialize the log environment with the properties. -- ------------------------------ procedure Initialize (Properties : in Util.Properties.Manager) is begin Manager.Initialize (Properties); end Initialize; protected body Log_Manager is -- ------------------------------ -- Initialize the log environment with the property file. -- ------------------------------ procedure Initialize (Name : in String) is begin Util.Properties.Load_Properties (Config, Path => Name, Prefix => "log4j.", Strip => True); Initialize_Again; exception when Ada.IO_Exceptions.Name_Error => declare Message : Util.Strings.Builders.Builder (256); Date : constant Ada.Calendar.Time := Ada.Calendar.Clock; begin Strings.Formats.Format (Message, "Log configuration file {0} not found", Name); if Default_Appender = null then Create_Default_Appender; end if; Default_Appender.Append (Message, Date, WARN_LEVEL, "Util.Log"); end; end Initialize; -- ------------------------------ -- Re-initializes the loggers after the configuration is changed. -- ------------------------------ procedure Initialize_Again is L : Logger_Info_Access := First_Logger; begin Util.Log.Appenders.Clear (Appenders); Default_Appender := null; -- Initialize the default category. if Config.Exists ("rootCategory") then declare Value : constant String := Config.Get ("rootCategory"); begin Default_Level := Get_Level (Value, Default_Level); Find_Appender (Property => Value, Appender => Default_Appender); end; end if; if Default_Appender = null then Create_Default_Appender; end if; -- Re-initialize the existing loggers. Note that there is no concurrency -- protection if a thread calls 'Initialize' while another thread is using -- an already initialized logger. while L /= null loop Initialize (L.all); L := L.Next_Logger; end loop; end Initialize_Again; -- ------------------------------ -- Initialize the log environment with the properties. -- ------------------------------ procedure Initialize (Properties : in Util.Properties.Manager) is New_Config : Util.Properties.Manager; begin New_Config.Copy (From => Properties, Prefix => "log4j.", Strip => True); Config := New_Config; Initialize_Again; end Initialize; -- ------------------------------ -- Initialize the logger by reading the configuration, setting its level -- and creating the appender -- ------------------------------ procedure Initialize (Log : in out Logger_Info) is Prop : constant String := Get_Logger_Property (Config, Log.Name); Appender : Appender_Access; begin Log.Level := Get_Level (Prop, Default_Level); Find_Appender (Prop, Appender); if Appender /= null then Log.Appender := Appender.all'Access; end if; end Initialize; -- ------------------------------ -- Create and initialize the logger -- ------------------------------ procedure Create (Name : in String; Log : out Logger_Info_Access) is begin Log := new Logger_Info (Len => Name'Length); Log.Name := Name; Initialize (Log.all); Log.Next_Logger := First_Logger; Log.Prev_Logger := null; if First_Logger /= null then First_Logger.Prev_Logger := Log; end if; First_Logger := Log; end Create; -- ------------------------------ -- Remove the logger from the list -- ------------------------------ procedure Remove (Log : in out Logger_Info_Access) is procedure Free is new Ada.Unchecked_Deallocation (Object => Logger_Info, Name => Logger_Info_Access); begin -- Remove first logger if Log = First_Logger then First_Logger := First_Logger.Next_Logger; if First_Logger /= null then First_Logger.Prev_Logger := null; end if; -- Remove last logger elsif Log.Next_Logger = null then Log.Prev_Logger.Next_Logger := null; else Log.Next_Logger.Prev_Logger := Log.Prev_Logger; Log.Prev_Logger.Next_Logger := Log.Next_Logger; end if; Free (Log); end Remove; -- ------------------------------ -- Obtain an appender given its name. If the appender does not exist, it is created. -- ------------------------------ procedure Build_Appender (Name : in String; Appender : out Appender_Access) is begin Appender := Util.Log.Appenders.Find_Appender (Appenders, Name); if Appender /= null then return; end if; if Name'Length > 0 then Appender := Util.Log.Appenders.Create (Name, Config, Default_Level); if Appender /= null then Util.Log.Appenders.Add_Appender (Appenders, Appender); end if; end if; end Build_Appender; procedure Create_Default_Appender is begin if Default_Appender = null then Default_Appender := Consoles.Create ("root", Config, ERROR_LEVEL); Set_Layout (Default_Appender.all, MESSAGE); Util.Log.Appenders.Add_Appender (Appenders, Default_Appender); end if; end Create_Default_Appender; -- ------------------------------ -- Find an appender given the property value -- ------------------------------ procedure Find_Appender (Property : in String; Appender : out Appender_Access) is Appender_Name : constant String := Get_Appender (Property); begin if Appender_Name'Length = 0 then Appender := Default_Appender; if Appender = null then Create_Default_Appender; Appender := Default_Appender; end if; return; end if; Appender := Util.Log.Appenders.Find_Appender (Appenders, Appender_Name); if Appender /= null then return; end if; declare N : Natural := Index (Appender_Name, ","); Last_Pos : Natural := Appender_Name'First; List : List_Appender_Access; A : Appender_Access; begin -- The appender configuration refers to a list of appenders. -- Example: DEBUG, out1, console if N > 0 then List := Create_List_Appender (Appender_Name); loop Build_Appender (Trim (Appender_Name (Last_Pos .. N - 1), Both), A); exit when A = null; List.Add_Appender (A); exit when N > Appender_Name'Last; Last_Pos := N + 1; N := Ada.Strings.Fixed.Index (Appender_Name, ",", Last_Pos); if N = 0 then N := Appender_Name'Last + 1; end if; end loop; Appender := List.all'Access; Util.Log.Appenders.Add_Appender (Appenders, Appender); else Build_Appender (Appender_Name, Appender); end if; end; end Find_Appender; end Log_Manager; -- ------------------------------ -- Create a logger with the given name. -- ------------------------------ function Create (Name : in String) return Logger is Log : Logger_Info_Access; begin Manager.Create (Name, Log); return Logger '(Ada.Finalization.Limited_Controlled with Instance => Log); end Create; -- ------------------------------ -- Create a logger with the given name and use the specified level. -- ------------------------------ function Create (Name : in String; Level : in Level_Type) return Logger is Log : Logger_Info_Access; begin Manager.Create (Name, Log); Log.Level := Level; return Logger '(Ada.Finalization.Limited_Controlled with Instance => Log); end Create; -- ------------------------------ -- Change the log level -- ------------------------------ procedure Set_Level (Log : in out Logger; Level : in Level_Type) is begin Log.Instance.Level := Level; end Set_Level; -- ------------------------------ -- Get the log level. -- ------------------------------ function Get_Level (Log : in Logger) return Level_Type is begin return Log.Instance.Level; end Get_Level; -- ------------------------------ -- Get the log level name. -- ------------------------------ function Get_Level_Name (Log : in Logger) return String is begin return Get_Level_Name (Log.Instance.Level); end Get_Level_Name; procedure Print (Log : in Logger; Level : in Level_Type; Message : in String; Arg1 : in String := ""; Arg2 : in String := ""; Arg3 : in String := ""; Arg4 : in String := "") is Instance : constant Logger_Info_Access := Log.Instance; begin if Instance /= null and then Instance.Level >= Level then declare Result : Util.Strings.Builders.Builder (256); Date : constant Ada.Calendar.Time := Ada.Calendar.Clock; begin Strings.Formats.Format (Result, Message, Arg1, Arg2, Arg3, Arg4); Instance.Appender.Append (Result, Date, Level, Instance.Name); end; end if; end Print; procedure Debug (Log : in Logger'Class; Message : in String; Arg1 : in String := ""; Arg2 : in String := ""; Arg3 : in String := "") is begin Print (Log, DEBUG_LEVEL, Message, Arg1, Arg2, Arg3); end Debug; procedure Debug (Log : in Logger'Class; Message : in String; Arg1 : in String; Arg2 : in String; Arg3 : in String; Arg4 : in String) is begin Print (Log, DEBUG_LEVEL, Message, Arg1, Arg2, Arg3, Arg4); end Debug; procedure Debug (Log : in Logger'Class; Message : in String; Arg1 : in Unbounded_String; Arg2 : in String := ""; Arg3 : in String := "") is begin if Log.Instance /= null and then Log.Instance.Level >= DEBUG_LEVEL then Print (Log, DEBUG_LEVEL, Message, To_String (Arg1), Arg2, Arg3); end if; end Debug; procedure Debug (Log : in Logger'Class; Message : in String; Arg1 : in Unbounded_String; Arg2 : in Unbounded_String; Arg3 : in String := "") is begin if Log.Instance /= null and then Log.Instance.Level >= DEBUG_LEVEL then Print (Log, DEBUG_LEVEL, Message, To_String (Arg1), To_String (Arg2), Arg3); end if; end Debug; procedure Info (Log : in Logger'Class; Message : in String; Arg1 : in String := ""; Arg2 : in String := ""; Arg3 : in String := "") is begin Print (Log, INFO_LEVEL, Message, Arg1, Arg2, Arg3); end Info; procedure Info (Log : in Logger'Class; Message : in String; Arg1 : in String; Arg2 : in String; Arg3 : in String; Arg4 : in String) is begin Print (Log, INFO_LEVEL, Message, Arg1, Arg2, Arg3, Arg4); end Info; procedure Info (Log : in Logger'Class; Message : in String; Arg1 : in Unbounded_String; Arg2 : in String := ""; Arg3 : in String := "") is begin if Log.Instance /= null and then Log.Instance.Level >= INFO_LEVEL then Print (Log, INFO_LEVEL, Message, To_String (Arg1), Arg2, Arg3); end if; end Info; procedure Warn (Log : in Logger'Class; Message : in String; Arg1 : in String := ""; Arg2 : in String := ""; Arg3 : in String := "") is begin if Log.Instance /= null and then Log.Instance.Level >= WARN_LEVEL then Print (Log, WARN_LEVEL, Message, Arg1, Arg2, Arg3); end if; end Warn; procedure Error (Log : in Logger'Class; Message : in String; Arg1 : in String := ""; Arg2 : in String := ""; Arg3 : in String := "") is begin Print (Log, ERROR_LEVEL, Message, Arg1, Arg2, Arg3); end Error; procedure Error (Log : in Logger'Class; Message : in String; E : in Exception_Occurrence; Trace : in Boolean := False) is begin if Trace then Print (Log, ERROR_LEVEL, "{0}: Exception {1}: {2} at {3}", Message, Exception_Name (E), Exception_Message (E), Traceback (E)); else Print (Log, ERROR_LEVEL, "{0}: Exception {1}: {2}", Message, Exception_Name (E), Exception_Message (E)); end if; end Error; -- ------------------------------ -- Finalize the logger and flush the associated appender -- ------------------------------ overriding procedure Finalize (Log : in out Logger) is begin if Log.Instance.Appender /= null then Log.Instance.Appender.Flush; end if; Manager.Remove (Log.Instance); end Finalize; begin Console_Factory.Register; File_Factory.Register; Rolling_File_Factory.Register; end Util.Log.Loggers;
AdaCore/training_material
Ada
1,758
ads
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; package rtmintrin_h is -- Copyright (C) 2012-2017 Free Software Foundation, Inc. -- This file is part of GCC. -- GCC is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3, or (at your option) -- any later version. -- GCC is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- Under Section 7 of GPL version 3, you are granted additional -- permissions described in the GCC Runtime Library Exception, version -- 3.1, as published by the Free Software Foundation. -- You should have received a copy of the GNU General Public License and -- a copy of the GCC Runtime Library Exception along with this program; -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- <http://www.gnu.org/licenses/>. -- Start an RTM code region. Return _XBEGIN_STARTED on success and the -- abort condition otherwise. -- skipped func _xbegin -- Specify the end of an RTM code region. If it corresponds to the -- outermost transaction, then attempts the transaction commit. If the -- commit fails, then control is transferred to the outermost transaction -- fallback handler. -- skipped func _xend -- Force an RTM abort condition. The control is transferred to the -- outermost transaction fallback handler with the abort condition IMM. end rtmintrin_h;
kylelk/ada-examples
Ada
204
adb
with Ada.Text_IO; use Ada; procedure point_test is type Point is record x, y, z : float; end record; location : Point; begin location := (x=>1.0, y=>1.0, z=>0.0); end point_test;
Tim-W-James/Ada-Reference-Code
Ada
6,228
adb
with Ada.Text_IO; use Ada.Text_IO; procedure sample is -- ================ -- VARIABLES -- ================ Const : constant Integer := 3; Var : Positive := 5; -- ================ -- TYPES -- ================ type My_Range is range 1 .. 5; -- inclusive Mod_Size : constant Positive := 5; type Modular_Element is mod Mod_Size; type My_Array is array (My_Range) of Positive; -- array with index 1 .. 5; Array_Instance : My_Array := (1, 2, 3, 4, 5); -- ================ -- FUNCTIONS -- ================ -- have return values, should be side effect free aka pure function Increment_By (X : Integer := 0; -- parameters, can have default values Incr : Integer := 1) return Integer is begin return X + Incr; end Increment_By; -- calls -- Var := Increment_By; -- parameterless, uses default values -- Var := Increment_By (1, 3); -- regular parameter passing -- Var := Increment_by (X => 3); -- named parameter passing -- single line definition for boolean function isGreaterThanTen (X : Integer) return Boolean is (X > 10); -- ================ -- PROCEDURE -- ================ -- must define parameter modes: -- * in : parameter can only be read, not written (default) -- * out : parameter can only be written to, then read -- * in out : parameter can be both read and written procedure Add_Ten (X : in out Integer) is type iter is range 1 .. 10; begin for I in iter loop X := X + 1; end loop; end Add_Ten; -- ================ -- TASKS -- ================ -- static task, only needs to be declared to be instantiated, runs on parent begin task Static_Task; task body Static_Task is begin delay 1.0; -- note: delay until x; is more precise. delay 0.0; to signal CPU to schedule in a different thread. Put_Line ("Start of Static Task"); end Static_Task; -- task type, used to create multiple instances, must be instantiated separately task type Task_Type (Id : Positive); task body Task_Type is begin delay 1.0; Put_Line ("Start of Task Type " & Positive'Image (Id)); end Task_Type; -- allocation Task_1_Instance : Task_Type (1); Task_2_Instance : Task_Type (2); -- Task_Array : array (1 .. 10) of Task_Type (3); -- dynamic task type task type Dynamic_Task_Type (Id : Positive); -- tasks are bound to the scope where pointer is declared, between type declaration and allocation -- note: the task itself can last longer than its pointer type Dynamic_Task_Type_Pointer is access Dynamic_Task_Type; task body Dynamic_Task_Type is begin delay 1.0; Put_Line ("Start of Dynamic Task Type " & Positive'Image (Id)); end Dynamic_Task_Type; -- allocation, use new for dynamic tasks Dynamic_Task : Dynamic_Task_Type_Pointer := new Dynamic_Task_Type (1); -- tasks can be nested, in this case Nested_Task is the parent task Nested_Task; task body Nested_Task is begin delay 1.0; Put_Line ("Start of Nested Task"); declare -- can also have additional declare blocks after begin -- allocation of another task (doesn't necessarily need to be dynamic) Inner_Task : Dynamic_Task_Type_Pointer := new Dynamic_Task_Type (2); begin Put_Line ("End of Nested Task Declare"); end; end Nested_Task; -- task synchronization: rendez-vous task Sync_Task is entry Continue; -- define an entry (note: different to protected entry) end Sync_Task; task body Sync_Task is begin Put_Line ("Start of Sync Task"); accept Continue; -- task will wait until the entry is called Put_Line ("End of Sync Task"); end Sync_Task; -- ================ -- PROTECTED OBJECTS -- ================ -- enforce protected operations for mutex on shared resources to avoid race conditions, etc. protected Protected_Obj is procedure Set (V : Modular_Element); function Get return Modular_Element; entry Inc; entry Dec; private -- information hiding Local : Modular_Element := 0; end Protected_Obj; protected body Protected_Obj is -- procedures can modify data, only 1 protected object can access at a time procedure Set (V : Modular_Element) is begin Local := V; end Set; -- functions cannot modify data, can be called in parallel function Get return Modular_Element is begin return Local; end Get; -- entries create barriers that are only passed when the condition evaluates to True -- note: different to task entries entry Inc when Local < Modular_Element'Last is begin Local := Modular_Element'Succ (Local); end Inc; entry Dec when Local > Modular_Element'First is begin Local := Modular_Element'Pred (Local); end Dec; end Protected_Obj; -- protected types are similar to task types -- main begin -- example print statements Put_Line ("Start of main scope"); Put_Line (Integer'Image (Const)); -- use [type]'Image to print -- imperative Add_Ten (Var); -- procedure call -- Var := 10; -- assignment if isGreaterThanTen (Var) then Put_Line ("Var is > 10"); elsif not isGreaterThanTen (Var) then Put_Line ("Var is <= 10"); else Put_Line ("How did you get here???"); end if; -- use 'and then' for lazy evaluation (will not evaluate second expression if first is False) if False and then True then null; end if; -- use 'or else' for lazy evaluation (will not evaluate second expression if first is True) if True or else False then null; end if; -- example for loop can be found in procedures -- task synchronization usage delay 3.0; Sync_Task.Continue; -- call Sync_Task's entry -- protected object usage delay 1.0; Protected_Obj.Set (3); -- only 1 thread can be inside a protected procedure at a time Protected_Obj.Inc; -- entry will wait until condition is True Put_Line ("Protect Obj number is: " & Modular_Element'Image (Protected_Obj.Get)); null; end sample;
reznikmm/matreshka
Ada
3,764
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Draw_Extrusion_Light_Face_Attributes is pragma Preelaborate; type ODF_Draw_Extrusion_Light_Face_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Draw_Extrusion_Light_Face_Attribute_Access is access all ODF_Draw_Extrusion_Light_Face_Attribute'Class with Storage_Size => 0; end ODF.DOM.Draw_Extrusion_Light_Face_Attributes;
Vikash-Kothary/swagger-aem
Ada
27,500
adb
-- Adobe Experience Manager (AEM) API -- Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API -- ------------ EDIT NOTE ------------ -- This file was generated with openapi-generator. You can modify it to implement -- the server. After you modify this file, you should add the following line -- to the .openapi-generator-ignore file: -- -- src/-servers.adb -- -- Then, you can drop this edit note comment. -- ------------ EDIT NOTE ------------ package body .Servers is -- overriding procedure Get_Aem_Product_Info (Server : in out Server_Type ; Result : out Swagger.UString_Vectors.Vector; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Aem_Product_Info; -- overriding procedure Get_Config_Mgr (Server : in out Server_Type ; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Config_Mgr; -- overriding procedure Post_Bundle (Server : in out Server_Type; Name : in Swagger.UString; Action : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Bundle; -- overriding procedure Post_Jmx_Repository (Server : in out Server_Type; Action : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Jmx_Repository; -- overriding procedure Post_Saml_Configuration (Server : in out Server_Type; Post : in Swagger.Nullable_Boolean; Apply : in Swagger.Nullable_Boolean; Delete : in Swagger.Nullable_Boolean; Action : in Swagger.Nullable_UString; Dollarlocation : in Swagger.Nullable_UString; Path : in Swagger.UString_Vectors.Vector; Service_Periodranking : in Swagger.Nullable_Integer; Idp_Url : in Swagger.Nullable_UString; Idp_Cert_Alias : in Swagger.Nullable_UString; Idp_Http_Redirect : in Swagger.Nullable_Boolean; Service_Provider_Entity_Id : in Swagger.Nullable_UString; Assertion_Consumer_Service_U_R_L : in Swagger.Nullable_UString; Sp_Private_Key_Alias : in Swagger.Nullable_UString; Key_Store_Password : in Swagger.Nullable_UString; Default_Redirect_Url : in Swagger.Nullable_UString; User_I_D_Attribute : in Swagger.Nullable_UString; Use_Encryption : in Swagger.Nullable_Boolean; Create_User : in Swagger.Nullable_Boolean; Add_Group_Memberships : in Swagger.Nullable_Boolean; Group_Membership_Attribute : in Swagger.Nullable_UString; Default_Groups : in Swagger.UString_Vectors.Vector; Name_Id_Format : in Swagger.Nullable_UString; Synchronize_Attributes : in Swagger.UString_Vectors.Vector; Handle_Logout : in Swagger.Nullable_Boolean; Logout_Url : in Swagger.Nullable_UString; Clock_Tolerance : in Swagger.Nullable_Integer; Digest_Method : in Swagger.Nullable_UString; Signature_Method : in Swagger.Nullable_UString; User_Intermediate_Path : in Swagger.Nullable_UString; Propertylist : in Swagger.UString_Vectors.Vector; Result : out .Models.SamlConfigurationInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Saml_Configuration; -- overriding procedure Get_Login_Page (Server : in out Server_Type ; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Login_Page; -- overriding procedure Post_Cq_Actions (Server : in out Server_Type; Authorizable_Id : in Swagger.UString; Changelog : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Cq_Actions; -- overriding procedure Get_Crxde_Status (Server : in out Server_Type ; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Crxde_Status; -- overriding procedure Get_Install_Status (Server : in out Server_Type ; Result : out .Models.InstallStatus_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Install_Status; -- overriding procedure Get_Package_Manager_Servlet (Server : in out Server_Type ; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Package_Manager_Servlet; -- overriding procedure Post_Package_Service (Server : in out Server_Type; Cmd : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Package_Service; -- overriding procedure Post_Package_Service_Json (Server : in out Server_Type; Path : in Swagger.UString; Cmd : in Swagger.UString; Group_Name : in Swagger.Nullable_UString; Package_Name : in Swagger.Nullable_UString; Package_Version : in Swagger.Nullable_UString; Charset : in Swagger.Nullable_UString; Force : in Swagger.Nullable_Boolean; Recursive : in Swagger.Nullable_Boolean; P_Package : in Swagger.File_Part_Type; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Package_Service_Json; -- overriding procedure Post_Package_Update (Server : in out Server_Type; Group_Name : in Swagger.UString; Package_Name : in Swagger.UString; Version : in Swagger.UString; Path : in Swagger.UString; Filter : in Swagger.Nullable_UString; Charset : in Swagger.Nullable_UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Package_Update; -- overriding procedure Post_Set_Password (Server : in out Server_Type; Old : in Swagger.UString; Plain : in Swagger.UString; Verify : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Set_Password; -- overriding procedure Get_Aem_Health_Check (Server : in out Server_Type; Tags : in Swagger.Nullable_UString; Combine_Tags_Or : in Swagger.Nullable_Boolean; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Aem_Health_Check; -- overriding procedure Post_Config_Aem_Health_Check_Servlet (Server : in out Server_Type; Bundles_Periodignored : in Swagger.UString_Vectors.Vector; Bundles_Periodignored_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Aem_Health_Check_Servlet; -- overriding procedure Post_Config_Aem_Password_Reset (Server : in out Server_Type; Pwdreset_Periodauthorizables : in Swagger.UString_Vectors.Vector; Pwdreset_Periodauthorizables_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Aem_Password_Reset; -- overriding procedure Delete_Agent (Server : in out Server_Type; Runmode : in Swagger.UString; Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Delete_Agent; -- overriding procedure Delete_Node (Server : in out Server_Type; Path : in Swagger.UString; Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Delete_Node; -- overriding procedure Get_Agent (Server : in out Server_Type; Runmode : in Swagger.UString; Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Agent; -- overriding procedure Get_Agents (Server : in out Server_Type; Runmode : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Agents; -- overriding procedure Get_Authorizable_Keystore (Server : in out Server_Type; Intermediate_Path : in Swagger.UString; Authorizable_Id : in Swagger.UString; Result : out .Models.KeystoreInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Authorizable_Keystore; -- overriding procedure Get_Keystore (Server : in out Server_Type; Intermediate_Path : in Swagger.UString; Authorizable_Id : in Swagger.UString; Result : out Swagger.Http_Content_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Keystore; -- overriding procedure Get_Node (Server : in out Server_Type; Path : in Swagger.UString; Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Node; -- overriding procedure Get_Package (Server : in out Server_Type; Group : in Swagger.UString; Name : in Swagger.UString; Version : in Swagger.UString; Result : out Swagger.Http_Content_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Package; -- overriding procedure Get_Package_Filter (Server : in out Server_Type; Group : in Swagger.UString; Name : in Swagger.UString; Version : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Package_Filter; -- overriding procedure Get_Query (Server : in out Server_Type; Path : in Swagger.UString; P_Periodlimit : in Swagger.Number; 1_Property : in Swagger.UString; 1_Property_Periodvalue : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Query; -- overriding procedure Get_Truststore (Server : in out Server_Type ; Result : out Swagger.Http_Content_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Truststore; -- overriding procedure Get_Truststore_Info (Server : in out Server_Type ; Result : out .Models.TruststoreInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Get_Truststore_Info; -- overriding procedure Post_Agent (Server : in out Server_Type; Runmode : in Swagger.UString; Name : in Swagger.UString; Jcr_Content_Slashcq_Distribute : in Swagger.Nullable_Boolean; Jcr_Content_Slashcq_Distribute_At_Type_Hint : in Swagger.Nullable_UString; Jcr_Content_Slashcq_Name : in Swagger.Nullable_UString; Jcr_Content_Slashcq_Template : in Swagger.Nullable_UString; Jcr_Content_Slashenabled : in Swagger.Nullable_Boolean; Jcr_Content_Slashjcr_Description : in Swagger.Nullable_UString; Jcr_Content_Slashjcr_Last_Modified : in Swagger.Nullable_UString; Jcr_Content_Slashjcr_Last_Modified_By : in Swagger.Nullable_UString; Jcr_Content_Slashjcr_Mixin_Types : in Swagger.Nullable_UString; Jcr_Content_Slashjcr_Title : in Swagger.Nullable_UString; Jcr_Content_Slashlog_Level : in Swagger.Nullable_UString; Jcr_Content_Slashno_Status_Update : in Swagger.Nullable_Boolean; Jcr_Content_Slashno_Versioning : in Swagger.Nullable_Boolean; Jcr_Content_Slashprotocol_Connect_Timeout : in Swagger.Number; Jcr_Content_Slashprotocol_H_T_T_P_Connection_Closed : in Swagger.Nullable_Boolean; Jcr_Content_Slashprotocol_H_T_T_P_Expired : in Swagger.Nullable_UString; Jcr_Content_Slashprotocol_H_T_T_P_Headers : in Swagger.UString_Vectors.Vector; Jcr_Content_Slashprotocol_H_T_T_P_Headers_At_Type_Hint : in Swagger.Nullable_UString; Jcr_Content_Slashprotocol_H_T_T_P_Method : in Swagger.Nullable_UString; Jcr_Content_Slashprotocol_H_T_T_P_S_Relaxed : in Swagger.Nullable_Boolean; Jcr_Content_Slashprotocol_Interface : in Swagger.Nullable_UString; Jcr_Content_Slashprotocol_Socket_Timeout : in Swagger.Number; Jcr_Content_Slashprotocol_Version : in Swagger.Nullable_UString; Jcr_Content_Slashproxy_N_T_L_M_Domain : in Swagger.Nullable_UString; Jcr_Content_Slashproxy_N_T_L_M_Host : in Swagger.Nullable_UString; Jcr_Content_Slashproxy_Host : in Swagger.Nullable_UString; Jcr_Content_Slashproxy_Password : in Swagger.Nullable_UString; Jcr_Content_Slashproxy_Port : in Swagger.Number; Jcr_Content_Slashproxy_User : in Swagger.Nullable_UString; Jcr_Content_Slashqueue_Batch_Max_Size : in Swagger.Number; Jcr_Content_Slashqueue_Batch_Mode : in Swagger.Nullable_UString; Jcr_Content_Slashqueue_Batch_Wait_Time : in Swagger.Number; Jcr_Content_Slashretry_Delay : in Swagger.Nullable_UString; Jcr_Content_Slashreverse_Replication : in Swagger.Nullable_Boolean; Jcr_Content_Slashserialization_Type : in Swagger.Nullable_UString; Jcr_Content_Slashsling_Resource_Type : in Swagger.Nullable_UString; Jcr_Content_Slashssl : in Swagger.Nullable_UString; Jcr_Content_Slashtransport_N_T_L_M_Domain : in Swagger.Nullable_UString; Jcr_Content_Slashtransport_N_T_L_M_Host : in Swagger.Nullable_UString; Jcr_Content_Slashtransport_Password : in Swagger.Nullable_UString; Jcr_Content_Slashtransport_Uri : in Swagger.Nullable_UString; Jcr_Content_Slashtransport_User : in Swagger.Nullable_UString; Jcr_Content_Slashtrigger_Distribute : in Swagger.Nullable_Boolean; Jcr_Content_Slashtrigger_Modified : in Swagger.Nullable_Boolean; Jcr_Content_Slashtrigger_On_Off_Time : in Swagger.Nullable_Boolean; Jcr_Content_Slashtrigger_Receive : in Swagger.Nullable_Boolean; Jcr_Content_Slashtrigger_Specific : in Swagger.Nullable_Boolean; Jcr_Content_Slashuser_Id : in Swagger.Nullable_UString; Jcr_Primary_Type : in Swagger.Nullable_UString; Operation : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Agent; -- overriding procedure Post_Authorizable_Keystore (Server : in out Server_Type; Intermediate_Path : in Swagger.UString; Authorizable_Id : in Swagger.UString; Operation : in Swagger.Nullable_UString; Current_Password : in Swagger.Nullable_UString; New_Password : in Swagger.Nullable_UString; Re_Password : in Swagger.Nullable_UString; Key_Password : in Swagger.Nullable_UString; Key_Store_Pass : in Swagger.Nullable_UString; Alias : in Swagger.Nullable_UString; New_Alias : in Swagger.Nullable_UString; Remove_Alias : in Swagger.Nullable_UString; Cert_Chain : in Swagger.File_Part_Type; Pk : in Swagger.File_Part_Type; Key_Store : in Swagger.File_Part_Type; Result : out .Models.KeystoreInfo_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Authorizable_Keystore; -- overriding procedure Post_Authorizables (Server : in out Server_Type; Authorizable_Id : in Swagger.UString; Intermediate_Path : in Swagger.UString; Create_User : in Swagger.Nullable_UString; Create_Group : in Swagger.Nullable_UString; Rep_Password : in Swagger.Nullable_UString; Profile_Slashgiven_Name : in Swagger.Nullable_UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Authorizables; -- overriding procedure Post_Config_Adobe_Granite_Saml_Authentication_Handler (Server : in out Server_Type; Key_Store_Password : in Swagger.Nullable_UString; Key_Store_Password_At_Type_Hint : in Swagger.Nullable_UString; Service_Periodranking : in Swagger.Nullable_Integer; Service_Periodranking_At_Type_Hint : in Swagger.Nullable_UString; Idp_Http_Redirect : in Swagger.Nullable_Boolean; Idp_Http_Redirect_At_Type_Hint : in Swagger.Nullable_UString; Create_User : in Swagger.Nullable_Boolean; Create_User_At_Type_Hint : in Swagger.Nullable_UString; Default_Redirect_Url : in Swagger.Nullable_UString; Default_Redirect_Url_At_Type_Hint : in Swagger.Nullable_UString; User_I_D_Attribute : in Swagger.Nullable_UString; User_I_D_Attribute_At_Type_Hint : in Swagger.Nullable_UString; Default_Groups : in Swagger.UString_Vectors.Vector; Default_Groups_At_Type_Hint : in Swagger.Nullable_UString; Idp_Cert_Alias : in Swagger.Nullable_UString; Idp_Cert_Alias_At_Type_Hint : in Swagger.Nullable_UString; Add_Group_Memberships : in Swagger.Nullable_Boolean; Add_Group_Memberships_At_Type_Hint : in Swagger.Nullable_UString; Path : in Swagger.UString_Vectors.Vector; Path_At_Type_Hint : in Swagger.Nullable_UString; Synchronize_Attributes : in Swagger.UString_Vectors.Vector; Synchronize_Attributes_At_Type_Hint : in Swagger.Nullable_UString; Clock_Tolerance : in Swagger.Nullable_Integer; Clock_Tolerance_At_Type_Hint : in Swagger.Nullable_UString; Group_Membership_Attribute : in Swagger.Nullable_UString; Group_Membership_Attribute_At_Type_Hint : in Swagger.Nullable_UString; Idp_Url : in Swagger.Nullable_UString; Idp_Url_At_Type_Hint : in Swagger.Nullable_UString; Logout_Url : in Swagger.Nullable_UString; Logout_Url_At_Type_Hint : in Swagger.Nullable_UString; Service_Provider_Entity_Id : in Swagger.Nullable_UString; Service_Provider_Entity_Id_At_Type_Hint : in Swagger.Nullable_UString; Assertion_Consumer_Service_U_R_L : in Swagger.Nullable_UString; Assertion_Consumer_Service_U_R_L_At_Type_Hint : in Swagger.Nullable_UString; Handle_Logout : in Swagger.Nullable_Boolean; Handle_Logout_At_Type_Hint : in Swagger.Nullable_UString; Sp_Private_Key_Alias : in Swagger.Nullable_UString; Sp_Private_Key_Alias_At_Type_Hint : in Swagger.Nullable_UString; Use_Encryption : in Swagger.Nullable_Boolean; Use_Encryption_At_Type_Hint : in Swagger.Nullable_UString; Name_Id_Format : in Swagger.Nullable_UString; Name_Id_Format_At_Type_Hint : in Swagger.Nullable_UString; Digest_Method : in Swagger.Nullable_UString; Digest_Method_At_Type_Hint : in Swagger.Nullable_UString; Signature_Method : in Swagger.Nullable_UString; Signature_Method_At_Type_Hint : in Swagger.Nullable_UString; User_Intermediate_Path : in Swagger.Nullable_UString; User_Intermediate_Path_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Adobe_Granite_Saml_Authentication_Handler; -- overriding procedure Post_Config_Apache_Felix_Jetty_Based_Http_Service (Server : in out Server_Type; Org_Periodapache_Periodfelix_Periodhttps_Periodnio : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodnio_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodpassword_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodkeystore_Periodkey_Periodpassword_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore_Periodpassword : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodtruststore_Periodpassword_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodclientcertificate : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodclientcertificate_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodapache_Periodfelix_Periodhttps_Periodenable : in Swagger.Nullable_Boolean; Org_Periodapache_Periodfelix_Periodhttps_Periodenable_At_Type_Hint : in Swagger.Nullable_UString; Org_Periodosgi_Periodservice_Periodhttp_Periodport_Periodsecure : in Swagger.Nullable_UString; Org_Periodosgi_Periodservice_Periodhttp_Periodport_Periodsecure_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Apache_Felix_Jetty_Based_Http_Service; -- overriding procedure Post_Config_Apache_Http_Components_Proxy_Configuration (Server : in out Server_Type; Proxy_Periodhost : in Swagger.Nullable_UString; Proxy_Periodhost_At_Type_Hint : in Swagger.Nullable_UString; Proxy_Periodport : in Swagger.Nullable_Integer; Proxy_Periodport_At_Type_Hint : in Swagger.Nullable_UString; Proxy_Periodexceptions : in Swagger.UString_Vectors.Vector; Proxy_Periodexceptions_At_Type_Hint : in Swagger.Nullable_UString; Proxy_Periodenabled : in Swagger.Nullable_Boolean; Proxy_Periodenabled_At_Type_Hint : in Swagger.Nullable_UString; Proxy_Perioduser : in Swagger.Nullable_UString; Proxy_Perioduser_At_Type_Hint : in Swagger.Nullable_UString; Proxy_Periodpassword : in Swagger.Nullable_UString; Proxy_Periodpassword_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Apache_Http_Components_Proxy_Configuration; -- overriding procedure Post_Config_Apache_Sling_Dav_Ex_Servlet (Server : in out Server_Type; Alias : in Swagger.Nullable_UString; Alias_At_Type_Hint : in Swagger.Nullable_UString; Dav_Periodcreate_Absolute_Uri : in Swagger.Nullable_Boolean; Dav_Periodcreate_Absolute_Uri_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Apache_Sling_Dav_Ex_Servlet; -- overriding procedure Post_Config_Apache_Sling_Get_Servlet (Server : in out Server_Type; Json_Periodmaximumresults : in Swagger.Nullable_UString; Json_Periodmaximumresults_At_Type_Hint : in Swagger.Nullable_UString; Enable_Periodhtml : in Swagger.Nullable_Boolean; Enable_Periodhtml_At_Type_Hint : in Swagger.Nullable_UString; Enable_Periodtxt : in Swagger.Nullable_Boolean; Enable_Periodtxt_At_Type_Hint : in Swagger.Nullable_UString; Enable_Periodxml : in Swagger.Nullable_Boolean; Enable_Periodxml_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Apache_Sling_Get_Servlet; -- overriding procedure Post_Config_Apache_Sling_Referrer_Filter (Server : in out Server_Type; Allow_Periodempty : in Swagger.Nullable_Boolean; Allow_Periodempty_At_Type_Hint : in Swagger.Nullable_UString; Allow_Periodhosts : in Swagger.Nullable_UString; Allow_Periodhosts_At_Type_Hint : in Swagger.Nullable_UString; Allow_Periodhosts_Periodregexp : in Swagger.Nullable_UString; Allow_Periodhosts_Periodregexp_At_Type_Hint : in Swagger.Nullable_UString; Filter_Periodmethods : in Swagger.Nullable_UString; Filter_Periodmethods_At_Type_Hint : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Config_Apache_Sling_Referrer_Filter; -- overriding procedure Post_Node (Server : in out Server_Type; Path : in Swagger.UString; Name : in Swagger.UString; Operation : in Swagger.Nullable_UString; Delete_Authorizable : in Swagger.Nullable_UString; File : in Swagger.File_Part_Type; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Node; -- overriding procedure Post_Node_Rw (Server : in out Server_Type; Path : in Swagger.UString; Name : in Swagger.UString; Add_Members : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Node_Rw; -- overriding procedure Post_Path (Server : in out Server_Type; Path : in Swagger.UString; Jcr_Primary_Type : in Swagger.UString; Name : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Path; -- overriding procedure Post_Query (Server : in out Server_Type; Path : in Swagger.UString; P_Periodlimit : in Swagger.Number; 1_Property : in Swagger.UString; 1_Property_Periodvalue : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Query; -- overriding procedure Post_Tree_Activation (Server : in out Server_Type; Ignoredeactivated : in Boolean; Onlymodified : in Boolean; Path : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Tree_Activation; -- overriding procedure Post_Truststore (Server : in out Server_Type; Operation : in Swagger.Nullable_UString; New_Password : in Swagger.Nullable_UString; Re_Password : in Swagger.Nullable_UString; Key_Store_Type : in Swagger.Nullable_UString; Remove_Alias : in Swagger.Nullable_UString; Certificate : in Swagger.File_Part_Type; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Truststore; -- overriding procedure Post_Truststore_P_K_C_S12 (Server : in out Server_Type; Truststore_Periodp12 : in Swagger.File_Part_Type; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is begin null; end Post_Truststore_P_K_C_S12; end .Servers;
reznikmm/matreshka
Ada
3,724
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Fo_Text_Transform_Attributes is pragma Preelaborate; type ODF_Fo_Text_Transform_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Fo_Text_Transform_Attribute_Access is access all ODF_Fo_Text_Transform_Attribute'Class with Storage_Size => 0; end ODF.DOM.Fo_Text_Transform_Attributes;
reznikmm/matreshka
Ada
10,529
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.CMOF.Associations; with AMF.CMOF.Classifiers.Collections; with AMF.CMOF.Elements.Collections; with AMF.CMOF.Features.Collections; with AMF.CMOF.Named_Elements.Collections; with AMF.CMOF.Namespaces; with AMF.CMOF.Packageable_Elements.Collections; with AMF.CMOF.Packages; with AMF.CMOF.Properties.Collections; with AMF.CMOF.Types.Collections; with AMF.Internals.CMOF_Classifiers; with AMF.Internals.CMOF_Relationships; pragma Elaborate (AMF.Internals.CMOF_Relationships); with AMF.String_Collections; with AMF.Visitors; package AMF.Internals.CMOF_Associations is package Relationships is new AMF.Internals.CMOF_Relationships (AMF.Internals.CMOF_Classifiers.CMOF_Classifier_Proxy); type CMOF_Association_Proxy is limited new Relationships.CMOF_Relationship_Proxy and AMF.CMOF.Associations.CMOF_Association with null record; -- XXX These subprograms are stubs overriding function All_Owned_Elements (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Elements.Collections.Set_Of_CMOF_Element; overriding function Get_Qualified_Name (Self : not null access constant CMOF_Association_Proxy) return Optional_String; overriding function Is_Distinguishable_From (Self : not null access constant CMOF_Association_Proxy; N : AMF.CMOF.Named_Elements.CMOF_Named_Element_Access; Ns : AMF.CMOF.Namespaces.CMOF_Namespace_Access) return Boolean; overriding procedure Set_Package (Self : not null access CMOF_Association_Proxy; To : AMF.CMOF.Packages.CMOF_Package_Access); overriding function Imported_Member (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Packageable_Elements.Collections.Set_Of_CMOF_Packageable_Element; overriding function Get_Names_Of_Member (Self : not null access constant CMOF_Association_Proxy; Element : AMF.CMOF.Named_Elements.CMOF_Named_Element_Access) return AMF.String_Collections.Set_Of_String; overriding function Import_Members (Self : not null access constant CMOF_Association_Proxy; Imps : AMF.CMOF.Packageable_Elements.Collections.Set_Of_CMOF_Packageable_Element) return AMF.CMOF.Packageable_Elements.Collections.Set_Of_CMOF_Packageable_Element; overriding function Exclude_Collisions (Self : not null access constant CMOF_Association_Proxy; Imps : AMF.CMOF.Packageable_Elements.Collections.Set_Of_CMOF_Packageable_Element) return AMF.CMOF.Packageable_Elements.Collections.Set_Of_CMOF_Packageable_Element; overriding function Members_Are_Distinguishable (Self : not null access constant CMOF_Association_Proxy) return Boolean; overriding procedure Set_Is_Final_Specialization (Self : not null access CMOF_Association_Proxy; To : Boolean); overriding function Conforms_To (Self : not null access constant CMOF_Association_Proxy; Other : AMF.CMOF.Classifiers.CMOF_Classifier_Access) return Boolean; overriding function All_Features (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Features.Collections.Set_Of_CMOF_Feature; overriding function General (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Classifiers.Collections.Set_Of_CMOF_Classifier; overriding function Parents (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Classifiers.Collections.Set_Of_CMOF_Classifier; overriding function Inherited_Member (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Named_Elements.Collections.Set_Of_CMOF_Named_Element; overriding function All_Parents (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Classifiers.Collections.Set_Of_CMOF_Classifier; overriding function Inheritable_Members (Self : not null access constant CMOF_Association_Proxy; C : AMF.CMOF.Classifiers.CMOF_Classifier_Access) return AMF.CMOF.Named_Elements.Collections.Set_Of_CMOF_Named_Element; overriding function Has_Visibility_Of (Self : not null access constant CMOF_Association_Proxy; N : AMF.CMOF.Named_Elements.CMOF_Named_Element_Access) return Boolean; overriding function Inherit (Self : not null access constant CMOF_Association_Proxy; Inhs : AMF.CMOF.Named_Elements.Collections.Set_Of_CMOF_Named_Element) return AMF.CMOF.Named_Elements.Collections.Set_Of_CMOF_Named_Element; overriding function May_Specialize_Type (Self : not null access constant CMOF_Association_Proxy; C : AMF.CMOF.Classifiers.CMOF_Classifier_Access) return Boolean; overriding function Get_Is_Derived (Self : not null access constant CMOF_Association_Proxy) return Boolean; overriding procedure Set_Is_Derived (Self : not null access CMOF_Association_Proxy; To : Boolean); -- Setter of Association::isDerived. -- -- Specifies whether the association is derived from other model elements -- such as other associations or constraints. overriding function Get_Owned_End (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Properties.Collections.Ordered_Set_Of_CMOF_Property; overriding function Get_End_Type (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Types.Collections.Set_Of_CMOF_Type; -- Getter of Association::endType. -- -- References the classifiers that are used as types of the ends of the -- association. overriding function Get_Member_End (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Properties.Collections.Ordered_Set_Of_CMOF_Property; overriding function Get_Navigable_Owned_End (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Properties.Collections.Set_Of_CMOF_Property; -- Getter of Association::navigableOwnedEnd. -- -- The navigable ends that are owned by the association itself. overriding function End_Type (Self : not null access constant CMOF_Association_Proxy) return AMF.CMOF.Types.Collections.Ordered_Set_Of_CMOF_Type; overriding procedure Enter_Element (Self : not null access constant CMOF_Association_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Leave_Element (Self : not null access constant CMOF_Association_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Visit_Element (Self : not null access constant CMOF_Association_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of iterator interface. end AMF.Internals.CMOF_Associations;
reznikmm/matreshka
Ada
15,198
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Internals.Tables.DD_Types; package AMF.Internals.Tables.DD_Attribute_Mappings is pragma Preelaborate; DG_Collection_Offset : constant array (AMF.Internals.Tables.DD_Types.Element_Kinds, AMF.Internals.CMOF_Element range 22 .. 27) of AMF.Internals.AMF_Collection_Of_Element := (AMF.Internals.Tables.DD_Types.E_None => (others => 0), AMF.Internals.Tables.DD_Types.E_DG_Canvas => (25 => 1, -- GraphicalElement::localStyle 27 => 3, -- Group::member 22 => 4, -- Canvas::packagedFill 23 => 5, -- Canvas::packagedMarker 24 => 6, -- Canvas::packagedStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Circle => (25 => 1, -- GraphicalElement::localStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => (25 => 1, -- GraphicalElement::localStyle 27 => 3, -- Group::member 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Ellipse => (25 => 1, -- GraphicalElement::localStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Group => (25 => 1, -- GraphicalElement::localStyle 27 => 3, -- Group::member 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Image => (25 => 1, -- GraphicalElement::localStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Line => (25 => 1, -- GraphicalElement::localStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Linear_Gradient => (others => 0), AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => (25 => 1, -- GraphicalElement::localStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Marker => (25 => 1, -- GraphicalElement::localStyle 27 => 3, -- Group::member 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Path => (25 => 1, -- GraphicalElement::localStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Pattern => (others => 0), AMF.Internals.Tables.DD_Types.E_DG_Polygon => (25 => 1, -- GraphicalElement::localStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Polyline => (25 => 1, -- GraphicalElement::localStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Radial_Gradient => (others => 0), AMF.Internals.Tables.DD_Types.E_DG_Rectangle => (25 => 1, -- GraphicalElement::localStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0), AMF.Internals.Tables.DD_Types.E_DG_Style => (others => 0), AMF.Internals.Tables.DD_Types.E_DG_Text => (25 => 1, -- GraphicalElement::localStyle 26 => 2, -- GraphicalElement::sharedStyle others => 0)); DG_Member_Offset : constant array (AMF.Internals.Tables.DD_Types.Element_Kinds, AMF.Internals.CMOF_Element range 28 .. 84) of Natural := (AMF.Internals.Tables.DD_Types.E_None => (others => 0), AMF.Internals.Tables.DD_Types.E_DG_Canvas => (28 => 5, -- Canvas::backgroundColor 29 => 4, -- Canvas::backgroundFill 38 => 3, -- GraphicalElement::clipPath 39 => 2, -- GraphicalElement::group 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Circle => (30 => 5, -- Circle::center 38 => 3, -- GraphicalElement::clipPath 39 => 2, -- GraphicalElement::group 31 => 4, -- Circle::radius 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => (38 => 3, -- GraphicalElement::clipPath 32 => 4, -- ClipPath::clippedElement 39 => 2, -- GraphicalElement::group 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Ellipse => (33 => 5, -- Ellipse::center 38 => 3, -- GraphicalElement::clipPath 39 => 2, -- GraphicalElement::group 34 => 4, -- Ellipse::radii 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Group => (38 => 3, -- GraphicalElement::clipPath 39 => 2, -- GraphicalElement::group 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Image => (41 => 4, -- Image::bounds 38 => 3, -- GraphicalElement::clipPath 39 => 2, -- GraphicalElement::group 42 => 6, -- Image::isAspectRatioPreserved 43 => 5, -- Image::source 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Line => (38 => 3, -- GraphicalElement::clipPath 44 => 8, -- Line::end 50 => 5, -- MarkedElement::endMarker 39 => 2, -- GraphicalElement::group 51 => 6, -- MarkedElement::midMarker 45 => 7, -- Line::start 52 => 4, -- MarkedElement::startMarker 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Linear_Gradient => (35 => 2, -- Fill::canvas 37 => 3, -- Gradient::stop 36 => 1, -- Fill::transform 46 => 4, -- LinearGradient::x1 47 => 5, -- LinearGradient::x2 48 => 6, -- LinearGradient::y1 49 => 7, -- LinearGradient::y2 others => 0), AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => (38 => 3, -- GraphicalElement::clipPath 50 => 5, -- MarkedElement::endMarker 39 => 2, -- GraphicalElement::group 51 => 6, -- MarkedElement::midMarker 52 => 4, -- MarkedElement::startMarker 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Marker => (53 => 4, -- Marker::canvas 38 => 3, -- GraphicalElement::clipPath 39 => 2, -- GraphicalElement::group 54 => 6, -- Marker::reference 55 => 5, -- Marker::size 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Path => (38 => 3, -- GraphicalElement::clipPath 56 => 7, -- Path::command 50 => 5, -- MarkedElement::endMarker 39 => 2, -- GraphicalElement::group 51 => 6, -- MarkedElement::midMarker 52 => 4, -- MarkedElement::startMarker 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Pattern => (57 => 4, -- Pattern::bounds 35 => 2, -- Fill::canvas 58 => 3, -- Pattern::tile 36 => 1, -- Fill::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Polygon => (38 => 3, -- GraphicalElement::clipPath 50 => 5, -- MarkedElement::endMarker 39 => 2, -- GraphicalElement::group 51 => 6, -- MarkedElement::midMarker 59 => 7, -- Polygon::point 52 => 4, -- MarkedElement::startMarker 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Polyline => (38 => 3, -- GraphicalElement::clipPath 50 => 5, -- MarkedElement::endMarker 39 => 2, -- GraphicalElement::group 51 => 6, -- MarkedElement::midMarker 60 => 7, -- Polyline::point 52 => 4, -- MarkedElement::startMarker 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Radial_Gradient => (35 => 2, -- Fill::canvas 61 => 5, -- RadialGradient::centerX 62 => 6, -- RadialGradient::centerY 63 => 7, -- RadialGradient::focusX 64 => 8, -- RadialGradient::focusY 65 => 4, -- RadialGradient::radius 37 => 3, -- Gradient::stop 36 => 1, -- Fill::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Rectangle => (66 => 4, -- Rectangle::bounds 38 => 3, -- GraphicalElement::clipPath 67 => 5, -- Rectangle::cornerRadius 39 => 2, -- GraphicalElement::group 40 => 1, -- GraphicalElement::transform others => 0), AMF.Internals.Tables.DD_Types.E_DG_Style => (68 => 1, -- Style::fill 69 => 2, -- Style::fillColor 70 => 3, -- Style::fillOpacity 71 => 12, -- Style::fontBold 72 => 10, -- Style::fontColor 73 => 11, -- Style::fontItalic 74 => 9, -- Style::fontName 75 => 8, -- Style::fontSize 76 => 14, -- Style::fontStrikeThrough 77 => 13, -- Style::fontUnderline 78 => 6, -- Style::strokeColor 79 => 7, -- Style::strokeDashLength 80 => 5, -- Style::strokeOpacity 81 => 4, -- Style::strokeWidth others => 0), AMF.Internals.Tables.DD_Types.E_DG_Text => (82 => 6, -- Text::alignment 83 => 4, -- Text::bounds 38 => 3, -- GraphicalElement::clipPath 84 => 5, -- Text::data 39 => 2, -- GraphicalElement::group 40 => 1, -- GraphicalElement::transform others => 0)); end AMF.Internals.Tables.DD_Attribute_Mappings;
reznikmm/matreshka
Ada
4,656
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Style.Font_Size_Asian_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Style_Font_Size_Asian_Attribute_Node is begin return Self : Style_Font_Size_Asian_Attribute_Node do Matreshka.ODF_Style.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Style_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Style_Font_Size_Asian_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Font_Size_Asian_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Style_URI, Matreshka.ODF_String_Constants.Font_Size_Asian_Attribute, Style_Font_Size_Asian_Attribute_Node'Tag); end Matreshka.ODF_Style.Font_Size_Asian_Attributes;
AdaCore/Ada_Drivers_Library
Ada
26,259
adb
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of STMicroelectronics nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- -- -- -- This file is based on: -- -- -- -- @file stm32f4xx_hal_spi.c -- -- @author MCD Application Team -- -- @version V1.1.0 -- -- @date 19-June-2014 -- -- @brief SPI HAL module driver. -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ with Ada.Unchecked_Conversion; with STM32_SVD.SPI; use STM32_SVD.SPI; package body STM32.SPI is use type HAL.SPI.SPI_Data_Size; Baud_Rate_Value : constant array (SPI_Baud_Rate_Prescaler) of UInt3 := (BRP_2 => 2#000#, BRP_4 => 2#001#, BRP_8 => 2#010#, BRP_16 => 2#011#, BRP_32 => 2#100#, BRP_64 => 2#101#, BRP_128 => 2#110#, BRP_256 => 2#111#); type Half_Word_Pointer is access all UInt16 with Storage_Size => 0; function As_Half_Word_Pointer is new Ada.Unchecked_Conversion (Source => System.Address, Target => Half_Word_Pointer); -- So that we can treat the address of a UInt8 as a pointer to a two-UInt8 -- sequence representing a Half_Word quantity --------------- -- Configure -- --------------- procedure Configure (This : in out SPI_Port; Conf : SPI_Configuration) is begin case Conf.Mode is when Master => This.Periph.CR1.MSTR := True; This.Periph.CR1.SSI := True; when Slave => This.Periph.CR1.MSTR := False; This.Periph.CR1.SSI := False; end case; case Conf.Direction is when D2Lines_FullDuplex => This.Periph.CR1.BIDIMODE := False; This.Periph.CR1.BIDIOE := False; This.Periph.CR1.RXONLY := False; when D2Lines_RxOnly => This.Periph.CR1.BIDIMODE := False; This.Periph.CR1.BIDIOE := False; This.Periph.CR1.RXONLY := True; when D1Line_Rx => This.Periph.CR1.BIDIMODE := True; This.Periph.CR1.BIDIOE := False; This.Periph.CR1.RXONLY := False; when D1Line_Tx => This.Periph.CR1.BIDIMODE := True; This.Periph.CR1.BIDIOE := True; This.Periph.CR1.RXONLY := False; end case; This.Periph.CR1.DFF := Conf.Data_Size = HAL.SPI.Data_Size_16b; This.Periph.CR1.CPOL := Conf.Clock_Polarity = High; This.Periph.CR1.CPHA := Conf.Clock_Phase = P2Edge; This.Periph.CR1.SSM := Conf.Slave_Management = Software_Managed; This.Periph.CR1.BR := Baud_Rate_Value (Conf.Baud_Rate_Prescaler); This.Periph.CR1.LSBFIRST := Conf.First_Bit = LSB; -- Activate the SPI mode (Reset I2SMOD bit in I2SCFGR register) This.Periph.I2SCFGR.I2SMOD := False; This.Periph.CRCPR.CRCPOLY := Conf.CRC_Poly; end Configure; ------------ -- Enable -- ------------ procedure Enable (This : in out SPI_Port) is begin This.Periph.CR1.SPE := True; end Enable; ------------- -- Disable -- ------------- procedure Disable (This : in out SPI_Port) is begin This.Periph.CR1.SPE := False; end Disable; ------------- -- Enabled -- ------------- function Enabled (This : SPI_Port) return Boolean is begin return This.Periph.CR1.SPE; end Enabled; ---------- -- Send -- ---------- procedure Send (This : in out SPI_Port; Data : UInt16) is begin This.Periph.DR.DR := Data; end Send; ---------- -- Data -- ---------- function Data (This : SPI_Port) return UInt16 is begin return This.Periph.DR.DR; end Data; ---------- -- Send -- ---------- procedure Send (This : in out SPI_Port; Data : UInt8) is begin Send (This, UInt16 (Data)); end Send; ---------- -- Data -- ---------- function Data (This : SPI_Port) return UInt8 is begin return UInt8 (UInt16'(Data (This))); end Data; ------------- -- Is_Busy -- ------------- function Is_Busy (This : SPI_Port) return Boolean is begin return (Rx_Is_Empty (This) and then not Tx_Is_Empty (This)) or else Busy (This); end Is_Busy; ----------------- -- Tx_Is_Empty -- ----------------- function Tx_Is_Empty (This : SPI_Port) return Boolean is begin return This.Periph.SR.TXE; end Tx_Is_Empty; ----------------- -- Rx_Is_Empty -- ----------------- function Rx_Is_Empty (This : SPI_Port) return Boolean is begin return not This.Periph.SR.RXNE; end Rx_Is_Empty; ---------- -- Busy -- ---------- function Busy (This : SPI_Port) return Boolean is begin return This.Periph.SR.BSY; end Busy; ------------------ -- Current_Mode -- ------------------ function Current_Mode (This : SPI_Port) return SPI_Mode is begin if This.Periph.CR1.MSTR and This.Periph.CR1.SSI then return Master; else return Slave; end if; end Current_Mode; ---------------------------- -- Current_Data_Direction -- ---------------------------- function Current_Data_Direction (This : SPI_Port) return SPI_Data_Direction is begin if not This.Periph.CR1.BIDIMODE then if not This.Periph.CR1.RXONLY then return D2Lines_FullDuplex; else return D2Lines_RxOnly; end if; else if not This.Periph.CR1.BIDIOE then return D1Line_Rx; else return D1Line_Tx; end if; end if; end Current_Data_Direction; ----------------- -- CRC_Enabled -- ----------------- function CRC_Enabled (This : SPI_Port) return Boolean is (This.Periph.CR1.CRCEN); ---------------------------- -- Channel_Side_Indicated -- ---------------------------- function Channel_Side_Indicated (This : SPI_Port) return Boolean is (This.Periph.SR.CHSIDE); ------------------------ -- Underrun_Indicated -- ------------------------ function Underrun_Indicated (This : SPI_Port) return Boolean is (This.Periph.SR.UDR); ------------------------- -- CRC_Error_Indicated -- ------------------------- function CRC_Error_Indicated (This : SPI_Port) return Boolean is (This.Periph.SR.CRCERR); -------------------------- -- Mode_Fault_Indicated -- -------------------------- function Mode_Fault_Indicated (This : SPI_Port) return Boolean is (This.Periph.SR.MODF); ----------------------- -- Overrun_Indicated -- ----------------------- function Overrun_Indicated (This : SPI_Port) return Boolean is (This.Periph.SR.OVR); ------------------------------- -- Frame_Fmt_Error_Indicated -- ------------------------------- function Frame_Fmt_Error_Indicated (This : SPI_Port) return Boolean is begin return This.Periph.SR.TIFRFE; end Frame_Fmt_Error_Indicated; ------------------- -- Clear_Overrun -- ------------------- procedure Clear_Overrun (This : SPI_Port) is Dummy1 : UInt16; Dummy2 : SR_Register; begin Dummy1 := This.Periph.DR.DR; Dummy2 := This.Periph.SR; end Clear_Overrun; --------------- -- Reset_CRC -- --------------- procedure Reset_CRC (This : in out SPI_Port) is begin This.Periph.CR1.CRCEN := False; This.Periph.CR1.CRCEN := True; end Reset_CRC; ------------------------- -- Is_Data_Frame_16bit -- ------------------------- function Is_Data_Frame_16bit (This : SPI_Port) return Boolean is (This.Periph.CR1.DFF); --------------- -- Data_Size -- --------------- overriding function Data_Size (This : SPI_Port) return HAL.SPI.SPI_Data_Size is begin if This.Periph.CR1.DFF then return HAL.SPI.Data_Size_16b; else return HAL.SPI.Data_Size_8b; end if; end Data_Size; -------------- -- Transmit -- -------------- overriding procedure Transmit (This : in out SPI_Port; Data : HAL.SPI.SPI_Data_8b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000) is pragma Unreferenced (Timeout); begin if CRC_Enabled (This) then Reset_CRC (This); end if; -- ??? right value to compare??? if Current_Data_Direction (This) = D1Line_Tx then This.Periph.CR1.BIDIOE := True; end if; Clear_Overrun (This); if not Enabled (This) then Enable (This); end if; Send_8bit_Mode (This, Data); -- Wait until TXE flag is set to send data while not Tx_Is_Empty (This) loop null; end loop; -- Wait until Busy flag is reset before disabling SPI while Busy (This) loop null; end loop; -- Clear OVERUN flag in 2-Line communication mode because received UInt8 -- is not read. if Current_Data_Direction (This) in D2Lines_RxOnly | D2Lines_FullDuplex then -- right comparison ??? Clear_Overrun (This); end if; Status := HAL.SPI.Ok; end Transmit; -------------- -- Transmit -- -------------- overriding procedure Transmit (This : in out SPI_Port; Data : HAL.SPI.SPI_Data_16b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000) is pragma Unreferenced (Timeout); begin if CRC_Enabled (This) then Reset_CRC (This); end if; -- ??? right value to compare??? if Current_Data_Direction (This) = D1Line_Tx then This.Periph.CR1.BIDIOE := True; end if; Clear_Overrun (This); if not Enabled (This) then Enable (This); end if; Send_16bit_Mode (This, Data); -- Wait until TXE flag is set to send data while not Tx_Is_Empty (This) loop null; end loop; -- Wait until Busy flag is reset before disabling SPI while Busy (This) loop null; end loop; -- Clear OVERUN flag in 2-Line communication mode because received UInt8 -- is not read. if Current_Data_Direction (This) in D2Lines_RxOnly | D2Lines_FullDuplex then -- right comparison ??? Clear_Overrun (This); Status := HAL.SPI.Err_Error; end if; Status := HAL.SPI.Ok; end Transmit; -------------- -- Transmit -- -------------- procedure Transmit (This : in out SPI_Port; Outgoing : UInt8) is begin if CRC_Enabled (This) then Reset_CRC (This); end if; -- ??? right value to compare??? if Current_Data_Direction (This) = D1Line_Tx then This.Periph.CR1.BIDIOE := True; end if; if not Enabled (This) then Enable (This); end if; This.Periph.DR.DR := UInt16 (Outgoing); while not Tx_Is_Empty (This) loop null; end loop; while Busy (This) loop null; end loop; -- Clear OVERUN flag in 2-Line communication mode because received UInt8 -- is not read. if Current_Data_Direction (This) in D2Lines_RxOnly | D2Lines_FullDuplex then -- right comparison ??? Clear_Overrun (This); end if; end Transmit; ------------- -- Receive -- ------------- overriding procedure Receive (This : in out SPI_Port; Data : out HAL.SPI.SPI_Data_8b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000) is pragma Unreferenced (Timeout); begin if CRC_Enabled (This) then Reset_CRC (This); end if; if not Enabled (This) then Enable (This); end if; Receive_8bit_Mode (This, Data); while Busy (This) loop null; end loop; if CRC_Enabled (This) and CRC_Error_Indicated (This) then Reset_CRC (This); Status := HAL.SPI.Err_Error; end if; Status := HAL.SPI.Ok; end Receive; ------------- -- Receive -- ------------- overriding procedure Receive (This : in out SPI_Port; Data : out HAL.SPI.SPI_Data_16b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000) is pragma Unreferenced (Timeout); begin if CRC_Enabled (This) then Reset_CRC (This); end if; if not Enabled (This) then Enable (This); end if; Receive_16bit_Mode (This, Data); while Busy (This) loop null; end loop; if CRC_Enabled (This) and CRC_Error_Indicated (This) then Reset_CRC (This); Status := HAL.SPI.Err_Error; end if; Status := HAL.SPI.Ok; end Receive; ------------- -- Receive -- ------------- procedure Receive (This : in out SPI_Port; Incoming : out UInt8) is begin if CRC_Enabled (This) then Reset_CRC (This); end if; if not Enabled (This) then Enable (This); end if; This.Periph.DR.DR := 0; -- generate clock while Rx_Is_Empty (This) loop null; end loop; Incoming := UInt8 (This.Periph.DR.DR); if CRC_Enabled (This) then while Rx_Is_Empty (This) loop null; end loop; Read_CRC : declare Dummy : UInt16; begin Dummy := This.Periph.DR.DR; end Read_CRC; end if; while Busy (This) loop null; end loop; if CRC_Enabled (This) and CRC_Error_Indicated (This) then Reset_CRC (This); end if; end Receive; ---------------------- -- Transmit_Receive -- ---------------------- procedure Transmit_Receive (This : in out SPI_Port; Outgoing : UInt8_Buffer; Incoming : out UInt8_Buffer; Size : Positive) is begin if CRC_Enabled (This) then Reset_CRC (This); end if; if not Enabled (This) then Enable (This); end if; if Is_Data_Frame_16bit (This) then Send_Receive_16bit_Mode (This, Outgoing, Incoming, Size); else Send_Receive_8bit_Mode (This, Outgoing, Incoming, Size); end if; -- Read CRC to close CRC calculation process if CRC_Enabled (This) then -- wait until data is received while Rx_Is_Empty (This) loop null; end loop; Read_CRC : declare Dummy : UInt16; begin Dummy := This.Periph.DR.DR; end Read_CRC; end if; while Busy (This) loop null; end loop; if CRC_Enabled (This) and CRC_Error_Indicated (This) then Reset_CRC (This); end if; end Transmit_Receive; ---------------------- -- Transmit_Receive -- ---------------------- procedure Transmit_Receive (This : in out SPI_Port; Outgoing : UInt8; Incoming : out UInt8) is begin if CRC_Enabled (This) then Reset_CRC (This); end if; if not Enabled (This) then Enable (This); end if; if Is_Data_Frame_16bit (This) then raise Program_Error; end if; This.Periph.DR.DR := UInt16 (Outgoing); -- enable CRC transmission if CRC_Enabled (This) then This.Periph.CR1.CRCNEXT := True; end if; -- wait until data is received while Rx_Is_Empty (This) loop null; end loop; Incoming := UInt8 (This.Periph.DR.DR); -- Read CRC UInt8 to close CRC calculation if CRC_Enabled (This) then -- wait until data is received while Rx_Is_Empty (This) loop null; end loop; Read_CRC : declare Dummy : UInt16; begin Dummy := This.Periph.DR.DR; end Read_CRC; end if; while Busy (This) loop null; end loop; if CRC_Enabled (This) and CRC_Error_Indicated (This) then Reset_CRC (This); end if; end Transmit_Receive; --------------------------- -- Data_Register_Address -- --------------------------- function Data_Register_Address (This : SPI_Port) return System.Address is begin return This.Periph.DR'Address; end Data_Register_Address; ----------------------------- -- Send_Receive_16bit_Mode -- ----------------------------- procedure Send_Receive_16bit_Mode (This : in out SPI_Port; Outgoing : UInt8_Buffer; Incoming : out UInt8_Buffer; Size : Positive) is Tx_Count : Natural := Size; Outgoing_Index : Natural := Outgoing'First; Incoming_Index : Natural := Incoming'First; begin if Current_Mode (This) = Slave or else Tx_Count = 1 then This.Periph.DR.DR := As_Half_Word_Pointer (Outgoing (Outgoing_Index)'Address).all; Outgoing_Index := Outgoing_Index + 2; Tx_Count := Tx_Count - 1; end if; if Tx_Count = 0 then -- enable CRC transmission if CRC_Enabled (This) then This.Periph.CR1.CRCNEXT := True; end if; -- wait until data is received while Rx_Is_Empty (This) loop null; end loop; As_Half_Word_Pointer (Incoming (Incoming_Index)'Address).all := This.Periph.DR.DR; return; end if; while Tx_Count > 0 loop -- wait until we can send data while not Tx_Is_Empty (This) loop null; end loop; This.Periph.DR.DR := As_Half_Word_Pointer (Outgoing (Outgoing_Index)'Address).all; Outgoing_Index := Outgoing_Index + 2; Tx_Count := Tx_Count - 1; -- enable CRC transmission if Tx_Count = 0 and CRC_Enabled (This) then This.Periph.CR1.CRCNEXT := True; end if; -- wait until data is received while Rx_Is_Empty (This) loop null; end loop; As_Half_Word_Pointer (Incoming (Incoming_Index)'Address).all := This.Periph.DR.DR; Incoming_Index := Incoming_Index + 2; end loop; -- receive the last UInt8 if Current_Mode (This) = Slave then -- wait until data is received while Rx_Is_Empty (This) loop null; end loop; As_Half_Word_Pointer (Incoming (Incoming_Index)'Address).all := This.Periph.DR.DR; end if; end Send_Receive_16bit_Mode; ---------------------------- -- Send_Receive_8bit_Mode -- ---------------------------- procedure Send_Receive_8bit_Mode (This : in out SPI_Port; Outgoing : UInt8_Buffer; Incoming : out UInt8_Buffer; Size : Positive) is Tx_Count : Natural := Size; Outgoing_Index : Natural := Outgoing'First; Incoming_Index : Natural := Incoming'First; begin if Current_Mode (This) = Slave or else Tx_Count = 1 then This.Periph.DR.DR := UInt16 (Outgoing (Outgoing_Index)); Outgoing_Index := Outgoing_Index + 1; Tx_Count := Tx_Count - 1; end if; if Tx_Count = 0 then -- enable CRC transmission if CRC_Enabled (This) then This.Periph.CR1.CRCNEXT := True; end if; -- wait until data is received while Rx_Is_Empty (This) loop null; end loop; Incoming (Incoming_Index) := UInt8 (This.Periph.DR.DR); return; end if; while Tx_Count > 0 loop -- wait until we can send data while not Tx_Is_Empty (This) loop null; end loop; This.Periph.DR.DR := UInt16 (Outgoing (Outgoing_Index)); Outgoing_Index := Outgoing_Index + 1; Tx_Count := Tx_Count - 1; -- enable CRC transmission if Tx_Count = 0 and CRC_Enabled (This) then This.Periph.CR1.CRCNEXT := True; end if; -- wait until data is received while Rx_Is_Empty (This) loop null; end loop; Incoming (Incoming_Index) := UInt8 (This.Periph.DR.DR); Incoming_Index := Incoming_Index + 1; end loop; if Current_Mode (This) = Slave then -- wait until data is received while Rx_Is_Empty (This) loop null; end loop; Incoming (Incoming_Index) := Data (This); end if; end Send_Receive_8bit_Mode; --------------------- -- Send_16bit_Mode -- --------------------- procedure Send_16bit_Mode (This : in out SPI_Port; Outgoing : HAL.SPI.SPI_Data_16b) is Tx_Count : Natural := Outgoing'Length; Index : Natural := Outgoing'First; begin if Current_Mode (This) = Slave or else Tx_Count = 1 then This.Periph.DR.DR := As_Half_Word_Pointer (Outgoing (Index)'Address).all; Index := Index + 2; Tx_Count := Tx_Count - 1; end if; while Tx_Count > 0 loop -- wait until we can send data while not Tx_Is_Empty (This) loop null; end loop; This.Periph.DR.DR := As_Half_Word_Pointer (Outgoing (Index)'Address).all; Index := Index + 2; Tx_Count := Tx_Count - 1; end loop; if CRC_Enabled (This) then This.Periph.CR1.CRCNEXT := True; end if; end Send_16bit_Mode; -------------------- -- Send_8bit_Mode -- -------------------- procedure Send_8bit_Mode (This : in out SPI_Port; Outgoing : HAL.SPI.SPI_Data_8b) is Tx_Count : Natural := Outgoing'Length; Index : Natural := Outgoing'First; begin if Current_Mode (This) = Slave or else Tx_Count = 1 then This.Periph.DR.DR := UInt16 (Outgoing (Index)); Index := Index + 1; Tx_Count := Tx_Count - 1; end if; while Tx_Count > 0 loop -- wait until we can send data while not Tx_Is_Empty (This) loop null; end loop; This.Periph.DR.DR := UInt16 (Outgoing (Index)); Index := Index + 1; Tx_Count := Tx_Count - 1; end loop; if CRC_Enabled (This) then This.Periph.CR1.CRCNEXT := True; end if; end Send_8bit_Mode; ------------------------ -- Receive_16bit_Mode -- ------------------------ procedure Receive_16bit_Mode (This : in out SPI_Port; Incoming : out HAL.SPI.SPI_Data_16b) is Generate_Clock : constant Boolean := Current_Mode (This) = Master; begin for K of Incoming loop if Generate_Clock then This.Periph.DR.DR := 0; end if; while Rx_Is_Empty (This) loop null; end loop; K := This.Periph.DR.DR; end loop; end Receive_16bit_Mode; ----------------------- -- Receive_8bit_Mode -- ----------------------- procedure Receive_8bit_Mode (This : in out SPI_Port; Incoming : out HAL.SPI.SPI_Data_8b) is Generate_Clock : constant Boolean := Current_Mode (This) = Master; begin for K of Incoming loop if Generate_Clock then This.Periph.DR.DR := 0; end if; while Rx_Is_Empty (This) loop null; end loop; K := UInt8 (This.Periph.DR.DR); end loop; end Receive_8bit_Mode; end STM32.SPI;
charlie5/lace
Ada
151
adb
with gel_demo_Client; procedure launch_Client -- -- Launches the remote client. -- is begin gel_demo_Client.item.start; end launch_Client;
sungyeon/drake
Ada
3,075
ads
pragma License (Unrestricted); generic type Real is digits <>; package Ada.Numerics.Generic_Real_Arrays is pragma Pure; -- Types type Real_Vector is array (Integer range <>) of Real'Base; for Real_Vector'Alignment use Standard'Maximum_Alignment; type Real_Matrix is array (Integer range <>, Integer range <>) of Real'Base; for Real_Matrix'Alignment use Standard'Maximum_Alignment; -- Subprograms for Real_Vector types -- Real_Vector arithmetic operations function "+" (Right : Real_Vector) return Real_Vector; function "-" (Right : Real_Vector) return Real_Vector; function "abs" (Right : Real_Vector) return Real_Vector; function "+" (Left, Right : Real_Vector) return Real_Vector; function "-" (Left, Right : Real_Vector) return Real_Vector; function "*" (Left, Right : Real_Vector) return Real'Base; function "abs" (Right : Real_Vector) return Real'Base; -- Real_Vector scaling operations function "*" (Left : Real'Base; Right : Real_Vector) return Real_Vector; function "*" (Left : Real_Vector; Right : Real'Base) return Real_Vector; function "/" (Left : Real_Vector; Right : Real'Base) return Real_Vector; -- Other Real_Vector operations function Unit_Vector ( Index : Integer; Order : Positive; First : Integer := 1) return Real_Vector; -- Subprograms for Real_Matrix types -- Real_Matrix arithmetic operations function "+" (Right : Real_Matrix) return Real_Matrix; function "-" (Right : Real_Matrix) return Real_Matrix; function "abs" (Right : Real_Matrix) return Real_Matrix; function Transpose (X : Real_Matrix) return Real_Matrix; function "+" (Left, Right : Real_Matrix) return Real_Matrix; function "-" (Left, Right : Real_Matrix) return Real_Matrix; function "*" (Left, Right : Real_Matrix) return Real_Matrix; function "*" (Left, Right : Real_Vector) return Real_Matrix; function "*" (Left : Real_Vector; Right : Real_Matrix) return Real_Vector; function "*" (Left : Real_Matrix; Right : Real_Vector) return Real_Vector; -- Real_Matrix scaling operations function "*" (Left : Real'Base; Right : Real_Matrix) return Real_Matrix; function "*" (Left : Real_Matrix; Right : Real'Base) return Real_Matrix; function "/" (Left : Real_Matrix; Right : Real'Base) return Real_Matrix; -- Real_Matrix inversion and related operations function Solve (A : Real_Matrix; X : Real_Vector) return Real_Vector; function Solve (A, X : Real_Matrix) return Real_Matrix; function Inverse (A : Real_Matrix) return Real_Matrix; function Determinant (A : Real_Matrix) return Real'Base; -- Eigenvalues and vectors of a real symmetric matrix function Eigenvalues (A : Real_Matrix) return Real_Vector; procedure Eigensystem ( A : Real_Matrix; Values : out Real_Vector; Vectors : out Real_Matrix); -- Other Real_Matrix operations function Unit_Matrix (Order : Positive; First_1, First_2 : Integer := 1) return Real_Matrix; end Ada.Numerics.Generic_Real_Arrays;
reznikmm/matreshka
Ada
3,719
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Db_Login_Timeout_Attributes is pragma Preelaborate; type ODF_Db_Login_Timeout_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Db_Login_Timeout_Attribute_Access is access all ODF_Db_Login_Timeout_Attribute'Class with Storage_Size => 0; end ODF.DOM.Db_Login_Timeout_Attributes;
persan/protobuf-ada
Ada
4,759
adb
with Ada.Unchecked_Deallocation; package body Buffered_Byte_Stream is ---------- -- Read -- ---------- overriding procedure Read (Stream : in out Byte_Stream; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset) is begin Read (Stream.Byte_Stream_Buffer, Item, Last); end Read; ----------- -- Reset -- ----------- procedure Reset (Stream : in out Byte_Stream_Access) is begin Stream.Byte_Stream_Buffer.Count := 0; Stream.Byte_Stream_Buffer.Buffer.Clear; Stream.Byte_Stream_Buffer.Buffer.Reserve_Capacity (Stream.Byte_Stream_Buffer.Size); end Reset; ----------- -- Write -- ----------- overriding procedure Write (Stream : in out Byte_Stream; Item : in Ada.Streams.Stream_Element_Array) is begin Write (Stream.Byte_Stream_Buffer, Item); end Write; ---------------- -- Initialize -- ---------------- overriding procedure Initialize (The_Byte_Buffer : in out Byte_Buffer) is begin The_Byte_Buffer.Count := Ada.Containers.Count_Type'First; The_Byte_Buffer.Buffer.Reserve_Capacity (Capacity => The_Byte_Buffer.Size); end Initialize; ---------- -- Read -- ---------- procedure Read (The_Byte_Buffer : in out Byte_Buffer; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset) is use type Ada.Containers.Count_Type; use type Ada.Streams.Stream_Element_Offset; Read_Count : Ada.Containers.Count_Type := Ada.Containers.Count_Type (Item'Last - Item'First + 1); begin if not (The_Byte_Buffer.Count > 0) then Last := Item'First - 1; return; end if; if Read_Count > The_Byte_Buffer.Count then Read_Count := The_Byte_Buffer.Count; end if; declare Item_Index : Ada.Streams.Stream_Element_Offset := Item'First; Buffer_Index : Natural := The_Byte_Buffer.Buffer.First_Index; begin while Read_Count > 0 loop Item (Item_Index) := The_Byte_Buffer.Buffer.Element (Index => The_Byte_Buffer.Buffer.First_Index); The_Byte_Buffer.Buffer.Delete_First; Buffer_Index := Buffer_Index + 1; Item_Index := Item_Index + 1; Read_Count := Read_Count - 1; end loop; Last := Ada.Streams.Stream_Element_Offset (Buffer_Index); end; end Read; ----------- -- Write -- ----------- procedure Write (The_Byte_Buffer : in out Byte_Buffer; Item : in Ada.Streams.Stream_Element_Array) is use type Ada.Containers.Count_Type; use type Ada.Streams.Stream_Element_Offset; Item_Size : Ada.Streams.Stream_Element_Offset := Item'Last - Item'First + 1; begin for Index in Item'First .. Item'Last loop The_Byte_Buffer.Buffer.Append (Item (Index)); end loop; The_Byte_Buffer.Count := The_Byte_Buffer.Count + Ada.Containers.Count_Type (Item_Size); end Write; ----------------------------- -- To_Stream_Element_Array -- ----------------------------- function To_Stream_Element_Array (Stream : in Byte_Stream_Access) return Ada.Streams.Stream_Element_Array is use type Ada.Streams.Stream_Element_Offset; Index : Ada.Streams.Stream_Element_Offset := 1; Length : Ada.Streams.Stream_Element_Offset := Ada.Streams.Stream_Element_Offset (Stream.Byte_Stream_Buffer.Count); Buffer_Cursor : Stream_Element_Buffer.Cursor := Stream_Element_Buffer.First (Container => Stream.Byte_Stream_Buffer.Buffer); Byte_Array : Ada.Streams.Stream_Element_Array (1 .. Length); begin while Stream_Element_Buffer.Has_Element (Buffer_Cursor) loop Byte_Array (Index) := Stream_Element_Buffer.Element (Buffer_Cursor); Stream_Element_Buffer.Next (Buffer_Cursor); Index := Index + 1; end loop; return Byte_Array; end To_Stream_Element_Array; ----------------- -- Load_Buffer -- ----------------- procedure Empty_And_Load_Buffer (Stream : in out Byte_Stream_Access; Byte_Array : in Ada.Streams.Stream_Element_Array) is use type Ada.Containers.Count_Type; begin Reset (Stream); for I in Byte_Array'Range loop Stream.Byte_Stream_Buffer.Buffer.Append (Byte_Array (I)); Stream.Byte_Stream_Buffer.Count := Stream.Byte_Stream_Buffer.Count + 1; end loop; end; ---------- -- Free -- ---------- procedure Free (Stream : in out Byte_Stream_Access) is ----------------- -- Free_Stream -- ----------------- procedure Free_Stream is new Ada.Unchecked_Deallocation (Object => Byte_Stream, Name => Byte_Stream_Access); begin Free_Stream (Stream); end Free; end Buffered_Byte_Stream;
reznikmm/matreshka
Ada
3,567
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- XML Processor -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ package XML.Schema.Objects.Annotations is pragma Preelaborate; type XS_Annotation is new XS_Object with private; private type XS_Annotation is new XS_Object with null record; end XML.Schema.Objects.Annotations;
zhmu/ananas
Ada
9,051
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 7 4 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; with System.Unsigned_Types; package body System.Pack_74 is subtype Bit_Order is System.Bit_Order; Reverse_Bit_Order : constant Bit_Order := Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order)); subtype Ofs is System.Storage_Elements.Storage_Offset; subtype Uns is System.Unsigned_Types.Unsigned; subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7; use type System.Storage_Elements.Storage_Offset; use type System.Unsigned_Types.Unsigned; type Cluster is record E0, E1, E2, E3, E4, E5, E6, E7 : Bits_74; end record; for Cluster use record E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1; E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1; E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1; E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1; E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1; E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1; E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1; E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1; end record; for Cluster'Size use Bits * 8; for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment, 1 + 1 * Boolean'Pos (Bits mod 2 = 0) + 2 * Boolean'Pos (Bits mod 4 = 0)); -- Use maximum possible alignment, given the bit field size, since this -- will result in the most efficient code possible for the field. type Cluster_Ref is access Cluster; type Rev_Cluster is new Cluster with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_Cluster_Ref is access Rev_Cluster; -- The following declarations are for the case where the address -- passed to GetU_74 or SetU_74 is not guaranteed to be aligned. -- These routines are used when the packed array is itself a -- component of a packed record, and therefore may not be aligned. type ClusterU is new Cluster; for ClusterU'Alignment use 1; type ClusterU_Ref is access ClusterU; type Rev_ClusterU is new ClusterU with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_ClusterU_Ref is access Rev_ClusterU; ------------ -- Get_74 -- ------------ function Get_74 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_74 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end Get_74; ------------- -- GetU_74 -- ------------- function GetU_74 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_74 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : ClusterU_Ref with Address => A'Address, Import; RC : Rev_ClusterU_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end GetU_74; ------------ -- Set_74 -- ------------ procedure Set_74 (Arr : System.Address; N : Natural; E : Bits_74; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end Set_74; ------------- -- SetU_74 -- ------------- procedure SetU_74 (Arr : System.Address; N : Natural; E : Bits_74; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : ClusterU_Ref with Address => A'Address, Import; RC : Rev_ClusterU_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end SetU_74; end System.Pack_74;
rveenker/sdlada
Ada
8,932
adb
with Ada.Calendar; with Ada.Text_IO.Text_Streams; with Ada.Unchecked_Conversion; with SDL; with SDL.Events.Events; with SDL.Events.Keyboards; with SDL.Log; with SDL.Video.Palettes; with SDL.Video.Pixel_Formats; with SDL.Video.Pixels; with SDL.Video.Renderers.Makers; with SDL.Video.Textures.Makers; with SDL.Video.Windows.Makers; with System; procedure Stream2 is use type SDL.Dimension; use type SDL.Positive_Sizes; type Moose_Frames is mod 10; -- type Moose_Frames is range 1 .. 10; type Moose_Colour_Index is range 1 .. 84; type Moose_Palette_Array is array (Moose_Colour_Index'Range) of SDL.Video.Palettes.RGB_Colour; W : SDL.Video.Windows.Window; Moose_Size : SDL.Positive_Sizes := (64, 88); Moose_Frame_Size : constant SDL.Positive_Dimension := (Moose_Size.Width * Moose_Size.Height) - 1; Moose_Frame : Moose_Frames := Moose_Frames'First; Moose_Palette : constant Moose_Palette_Array := ((49, 49, 49), (66, 24, 0), (66, 33, 0), (66, 66, 66), (66, 115, 49), (74, 33, 0), (74, 41, 16), (82, 33, 8), (82, 41, 8), (82, 49, 16), (82, 82, 82), (90, 41, 8), (90, 41, 16), (90, 57, 24), (99, 49, 16), (99, 66, 24), (99, 66, 33), (99, 74, 33), (107, 57, 24), (107, 82, 41), (115, 57, 33), (115, 66, 33), (115, 66, 41), (115, 74, 0), (115, 90, 49), (115, 115, 115), (123, 82, 0), (123, 99, 57), (132, 66, 41), (132, 74, 41), (132, 90, 8), (132, 99, 33), (132, 99, 66), (132, 107, 66), (140, 74, 49), (140, 99, 16), (140, 107, 74), (140, 115, 74), (148, 107, 24), (148, 115, 82), (148, 123, 74), (148, 123, 90), (156, 115, 33), (156, 115, 90), (156, 123, 82), (156, 132, 82), (156, 132, 99), (156, 156, 156), (165, 123, 49), (165, 123, 90), (165, 132, 82), (165, 132, 90), (165, 132, 99), (165, 140, 90), (173, 132, 57), (173, 132, 99), (173, 140, 107), (173, 140, 115), (173, 148, 99), (173, 173, 173), (181, 140, 74), (181, 148, 115), (181, 148, 123), (181, 156, 107), (189, 148, 123), (189, 156, 82), (189, 156, 123), (189, 156, 132), (189, 189, 189), (198, 156, 123), (198, 165, 132), (206, 165, 99), (206, 165, 132), (206, 173, 140), (206, 206, 206), (214, 173, 115), (214, 173, 140), (222, 181, 148), (222, 189, 132), (222, 189, 156), (222, 222, 222), (231, 198, 165), (231, 231, 231), (239, 206, 173)); type Moose_Frame_Data_Array is array (Moose_Frames'Range, 0 .. Moose_Frame_Size) of Moose_Colour_Index; Moose_Frame_Data : Moose_Frame_Data_Array; procedure Load_Moose_Data (Data : out Moose_Frame_Data_Array) is Actual_Name : String := "../../test/moose.dat"; Data_File : Ada.Text_IO.File_Type; Stream : Ada.Text_IO.Text_Streams.Stream_Access := null; use type Ada.Text_IO.File_Mode; begin Ada.Text_IO.Open (File => Data_File, Mode => Ada.Text_IO.In_File, Name => Actual_Name); Stream := Ada.Text_IO.Text_Streams.Stream (File => Data_File); Moose_Frame_Data_Array'Read (Stream, Data); Ada.Text_IO.Close (File => Data_File); exception when others => SDL.Log.Put_Error ("Error, reading source file, " & Actual_Name); raise; end Load_Moose_Data; Renderer : SDL.Video.Renderers.Renderer; Texture : SDL.Video.Textures.Texture; Pixels : SDL.Video.Pixels.ARGB_8888_Access.Pointer; procedure Lock is new SDL.Video.Textures.Lock (Pixel_Pointer_Type => SDL.Video.Pixels.ARGB_8888_Access.Pointer); use type SDL.Video.Pixels.ARGB_8888_Access.Pointer; use type Ada.Calendar.Time; type Texture_2D_Array is array (SDL.Natural_Dimension range <>, SDL.Natural_Dimension range <>) of aliased SDL.Video.Pixels.ARGB_8888; type Cached_Moose_Frame_Array is array (Moose_Frames) of Texture_2D_Array (1 .. Moose_Size.Height, 1 .. Moose_Size.Width); procedure Cache_Moose (Cache : in out Cached_Moose_Frame_Array; Indices : in Moose_Frame_Data_Array; Palette : Moose_Palette_Array) is Colour : SDL.Video.Palettes.RGB_Colour; begin for Frame in Moose_Frames loop for Y in 1 .. Moose_Size.Height loop for X in 1 .. Moose_Size.Width loop Colour := Palette (Indices (Frame, ((Y - 1) * Moose_Size.Width) + (X - 1))); Cache (Frame) (Y, X) := SDL.Video.Pixels.ARGB_8888'(Red => Colour.Red, Green => Colour.Green, Blue => Colour.Blue, Alpha => SDL.Video.Palettes.Colour_Component'Last); end loop; end loop; end loop; end Cache_Moose; Cache : Cached_Moose_Frame_Array; Finished : Boolean := False; begin SDL.Log.Set (Category => SDL.Log.Application, Priority => SDL.Log.Debug); Load_Moose_Data (Data => Moose_Frame_Data); Cache_Moose (Cache, Moose_Frame_Data, Moose_Palette); if SDL.Initialise = True then SDL.Video.Windows.Makers.Create (Win => W, Title => "Stream (Moose animation)", Position => SDL.Natural_Coordinates'(X => 100, Y => 100), Size => Moose_Size * 4, Flags => SDL.Video.Windows.Resizable); SDL.Video.Renderers.Makers.Create (Renderer, W); SDL.Video.Textures.Makers.Create (Tex => Texture, Renderer => Renderer, Format => SDL.Video.Pixel_Formats.Pixel_Format_ARGB_8888, Kind => SDL.Video.Textures.Streaming, Size => Moose_Size); -- Main loop. declare Event : SDL.Events.Events.Events; Finished : Boolean := False; use type SDL.Events.Event_Types; use type SDL.Events.Keyboards.Key_Codes; use type SDL.Events.Keyboards.Scan_Codes; begin loop while SDL.Events.Events.Poll (Event) loop case Event.Common.Event_Type is when SDL.Events.Quit => Finished := True; when SDL.Events.Keyboards.Key_Down => if Event.Keyboard.Key_Sym.Key_Code = SDL.Events.Keyboards.Code_Escape then Finished := True; -- elsif Event.Keyboard.Key_Sym.Scan_Code = SDL.Events.Keyboards.Scan_Code_Left then -- if Moose_Frame = Moose_Frames'First then -- Moose_Frame := Moose_Frames'Last; -- else -- Moose_Frame := Moose_Frame - 1; -- end if; -- elsif Event.Keyboard.Key_Sym.Scan_Code = SDL.Events.Keyboards.Scan_Code_Right then -- if Moose_Frame = Moose_Frames'Last then -- Moose_Frame := Moose_Frames'First; -- else -- Moose_Frame := Moose_Frame + 1; -- end if; elsif Event.Keyboard.Key_Sym.Scan_Code = SDL.Events.Keyboards.Scan_Code_Left then Moose_Frame := Moose_Frame - 1; elsif Event.Keyboard.Key_Sym.Scan_Code = SDL.Events.Keyboards.Scan_Code_Right then Moose_Frame := Moose_Frame + 1; end if; when others => null; end case; end loop; Lock (Texture, Pixels); declare function To_Address is new Ada.Unchecked_Conversion (Source => SDL.Video.Pixels.ARGB_8888_Access.Pointer, Target => System.Address); Start_Time : Ada.Calendar.Time; End_Time : Ada.Calendar.Time; Actual_Pixels : Texture_2D_Array (1 .. Moose_Size.Height, 1 .. Moose_Size.Width) with Address => To_Address (Pixels); begin Start_Time := Ada.Calendar.Clock; Actual_Pixels := Cache (Moose_Frame); End_Time := Ada.Calendar.Clock; end; Texture.Unlock; Renderer.Clear; Renderer.Copy (Texture); Renderer.Present; exit when Finished; end loop; end; W.Finalize; SDL.Finalise; end if; end Stream2;
zhmu/ananas
Ada
9,051
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 4 4 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; with System.Unsigned_Types; package body System.Pack_44 is subtype Bit_Order is System.Bit_Order; Reverse_Bit_Order : constant Bit_Order := Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order)); subtype Ofs is System.Storage_Elements.Storage_Offset; subtype Uns is System.Unsigned_Types.Unsigned; subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7; use type System.Storage_Elements.Storage_Offset; use type System.Unsigned_Types.Unsigned; type Cluster is record E0, E1, E2, E3, E4, E5, E6, E7 : Bits_44; end record; for Cluster use record E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1; E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1; E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1; E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1; E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1; E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1; E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1; E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1; end record; for Cluster'Size use Bits * 8; for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment, 1 + 1 * Boolean'Pos (Bits mod 2 = 0) + 2 * Boolean'Pos (Bits mod 4 = 0)); -- Use maximum possible alignment, given the bit field size, since this -- will result in the most efficient code possible for the field. type Cluster_Ref is access Cluster; type Rev_Cluster is new Cluster with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_Cluster_Ref is access Rev_Cluster; -- The following declarations are for the case where the address -- passed to GetU_44 or SetU_44 is not guaranteed to be aligned. -- These routines are used when the packed array is itself a -- component of a packed record, and therefore may not be aligned. type ClusterU is new Cluster; for ClusterU'Alignment use 1; type ClusterU_Ref is access ClusterU; type Rev_ClusterU is new ClusterU with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_ClusterU_Ref is access Rev_ClusterU; ------------ -- Get_44 -- ------------ function Get_44 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_44 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end Get_44; ------------- -- GetU_44 -- ------------- function GetU_44 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_44 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : ClusterU_Ref with Address => A'Address, Import; RC : Rev_ClusterU_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end GetU_44; ------------ -- Set_44 -- ------------ procedure Set_44 (Arr : System.Address; N : Natural; E : Bits_44; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end Set_44; ------------- -- SetU_44 -- ------------- procedure SetU_44 (Arr : System.Address; N : Natural; E : Bits_44; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : ClusterU_Ref with Address => A'Address, Import; RC : Rev_ClusterU_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end SetU_44; end System.Pack_44;
reznikmm/matreshka
Ada
3,699
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Elements; package ODF.DOM.Db_Table_Definitions_Elements is pragma Preelaborate; type ODF_Db_Table_Definitions is limited interface and XML.DOM.Elements.DOM_Element; type ODF_Db_Table_Definitions_Access is access all ODF_Db_Table_Definitions'Class with Storage_Size => 0; end ODF.DOM.Db_Table_Definitions_Elements;
godunko/adawebpack
Ada
3,927
ads
------------------------------------------------------------------------------ -- -- -- AdaWebPack -- -- -- ------------------------------------------------------------------------------ -- Copyright © 2021, Vadim Godunko -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- ------------------------------------------------------------------------------ -- Helper subprograms to get and set values of the object's attributes of -- different predefined types. Helper subprograms accepts object and index -- of the attribute in the global attribute names table defined at JavaScript -- side. This allows to share code to access to all attributes of the same -- type of any objects. with WASM.Attributes; with Web.Strings; package WASM.Objects.Attributes is pragma Preelaborate; function Get_Boolean (Self : Object_Reference'Class; Name : WASM.Attributes.Attribute_Index) return Boolean; procedure Set_Boolean (Self : Object_Reference'Class; Name : WASM.Attributes.Attribute_Index; To : Boolean); function Get_String (Self : Object_Reference'Class; Name : WASM.Attributes.Attribute_Index) return Web.Strings.Web_String; procedure Set_String (Self : Object_Reference'Class; Name : WASM.Attributes.Attribute_Index; To : Web.Strings.Web_String); function Get_Object (Self : Object_Reference'Class; Name : WASM.Attributes.Attribute_Index) return WASM.Objects.Object_Identifier; end WASM.Objects.Attributes;
persan/midnightsun-ctf-LoveLacedLetter
Ada
119
ads
function Hide.Value (Data : String ) return Integer with Pre => (for all I in Data'Range => Data (I) in '0' .. '9');
flyx/OpenGLAda
Ada
3,089
ads
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" with GL.Types.Colors; private with GL.Low_Level; private with GL.Toggles; package GL.Fixed.Lighting is pragma Preelaborate; type Color_Control is (Single_Color, Separate_Specular_Color); type Shade_Model is (Flat, Smooth); ---------------------------------------------------------------------------- -- Global Lighting Configuration -- ---------------------------------------------------------------------------- procedure Enable_Lighting; procedure Disable_Lighting; function Lighting_Enabled return Boolean; procedure Enable_Local_Viewer; procedure Disable_Local_Viewer; function Local_Viewer_Enabled return Boolean; procedure Enable_Two_Side; procedure Disable_Two_Side; function Two_Side_Enabled return Boolean; procedure Set_Global_Ambient_Light (Value : Colors.Color); function Global_Ambient_Light return Colors.Color; procedure Set_Color_Control (Value : Color_Control); function Current_Color_Control return Color_Control; procedure Set_Shade_Model (Value : Shade_Model); function Current_Shade_Model return Shade_Model; ---------------------------------------------------------------------------- -- Light Objects -- ---------------------------------------------------------------------------- type Light_Object (<>) is tagged private; type Light_Index is range 0 .. 7; procedure Enable (Source : Light_Object); procedure Disable (Source : Light_Object); function Enabled (Source : Light_Object) return Boolean; procedure Set_Ambient (Source : Light_Object; Color : Colors.Color); function Ambient (Source : Light_Object) return Colors.Color; procedure Set_Diffuse (Source : Light_Object; Color : Colors.Color); function Diffuse (Source : Light_Object) return Colors.Color; procedure Set_Specular (Source : Light_Object; Color : Colors.Color); function Specular (Source : Light_Object) return Colors.Color; procedure Set_Position (Source : Light_Object; Position : Types.Singles.Vector4); function Position (Source : Light_Object) return Types.Singles.Vector4; procedure Set_Spot_Direction (Source : Light_Object; Direction : Types.Singles.Vector3); function Spot_Direction (Source : Light_Object) return Types.Singles.Vector3; -- TBD: spot exponent, spot cutoff, attenduation function Light (Index : Light_Index) return Light_Object; private type Light_Object (Identifier : Toggles.Toggle) is tagged null record; for Color_Control use (Single_Color => 16#81F9#, Separate_Specular_Color => 16#81FA#); for Color_Control'Size use Low_Level.Enum'Size; for Shade_Model use (Flat => 16#1D00#, Smooth => 16#1D01#); for Shade_Model'Size use Low_Level.Enum'Size; end GL.Fixed.Lighting;
reznikmm/matreshka
Ada
4,608
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Table.Data_Type_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Table_Data_Type_Attribute_Node is begin return Self : Table_Data_Type_Attribute_Node do Matreshka.ODF_Table.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Table_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Table_Data_Type_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Data_Type_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Table_URI, Matreshka.ODF_String_Constants.Data_Type_Attribute, Table_Data_Type_Attribute_Node'Tag); end Matreshka.ODF_Table.Data_Type_Attributes;
reznikmm/matreshka
Ada
4,057
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Draw_Mirror_Horizontal_Attributes; package Matreshka.ODF_Draw.Mirror_Horizontal_Attributes is type Draw_Mirror_Horizontal_Attribute_Node is new Matreshka.ODF_Draw.Abstract_Draw_Attribute_Node and ODF.DOM.Draw_Mirror_Horizontal_Attributes.ODF_Draw_Mirror_Horizontal_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Draw_Mirror_Horizontal_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Draw_Mirror_Horizontal_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Draw.Mirror_Horizontal_Attributes;
sungyeon/drake
Ada
1,414
ads
pragma License (Unrestricted); -- extended unit private with System.Unwind; package Ada.Exception_Identification is -- "Pure" version of Ada.Exceptions. pragma Pure; type Exception_Id is private; pragma Preelaborable_Initialization (Exception_Id); Null_Id : constant Exception_Id; function Exception_Name (Id : Exception_Id) return String; procedure Raise_Exception (E : Exception_Id; Message : String := "") with Import, Convention => Ada, External_Name => "ada__exceptions__raise_exception"; pragma No_Return (Raise_Exception); -- These functions raise a new occurrence of the identified exception -- with source location. procedure Raise_Exception_From_Here ( E : Exception_Id; File : String := Debug.File; Line : Integer := Debug.Line) with Import, Convention => Ada, External_Name => "__drake_raise_exception_from_here"; procedure Raise_Exception_From_Here ( E : Exception_Id; File : String := Debug.File; Line : Integer := Debug.Line; Message : String) with Import, Convention => Ada, External_Name => "__drake_raise_exception_from_here_with"; pragma No_Return (Raise_Exception_From_Here); private type Exception_Id is new System.Unwind.Exception_Data_Access; Null_Id : constant Exception_Id := null; end Ada.Exception_Identification;
persan/AdaYaml
Ada
261
ads
-- part of AdaYaml, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "copying.txt" with Ada.Containers.Indefinite_Vectors; package Yaml.Dom.Vectors is new Ada.Containers.Indefinite_Vectors (Positive, Document_Reference);
stcarrez/ada-ado
Ada
1,111
ads
----------------------------------------------------------------------- -- ado-sequences-tests -- Test sequences factories -- Copyright (C) 2012 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Tests; package ADO.Sequences.Tests is procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite); type Test is new Util.Tests.Test with null record; procedure Test_Create_Factory (T : in out Test); end ADO.Sequences.Tests;
zhmu/ananas
Ada
436
adb
-- { dg-do compile } -- { dg-options "-O -gnatn" } package body Inline13 is function F (L : Arr) return String is Local : Arr (1 .. L'Length); Ret : String (1 .. L'Length); Pos : Natural := 1; begin Local (1 .. L'Length) := L; for I in 1 .. Integer (L'Length) loop Ret (Pos .. Pos + 8) := " " & Inline13_Pkg.Padded (Local (I)); Pos := Pos + 9; end loop; return Ret; end; end Inline13;
sparre/Command-Line-Parser-Generator
Ada
14,606
adb
-- Copyright: JSA Research & Innovation <[email protected]> -- License: Beer Ware pragma License (Unrestricted); with Ada.Characters.Handling, Ada.Command_Line, Ada.Text_IO, Ada.Wide_Text_IO; with Asis, Asis.Ada_Environments, Asis.Compilation_Units, Asis.Declarations, Asis.Elements, Asis.Implementation, Asis.Text; with Command_Line_Parser_Generator.Formal_Parameter, Command_Line_Parser_Generator.Help, Command_Line_Parser_Generator.Identifier_Set, Command_Line_Parser_Generator.Mercurial, Command_Line_Parser_Generator.Procedure_Declaration, Command_Line_Parser_Generator.Procedure_Declaration_List, Command_Line_Parser_Generator.Setup, Command_Line_Parser_Generator.Templates, Command_Line_Parser_Generator.Utilities, Command_Line_Parser_Generator.Zsh_Argument_Pattern; procedure Command_Line_Parser_Generator.Run is Context : Asis.Context; Compilation_Unit : Asis.Compilation_Unit; Package_Declaration : Asis.Declaration; Package_Name : Source_Text; Profiles : Procedure_Declaration_List.Instance; A_Procedure : Procedure_Declaration.Instance; begin Setup (Context => Context); Check_For_Package : declare use Ada.Characters.Handling, Ada.Command_Line, Ada.Wide_Text_IO; use Asis.Compilation_Units; use all type Asis.Unit_Kinds; begin Compilation_Unit := Library_Unit_Declaration (Name => To_Wide_String (Argument (1)), The_Context => Context); case Unit_Kind (Compilation_Unit) is when A_Package => null; -- Good. We continue. when An_Unknown_Unit => Put_Line (File => Standard_Error, Item => "No semantic information available for """ & To_Wide_String (Argument (1)) & """."); Set_Exit_Status (Failure); return; when others => Put_Line (File => Standard_Error, Item => """" & To_Wide_String (Argument (1)) & """ is not a package specification."); Put_Line (File => Standard_Error, Item => "It appears to be a " & Asis.Unit_Kinds'Wide_Image (Unit_Kind (Compilation_Unit)) & "."); -- TODO: Check if the user typed "P-Q" instead of "P.Q"! Set_Exit_Status (Failure); return; end case; end Check_For_Package; Show_Package_Declaration : declare use Asis.Elements; begin Package_Declaration := Unit_Declaration (Compilation_Unit); Package_Name := +Utilities.Defining_Name (Package_Declaration); end Show_Package_Declaration; Visible_Declaration_Elements : declare use Ada.Command_Line, Ada.Wide_Text_IO; use Asis.Declarations, Asis.Elements, Asis.Text; Declarations : constant Asis.Declarative_Item_List := Visible_Part_Declarative_Items (Package_Declaration); begin for Declaration of Declarations loop case Declaration_Kind (Declaration) is when Asis.A_Procedure_Declaration | Asis.A_Procedure_Renaming_Declaration => A_Procedure := (Name => +Utilities.Defining_Name (Declaration), Formal_Parameters => <>); Show_Parameters : declare use all type Asis.Mode_Kinds; use all type Zsh_Argument_Pattern.Instance; Parameters : constant Asis.Parameter_Specification_List := Parameter_Profile (Declaration); A_Formal_Parameter : Formal_Parameter.Instance := (Name => +"<formal parameter>", Flag => False, Image_Function => +"'Image", Value_Function => +"'Value", Default_Value => +"<default value>", Type_Name => +"<type name>", Zsh_Pattern => +Zsh_Argument_Pattern.Anything); begin for Parameter of Parameters loop for Name of Names (Parameter) loop A_Formal_Parameter.Name := +Defining_Name_Image (Name); case Mode_Kind (Parameter) is when A_Default_In_Mode | An_In_Mode => null; -- Fine, we continue. when An_In_Out_Mode | An_Out_Mode => Put_Line (File => Standard_Error, Item => "Out parameters not allowed."); Set_Exit_Status (Failure); return; when Not_A_Mode => Put_Line (File => Standard_Error, Item => "ASIS error."); Set_Exit_Status (Failure); return; end case; if Has_Aliased (Parameter) then Put_Line (File => Standard_Error, Item => "Aliased parameters not allowed."); Set_Exit_Status (Failure); return; end if; Full_Type_Name : declare use Utilities; Type_Of_Parameter : constant Asis.Declaration := Object_Declaration_View (Parameter); begin A_Formal_Parameter.Flag := Is_A_Flag (Type_Of_Parameter); A_Formal_Parameter.Type_Name := +Full_Defining_Name (Type_Of_Parameter); end Full_Type_Name; Check_For_Default_Value : declare use all type Asis.Element_Kinds; Value : constant Asis.Expression := Initialization_Expression (Parameter); begin case Element_Kind (Value) is when Not_An_Element => null; -- No default value. A_Formal_Parameter.Default_Value := +""; when An_Expression => if A_Formal_Parameter.Flag then Put_Line (File => Standard_Error, Item => Debug_Image (Value)); Put_Line (File => Standard_Error, Item => "Flags shouldn't have " & "a default value."); Set_Exit_Status (Failure); return; else A_Formal_Parameter.Default_Value := +Trim (Element_Image (Value)); end if; when others => Put_Line (File => Standard_Error, Item => Debug_Image (Value)); Put_Line (File => Standard_Error, Item => "ASIS error."); Set_Exit_Status (Failure); return; end case; end Check_For_Default_Value; Image_And_Value_Functions : declare use Utilities; use type Source_Text; P : Formal_Parameter.Instance renames A_Formal_Parameter; begin if Is_String_Compatible (Object_Declaration_View (Parameter)) then P.Image_Function := +"Standard.String"; P.Value_Function := P.Type_Name; elsif P.Type_Name = "Standard.Character" then P.Image_Function := +""; P.Value_Function := +""; else P.Image_Function := P.Type_Name & "'Image"; P.Value_Function := P.Type_Name & "'Value"; end if; end Image_And_Value_Functions; Zsh_View_Of_Type : declare use Identifier_Set, Zsh_Argument_Pattern; use type Source_Text; P : Formal_Parameter.Instance renames A_Formal_Parameter; begin if P.Flag then P.Zsh_Pattern := +Flag; elsif P.Type_Name = Package_Name & ".File_Name" then P.Zsh_Pattern := +Files; elsif P.Type_Name = Package_Name & ".Directory_Name" then P.Zsh_Pattern := +Directories; else declare use Utilities; Type_Of_Parameter : constant Asis.Declaration := Object_Declaration_View (Parameter); begin if Is_Enumeration (Type_Of_Parameter) then P.Zsh_Pattern := Create_Enumeration (Values => Enumeration_Values (Type_Of_Parameter)); else P.Zsh_Pattern := +Anything; end if; end; end if; end Zsh_View_Of_Type; A_Procedure.Formal_Parameters.Append (A_Formal_Parameter); end loop; end loop; end Show_Parameters; Profiles.Append (A_Procedure); when Asis.A_Function_Declaration | Asis.A_Function_Renaming_Declaration => Put_Line (File => Standard_Error, Item => "Functions are not allowed in the visible part of " & "the package specification."); Put_Line (File => Standard_Error, Item => """" & Element_Image (Declaration) & """ is an " & "error."); Set_Exit_Status (Failure); return; when others => Put_Line (File => Standard_Error, Item => "Warning: """ & Element_Image (Declaration) & """ is ignored."); end case; end loop; Put_Line ("package " & (+Package_Name) & " is"); New_Line; Put_Line (Profiles.Image); Put_Line ("end " & (+Package_Name) & ";"); if Profiles.Is_Empty then Put_Line (File => Standard_Error, Item => "No procedures to call in package " & (+Package_Name) & "."); Set_Exit_Status (Failure); else declare External_Put_Help : Boolean renames Help.Generate_Help_Texts (Package_Declaration); External_Show_Help : Boolean renames Help.Generate_Show_Help (Package_Declaration); begin Templates.Create (Target_Directory => "generated"); Templates.Runner (Package_Name => +Package_Name, External_Put_Help => External_Put_Help); Templates.Parser (Package_Name => +Package_Name); Templates.Argument_Type (Package_Name => +Package_Name); Templates.Argument_List (Package_Name => +Package_Name); Templates.Key_List (Package_Name => +Package_Name); Templates.Profiles (Package_Name => +Package_Name, Procedures => Profiles, External_Show_Help => External_Show_Help); Templates.Zsh_Command_Completion (Package_Name => +Package_Name, Procedures => Profiles); if External_Put_Help then Templates.Put_Help (Package_Name => +Package_Name, Procedures => Profiles, External_Show_Help => External_Show_Help); end if; if External_Show_Help then Templates.Show_Help (Package_Name => +Package_Name, External_Put_Help => External_Put_Help); end if; end; end if; exception when others => Put_Line (Standard_Error, Asis.Implementation.Diagnosis); raise; end Visible_Declaration_Elements; Asis.Ada_Environments.Close (The_Context => Context); Asis.Ada_Environments.Dissociate (The_Context => Context); Asis.Implementation.Finalize (Parameters => ""); exception when others => Ada.Text_IO.Put_Line (File => Ada.Text_IO.Standard_Error, Item => "Exception in Command_Line_Parser_Generator (revision " & Mercurial.Revision & ")."); raise; end Command_Line_Parser_Generator.Run;
reznikmm/matreshka
Ada
3,719
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Style_Style_Name_Attributes is pragma Preelaborate; type ODF_Style_Style_Name_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Style_Style_Name_Attribute_Access is access all ODF_Style_Style_Name_Attribute'Class with Storage_Size => 0; end ODF.DOM.Style_Style_Name_Attributes;
optikos/oasis
Ada
8,315
adb
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Formal_Package_Declarations is function Create (With_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Package_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Name : not null Program.Elements.Defining_Identifiers .Defining_Identifier_Access; Is_Token : not null Program.Lexical_Elements .Lexical_Element_Access; New_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Generic_Package_Name : not null Program.Elements.Expressions .Expression_Access; Left_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access; Parameters : Program.Elements.Formal_Package_Associations .Formal_Package_Association_Vector_Access; Right_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access; With_Token_2 : Program.Lexical_Elements.Lexical_Element_Access; Aspects : Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Formal_Package_Declaration is begin return Result : Formal_Package_Declaration := (With_Token => With_Token, Package_Token => Package_Token, Name => Name, Is_Token => Is_Token, New_Token => New_Token, Generic_Package_Name => Generic_Package_Name, Left_Bracket_Token => Left_Bracket_Token, Parameters => Parameters, Right_Bracket_Token => Right_Bracket_Token, With_Token_2 => With_Token_2, Aspects => Aspects, Semicolon_Token => Semicolon_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Name : not null Program.Elements.Defining_Identifiers .Defining_Identifier_Access; Generic_Package_Name : not null Program.Elements.Expressions .Expression_Access; Parameters : Program.Elements.Formal_Package_Associations .Formal_Package_Association_Vector_Access; Aspects : Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Formal_Package_Declaration is begin return Result : Implicit_Formal_Package_Declaration := (Name => Name, Generic_Package_Name => Generic_Package_Name, Parameters => Parameters, Aspects => Aspects, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Name (Self : Base_Formal_Package_Declaration) return not null Program.Elements.Defining_Identifiers .Defining_Identifier_Access is begin return Self.Name; end Name; overriding function Generic_Package_Name (Self : Base_Formal_Package_Declaration) return not null Program.Elements.Expressions.Expression_Access is begin return Self.Generic_Package_Name; end Generic_Package_Name; overriding function Parameters (Self : Base_Formal_Package_Declaration) return Program.Elements.Formal_Package_Associations .Formal_Package_Association_Vector_Access is begin return Self.Parameters; end Parameters; overriding function Aspects (Self : Base_Formal_Package_Declaration) return Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access is begin return Self.Aspects; end Aspects; overriding function With_Token (Self : Formal_Package_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.With_Token; end With_Token; overriding function Package_Token (Self : Formal_Package_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Package_Token; end Package_Token; overriding function Is_Token (Self : Formal_Package_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Is_Token; end Is_Token; overriding function New_Token (Self : Formal_Package_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.New_Token; end New_Token; overriding function Left_Bracket_Token (Self : Formal_Package_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Left_Bracket_Token; end Left_Bracket_Token; overriding function Right_Bracket_Token (Self : Formal_Package_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Right_Bracket_Token; end Right_Bracket_Token; overriding function With_Token_2 (Self : Formal_Package_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.With_Token_2; end With_Token_2; overriding function Semicolon_Token (Self : Formal_Package_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Semicolon_Token; end Semicolon_Token; overriding function Is_Part_Of_Implicit (Self : Implicit_Formal_Package_Declaration) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Formal_Package_Declaration) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Formal_Package_Declaration) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : aliased in out Base_Formal_Package_Declaration'Class) is begin Set_Enclosing_Element (Self.Name, Self'Unchecked_Access); Set_Enclosing_Element (Self.Generic_Package_Name, Self'Unchecked_Access); for Item in Self.Parameters.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; for Item in Self.Aspects.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; null; end Initialize; overriding function Is_Formal_Package_Declaration_Element (Self : Base_Formal_Package_Declaration) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Formal_Package_Declaration_Element; overriding function Is_Declaration_Element (Self : Base_Formal_Package_Declaration) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Declaration_Element; overriding procedure Visit (Self : not null access Base_Formal_Package_Declaration; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Formal_Package_Declaration (Self); end Visit; overriding function To_Formal_Package_Declaration_Text (Self : aliased in out Formal_Package_Declaration) return Program.Elements.Formal_Package_Declarations .Formal_Package_Declaration_Text_Access is begin return Self'Unchecked_Access; end To_Formal_Package_Declaration_Text; overriding function To_Formal_Package_Declaration_Text (Self : aliased in out Implicit_Formal_Package_Declaration) return Program.Elements.Formal_Package_Declarations .Formal_Package_Declaration_Text_Access is pragma Unreferenced (Self); begin return null; end To_Formal_Package_Declaration_Text; end Program.Nodes.Formal_Package_Declarations;
reznikmm/matreshka
Ada
6,277
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ -- DiagramElement is the abstract super type of all elements in diagrams, -- including diagrams themselves. When contained in a diagram, diagram -- elements are laid out relative to the diagram’s origin. ------------------------------------------------------------------------------ limited with AMF.CMOF.Elements; limited with AMF.DI.Diagram_Elements.Collections; limited with AMF.DI.Styles; package AMF.DI.Diagram_Elements is pragma Preelaborate; type DI_Diagram_Element is limited interface; type DI_Diagram_Element_Access is access all DI_Diagram_Element'Class; for DI_Diagram_Element_Access'Storage_Size use 0; not overriding function Get_Model_Element (Self : not null access constant DI_Diagram_Element) return AMF.CMOF.Elements.CMOF_Element_Access is abstract; -- Getter of DiagramElement::modelElement. -- -- a reference to a depicted model element, which can be any MOF-based -- element not overriding function Get_Owning_Element (Self : not null access constant DI_Diagram_Element) return AMF.DI.Diagram_Elements.DI_Diagram_Element_Access is abstract; -- Getter of DiagramElement::owningElement. -- -- a reference to the diagram element that directly owns this diagram -- element. not overriding function Get_Owned_Element (Self : not null access constant DI_Diagram_Element) return AMF.DI.Diagram_Elements.Collections.Set_Of_DI_Diagram_Element is abstract; -- Getter of DiagramElement::ownedElement. -- -- a collection of diagram elements that are directly owned by this -- diagram element. not overriding function Get_Local_Style (Self : not null access constant DI_Diagram_Element) return AMF.DI.Styles.DI_Style_Access is abstract; -- Getter of DiagramElement::localStyle. -- -- a reference to an optional locally-owned style for this diagram element. not overriding procedure Set_Local_Style (Self : not null access DI_Diagram_Element; To : AMF.DI.Styles.DI_Style_Access) is abstract; -- Setter of DiagramElement::localStyle. -- -- a reference to an optional locally-owned style for this diagram element. not overriding function Get_Shared_Style (Self : not null access constant DI_Diagram_Element) return AMF.DI.Styles.DI_Style_Access is abstract; -- Getter of DiagramElement::sharedStyle. -- -- a reference to an optional shared style element for this diagram -- element. not overriding procedure Set_Shared_Style (Self : not null access DI_Diagram_Element; To : AMF.DI.Styles.DI_Style_Access) is abstract; -- Setter of DiagramElement::sharedStyle. -- -- a reference to an optional shared style element for this diagram -- element. end AMF.DI.Diagram_Elements;
AdaCore/libadalang
Ada
895
ads
package Variant_Mismatch is type T1 is record I : Integer; end record; type T2 (B : Boolean) is record case B is when False => null; when True => I : Integer; end case; end record; type T3_Parent (B : Boolean) is tagged record case B is when False => null; when True => I : Integer; end case; end record; type T3_Child (B : Boolean) is new T3_Parent with record case B is when False => null; when True => I : Integer; end case; end record; type T4 (B : Boolean) is record case B is when others => I : Integer; end case; end record; type T5 (B1, B2 : Boolean) is record case B1 is when False => I1 : Integer; when True => I2 : Integer; end case; end record; end Variant_Mismatch;
rbkmoney/swagger-codegen
Ada
4,961
ads
-- Swagger Petstore -- This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters. -- -- OpenAPI spec version: 1.0.0 -- Contact: [email protected] -- -- NOTE: This package is auto generated by the swagger code generator 2.3.0-SNAPSHOT. -- https://github.com/swagger-api/swagger-codegen.git -- Do not edit the class manually. with Samples.Petstore.Models; with Swagger.Clients; package Samples.Petstore.Clients is type Client_Type is new Swagger.Clients.Client_Type with null record; -- Add a new pet to the store procedure Add_Pet (Client : in out Client_Type; P_Body : in Samples.Petstore.Models.Pet_Type); -- Deletes a pet procedure Delete_Pet (Client : in out Client_Type; Pet_Id : in Swagger.Long; Api_Key : in Swagger.UString); -- Finds Pets by status -- Multiple status values can be provided with comma separated strings procedure Find_Pets_By_Status (Client : in out Client_Type; Status : in Swagger.UString_Vectors.Vector; Result : out Samples.Petstore.Models.Pet_Type_Vectors.Vector); -- Finds Pets by tags -- Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing. procedure Find_Pets_By_Tags (Client : in out Client_Type; Tags : in Swagger.UString_Vectors.Vector; Result : out Samples.Petstore.Models.Pet_Type_Vectors.Vector); -- Find pet by ID -- Returns a single pet procedure Get_Pet_By_Id (Client : in out Client_Type; Pet_Id : in Swagger.Long; Result : out Samples.Petstore.Models.Pet_Type); -- Update an existing pet procedure Update_Pet (Client : in out Client_Type; P_Body : in Samples.Petstore.Models.Pet_Type); -- Updates a pet in the store with form data procedure Update_Pet_With_Form (Client : in out Client_Type; Pet_Id : in Swagger.Long; Name : in Swagger.UString; Status : in Swagger.UString); -- uploads an image procedure Upload_File (Client : in out Client_Type; Pet_Id : in Swagger.Long; Additional_Metadata : in Swagger.UString; File : in Swagger.Http_Content_Type; Result : out Samples.Petstore.Models.ApiResponse_Type); -- Delete purchase order by ID -- For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors procedure Delete_Order (Client : in out Client_Type; Order_Id : in Swagger.UString); -- Returns pet inventories by status -- Returns a map of status codes to quantities procedure Get_Inventory (Client : in out Client_Type; Result : out Swagger.Integer_Map); -- Find purchase order by ID -- For valid response try integer IDs with value &lt;&#x3D; 5 or &gt; 10. Other values will generated exceptions procedure Get_Order_By_Id (Client : in out Client_Type; Order_Id : in Swagger.Long; Result : out Samples.Petstore.Models.Order_Type); -- Place an order for a pet procedure Place_Order (Client : in out Client_Type; P_Body : in Samples.Petstore.Models.Order_Type; Result : out Samples.Petstore.Models.Order_Type); -- Create user -- This can only be done by the logged in user. procedure Create_User (Client : in out Client_Type; P_Body : in Samples.Petstore.Models.User_Type); -- Creates list of users with given input array procedure Create_Users_With_Array_Input (Client : in out Client_Type; P_Body : in Samples.Petstore.Models.User_Type_Vectors.Vector); -- Creates list of users with given input array procedure Create_Users_With_List_Input (Client : in out Client_Type; P_Body : in Samples.Petstore.Models.User_Type_Vectors.Vector); -- Delete user -- This can only be done by the logged in user. procedure Delete_User (Client : in out Client_Type; Username : in Swagger.UString); -- Get user by user name procedure Get_User_By_Name (Client : in out Client_Type; Username : in Swagger.UString; Result : out Samples.Petstore.Models.User_Type); -- Logs user into the system procedure Login_User (Client : in out Client_Type; Username : in Swagger.UString; Password : in Swagger.UString; Result : out Swagger.UString); -- Logs out current logged in user session procedure Logout_User (Client : in out Client_Type); -- Updated user -- This can only be done by the logged in user. procedure Update_User (Client : in out Client_Type; Username : in Swagger.UString; P_Body : in Samples.Petstore.Models.User_Type); end Samples.Petstore.Clients;
onox/sdlada
Ada
3,627
adb
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2018 Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- with Ada.Finalization; package body SDL.Video.Surfaces.Makers is procedure Create (Self : in out Surface; Size : in SDL.Sizes; BPP : in Pixel_Depths; Red_Mask : in Colour_Masks; Blue_Mask : in Colour_Masks; Green_Mask : in Colour_Masks; Alpha_Mask : in Colour_Masks) is function SDL_Create_RGB_Surface (Flags : in Surface_Flags := 0; -- TODO: Is this the correct type? Width : in C.int := 0; Height : in C.int := 0; Depth : in Pixel_Depths := 1; Red_Mask : in Colour_Masks := 0; Green_Mask : in Colour_Masks := 0; Blue_Mask : in Colour_Masks := 0; Alpha_Mask : in Colour_Masks := 0) return Internal_Surface_Pointer with Import => True, Convention => C, External_Name => "SDL_CreateRGBSurface"; begin Self.Internal := SDL_Create_RGB_Surface (Width => Size.Width, Height => Size.Height, Depth => BPP, Red_Mask => Red_Mask, Green_Mask => Green_Mask, Blue_Mask => Blue_Mask, Alpha_Mask => Alpha_Mask); end Create; -- TODO: SDL_CreateRGBSurfaceFrom -- procedure Create (Self : in out Surface; File_Name : in String) is -- -- This is actually a macro in the header. -- function SDL_Load_BMP (File_Name : in C.char_array) return Internal_Surface_Pointer with -- Import => True, -- Convention => C, -- External_Name => "SDL_LoadBMP"; -- begin -- Self.Internal := SDL_Load_BMP (C.To_C (File_Name)); -- end Create; function Get_Internal_Surface (Self : in Surface) return Internal_Surface_Pointer is begin return Self.Internal; end Get_Internal_Surface; function Make_Surface_From_Pointer (S : in Internal_Surface_Pointer; Owns : in Boolean := False) return Surface is begin return (Ada.Finalization.Controlled with Internal => S, Owns => Owns); end Make_Surface_From_Pointer; end SDL.Video.Surfaces.Makers;
afrl-rq/OpenUxAS
Ada
346
adb
package body Bounded_Stack with SPARK_Mode is procedure Push (S : in out Stack; E : Element_Type) is begin S.Content (S.Top + 1) := E; S.Top := S.Top + 1; end Push; procedure Pop (S : in out Stack; E : out Element_Type) is begin E := S.Content (S.Top); S.Top := S.Top - 1; end Pop; end Bounded_Stack;
strenkml/EE368
Ada
5,819
adb
with Memory.Transform.Shift; use Memory.Transform.Shift; with Memory.Join; use Memory.Join; package body Test.Shift is procedure Test_Positive is mem : constant Monitor_Pointer := Create_Monitor(0); bank : constant Monitor_Pointer := Create_Monitor(1, False); shift : Shift_Pointer := Create_Shift; join : constant Join_Pointer := Create_Join(shift, 0); begin Set_Memory(bank.all, join); Set_Bank(shift.all, bank); Set_Memory(shift.all, mem); Set_Value(shift.all, 1); Check(Get_Time(shift.all) = 0); Check(Get_Writes(shift.all) = 0); Check(Get_Cost(shift.all) = 0); Read(shift.all, 0, 8); Check(mem.last_addr = 0); Check(mem.last_size = 8); Check(bank.last_addr = 0); Check(bank.last_size = 8); Check(Get_Time(shift.all) = 2); Check(Get_Writes(shift.all) = 0); Read(shift.all, 1, 1); Check(mem.last_addr = 1); Check(mem.last_size = 1); Check(bank.last_addr = 1); Check(bank.last_size = 1); Check(Get_Time(shift.all) = 4); Check(Get_Writes(shift.all) = 0); Write(shift.all, 1, 1); Check(mem.last_addr = 1); Check(mem.last_size = 1); Check(bank.last_addr = 1); Check(bank.last_size = 1); Check(Get_Time(shift.all) = 6); Check(Get_Writes(shift.all) = 1); Read(shift.all, 16, 8); Check(mem.last_addr = 16); Check(mem.last_size = 8); Check(bank.last_addr = 32); Check(bank.last_size = 8); Check(Get_Time(shift.all) = 8); Read(shift.all, 2 ** 31, 4); Check(mem.last_addr = 2 ** 31); Check(mem.last_size = 4); Check(bank.last_addr = 8); Check(bank.last_size = 4); Check(Get_Time(shift.all) = 10); Read(shift.all, 105, 2); Check(mem.last_addr = 105); Check(mem.last_size = 2); Check(bank.last_addr = 209); Check(bank.last_size = 2); Check(Get_Time(shift.all) = 12); Idle(shift.all, 4); Check(Get_Time(shift.all) = 16); Read(shift.all, 0, 1); Check(Get_Time(shift.all) = 18); Destroy(Memory_Pointer(shift)); end Test_Positive; procedure Test_Negative is mem : constant Monitor_Pointer := Create_Monitor(0, True); bank : constant Monitor_Pointer := Create_Monitor(0, False); shift : Shift_Pointer := Create_Shift; join : constant Join_Pointer := Create_Join(shift, 0); begin Set_Memory(bank.all, join); Set_Bank(shift.all, bank); Set_Memory(shift.all, mem); Set_Value(shift.all, -2); Check(Get_Time(shift.all) = 0); Check(Get_Writes(shift.all) = 0); Read(shift.all, 0, 8); Check(mem.last_addr = 0); Check(mem.last_size = 8); Check(bank.last_addr = 0); Check(bank.last_size = 8); Check(Get_Time(shift.all) = 1); Check(Get_Writes(shift.all) = 0); Read(shift.all, 1, 1); Check(mem.last_addr = 1); Check(mem.last_size = 1); Check(bank.last_addr = 1); Check(bank.last_size = 1); Check(Get_Time(shift.all) = 2); Check(Get_Writes(shift.all) = 0); Write(shift.all, 1, 1); Check(mem.last_addr = 1); Check(mem.last_size = 1); Check(bank.last_addr = 1); Check(bank.last_size = 1); Check(Get_Time(shift.all) = 3); Check(Get_Writes(shift.all) = 1); Write(shift.all, 9, 4); Check(mem.last_addr = 9); Check(mem.last_size = 4); Check(bank.last_addr = ((Address_Type(2) ** 30) or 1)); Check(bank.last_size = 4); Check(Get_Time(shift.all) = 4); Check(Get_Writes(shift.all) = 2); Destroy(Memory_Pointer(shift)); end Test_Negative; procedure Test_Zero is mem : constant Monitor_Pointer := Create_Monitor(0, True); bank : constant Monitor_Pointer := Create_Monitor(0, False); shift : Shift_Pointer := Create_Shift; join : constant Join_Pointer := Create_Join(shift, 0); begin Set_Memory(bank.all, join); Set_Bank(shift.all, bank); Set_Memory(shift.all, mem); Set_Value(shift.all, 0); Read(shift.all, 0, 8); Check(mem.last_addr = 0); Check(mem.last_size = 8); Check(bank.last_addr = 0); Check(bank.last_size = 8); Check(Get_Time(shift.all) = 1); Check(Get_Writes(shift.all) = 0); Read(shift.all, 1, 1); Check(mem.last_addr = 1); Check(mem.last_size = 1); Check(bank.last_addr = 1); Check(bank.last_size = 1); Check(Get_Time(shift.all) = 2); Check(Get_Writes(shift.all) = 0); Write(shift.all, 1, 1); Check(mem.last_addr = 1); Check(mem.last_size = 1); Check(bank.last_addr = 1); Check(bank.last_size = 1); Check(Get_Time(shift.all) = 3); Check(Get_Writes(shift.all) = 1); Write(shift.all, 9, 4); Check(mem.last_addr = 9); Check(mem.last_size = 4); Check(bank.last_addr = 9); Check(bank.last_size = 4); Check(Get_Time(shift.all) = 4); Check(Get_Writes(shift.all) = 2); Read(shift.all, 100, 16); Check(mem.last_addr = 100); Check(mem.last_size = 16); Check(bank.last_addr = 100); Check(bank.last_size = 16); Check(Get_Time(shift.all) = 7); Check(Get_Writes(shift.all) = 2); Read(shift.all, 16, 4); Check(mem.last_addr = 16); Check(mem.last_size = 4); Check(bank.last_addr = 16); Check(bank.last_size = 4); Check(Get_Time(shift.all) = 8); Check(Get_Writes(shift.all) = 2); Destroy(Memory_Pointer(shift)); end Test_Zero; procedure Run_Tests is begin Test_Positive; Test_Negative; Test_Zero; end Run_Tests; end Test.Shift;
Arles96/PCompiladores
Ada
214
adb
procedure prueba is function Minimo2 (a, b: Integer) return Integer is X : Integer := 0; begin if a < b then return a; else return b; end if; end Minimo2; begin put(Minimo2(1, 2)); end prueba;
Lucretia/Cherry
Ada
699
ads
-- -- The author disclaims copyright to this source code. In place of -- a legal notice, here is a blessing: -- -- May you do good and not evil. -- May you find forgiveness for yourself and forgive others. -- May you share freely, not taking more than you give. -- with Lime; with Parser_Data; package Parser_FSM is procedure Initialize_FSM (Lemon : in out Lime.Lemon_Record; Scanner : in out Parser_Data.Scanner_Record); -- Initialize the parser finite state machine procedure Do_State (Lemon : in out Lime.Lemon_Record; Scanner : in out Parser_Data.Scanner_Record); -- The parser state machine end Parser_FSM;
reznikmm/increment
Ada
9,646
ads
-- Copyright (c) 2015-2017 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Ada.Characters.Wide_Wide_Latin_1; with Incr.Documents; limited with Incr.Nodes.Tokens; with Incr.Version_Trees; package Incr.Nodes is -- @summary -- Nodes of parse trees -- -- @description -- This package provides abstract Node type. -- Actuall nodes could be one of two kinds: -- * Tokens represent terminal symbols and contains text of the document -- * interconnecting nodes represent non-terminal symbols and have -- one or more children. -- Number of children is constant over node's life time. -- -- When node changes (by modification text of the token, assigning new -- children to mode, etc) it's marked as having local changes. -- This mark propagates up over the tree and aggregates as nested changes -- flag on ancestor nodes. This flag stored in history and allows one to -- locate the changed subtrees quickly. Nested changes flag doesn't count -- node's local changes. type Node (Document : Documents.Document_Access) is abstract tagged private; -- Node abstract type represents a node inside parse tree. type Node_Access is access all Node'Class; type Node_Array is array (Positive range <>) of Node_Access; not overriding function Is_Token (Self : Node) return Boolean is abstract; -- Check if given node is token. not overriding function Arity (Self : Node) return Natural is abstract; -- Return number of node's children. type Node_Kind is new Integer; subtype Token_Kind is Node_Kind range 0 .. Node_Kind'Last; not overriding function Kind (Self : Node) return Node_Kind is abstract; -- Return type of the node. Kind is not expected to change not overriding function Child (Self : Node; Index : Positive; Time : Version_Trees.Version) return Node_Access is abstract; -- Get node's child by its position. Result could be null if child absent. not overriding procedure Set_Child (Self : aliased in out Node; Index : Positive; Value : Node_Access) is abstract; -- Assign node's child by its position. not overriding function Nested_Changes (Self : Node; From : Version_Trees.Version; To : Version_Trees.Version) return Boolean is abstract; -- Check if any node under subtree rooted by Self (exluding Self node) -- was changed in any way between given two versions. not overriding function Local_Changes (Self : Node; From : Version_Trees.Version; To : Version_Trees.Version) return Boolean is abstract; -- Check if node itself was changed in any way between given two versions. not overriding function Nested_Errors (Self : Node; Time : Version_Trees.Version) return Boolean is abstract; -- Check if any node under subtree rooted by Self (exluding Self node) -- has errors in given version. not overriding function Local_Errors (Self : Node; Time : Version_Trees.Version) return Boolean is abstract; -- Check if node itself has errors in given version. not overriding procedure Set_Local_Errors (Self : in out Node; Value : Boolean := True) is abstract; not overriding function Parent (Self : Node; Time : Version_Trees.Version) return Node_Access is abstract; -- Return parent of the node. Could be temporary null in changing version. not overriding procedure Set_Parent (Self : in out Node; Value : Node_Access) is abstract; -- ??? should it be hidden not overriding procedure Discard (Self : in out Node) is abstract; -- Discards any uncommitted modifications to this node. not overriding function Exists (Self : Node; Time : Version_Trees.Version) return Boolean is abstract; -- Check if given node still exist at given time/version. type Transient_Flags is (Need_Analysis, Bottom_Up_Reused); -- These flags valid only at changing version and reset by commit. -- -- @value Need_Analysis mark nodes to analyse them latter -- @value Bottom_Up_Reused mark reused nodes not overriding function Get_Flag (Self : Node; Flag : Transient_Flags) return Boolean is abstract; -- Return given transient flag of the node not overriding procedure Set_Flag (Self : in out Node; Flag : Transient_Flags; Value : Boolean := True) is abstract; -- Set given transient flag on the node type Span_Kinds is (Text_Length, Token_Count, Line_Count); not overriding function Span (Self : aliased in out Node; Kind : Span_Kinds; Time : Version_Trees.Version) return Natural is abstract; -- Length of the node in term of character/line/token count LF : constant Wide_Wide_Character := Ada.Characters.Wide_Wide_Latin_1.LF; function First_Token (Self : aliased in out Node'Class; Time : Version_Trees.Version) return Tokens.Token_Access; -- Return first token in subtree rooted by given Node if any function Last_Token (Self : aliased in out Node'Class; Time : Version_Trees.Version) return Tokens.Token_Access; -- Return last token in subtree rooted by given Node if any function Next_Subtree (Self : Node'Class; Time : Version_Trees.Version) return Node_Access; -- Return next subtree: -- * return sibling node if Node is not the last child of its parent -- * return next subtree of the parent otherwise function Previous_Subtree (Self : Node'Class; Time : Version_Trees.Version) return Node_Access; -- Return previous subtree: -- * return sibling node if Node is not the first child of its parent -- * return previous subtree of the parent otherwise -- Internal subprograms: not overriding procedure On_Commit (Self : in out Node; Parent : Node_Access) is abstract; not overriding procedure On_Nested_Changes (Self : in out Node; Diff : Integer) is abstract; not overriding procedure Discard_Parent (Self : in out Node) is abstract; private type Constant_Node_Access is access constant Node'Class; type Flag_Array is array (Transient_Flags) of Boolean with Pack; No_Flags : constant Flag_Array := (others => False); Local_Changes_Mask : constant Flag_Array := (Need_Analysis => True, Bottom_Up_Reused => False); package Versioned_Booleans is new Version_Trees.Versioned_Values (Boolean); package Versioned_Nodes is new Version_Trees.Versioned_Values (Node_Access); type Node (Document : Documents.Document_Access) is abstract tagged null record; procedure Propagate_Nested_Changes (Self : in out Node'Class; Diff : Integer); type Node_With_Exist is abstract new Node with record Exist : Versioned_Booleans.Container; LC : Versioned_Booleans.Container; -- Versioned local changes LE : Versioned_Booleans.Container; -- Versioned local errors -- Transient fields valid during current version only Local_Changes : Natural := 0; Nested_Changes : Natural := 0; Flag : Flag_Array := No_Flags; end record; not overriding procedure Update_Local_Changes (Self : in out Node_With_Exist; Diff : Integer); overriding procedure On_Nested_Changes (Self : in out Node_With_Exist; Diff : Integer); overriding function Exists (Self : Node_With_Exist; Time : Version_Trees.Version) return Boolean; overriding function Get_Flag (Self : Node_With_Exist; Flag : Transient_Flags) return Boolean; overriding procedure Set_Flag (Self : in out Node_With_Exist; Flag : Transient_Flags; Value : Boolean := True); overriding procedure On_Commit (Self : in out Node_With_Exist; Parent : Node_Access); overriding function Local_Changes (Self : Node_With_Exist; From : Version_Trees.Version; To : Version_Trees.Version) return Boolean; overriding function Local_Errors (Self : Node_With_Exist; Time : Version_Trees.Version) return Boolean; overriding procedure Set_Local_Errors (Self : in out Node_With_Exist; Value : Boolean := True); type Node_With_Parent is abstract new Node_With_Exist with record Parent : Versioned_Nodes.Container; -- Parent is NOT a property of the node! Don't account it in calculation -- of local/nested change flags. end record; overriding function Parent (Self : Node_With_Parent; Time : Version_Trees.Version) return Node_Access; overriding procedure Set_Parent (Self : in out Node_With_Parent; Value : Node_Access); overriding procedure Discard_Parent (Self : in out Node_With_Parent); package Constructors is procedure Initialize (Self : aliased in out Node_With_Parent'Class); -- Initialize Self as nonexistent node. procedure Initialize_Ancient (Self : aliased in out Node_With_Parent'Class; Parent : Node_Access); -- Initialize Self as node existent in initial version of the document. end Constructors; procedure Mark_Deleted_Children (Self : in out Node'Class); -- Check each child of Self if it is not connected to the tree and mark it -- as non-existent in current version. function Child_Index (Self : Node'Class; Child : Constant_Node_Access; Time : Version_Trees.Version) return Natural; end Incr.Nodes;
kraileth/ravenadm
Ada
12,678
ads
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../License.txt with Port_Specification; private with Parameters; package PortScan.Operations is -- Call before executing sanity check. It checks the present of build -- hooks at the synth_conf location and caches the results. procedure initialize_hooks; -- Fire off first hook (run_start) as a bulk build starts procedure run_start_hook; -- For the pkg(8), trigger a success or failure hook based on if it built or not. procedure run_hook_after_build (built : Boolean; id : port_id); -- Removes ??_history.json files from previous runs procedure delete_existing_web_history_files; -- Figure package names from portlist and remove all existing packages from that set. procedure delete_existing_packages_of_ports_list; -- Look in build queue and return the next ignore port in the queue (if it exists). function next_ignored_port return port_id; -- Returns true if every port in the queue has all of ports listed in the -- blocks and blocked_by containers are all also present in the queue function integrity_intact return Boolean; -- This removes the first reverse dependency port from all_ports that is -- found the complete reverse deps list and return the port_id of the -- deleted port. If the list is empty, return port_match_failed instead. function skip_next_reverse_dependency (pinnacle : port_id) return port_id; -- Exposed for pilot which eliminated ignored ports during the sanity check procedure record_history_ignored (elapsed : String; bucket : String; origin : String; reason : String; skips : Natural); -- The port build failed, so set all reverse dependences as skipped -- Remove the port from the queue when this is done. -- Exposed for pilot procedure cascade_failed_build (id : port_id; numskipped : out Natural); -- removes processed port from the top of ranking queue and returns the port id function unlist_first_port return port_id; -- Returns True on success; stores value in global external_repository function located_external_repository return Boolean; -- Returns the value of the stored external repository function top_external_repository return String; -- If performing a limited build run (likely 99% of the use cases), only -- the queued packages will be checked. The checks are limited to finding -- options changes and dependency changes. Obsolete packages (related or -- unrelated to upcoming build) are not removed; this would occur in -- clean_repository(). These old packages will not interfere at this step. procedure limited_sanity_check (repository : String; dry_run : Boolean; rebuild_compiler : Boolean; rebuild_binutils : Boolean; suppress_remote : Boolean; major_release : String; architecture : supported_arch); -- Unconditionally copies web assets to <log directory/report directory -- It also provides an initial summary.json data file just the report has something to load procedure initialize_web_report (num_builders : builders); -- Kicks off curses or sets color support off. Do it before -- calling parallel_bulk_run. procedure initialize_display (num_builders : builders); -- Kick off bulk run using the given number of builders -- The rank_queue and all_ports must be already set up (it's recommended -- To eliminate the ignored ports and subsequent skips first. procedure parallel_bulk_run (num_builders : builders; sysrootver : sysroot_characteristics); -- Explodes the buildsheet after applying directives, and returns True if all the subpackges -- were successfully built. Exposes for use by test mode from pilot function build_subpackages (builder : builders; sequence_id : port_id; sysrootver : sysroot_characteristics; interactive : Boolean := False; enterafter : String := "") return Boolean; function skip_verified (id : port_id) return Boolean; -- Generic parse/transform routine for a given buildsheet or specification file -- With a specification file. procedure parse_and_transform_buildsheet (specification : in out Port_Specification.Portspecs; successful : out Boolean; buildsheet : String; variant : String; portloc : String; excl_targets : Boolean; avoid_dialog : Boolean; for_webpage : Boolean; sysrootver : sysroot_characteristics); -- Using a populated package_list, cross off all package names that are found in the current -- all_ports data. Whatever is left represents obsolete packages which are then removed. procedure eliminate_obsolete_packages; -- Using a populated package list, print out all subpackages for each package procedure list_subpackages_of_queued_ports; private package PM renames Parameters; type hook_type is (run_start, run_end, pkg_success, pkg_failure, pkg_skipped, pkg_ignored); type dim_hooks is array (hook_type) of Boolean; type dim_hooksloc is array (hook_type) of HT.Text; type machine_state is (idle, tasked, busy, done_failure, done_success, shutdown); type dim_instruction is array (builders) of port_id; type dim_builder_state is array (builders) of machine_state; active_hook : dim_hooks := (False, False, False, False, False, False); hook_location : constant dim_hooksloc := (HT.SUS (PM.raven_confdir & "/hook_run_start"), HT.SUS (PM.raven_confdir & "/hook_run_end"), HT.SUS (PM.raven_confdir & "/hook_pkg_success"), HT.SUS (PM.raven_confdir & "/hook_pkg_failure"), HT.SUS (PM.raven_confdir & "/hook_pkg_skipped"), HT.SUS (PM.raven_confdir & "/hook_pkg_ignored")); -- History log entries average less than 200 bytes. Allot more than twice this amount. kfile_unit_maxsize : constant Positive := 512; -- Each history segment is limited to this many log lines kfile_units_limit : constant Positive := 500; subtype filearch is String (1 .. 11); subtype impulse_range is Integer range 1 .. 500; subtype kfile_content is String (1 .. kfile_unit_maxsize * kfile_units_limit); type progress_history is record segment : Natural := 0; segment_count : Natural := 0; log_entry : Natural := 0; last_index : Natural := 0; last_written : Natural := 0; content : kfile_content; end record; type package_abi is record calculated_abi : HT.Text; calculated_alt_abi : HT.Text; calc_abi_noarch : HT.Text; calc_alt_abi_noarch : HT.Text; end record; type subpackage_identifier is record id : port_index; subpackage : HT.Text; end record; package subpackage_queue is new CON.Vectors (Element_Type => subpackage_identifier, Index_Type => port_index); pkgscan_progress : dim_progress := (others => 0); pkgscan_total : Natural := 0; history : progress_history; abi_formats : package_abi; curses_support : Boolean := False; external_repository : HT.Text; -- Debugging purposes only, can be turned on by environment variable debug_dep_check : Boolean := False; debug_opt_check : Boolean := False; -- Return true if file is executable (platform-specific) function file_is_executable (filename : String) return Boolean; procedure run_hook (hook : hook_type; envvar_list : String); procedure run_package_hook (hook : hook_type; id : port_id); function nv (name, value : String) return String; function nv (name : String; value : Integer) return String; procedure assimulate_substring (history : in out progress_history; substring : String); procedure handle_first_history_entry; procedure check_history_segment_capacity; procedure delete_rank (id : port_id); function still_ranked (id : port_id) return Boolean; function rank_arrow (id : port_id) return ranking_crate.Cursor; function get_swap_status return Float; function swapinfo_command return String; function nothing_left (num_builders : builders) return Boolean; function shutdown_recommended (active_builders : Positive) return Boolean; procedure write_history_json; procedure write_summary_json (active : Boolean; states : dim_builder_state; num_builders : builders; num_history_files : Natural); procedure record_history_skipped (elapsed : String; bucket : String; origin : String; reason : String); procedure record_history_built (elapsed : String; slave_id : builders; bucket : String; origin : String; duration : String); procedure record_history_failed (elapsed : String; slave_id : builders; bucket : String; origin : String; duration : String; die_phase : String; skips : Natural); -- This calculates the ABI for the platform and stores it. The value is -- used by passed_abi_check() procedure establish_package_architecture (release : String; architecture : supported_arch); -- Use file to determine arch on ELF platforms function isolate_arch_from_file_type (fileinfo : String) return filearch; -- Use file to dtermine arch on MacOS function isolate_arch_from_macho_file (fileinfo : String) return filearch; -- This function returns "True" if the scanned dependencies match exactly -- what the current ports tree has. function passed_dependency_check (subpackage : String; query_result : HT.Text; id : port_id) return Boolean; -- Turn on option and dependency debug checks programmatically procedure activate_debugging_code; -- The result of the dependency query giving "id" port_id function result_of_dependency_query (repository : String; id : port_id; subpackage : String) return HT.Text; -- Dedicated progress meter for prescanning packages function package_scan_progress return String; -- For each package in the query, check the ABI and options (this is the -- only time they are checked). If those pass, query the dependencies, -- store the result, and check them. Set the "deletion" flag as needed. -- The dependency check is NOT performed yet. procedure initial_package_scan (repository : String; id : port_id; subpackage : String); -- Same as above, but for packages in the external repository procedure remote_package_scan (id : port_id; subpackage : String); -- Using the same make_queue as was used to scan the ports, use tasks (up to 32) to do the -- initial scanning of the ports, including getting the pkg dependency query. procedure parallel_package_scan (repository : String; remote_scan : Boolean; show_progress : Boolean); -- The port build succeeded, so remove the "blocked_by" designation -- for all the immediate reverse dependencies. -- Remove the port from the queue when this is done. procedure cascade_successful_build (id : port_id); -- This function returns "True" if the scanned package has the expected -- package ABI, e.g. dragonfly:4.6:x86:64, freebsd:10:amd64 function passed_abi_check (repository : String; id : port_id; subpackage : String; skip_exist_check : Boolean := False) return Boolean; -- This function returns "True" if the scanned options exactly match -- the options in the already-built package. Usually it's already known -- that a package exists before the function is called, but an existence -- check will be performed just in case (failure returns "False") function passed_option_check (repository : String; id : port_id; subpackage : String; skip_exist_check : Boolean := False) return Boolean; -- Before starting to build a port, lock it. This is required for -- parallel building. procedure lock_package (id : port_id); -- Returns the highly priority buildable port function top_buildable_port return port_id; -- removes processed port from the ranking queue. procedure unlist_port (id : port_id); end PortScan.Operations;
msrLi/portingSources
Ada
801
ads
-- Copyright 2008-2014 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with System; package Pck is procedure Do_Nothing (A : System.Address); end Pck;
BrickBot/Bound-T-H8-300
Ada
2,603
ads
-- Loops.Opt (decl) -- -- Command-line options for loop identification. -- -- Author: Niklas Holsti, Tidorum Ltd -- -- A component of the Bound-T Worst-Case Execution Time Tool. -- ------------------------------------------------------------------------------- -- Copyright (c) 1999 .. 2015 Tidorum Ltd -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- 1. Redistributions of source code must retain the above copyright notice, this -- list of conditions and the following disclaimer. -- 2. Redistributions in binary form must reproduce the above copyright notice, -- this list of conditions and the following disclaimer in the documentation -- and/or other materials provided with the distribution. -- -- This software is provided by the copyright holders and contributors "as is" and -- any express or implied warranties, including, but not limited to, the implied -- warranties of merchantability and fitness for a particular purpose are -- disclaimed. In no event shall the copyright owner or contributors be liable for -- any direct, indirect, incidental, special, exemplary, or consequential damages -- (including, but not limited to, procurement of substitute goods or services; -- loss of use, data, or profits; or business interruption) however caused and -- on any theory of liability, whether in contract, strict liability, or tort -- (including negligence or otherwise) arising in any way out of the use of this -- software, even if advised of the possibility of such damage. -- -- Other modules (files) of this software composition should contain their -- own copyright statements, which may have different copyright and usage -- conditions. The above conditions apply to this file. ------------------------------------------------------------------------------- -- -- $Revision: 1.3 $ -- $Date: 2015/10/24 19:36:50 $ -- -- $Log: loops-opt.ads,v $ -- Revision 1.3 2015/10/24 19:36:50 niklas -- Moved to free licence. -- -- Revision 1.2 2011-08-31 04:23:34 niklas -- BT-CH-0222: Option registry. Option -dump. External help files. -- -- Revision 1.1 2005/08/08 13:58:28 niklas -- First version. -- with Options.Bool; package Loops.Opt is pragma Elaborate_Body; -- -- To register the options. Trace_Iteration_Opt : aliased Options.Bool.Option_T (Default => False); -- -- Whether to trace the progress of the loop-finding algorithms. -- Trace_Iteration : Boolean renames Trace_Iteration_Opt.Value; end Loops.Opt;
BrickBot/Bound-T-H8-300
Ada
2,867
ads
-- Calling.Opt (decl) -- -- Command-line options for the analysing calls and calling protocols. -- -- A component of the Bound-T Worst-Case Execution Time Tool. -- ------------------------------------------------------------------------------- -- Copyright (c) 1999 .. 2015 Tidorum Ltd -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- 1. Redistributions of source code must retain the above copyright notice, this -- list of conditions and the following disclaimer. -- 2. Redistributions in binary form must reproduce the above copyright notice, -- this list of conditions and the following disclaimer in the documentation -- and/or other materials provided with the distribution. -- -- This software is provided by the copyright holders and contributors "as is" and -- any express or implied warranties, including, but not limited to, the implied -- warranties of merchantability and fitness for a particular purpose are -- disclaimed. In no event shall the copyright owner or contributors be liable for -- any direct, indirect, incidental, special, exemplary, or consequential damages -- (including, but not limited to, procurement of substitute goods or services; -- loss of use, data, or profits; or business interruption) however caused and -- on any theory of liability, whether in contract, strict liability, or tort -- (including negligence or otherwise) arising in any way out of the use of this -- software, even if advised of the possibility of such damage. -- -- Other modules (files) of this software composition should contain their -- own copyright statements, which may have different copyright and usage -- conditions. The above conditions apply to this file. ------------------------------------------------------------------------------- -- -- $Revision: 1.3 $ -- $Date: 2015/10/24 19:36:48 $ -- -- $Log: calling-opt.ads,v $ -- Revision 1.3 2015/10/24 19:36:48 niklas -- Moved to free licence. -- -- Revision 1.2 2011-08-31 04:23:34 niklas -- BT-CH-0222: Option registry. Option -dump. External help files. -- -- Revision 1.1 2005/02/23 09:05:15 niklas -- BT-CH-0005. -- with Options.Bool; package Calling.Opt is pragma Elaborate_Body; -- -- To register the options. Trace_Protocols_Opt : aliased Options.Bool.Option_T (Default => False); -- -- Whether to trace the bounding of dynamic calling protocols. -- Trace_Protocols : Boolean renames Trace_Protocols_Opt.Value; Trace_Parameters_Opt : aliased Options.Bool.Option_T (Default => False); -- -- Whether to trace the bounds on parameter values, derived from -- the calling context, for call-dependent bounding. -- Trace_Parameters : Boolean renames Trace_Parameters_Opt.Value; end Calling.Opt;
reznikmm/matreshka
Ada
3,764
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Text_Bullet_Relative_Size_Attributes is pragma Preelaborate; type ODF_Text_Bullet_Relative_Size_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Text_Bullet_Relative_Size_Attribute_Access is access all ODF_Text_Bullet_Relative_Size_Attribute'Class with Storage_Size => 0; end ODF.DOM.Text_Bullet_Relative_Size_Attributes;
iyan22/AprendeAda
Ada
3,107
adb
with Ada.Text_Io, Datos; with Crear_Lista_Vacia, Ins, Esc, Eliminar_Primera_Aparicion; use Datos; use Ada.Text_Io; procedure Prueba_Eliminar_Primera_Aparicion is Lis : Lista; -- variable del programa principal procedure Pedir_Return is begin Put_Line("pulsa return para continuar "); Skip_Line; end Pedir_Return; begin -- programa principal -- Casos de prueba: -- 1. Eliminar en la lista vacia. Resultado: lista vacia -- 2. Eliminar en lista no vacia. -- 2.1 Un elemento que no esta en la lista. Resultado: lista inicial -- 2.2 Eliminar un elemento que si esta en la lista -- 2.2.1 Lista de un solo elemento. Resultado: lista vacia -- 2.2.2 Lista de mas de un elemento. Eliminar en el medio. -- 2.2.3 Lista de mas de un elemento. Eliminar el ultimo. Put_Line("Programa de prueba: "); Put_Line("*********"); Crear_Lista_Vacia(Lis); Put_Line("Caso de prueba 1: Eliminar en la lista vacia "); Eliminar_Primera_Aparicion(Lis, 5); Put_Line("Ahora deberia escribir la lista vacia: "); Esc(Lis); New_Line; New_Line; Pedir_Return; Crear_Lista_Vacia(Lis); Ins(Lis, 4); Ins(Lis, 9); Ins(Lis, 7); Ins(Lis, 5); Put_Line("Caso de prueba 2.1: valor que no esta en la lista."); Put_Line("Llamada a: Eliminar_Primera_Aparicion(Lis, 8)"); Put_Line("La lista inicial contiene "); Esc(Lis); Eliminar_Primera_Aparicion(Lis, 8); Put_Line("Ahora deberia escribir la lista <5, 7, 9, 4> "); Esc(Lis); New_Line; New_Line; Pedir_Return; Crear_Lista_Vacia(Lis); Ins(Lis, 8); Put("Caso de prueba 2.2.1: Valor que si esta en la lista. "); Put_Line("Lista de un solo elemento"); Put_Line("Llamada a: Eliminar_Primera_Aparicion(Lis, 8)"); Put_Line("La lista inicial contiene "); Esc(Lis); Eliminar_Primera_Aparicion(Lis, 8); Put_Line("Ahora deberia escribir la lista vacia: "); Esc(Lis); New_Line; New_Line; Pedir_Return; Crear_Lista_Vacia(Lis); Ins(Lis, 8); Ins(Lis, 10); Ins(Lis, 12); Put_Line( "Caso de prueba 2.2.2: Valor que si esta en la lista."); Put_Line( " Lista con mas de un elemento. Eliminar en medio."); Put_Line("Llamada a: Eliminar_Primera_Aparicion(Lis, 10)"); Put_Line("La lista inicial contiene "); Esc(Lis); Eliminar_Primera_Aparicion(Lis, 10); Put_Line("Ahora deberia escribir la lista <12, 8> "); Esc(Lis); New_Line; New_Line; Pedir_Return; Crear_Lista_Vacia(Lis); Ins(Lis, 12); Ins(Lis, 10); Ins(Lis, 8); Put_Line( "Caso de prueba 2.2.3: Valor que si esta en la lista."); Put_Line( " Lista con mas de un elemento. Eliminar el ultimo."); Put_Line("Llamada a: Eliminar_Primera_Aparicion(Lis, 12)"); Put_Line("La lista inicial contiene "); Esc(Lis); Eliminar_Primera_Aparicion(Lis, 12); Put_Line("Ahora deberia escribir la lista <8, 10> "); Esc(Lis); New_Line; New_Line; Pedir_Return; Put_Line("Se acabo la prueba. Agur "); end Prueba_Eliminar_Primera_Aparicion;
zhmu/ananas
Ada
6,344
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . O S _ P R I M I T I V E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1998-2022, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This version is for POSIX-like operating systems with System.Parameters; package body System.OS_Primitives is -- ??? These definitions are duplicated from System.OS_Interface -- because we don't want to depend on any package. Consider removing -- these declarations in System.OS_Interface and move these ones in -- the spec. type time_t is range -2 ** (System.Parameters.time_t_bits - 1) .. 2 ** (System.Parameters.time_t_bits - 1) - 1; type timespec is record tv_sec : time_t; tv_nsec : Long_Integer; end record; pragma Convention (C, timespec); function nanosleep (rqtp, rmtp : not null access timespec) return Integer; pragma Import (C, nanosleep, "nanosleep"); ----------- -- Clock -- ----------- function Clock return Duration is type timeval is record tv_sec : time_t; tv_usec : Long_Integer; end record; pragma Convention (C, timeval); procedure timeval_to_duration (T : not null access timeval; sec : not null access Long_Long_Integer; usec : not null access Long_Integer); pragma Import (C, timeval_to_duration, "__gnat_timeval_to_duration"); Micro : constant := 10**6; sec : aliased Long_Long_Integer; usec : aliased Long_Integer; TV : aliased timeval; Result : Integer; pragma Unreferenced (Result); function gettimeofday (Tv : access timeval; Tz : System.Address := System.Null_Address) return Integer; pragma Import (C, gettimeofday, "gettimeofday"); begin -- The return codes for gettimeofday are as follows (from man pages): -- EPERM settimeofday is called by someone other than the superuser -- EINVAL Timezone (or something else) is invalid -- EFAULT One of tv or tz pointed outside accessible address space -- None of these codes signal a potential clock skew, hence the return -- value is never checked. Result := gettimeofday (TV'Access, System.Null_Address); timeval_to_duration (TV'Access, sec'Access, usec'Access); return Duration (sec) + Duration (usec) / Micro; end Clock; ----------------- -- To_Timespec -- ----------------- function To_Timespec (D : Duration) return timespec; function To_Timespec (D : Duration) return timespec is S : time_t; F : Duration; begin S := time_t (Long_Long_Integer (D)); F := D - Duration (S); -- If F has negative value due to a round-up, adjust for positive F -- value. if F < 0.0 then S := S - 1; F := F + 1.0; end if; return timespec'(tv_sec => S, tv_nsec => Long_Integer (Long_Long_Integer (F * 10#1#E9))); end To_Timespec; ----------------- -- Timed_Delay -- ----------------- procedure Timed_Delay (Time : Duration; Mode : Integer) is Request : aliased timespec; Remaind : aliased timespec; Rel_Time : Duration; Abs_Time : Duration; Base_Time : constant Duration := Clock; Check_Time : Duration := Base_Time; Result : Integer; pragma Unreferenced (Result); begin if Mode = Relative then Rel_Time := Time; Abs_Time := Time + Check_Time; else Rel_Time := Time - Check_Time; Abs_Time := Time; end if; if Rel_Time > 0.0 then loop Request := To_Timespec (Rel_Time); Result := nanosleep (Request'Access, Remaind'Access); Check_Time := Clock; exit when Abs_Time <= Check_Time or else Check_Time < Base_Time; Rel_Time := Abs_Time - Check_Time; end loop; end if; end Timed_Delay; ---------------- -- Initialize -- ---------------- procedure Initialize is begin null; end Initialize; end System.OS_Primitives;
zhmu/ananas
Ada
7,934
ads
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M -- -- -- -- S p e c -- -- (VxWorks 7.x PPC RTP) -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the VxWorks version of this package for RTPs package System is pragma Pure; -- Note that we take advantage of the implementation permission to make -- this unit Pure instead of Preelaborable; see RM 13.7.1(15). In Ada -- 2005, this is Pure in any case (AI-362). pragma No_Elaboration_Code_All; -- Allow the use of that restriction in units that WITH this unit type Name is (SYSTEM_NAME_GNAT); System_Name : constant Name := SYSTEM_NAME_GNAT; -- System-Dependent Named Numbers Min_Int : constant := -2 ** (Standard'Max_Integer_Size - 1); Max_Int : constant := 2 ** (Standard'Max_Integer_Size - 1) - 1; Max_Binary_Modulus : constant := 2 ** Standard'Max_Integer_Size; Max_Nonbinary_Modulus : constant := 2 ** Integer'Size - 1; Max_Base_Digits : constant := Long_Long_Float'Digits; Max_Digits : constant := Long_Long_Float'Digits; Max_Mantissa : constant := Standard'Max_Integer_Size - 1; Fine_Delta : constant := 2.0 ** (-Max_Mantissa); Tick : constant := 1.0 / 60.0; -- Storage-related Declarations type Address is private; pragma Preelaborable_Initialization (Address); Null_Address : constant Address; Storage_Unit : constant := 8; Word_Size : constant := 32; Memory_Size : constant := 2 ** 32; -- Address comparison function "<" (Left, Right : Address) return Boolean; function "<=" (Left, Right : Address) return Boolean; function ">" (Left, Right : Address) return Boolean; function ">=" (Left, Right : Address) return Boolean; function "=" (Left, Right : Address) return Boolean; pragma Import (Intrinsic, "<"); pragma Import (Intrinsic, "<="); pragma Import (Intrinsic, ">"); pragma Import (Intrinsic, ">="); pragma Import (Intrinsic, "="); -- Other System-Dependent Declarations type Bit_Order is (High_Order_First, Low_Order_First); Default_Bit_Order : constant Bit_Order := High_Order_First; pragma Warnings (Off, Default_Bit_Order); -- kill constant condition warning -- Priority-related Declarations (RM D.1) -- Ada priorities are mapped to VxWorks priorities using the following -- transformation: 255 - Ada Priority -- Ada priorities are used as follows: -- 256 is reserved for the VxWorks kernel -- 248 - 255 correspond to hardware interrupt levels 0 .. 7 -- 247 is a catchall default "interrupt" priority for signals, -- allowing higher priority than normal tasks, but lower than -- hardware priority levels. Protected Object ceilings can -- override these values. -- 246 is used by the Interrupt_Manager task Max_Priority : constant Positive := 245; Max_Interrupt_Priority : constant Positive := 255; subtype Any_Priority is Integer range 0 .. 255; subtype Priority is Any_Priority range 0 .. 245; subtype Interrupt_Priority is Any_Priority range 246 .. 255; Default_Priority : constant Priority := 122; private pragma Linker_Options ("--specs=vxworks7-rtp-base-link.spec"); -- Define the symbol wrs_rtp_base type Address is mod Memory_Size; Null_Address : constant Address := 0; -------------------------------------- -- System Implementation Parameters -- -------------------------------------- -- These parameters provide information about the target that is used -- by the compiler. They are in the private part of System, where they -- can be accessed using the special circuitry in the Targparm unit -- whose source should be consulted for more detailed descriptions -- of the individual switch values. Backend_Divide_Checks : constant Boolean := False; Backend_Overflow_Checks : constant Boolean := True; Command_Line_Args : constant Boolean := True; Configurable_Run_Time : constant Boolean := False; Denorm : constant Boolean := True; Duration_32_Bits : constant Boolean := False; Exit_Status_Supported : constant Boolean := True; Machine_Overflows : constant Boolean := False; Machine_Rounds : constant Boolean := True; Preallocated_Stacks : constant Boolean := False; Signed_Zeros : constant Boolean := True; Stack_Check_Default : constant Boolean := False; Stack_Check_Probes : constant Boolean := True; Stack_Check_Limits : constant Boolean := False; Support_Aggregates : constant Boolean := True; Support_Composite_Assign : constant Boolean := True; Support_Composite_Compare : constant Boolean := True; Support_Long_Shifts : constant Boolean := True; Always_Compatible_Rep : constant Boolean := False; Suppress_Standard_Library : constant Boolean := False; Use_Ada_Main_Program_Name : constant Boolean := False; Frontend_Exceptions : constant Boolean := False; ZCX_By_Default : constant Boolean := True; Executable_Extension : constant String := ".vxe"; end System;
AdaCore/libadalang
Ada
766
ads
with Libadalang.Analysis; with Colors; with Highlighter; package Term256 is package LAL renames Libadalang.Analysis; function Style_To_ANSI (Style : Colors.Token_Style) return String; -- Return the ANSI escape sequence to materialize the given token style generic with procedure Put (S : String); procedure Put_Tokens (Unit : LAL.Analysis_Unit; Highlights : Highlighter.Highlights_Holder; S : Colors.Style_Type; Charset : String) with Pre => Highlighter.Highlights_Match_Unit (Unit, Highlights); -- Using Put, write text with ANSI escape sequences to syntax highlight -- source code from Unit according to the input highlighting data and the -- S highlighting style. end Term256;
stcarrez/ada-keystore
Ada
7,351
adb
----------------------------------------------------------------------- -- keystore-properties -- Property manager on top of keystore -- Copyright (C) 2020, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Beans.Objects; package body Keystore.Properties is type Wallet_Manager is limited new Util.Properties.Implementation.Manager with record Wallet : Wallet_File_Access; Props : Util.Properties.Manager; end record; type Keystore_Manager_Access is access all Wallet_Manager'Class; -- Get the value identified by the name. -- If the name cannot be found, the method should return the Null object. overriding function Get_Value (From : in Wallet_Manager; Name : in String) return Util.Beans.Objects.Object; -- Set the value identified by the name. -- If the map contains the given name, the value changed. -- Otherwise name is added to the map and the value associated with it. overriding procedure Set_Value (From : in out Wallet_Manager; Name : in String; Value : in Util.Beans.Objects.Object); -- Returns TRUE if the property exists. overriding function Exists (Self : in Wallet_Manager; Name : in String) return Boolean; -- Remove the property given its name. overriding procedure Remove (Self : in out Wallet_Manager; Name : in String); -- Iterate over the properties and execute the given procedure passing the -- property name and its value. overriding procedure Iterate (Self : in Wallet_Manager; Process : access procedure (Name : in String; Item : in Util.Beans.Objects.Object)); -- Deep copy of properties stored in 'From' to 'To'. overriding function Create_Copy (Self : in Wallet_Manager) return Util.Properties.Implementation.Manager_Access; package Shared_Manager is new Util.Properties.Implementation.Shared_Implementation (Wallet_Manager); subtype Property_Map is Shared_Manager.Manager; type Property_Map_Access is access all Property_Map; function Allocate_Property return Util.Properties.Implementation.Shared_Manager_Access is (new Property_Map); -- Create a property implementation if there is none yet. procedure Check_And_Create_Impl is new Util.Properties.Implementation.Create (Allocator => Allocate_Property); overriding procedure Initialize (Object : in out Manager) is begin Check_And_Create_Impl (Object); end Initialize; -- ------------------------------ -- Get the value identified by the name. -- If the name cannot be found, the method should return the Null object. -- ------------------------------ overriding function Get_Value (From : in Wallet_Manager; Name : in String) return Util.Beans.Objects.Object is begin if From.Wallet.Contains (Name) then declare Value : constant String := From.Wallet.Get (Name); begin return Util.Beans.Objects.To_Object (Value); end; else return Util.Beans.Objects.Null_Object; end if; exception when Not_Found => return Util.Beans.Objects.Null_Object; end Get_Value; -- ------------------------------ -- Set the value identified by the name. -- If the map contains the given name, the value changed. -- Otherwise name is added to the map and the value associated with it. -- ------------------------------ overriding procedure Set_Value (From : in out Wallet_Manager; Name : in String; Value : in Util.Beans.Objects.Object) is begin From.Wallet.Set (Name, Util.Beans.Objects.To_String (Value)); end Set_Value; -- ------------------------------ -- Returns TRUE if the property exists. -- ------------------------------ overriding function Exists (Self : in Wallet_Manager; Name : in String) return Boolean is begin return Self.Wallet.Contains (Name); end Exists; -- ------------------------------ -- Remove the property given its name. -- ------------------------------ overriding procedure Remove (Self : in out Wallet_Manager; Name : in String) is begin if Self.Wallet.Contains (Name) then Self.Wallet.Delete (Name); end if; end Remove; -- ------------------------------ -- Iterate over the properties and execute the given procedure passing the -- property name and its value. -- ------------------------------ overriding procedure Iterate (Self : in Wallet_Manager; Process : access procedure (Name : in String; Item : in Util.Beans.Objects.Object)) is List : Keystore.Entry_Map; Iter : Keystore.Entry_Cursor; begin Self.Wallet.List (Filter => (T_STRING => True, others => False), Content => List); Iter := List.First; while Keystore.Entry_Maps.Has_Element (Iter) loop declare Name : constant String := Keystore.Entry_Maps.Key (Iter); Value : constant String := Self.Wallet.Get (Name); begin Process (Name, Util.Beans.Objects.To_Object (Value)); end; Keystore.Entry_Maps.Next (Iter); end loop; end Iterate; -- ------------------------------ -- Deep copy of properties stored in 'From' to 'To'. -- ------------------------------ overriding function Create_Copy (Self : in Wallet_Manager) return Util.Properties.Implementation.Manager_Access is Result : constant Keystore_Manager_Access := new Property_Map; begin Result.Wallet := Self.Wallet; Result.Props := Self.Props; return Result.all'Access; end Create_Copy; procedure Initialize (Props : in out Manager'Class; Wallet : in Wallet_File_Access) is function Allocate return Util.Properties.Implementation.Shared_Manager_Access; function Allocate return Util.Properties.Implementation.Shared_Manager_Access is Impl : constant Property_Map_Access := new Property_Map; begin Impl.Wallet := Wallet; return Impl.all'Access; end Allocate; procedure Setup is new Util.Properties.Implementation.Initialize (Allocate); begin Setup (Props); end Initialize; end Keystore.Properties;
persan/A-gst
Ada
8,607
ads
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with glib; with glib.Values; with System; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_controller_gstcontrolsource_h; -- limited -- with GStreamer.GST_Low_Level.glib_2_0_glib_gthread_h; with System; with glib; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstclock_h; -- limited with GStreamer.GST_Low_Level.glib_2_0_glib_gslist_h; -- limited with GStreamer.GST_Low_Level.glib_2_0_glib_glist_h; package GStreamer.GST_Low_Level.gstreamer_0_10_gst_controller_gstinterpolationcontrolsource_h is -- unsupported macro: GST_TYPE_INTERPOLATION_CONTROL_SOURCE (gst_interpolation_control_source_get_type ()) -- arg-macro: function GST_INTERPOLATION_CONTROL_SOURCE (obj) -- return G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_INTERPOLATION_CONTROL_SOURCE, GstInterpolationControlSource); -- arg-macro: function GST_INTERPOLATION_CONTROL_SOURCE_CLASS (vtable) -- return G_TYPE_CHECK_CLASS_CAST ((vtable), GST_TYPE_INTERPOLATION_CONTROL_SOURCE, GstInterpolationControlSourceClass); -- arg-macro: function GST_IS_INTERPOLATION_CONTROL_SOURCE (obj) -- return G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_INTERPOLATION_CONTROL_SOURCE); -- arg-macro: function GST_IS_INTERPOLATION_CONTROL_SOURCE_CLASS (vtable) -- return G_TYPE_CHECK_CLASS_TYPE ((vtable), GST_TYPE_INTERPOLATION_CONTROL_SOURCE); -- arg-macro: function GST_INTERPOLATION_CONTROL_SOURCE_GET_CLASS (inst) -- return G_TYPE_INSTANCE_GET_CLASS ((inst), GST_TYPE_INTERPOLATION_CONTROL_SOURCE, GstInterpolationControlSourceClass); -- GStreamer -- * -- * Copyright (C) 2007 Sebastian Dröge <[email protected]> -- * -- * gstinterpolationcontrolsource.h: Control source that provides several -- * interpolation methods -- * -- * This library is free software; you can redistribute it and/or -- * modify it under the terms of the GNU Library General Public -- * License as published by the Free Software Foundation; either -- * version 2 of the License, or (at your option) any later version. -- * -- * This library is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- * Library General Public License for more details. -- * -- * You should have received a copy of the GNU Library General Public -- * License along with this library; if not, write to the -- * Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- * Boston, MA 02111-1307, USA. -- type GstInterpolationControlSource; type u_GstInterpolationControlSource_u_gst_reserved_array is array (0 .. 3) of System.Address; --subtype GstInterpolationControlSource is u_GstInterpolationControlSource; -- gst/controller/gstinterpolationcontrolsource.h:47 type GstInterpolationControlSourceClass; type u_GstInterpolationControlSourceClass_u_gst_reserved_array is array (0 .. 3) of System.Address; --subtype GstInterpolationControlSourceClass is u_GstInterpolationControlSourceClass; -- gst/controller/gstinterpolationcontrolsource.h:48 -- skipped empty struct u_GstInterpolationControlSourcePrivate -- skipped empty struct GstInterpolationControlSourcePrivate --* -- * GstInterpolateMode: -- * @GST_INTERPOLATE_NONE: steps-like interpolation, default -- * @GST_INTERPOLATE_TRIGGER: returns the default value of the property, -- * except for times with specific values -- * @GST_INTERPOLATE_LINEAR: linear interpolation -- * @GST_INTERPOLATE_QUADRATIC: square interpolation (deprecated, maps to cubic) -- * @GST_INTERPOLATE_CUBIC: cubic interpolation -- * @GST_INTERPOLATE_USER: user-provided interpolation (not yet available) -- * -- * The various interpolation modes available. -- type GstInterpolateMode is (GST_INTERPOLATE_NONE, GST_INTERPOLATE_TRIGGER, GST_INTERPOLATE_LINEAR, GST_INTERPOLATE_QUADRATIC, GST_INTERPOLATE_CUBIC, GST_INTERPOLATE_USER); pragma Convention (C, GstInterpolateMode); -- gst/controller/gstinterpolationcontrolsource.h:71 --* -- * GstInterpolationControlSource: -- * -- * The instance structure of #GstControlSource. -- type GstInterpolationControlSource is record parent : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_controller_gstcontrolsource_h.GstControlSource; -- gst/controller/gstinterpolationcontrolsource.h:79 lock : access GStreamer.GST_Low_Level.glib_2_0_glib_gthread_h.GMutex; -- gst/controller/gstinterpolationcontrolsource.h:82 priv : System.Address; -- gst/controller/gstinterpolationcontrolsource.h:83 u_gst_reserved : u_GstInterpolationControlSource_u_gst_reserved_array; -- gst/controller/gstinterpolationcontrolsource.h:84 end record; pragma Convention (C_Pass_By_Copy, GstInterpolationControlSource); -- gst/controller/gstinterpolationcontrolsource.h:78 -- <private> type GstInterpolationControlSourceClass is record parent_class : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_controller_gstcontrolsource_h.GstControlSourceClass; -- gst/controller/gstinterpolationcontrolsource.h:88 u_gst_reserved : u_GstInterpolationControlSourceClass_u_gst_reserved_array; -- gst/controller/gstinterpolationcontrolsource.h:91 end record; pragma Convention (C_Pass_By_Copy, GstInterpolationControlSourceClass); -- gst/controller/gstinterpolationcontrolsource.h:87 --< private > function gst_interpolation_control_source_get_type return GLIB.GType; -- gst/controller/gstinterpolationcontrolsource.h:94 pragma Import (C, gst_interpolation_control_source_get_type, "gst_interpolation_control_source_get_type"); -- Functions function gst_interpolation_control_source_new return access GstInterpolationControlSource; -- gst/controller/gstinterpolationcontrolsource.h:98 pragma Import (C, gst_interpolation_control_source_new, "gst_interpolation_control_source_new"); function gst_interpolation_control_source_set_interpolation_mode (self : access GstInterpolationControlSource; mode : GstInterpolateMode) return GLIB.gboolean; -- gst/controller/gstinterpolationcontrolsource.h:99 pragma Import (C, gst_interpolation_control_source_set_interpolation_mode, "gst_interpolation_control_source_set_interpolation_mode"); function gst_interpolation_control_source_set (self : access GstInterpolationControlSource; timestamp : GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstclock_h.GstClockTime; value : access constant Glib.Values.GValue) return GLIB.gboolean; -- gst/controller/gstinterpolationcontrolsource.h:100 pragma Import (C, gst_interpolation_control_source_set, "gst_interpolation_control_source_set"); function gst_interpolation_control_source_set_from_list (self : access GstInterpolationControlSource; timedvalues : access constant GStreamer.GST_Low_Level.glib_2_0_glib_gslist_h.GSList) return GLIB.gboolean; -- gst/controller/gstinterpolationcontrolsource.h:101 pragma Import (C, gst_interpolation_control_source_set_from_list, "gst_interpolation_control_source_set_from_list"); function gst_interpolation_control_source_unset (self : access GstInterpolationControlSource; timestamp : GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstclock_h.GstClockTime) return GLIB.gboolean; -- gst/controller/gstinterpolationcontrolsource.h:102 pragma Import (C, gst_interpolation_control_source_unset, "gst_interpolation_control_source_unset"); procedure gst_interpolation_control_source_unset_all (self : access GstInterpolationControlSource); -- gst/controller/gstinterpolationcontrolsource.h:103 pragma Import (C, gst_interpolation_control_source_unset_all, "gst_interpolation_control_source_unset_all"); function gst_interpolation_control_source_get_all (self : access GstInterpolationControlSource) return access GStreamer.GST_Low_Level.glib_2_0_glib_glist_h.GList; -- gst/controller/gstinterpolationcontrolsource.h:104 pragma Import (C, gst_interpolation_control_source_get_all, "gst_interpolation_control_source_get_all"); function gst_interpolation_control_source_get_count (self : access GstInterpolationControlSource) return GLIB.gint; -- gst/controller/gstinterpolationcontrolsource.h:105 pragma Import (C, gst_interpolation_control_source_get_count, "gst_interpolation_control_source_get_count"); end GStreamer.GST_Low_Level.gstreamer_0_10_gst_controller_gstinterpolationcontrolsource_h;
Fabien-Chouteau/AGATE
Ada
2,469
ads
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2017, Fabien Chouteau -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with HAL; use HAL; package Tools is function Hex (Value : UInt32) return String; end Tools;
onox/sdlada
Ada
2,307
ads
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2018 Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- -- SDL.Images.Versions -- -- Library version information. -------------------------------------------------------------------------------------------------------------------- with SDL.Versions; package SDL.Images.Versions is -- These allow the user to determine which version of SDLAda_Image they compiled with. Compiled_Major : constant SDL.Versions.Version_Level with Import => True, Convention => C, External_Name => "SDL_Ada_Image_Major_Version"; Compiled_Minor : constant SDL.Versions.Version_Level with Import => True, Convention => C, External_Name => "SDL_Ada_Image_Minor_Version"; Compiled_Patch : constant SDL.Versions.Version_Level with Import => True, Convention => C, External_Name => "SDL_Ada_Image_Patch_Version"; Compiled : constant SDL.Versions.Version := (Major => Compiled_Major, Minor => Compiled_Minor, Patch => Compiled_Patch); procedure Linked_With (Info : in out SDL.Versions.Version); end SDL.Images.Versions;
AdaCore/gpr
Ada
30,302
adb
-- -- Copyright (C) 2020-2023, AdaCore -- -- SPDX-License-Identifier: Apache-2.0 WITH LLVM-Exception -- with Ada.Characters.Handling; with Ada.Containers.Indefinite_Ordered_Sets; with Ada.Directories; with GNAT.Directory_Operations; with GNAT.OS_Lib; with GNAT.Regpat; with GNATCOLL.Traces; with GPR2.Containers; with GPR2.Message; package body GPR2.KB.Compiler_Iterator is Main_Trace : constant GNATCOLL.Traces.Trace_Handle := GNATCOLL.Traces.Create ("KNOWLEDGE_BASE.COMPILER_ITERATOR", GNATCOLL.Traces.Off); package Exec_Sets is new Ada.Containers.Indefinite_Ordered_Sets (String); package CDM renames Compiler_Description_Maps; procedure Foreach_Compiler_In_Dir (Iterator : in out Object'Class; Base : in out KB.Object; Directory : String; From_Extra_Dir : Boolean; On_Target : Targets_Set_Id; Path_Order : Integer; Continue : out Boolean; Environment : GPR2.Environment.Object); -- Find all known compilers in Directory, and call Iterator.Callback as -- appropriate. procedure Foreach_Language_Runtime (Iterator : in out Object'Class; Base : in out KB.Object; Name : Unbounded_String; Executable : Unbounded_String; Directory : String; Prefix : Unbounded_String; From_Extra_Dir : Boolean; On_Target : Targets_Set_Id; Descr : Compiler_Description; Path_Order : Integer; Continue : out Boolean; Environment : GPR2.Environment.Object); -- For each language/runtime parsed in Languages/Runtimes, create a new -- compiler in the list, if it matches Description procedure Get_Targets_Set (Base : in out KB.Object; Target : String; Id : out Targets_Set_Id); -- Get the target alias set id for a target. If not already in the base, -- add it. ----------------------------- -- Foreach_Compiler_In_Dir -- ----------------------------- procedure Foreach_Compiler_In_Dir (Iterator : in out Object'Class; Base : in out KB.Object; Directory : String; From_Extra_Dir : Boolean; On_Target : Targets_Set_Id; Path_Order : Integer; Continue : out Boolean; Environment : GPR2.Environment.Object) is use CDM; use Exec_Sets; use Ada.Directories; use GNAT.Regpat; use GNATCOLL.Traces; Executable_Pattern : constant String := (if On_Windows then "*.{exe,bat,cmd}" else ""); Search : Search_Type; Dir : Directory_Entry_Type; Exec_Suffix : constant String := Get_Executable_Suffix; Exec_Set : Exec_Sets.Set; begin -- Since the name of an executable can be a regular expression, we need -- to look at all files in the directory to see if they match. This -- requires more system calls than if the name was always a simple -- string. So we first check which of the two algorithms should be used. Continue := True; Increase_Indent (Main_Trace, "Foreach compiler in " & Directory & " regexp=" & Boolean'Image (Base.Check_Executable_Regexp) & " extra_dir=" & From_Extra_Dir'Img); if Base.Check_Executable_Regexp then begin Start_Search (Search => Search, Directory => Directory, Pattern => Executable_Pattern); exception when Ada.Directories.Name_Error => Decrease_Indent (Main_Trace, "No such directory:" & Directory); Continue := True; return; when Ada.Directories.Use_Error => Decrease_Indent (Main_Trace, "Directory not readable:" & Directory); Continue := True; return; end; loop exit when not More_Entries (Search); begin Get_Next_Entry (Search, Dir); Exec_Set.Include (Ada.Directories.Simple_Name (Dir)); exception when Ada.Directories.Name_Error | Ada.Directories.Use_Error => null; end; end loop; For_All_Files_In_Dir : for Simple of Exec_Set loop for C in Base.Compilers.Iterate loop declare Config : constant CDM.Constant_Reference_Type := CDM.Constant_Reference (Base.Compilers, C); Matches : Match_Array (0 .. Integer'Max (0, Config.Prefix_Index)); Matched : Boolean; Prefix : Unbounded_String; begin -- A language with no expected compiler => always match if Config.Name = Null_Unbounded_String then Increase_Indent (Main_Trace, String (Key (C)) & " requires no compiler"); Continue := True; Foreach_Language_Runtime (Iterator => Iterator, Base => Base, Name => To_Unbounded_String (String (Key (C))), Executable => Null_Unbounded_String, Directory => "", On_Target => Unknown_Targets_Set, Prefix => Null_Unbounded_String, From_Extra_Dir => From_Extra_Dir, Descr => Config, Path_Order => Path_Order, Continue => Continue, Environment => Environment); Decrease_Indent (Main_Trace); exit For_All_Files_In_Dir when not Continue; Matched := False; elsif not Config.Executable_Re.Is_Empty then Match (Config.Executable_Re.Element, Data => Simple, Matches => Matches); Matched := Matches (0) /= No_Match; else Matched := (To_String (Config.Executable) & Exec_Suffix) = Simple; end if; if Matched then Increase_Indent (Main_Trace, String (Key (C)) & " is candidate: filename=" & Simple); if not Config.Executable_Re.Is_Empty and then Config.Prefix_Index >= 0 and then Matches (Config.Prefix_Index) /= No_Match then Prefix := To_Unbounded_String (Simple (Matches (Config.Prefix_Index).First .. Matches (Config.Prefix_Index).Last)); end if; Continue := True; Foreach_Language_Runtime (Iterator => Iterator, Base => Base, Name => To_Unbounded_String (String (Key (C))), Executable => To_Unbounded_String (Simple), Directory => Directory, On_Target => On_Target, Prefix => Prefix, From_Extra_Dir => From_Extra_Dir, Descr => Config, Path_Order => Path_Order, Continue => Continue, Environment => Environment); Decrease_Indent (Main_Trace); exit For_All_Files_In_Dir when not Continue; end if; end; end loop; end loop For_All_Files_In_Dir; Exec_Set.Clear; else -- Do not search all entries in the directory, but check explicitly -- for the compilers. This results in a lot less system calls, and -- thus is faster. for C in Base.Compilers.Iterate loop declare Config : constant CDM.Constant_Reference_Type := CDM.Constant_Reference (Base.Compilers, C); F : constant String := GNAT.OS_Lib.Normalize_Pathname (Name => To_String (Config.Executable), Directory => Directory, Resolve_Links => False, Case_Sensitive => On_Windows) & Exec_Suffix; begin if Ada.Directories.Exists (F) then Trace (Main_Trace, "--------------------------------------"); Trace (Main_Trace, "Processing " & To_String (Config.Name) & " in " & Directory); Foreach_Language_Runtime (Iterator => Iterator, Base => Base, Name => To_Unbounded_String (String (Key (C))), Executable => Config.Executable, Prefix => Null_Unbounded_String, From_Extra_Dir => From_Extra_Dir, On_Target => On_Target, Directory => Directory, Descr => Config, Path_Order => Path_Order, Continue => Continue, Environment => Environment); exit when not Continue; end if; exception when Ada.Directories.Name_Error | Ada.Directories.Use_Error => null; end; end loop; end if; Decrease_Indent (Main_Trace); end Foreach_Compiler_In_Dir; ------------------------------ -- Foreach_Compiler_In_Path -- ------------------------------ procedure Foreach_In_Path (Self : in out Object'Class; Base : in out KB.Object; On_Target : Name_Type; Environment : GPR2.Environment.Object; Extra_Dirs : String := "") is use GNATCOLL.Traces; Selected_Targets_Set : Targets_Set_Id; Dirs : GPR2.Containers.Value_List; Map : GPR2.Containers.Value_Set; use GPR2.Containers.Value_Type_List; procedure Process_Path (Path : String; Prefix : Character; Prepend_To_List : Boolean); -- Add a directory to the list of directories to examine ------------------ -- Process_Path -- ------------------ procedure Process_Path (Path : String; Prefix : Character; Prepend_To_List : Boolean) is use GPR2.Containers.Value_Type_Set; First, Last : Natural; begin First := Path'First; while First <= Path'Last loop -- Skip null entries on PATH if Path (First) = GNAT.OS_Lib.Path_Separator then First := First + 1; else Last := First + 1; while Last <= Path'Last and then Path (Last) /= GNAT.OS_Lib.Path_Separator loop Last := Last + 1; end loop; declare -- Use a hash to make sure we do not parse the same -- directory twice. This is both more efficient and avoids -- duplicates in the final result list. To handle the case -- of links (on Linux for instance /usr/bin/X11 points to -- ".", ie /usr/bin, and compilers would appear duplicated), -- we resolve symbolic links. This call is also set to fold -- to lower-case when appropriate Normalized : constant Value_Type := Name_As_Directory (GNAT.OS_Lib.Normalize_Pathname (Path (First .. Last - 1), Resolve_Links => True, Case_Sensitive => False)); begin if not Contains (Map, Normalized) then Include (Map, Normalized); -- Rerun normalize_pathname without resolve_links so that -- the displayed path looks familiar to the user (no .., -- ./ or quotes, but still using the path as shown in -- $PATH) declare Final_Path : constant String := GNAT.OS_Lib.Normalize_Pathname (Path (First .. Last - 1), Resolve_Links => False, Case_Sensitive => False); begin -- Windows is somewhat slow at parsing directories, do -- not look into any directory under C:\Windows as -- there is no compiler to be found there anyway. if not On_Windows or else (Final_Path'Length > 10 and then Characters.Handling.To_Lower (Final_Path (Final_Path'First .. Final_Path'First + 9)) /= "c:\windows") then Trace (Main_Trace, "Will examine " & Prefix & " " & Final_Path); if Prepend_To_List then Prepend (Dirs, Prefix & Final_Path); else Append (Dirs, Prefix & Final_Path); end if; end if; end; end if; end; First := Last + 1; end if; end loop; end Process_Path; Dir : GPR2.Containers.Value_Type_List.Cursor; Path_Order : Positive := 1; Continue : Boolean; begin -- Preprocess the list of directories that will be searched. When a -- directory appears both in Extra_Dirs and in Path, we prepend it to -- the PATH for optimization purposes: no need to look in all the PATH -- if the compiler(s) will match in that directory. However, this has -- the result that a command line with --config that specifies a path -- and one that doesn't might find the second compiler in the same -- path even if it is not the first one on the PATH. That's minor, and -- a workaround is for the user to specify path for all --config args. -- -- We will also need to know later whether the directory comes from -- PATH or extra_dirs. If a directory appears in both, it is said to -- come from PATH, so that all its compilers are taken into account. -- As a special convention, the first character of the directory name is -- set to 'E' if the dir comes from extra_dirs, or 'P' if it comes from -- PATH. if Environment.Exists ("PATH") then Process_Path (Environment.Value ("PATH"), 'P', False); end if; if Extra_Dirs /= "" then Process_Path (Extra_Dirs, 'E', Prepend_To_List => True); end if; Get_Targets_Set (Base, String (On_Target), Selected_Targets_Set); Dir := First (Dirs); while Has_Element (Dir) loop declare P : constant String := Element (Dir); begin Foreach_Compiler_In_Dir (Iterator => Self, Base => Base, Directory => P (P'First + 1 .. P'Last), From_Extra_Dir => P (P'First) = 'E', Path_Order => Path_Order, On_Target => Selected_Targets_Set, Continue => Continue, Environment => Environment); exit when not Continue; end; Path_Order := Path_Order + 1; Next (Dir); end loop; end Foreach_In_Path; ------------------------------ -- Foreach_Language_Runtime -- ------------------------------ procedure Foreach_Language_Runtime (Iterator : in out Object'Class; Base : in out KB.Object; Name : Unbounded_String; Executable : Unbounded_String; Directory : String; Prefix : Unbounded_String; From_Extra_Dir : Boolean; On_Target : Targets_Set_Id; Descr : Compiler_Description; Path_Order : Integer; Continue : out Boolean; Environment : GPR2.Environment.Object) is use External_Value_Nodes; use External_Value_Lists; use GNATCOLL.Traces; use GPR2.Containers.Value_Type_List; function Is_Windows_Executable (Filename : String) return Boolean; -- Verify that a given filename is indeed an executable --------------------------- -- Is_Windows_Executable -- --------------------------- function Is_Windows_Executable (Filename : String) return Boolean is use GNAT.OS_Lib; type Byte is mod 256; for Byte'Size use 8; for Byte'Alignment use 1; type Bytes is array (Positive range <>) of Byte; Windows_Pattern : constant Bytes := (77, 90, 144, 0); Fd : constant File_Descriptor := Open_Read (Filename, Binary); B : Bytes (1 .. 4); N_Read : Integer; begin N_Read := Read (Fd, B'Address, 4); Close (Fd); if N_Read < 4 then return False; else if B = Windows_Pattern then return True; else return False; end if; end if; end Is_Windows_Executable; Exec_Suffix : constant String := Get_Executable_Suffix; Target : External_Value_Lists.List; Version : External_Value_Lists.List; Languages : External_Value_Lists.List; Runtimes : External_Value_Lists.List; Variables : External_Value_Lists.List; Comp : Compiler; C, C2 : External_Value_Lists.Cursor; CS : GPR2.Containers.Value_Type_List.Cursor; Drop_Compiler : Boolean := False; begin Continue := True; -- Verify that the compiler is indeed a real executable -- on Windows and not a cygwin symbolic link. -- This whole part is optimized out on non-windows hosts, so in order -- to keep the builds in debug mode a warning suppression is needed. pragma Warnings (Off, "this code can never be executed"); if On_Windows and then not Is_Windows_Executable (Directory & OS_Lib.Directory_Separator & To_String (Executable)) then Continue := True; return; end if; pragma Warnings (On, "this code can never be executed"); Comp.Name := Name; Comp.Path := GPR2.Path_Name.Create_Directory (Filename_Type (GNAT.OS_Lib.Normalize_Pathname (Directory, Case_Sensitive => False))); Comp.Base_Name := To_Unbounded_String (GNAT.Directory_Operations.Base_Name (To_String (Executable), Suffix => Exec_Suffix)); Comp.Path_Order := Path_Order; Comp.Prefix := Prefix; Comp.Executable := Executable; -- Check the target first, for efficiency. If it doesn't match, no need -- to compute other attributes. if Executable /= Null_Unbounded_String then if not Is_Empty (Descr.Target.EV) then Get_External_Value ("target", Value => Descr.Target, Comp => Comp, Split_Into_Words => False, Environment => Environment, Calls_Cache => Base.External_Calls_Cache, Messages => Base.Messages, Processed_Value => Target, Ignore_Compiler => Drop_Compiler); if Drop_Compiler then return; end if; if not Is_Empty (Target) then Comp.Target := External_Value_Lists.Element (First (Target)).Value; Get_Targets_Set (Base, To_String (Comp.Target), Comp.Targets_Set); else Trace (Main_Trace, "Target unknown for this compiler"); Comp.Targets_Set := Unknown_Targets_Set; Continue := True; return; end if; if On_Target /= All_Target_Sets and then Comp.Targets_Set /= On_Target then Trace (Main_Trace, "Target for this compiler does not match --target"); Continue := True; return; end if; else Trace (Main_Trace, "Target unspecified, always match"); Comp.Targets_Set := All_Target_Sets; end if; -- Then get the value of the remaining attributes. For most of them, -- we must be able to find a valid value, or the compiler is simply -- ignored Get_External_Value ("version", Value => Descr.Version, Comp => Comp, Split_Into_Words => False, Environment => Environment, Calls_Cache => Base.External_Calls_Cache, Messages => Base.Messages, Processed_Value => Version, Ignore_Compiler => Drop_Compiler); if Drop_Compiler then return; end if; if Is_Empty (Version) then Trace (Main_Trace, "Ignore compiler, since couldn't guess its version"); Continue := True; return; end if; Comp.Version := External_Value_Lists.Element (First (Version)).Value; Get_External_Value ("variables", Value => Descr.Variables, Comp => Comp, Split_Into_Words => False, Environment => Environment, Calls_Cache => Base.External_Calls_Cache, Messages => Base.Messages, Processed_Value => Variables, Ignore_Compiler => Drop_Compiler); if Drop_Compiler then return; end if; C := First (Variables); while Has_Element (C) loop declare Ext : constant External_Value_Item := External_Value_Lists.Element (C); begin if Ext.Value = Null_Unbounded_String then Trace (Main_Trace, "Ignore compiler since variable '" & To_String (Ext.Extracted_From) & "' is empty"); Continue := True; return; end if; if Variables_Maps.Contains (Comp.Variables, Ext.Extracted_From) then Base.Messages.Append (GPR2.Message.Create (GPR2.Message.Information, "Variable '" & To_String (Ext.Extracted_From) & "' is already defined", Sloc => Descr.Variables.Sloc)); else Variables_Maps.Insert (Comp.Variables, Ext.Extracted_From, Ext.Value); end if; end; Next (C); end loop; end if; Get_External_Value ("languages", Value => Descr.Languages, Comp => Comp, Split_Into_Words => True, Environment => Environment, Calls_Cache => Base.External_Calls_Cache, Messages => Base.Messages, Processed_Value => Languages, Ignore_Compiler => Drop_Compiler); if Drop_Compiler then return; end if; if Is_Empty (Languages) then Trace (Main_Trace, "Ignore compiler, since no language could be computed"); Continue := True; return; end if; if Executable /= Null_Unbounded_String then Get_External_Value ("runtimes", Value => Descr.Runtimes, Comp => Comp, Split_Into_Words => True, Merge_Same_Dirs => True, Environment => Environment, Calls_Cache => Base.External_Calls_Cache, Messages => Base.Messages, Processed_Value => Runtimes, Ignore_Compiler => Drop_Compiler); if Drop_Compiler then return; end if; Comp.Default_Runtime := True; Comp.Any_Runtime := False; if not Is_Empty (Runtimes) then -- This loop makes sure that the default runtime appears first in -- the list (and thus is selected automatically when creating -- configuration non-interactively). Comp.Default_Runtime := False; Comp.Any_Runtime := True; CS := First (Descr.Default_Runtimes); Defaults_Loop : while Has_Element (CS) loop C2 := First (Runtimes); while Has_Element (C2) loop if To_String (External_Value_Lists.Element (C2).Value) = GPR2.Containers.Value_Type_List.Element (CS) then Prepend (Runtimes, External_Value_Lists.Element (C2)); Delete (Runtimes, C2); Comp.Default_Runtime := True; exit Defaults_Loop; end if; Next (C2); end loop; Next (CS); end loop Defaults_Loop; end if; end if; C := First (Languages); while Has_Element (C) loop declare L : constant String := To_String (External_Value_Lists.Element (C).Value); begin Comp.Language := +Name_Type (L); end; -- First check if a runtime specified with option --config= will -- match. Callback (Self => Iterator, Base => Base, Comp => Comp, Runtime_Specified => True, From_Extra_Dir => From_Extra_Dir, Continue => Continue); if not Continue then return; end if; if Is_Empty (Runtimes) then if Descr.Runtimes /= Null_External_Value then Trace (Main_Trace, "No runtime found where one is required for: " & Comp.Path.Value); else Callback (Self => Iterator, Base => Base, Comp => Comp, Runtime_Specified => False, From_Extra_Dir => From_Extra_Dir, Continue => Continue); if not Continue then return; end if; end if; else C2 := First (Runtimes); while Has_Element (C2) loop Comp.Runtime := External_Value_Lists.Element (C2).Value; Comp.Alt_Runtime := External_Value_Lists.Element (C2).Alternate; Comp.Runtime_Dir := External_Value_Lists.Element (C2).Extracted_From; Callback (Self => Iterator, Base => Base, Comp => Comp, Runtime_Specified => False, From_Extra_Dir => From_Extra_Dir, Continue => Continue); if not Continue then return; end if; Next (C2); end loop; end if; Next (C); end loop; end Foreach_Language_Runtime; ---------------------- -- Get_Targets_Set -- ---------------------- procedure Get_Targets_Set (Base : in out KB.Object; Target : String; Id : out Targets_Set_Id) is begin Id := Query_Targets_Set (Base, Name_Type (Target)); if Id /= Unknown_Targets_Set then return; end if; -- Create a new set declare Set : Target_Lists.List; begin GNATCOLL.Traces.Trace (Main_Trace, "create a new target set for " & Target); Set.Append (GNAT.Regpat.Compile ("^" & GNAT.Regpat.Quote (Target) & "$")); Base.Targets_Sets.Append ((To_Unbounded_String (Target), Set), 1); Id := Base.Targets_Sets.Last_Index; end; end Get_Targets_Set; end GPR2.KB.Compiler_Iterator;
reznikmm/matreshka
Ada
3,679
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Elements; package ODF.DOM.Table_Filter_And_Elements is pragma Preelaborate; type ODF_Table_Filter_And is limited interface and XML.DOM.Elements.DOM_Element; type ODF_Table_Filter_And_Access is access all ODF_Table_Filter_And'Class with Storage_Size => 0; end ODF.DOM.Table_Filter_And_Elements;