repo_name
stringlengths 9
74
| language
stringclasses 1
value | length_bytes
int64 11
9.34M
| extension
stringclasses 2
values | content
stringlengths 11
9.34M
|
---|---|---|---|---|
tum-ei-rcs/StratoX | Ada | 4,905 | ads | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . T A S K _ I N F O --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-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. --
-- --
-- --
-- --
-- --
-- --
-- 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 package contains the definitions and routines associated with the
-- implementation and use of the Task_Info pragma. It is specialized
-- appropriately for targets that make use of this pragma.
-- Note: the compiler generates direct calls to this interface, via Rtsfind.
-- Any changes to this interface may require corresponding compiler changes.
-- The functionality in this unit is now provided by the predefined package
-- System.Multiprocessors and the CPU aspect. This package is obsolescent.
package System.Task_Info
with SPARK_Mode => On is
pragma Obsolescent (Task_Info, "use System.Multiprocessors and CPU aspect");
pragma Preelaborate;
pragma Elaborate_Body;
-- To ensure that a body is allowed
-----------------------------------------
-- Implementation of Task_Info Feature --
-----------------------------------------
-- The Task_Info pragma:
-- pragma Task_Info (EXPRESSION);
-- allows the specification on a task by task basis of a value of type
-- System.Task_Info.Task_Info_Type to be passed to a task when it is
-- created. The specification of this type, and the effect on the task
-- that is created is target dependent.
-- The Task_Info pragma appears within a task definition (compare the
-- definition and implementation of pragma Priority). If no such pragma
-- appears, then the value Unspecified_Task_Info is passed. If a pragma
-- is present, then it supplies an alternative value. If the argument of
-- the pragma is a discriminant reference, then the value can be set on
-- a task by task basis by supplying the appropriate discriminant value.
-- Note that this means that the type used for Task_Info_Type must be
-- suitable for use as a discriminant (i.e. a scalar or access type).
------------------
-- Declarations --
------------------
type Scope_Type is
(Process_Scope,
-- Contend only with threads in same process
System_Scope,
-- Contend with all threads on same CPU
Default_Scope);
type Task_Info_Type is new Scope_Type;
-- Type used for passing information to task create call, using the
-- Task_Info pragma. This type may be specialized for individual
-- implementations, but it must be a type that can be used as a
-- discriminant (i.e. a scalar or access type).
Unspecified_Task_Info : constant Task_Info_Type := Default_Scope;
-- Value passed to task in the absence of a Task_Info pragma
end System.Task_Info;
|
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.Office_Dde_Source_Elements;
package Matreshka.ODF_Office.Dde_Source_Elements is
type Office_Dde_Source_Element_Node is
new Matreshka.ODF_Office.Abstract_Office_Element_Node
and ODF.DOM.Office_Dde_Source_Elements.ODF_Office_Dde_Source
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters)
return Office_Dde_Source_Element_Node;
overriding function Get_Local_Name
(Self : not null access constant Office_Dde_Source_Element_Node)
return League.Strings.Universal_String;
overriding procedure Enter_Node
(Self : not null access Office_Dde_Source_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 Office_Dde_Source_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 Office_Dde_Source_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_Office.Dde_Source_Elements;
|
AdaCore/gpr | Ada | 43 | ads | package test4 is
I : Integer;
end test4; |
zhmu/ananas | Ada | 56,089 | adb | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- B I N D O . D I A G N O S T I C S --
-- --
-- B o d y --
-- --
-- Copyright (C) 2019-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 Binderr; use Binderr;
with Debug; use Debug;
with Rident; use Rident;
with Types; use Types;
with Bindo.Validators;
use Bindo.Validators;
use Bindo.Validators.Cycle_Validators;
with Bindo.Writers;
use Bindo.Writers;
use Bindo.Writers.Cycle_Writers;
use Bindo.Writers.Phase_Writers;
package body Bindo.Diagnostics is
-----------------------
-- Local subprograms --
-----------------------
procedure Diagnose_All_Cycles (Inv_Graph : Invocation_Graph);
pragma Inline (Diagnose_All_Cycles);
-- Emit diagnostics for all cycles of library graph G
procedure Diagnose_Cycle
(Inv_Graph : Invocation_Graph;
Cycle : Library_Graph_Cycle_Id);
pragma Inline (Diagnose_Cycle);
-- Emit diagnostics for cycle Cycle of library graph G
procedure Find_And_Output_Invocation_Paths
(Inv_Graph : Invocation_Graph;
Source : Library_Graph_Vertex_Id;
Destination : Library_Graph_Vertex_Id);
pragma Inline (Find_And_Output_Invocation_Paths);
-- Find all paths in invocation graph Inv_Graph that originate from vertex
-- Source and reach vertex Destination of library graph Lib_Graph. Output
-- the transitions of each such path.
function Find_Elaboration_Root
(Inv_Graph : Invocation_Graph;
Vertex : Library_Graph_Vertex_Id) return Invocation_Graph_Vertex_Id;
pragma Inline (Find_Elaboration_Root);
-- Find the elaboration root in invocation graph Inv_Graph that corresponds
-- to vertex Vertex of library graph Lib_Graph.
procedure Output_All_Cycles_Suggestions (G : Library_Graph);
pragma Inline (Output_All_Cycles_Suggestions);
-- Suggest the diagnostic of all cycles in library graph G if circumstances
-- allow it.
procedure Output_Elaborate_All_Suggestions
(G : Library_Graph;
Pred : Library_Graph_Vertex_Id;
Succ : Library_Graph_Vertex_Id);
pragma Inline (Output_Elaborate_All_Suggestions);
-- Suggest ways to break a cycle that involves an Elaborate_All edge that
-- links predecessor Pred and successor Succ of library graph G.
procedure Output_Elaborate_All_Transition
(G : Library_Graph;
Source : Library_Graph_Vertex_Id;
Actual_Destination : Library_Graph_Vertex_Id;
Expected_Destination : Library_Graph_Vertex_Id);
pragma Inline (Output_Elaborate_All_Transition);
-- Output a transition through an Elaborate_All edge of library graph G
-- with successor Source and predecessor Actual_Destination. Parameter
-- Expected_Destination denotes the predecessor as specified by the next
-- edge in a cycle.
procedure Output_Elaborate_Body_Suggestions
(G : Library_Graph;
Succ : Library_Graph_Vertex_Id);
pragma Inline (Output_Elaborate_Body_Suggestions);
-- Suggest ways to break a cycle that involves an edge where successor Succ
-- is either a spec subject to pragma Elaborate_Body or the body of such a
-- spec.
procedure Output_Elaborate_Body_Transition
(G : Library_Graph;
Source : Library_Graph_Vertex_Id;
Actual_Destination : Library_Graph_Vertex_Id;
Expected_Destination : Library_Graph_Vertex_Id;
Elaborate_All_Active : Boolean);
pragma Inline (Output_Elaborate_Body_Transition);
-- Output a transition through an edge of library graph G with successor
-- Source and predecessor Actual_Destination. Vertex Source is either
-- a spec subject to pragma Elaborate_Body or denotes the body of such
-- a spec. Expected_Destination denotes the predecessor as specified by
-- the next edge in a cycle. Elaborate_All_Active should be set when the
-- transition occurs within a cycle that involves an Elaborate_All edge.
procedure Output_Elaborate_Suggestions
(G : Library_Graph;
Pred : Library_Graph_Vertex_Id;
Succ : Library_Graph_Vertex_Id);
pragma Inline (Output_Elaborate_Suggestions);
-- Suggest ways to break a cycle that involves an Elaborate edge that links
-- predecessor Pred and successor Succ of library graph G.
procedure Output_Elaborate_Transition
(G : Library_Graph;
Source : Library_Graph_Vertex_Id;
Actual_Destination : Library_Graph_Vertex_Id;
Expected_Destination : Library_Graph_Vertex_Id);
pragma Inline (Output_Elaborate_Transition);
-- Output a transition through an Elaborate edge of library graph G
-- with successor Source and predecessor Actual_Destination. Parameter
-- Expected_Destination denotes the predecessor as specified by the next
-- edge in a cycle.
procedure Output_Forced_Suggestions
(G : Library_Graph;
Pred : Library_Graph_Vertex_Id;
Succ : Library_Graph_Vertex_Id);
pragma Inline (Output_Forced_Suggestions);
-- Suggest ways to break a cycle that involves a Forced edge that links
-- predecessor Pred with successor Succ of library graph G.
procedure Output_Forced_Transition
(G : Library_Graph;
Source : Library_Graph_Vertex_Id;
Actual_Destination : Library_Graph_Vertex_Id;
Expected_Destination : Library_Graph_Vertex_Id;
Elaborate_All_Active : Boolean);
pragma Inline (Output_Forced_Transition);
-- Output a transition through a Forced edge of library graph G with
-- successor Source and predecessor Actual_Destination. Parameter
-- Expected_Destination denotes the predecessor as specified by the
-- next edge in a cycle. Elaborate_All_Active should be set when the
-- transition occurs within a cycle that involves an Elaborate_All edge.
procedure Output_Full_Encoding_Suggestions
(G : Library_Graph;
Cycle : Library_Graph_Cycle_Id;
First_Edge : Library_Graph_Edge_Id);
pragma Inline (Output_Full_Encoding_Suggestions);
-- Suggest the use of the full path invocation graph encoding to break
-- cycle Cycle with initial edge First_Edge of library graph G.
procedure Output_Invocation_Path
(Inv_Graph : Invocation_Graph;
Elaborated_Vertex : Library_Graph_Vertex_Id;
Path : IGE_Lists.Doubly_Linked_List;
Path_Id : in out Nat);
pragma Inline (Output_Invocation_Path);
-- Output path Path, which consists of invocation graph Inv_Graph edges.
-- Elaborated_Vertex is the vertex of library graph Lib_Graph whose
-- elaboration initiated the path. Path_Id is the unique id of the path.
procedure Output_Invocation_Path_Transition
(Inv_Graph : Invocation_Graph;
Edge : Invocation_Graph_Edge_Id);
pragma Inline (Output_Invocation_Path_Transition);
-- Output a transition through edge Edge of invocation graph G, which is
-- part of an invocation path.
procedure Output_Invocation_Related_Suggestions
(G : Library_Graph;
Cycle : Library_Graph_Cycle_Id);
pragma Inline (Output_Invocation_Related_Suggestions);
-- Suggest ways to break cycle Cycle of library graph G that involves at
-- least one invocation edge.
procedure Output_Invocation_Transition
(Inv_Graph : Invocation_Graph;
Source : Library_Graph_Vertex_Id;
Destination : Library_Graph_Vertex_Id);
pragma Inline (Output_Invocation_Transition);
-- Output a transition through an invocation edge of library graph G with
-- successor Source and predecessor Destination. Inv_Graph is the related
-- invocation graph.
procedure Output_Reason_And_Circularity_Header
(G : Library_Graph;
First_Edge : Library_Graph_Edge_Id);
pragma Inline (Output_Reason_And_Circularity_Header);
-- Output the reason and circularity header for a circularity of library
-- graph G with initial edge First_Edge.
procedure Output_Suggestions
(G : Library_Graph;
Cycle : Library_Graph_Cycle_Id;
First_Edge : Library_Graph_Edge_Id);
pragma Inline (Output_Suggestions);
-- Suggest various ways to break cycle Cycle with initial edge First_Edge
-- of library graph G.
procedure Output_Transition
(Inv_Graph : Invocation_Graph;
Current_Edge : Library_Graph_Edge_Id;
Next_Edge : Library_Graph_Edge_Id;
Elaborate_All_Active : Boolean);
pragma Inline (Output_Transition);
-- Output a transition described by edge Current_Edge, which is followed by
-- edge Next_Edge of library graph Lib_Graph. Inv_Graph denotes the related
-- invocation graph. Elaborate_All_Active should be set when the transition
-- occurs within a cycle that involves an Elaborate_All edge.
procedure Output_With_Transition
(G : Library_Graph;
Source : Library_Graph_Vertex_Id;
Actual_Destination : Library_Graph_Vertex_Id;
Expected_Destination : Library_Graph_Vertex_Id;
Elaborate_All_Active : Boolean);
pragma Inline (Output_With_Transition);
-- Output a transition through a regular with edge of library graph G
-- with successor Source and predecessor Actual_Destination. Parameter
-- Expected_Destination denotes the predecessor as specified by the next
-- edge in a cycle. Elaborate_All_Active should be set when the transition
-- occurs within a cycle that involves an Elaborate_All edge.
procedure Visit_Vertex
(Inv_Graph : Invocation_Graph;
Invoker : Invocation_Graph_Vertex_Id;
Invoker_Vertex : Library_Graph_Vertex_Id;
Last_Vertex : Library_Graph_Vertex_Id;
Elaborated_Vertex : Library_Graph_Vertex_Id;
End_Vertex : Library_Graph_Vertex_Id;
Visited_Invokers : IGV_Sets.Membership_Set;
Path : IGE_Lists.Doubly_Linked_List;
Path_Id : in out Nat);
pragma Inline (Visit_Vertex);
-- Visit invocation graph vertex Invoker that resides in library graph
-- vertex Invoker_Vertex as part of a DFS traversal. Last_Vertex denotes
-- the previous vertex in the traversal. Elaborated_Vertex is the vertex
-- whose elaboration started the traversal. End_Vertex is the vertex that
-- terminates the traversal. Visited_Invoker is the set of all invokers
-- visited so far. All edges along the path are recorded in Path. Path_Id
-- is the id of the path.
-------------------------
-- Diagnose_All_Cycles --
-------------------------
procedure Diagnose_All_Cycles (Inv_Graph : Invocation_Graph) is
Lib_Graph : constant Library_Graph := Get_Lib_Graph (Inv_Graph);
Cycle : Library_Graph_Cycle_Id;
Iter : All_Cycle_Iterator;
begin
pragma Assert (Present (Inv_Graph));
pragma Assert (Present (Lib_Graph));
Iter := Iterate_All_Cycles (Lib_Graph);
while Has_Next (Iter) loop
Next (Iter, Cycle);
Diagnose_Cycle (Inv_Graph => Inv_Graph, Cycle => Cycle);
end loop;
end Diagnose_All_Cycles;
----------------------------
-- Diagnose_Circularities --
----------------------------
procedure Diagnose_Circularities (Inv_Graph : Invocation_Graph) is
Lib_Graph : constant Library_Graph := Get_Lib_Graph (Inv_Graph);
begin
pragma Assert (Present (Inv_Graph));
pragma Assert (Present (Lib_Graph));
-- Find, validate, and output all cycles of the library graph
Find_Cycles (Lib_Graph);
Validate_Cycles (Lib_Graph);
Write_Cycles (Lib_Graph);
-- Diagnose all cycles in the graph regardless of their importance when
-- switch -d_C (diagnose all cycles) is in effect.
if Debug_Flag_Underscore_CC then
Diagnose_All_Cycles (Inv_Graph);
-- Otherwise diagnose the most important cycle in the graph
else
Diagnose_Cycle
(Inv_Graph => Inv_Graph,
Cycle => Highest_Precedence_Cycle (Lib_Graph));
end if;
end Diagnose_Circularities;
--------------------
-- Diagnose_Cycle --
--------------------
procedure Diagnose_Cycle
(Inv_Graph : Invocation_Graph;
Cycle : Library_Graph_Cycle_Id)
is
Lib_Graph : constant Library_Graph := Get_Lib_Graph (Inv_Graph);
pragma Assert (Present (Inv_Graph));
pragma Assert (Present (Lib_Graph));
pragma Assert (Present (Cycle));
Elaborate_All_Active : constant Boolean :=
Contains_Elaborate_All_Edge
(G => Lib_Graph,
Cycle => Cycle);
Current_Edge : Library_Graph_Edge_Id := No_Library_Graph_Edge;
First_Edge : Library_Graph_Edge_Id;
Iter : Edges_Of_Cycle_Iterator;
Next_Edge : Library_Graph_Edge_Id;
begin
Start_Phase (Cycle_Diagnostics);
First_Edge := No_Library_Graph_Edge;
-- Inspect the edges of the cycle in pairs, emitting diagnostics based
-- on their successors and predecessors.
Iter := Iterate_Edges_Of_Cycle (Lib_Graph, Cycle);
while Has_Next (Iter) loop
-- Emit the reason for the cycle using the initial edge, which is the
-- most important edge in the cycle.
if not Present (First_Edge) then
Next (Iter, Current_Edge);
First_Edge := Current_Edge;
Output_Reason_And_Circularity_Header
(G => Lib_Graph,
First_Edge => First_Edge);
end if;
-- Obtain the other edge of the pair
exit when not Has_Next (Iter);
Next (Iter, Next_Edge);
-- Describe the transition from the current edge to the next edge by
-- taking into account the predecessors and successors involved, as
-- well as the nature of the edge.
Output_Transition
(Inv_Graph => Inv_Graph,
Current_Edge => Current_Edge,
Next_Edge => Next_Edge,
Elaborate_All_Active => Elaborate_All_Active);
Current_Edge := Next_Edge;
end loop;
-- Describe the transition from the last edge to the first edge
Output_Transition
(Inv_Graph => Inv_Graph,
Current_Edge => Current_Edge,
Next_Edge => First_Edge,
Elaborate_All_Active => Elaborate_All_Active);
-- Suggest various alternatives for breaking the cycle
Output_Suggestions
(G => Lib_Graph,
Cycle => Cycle,
First_Edge => First_Edge);
End_Phase (Cycle_Diagnostics);
end Diagnose_Cycle;
--------------------------------------
-- Find_And_Output_Invocation_Paths --
--------------------------------------
procedure Find_And_Output_Invocation_Paths
(Inv_Graph : Invocation_Graph;
Source : Library_Graph_Vertex_Id;
Destination : Library_Graph_Vertex_Id)
is
Lib_Graph : constant Library_Graph := Get_Lib_Graph (Inv_Graph);
Path : IGE_Lists.Doubly_Linked_List;
Path_Id : Nat;
Visited : IGV_Sets.Membership_Set;
begin
pragma Assert (Present (Inv_Graph));
pragma Assert (Present (Lib_Graph));
pragma Assert (Present (Source));
pragma Assert (Present (Destination));
-- Nothing to do when the invocation graph encoding format of the source
-- vertex does not contain detailed information about invocation paths.
if Invocation_Graph_Encoding (Lib_Graph, Source) /=
Full_Path_Encoding
then
return;
end if;
Path := IGE_Lists.Create;
Path_Id := 1;
Visited := IGV_Sets.Create (Number_Of_Vertices (Inv_Graph));
-- Start a DFS traversal over the invocation graph, in an attempt to
-- reach Destination from Source. The actual start of the path is the
-- elaboration root invocation vertex that corresponds to the Source.
-- Each unique path is emitted as part of the current cycle diagnostic.
Visit_Vertex
(Inv_Graph => Inv_Graph,
Invoker =>
Find_Elaboration_Root
(Inv_Graph => Inv_Graph,
Vertex => Source),
Invoker_Vertex => Source,
Last_Vertex => Source,
Elaborated_Vertex => Source,
End_Vertex => Destination,
Visited_Invokers => Visited,
Path => Path,
Path_Id => Path_Id);
IGE_Lists.Destroy (Path);
IGV_Sets.Destroy (Visited);
end Find_And_Output_Invocation_Paths;
---------------------------
-- Find_Elaboration_Root --
---------------------------
function Find_Elaboration_Root
(Inv_Graph : Invocation_Graph;
Vertex : Library_Graph_Vertex_Id) return Invocation_Graph_Vertex_Id
is
Lib_Graph : constant Library_Graph := Get_Lib_Graph (Inv_Graph);
Current_Vertex : Invocation_Graph_Vertex_Id;
Iter : Elaboration_Root_Iterator;
Root_Vertex : Invocation_Graph_Vertex_Id;
begin
pragma Assert (Present (Inv_Graph));
pragma Assert (Present (Lib_Graph));
pragma Assert (Present (Vertex));
-- Assume that the vertex does not have a corresponding elaboration root
Root_Vertex := No_Invocation_Graph_Vertex;
-- Inspect all elaboration roots trying to find the one that resides in
-- the input vertex.
--
-- IMPORTANT:
--
-- * The iterator must run to completion in order to unlock the
-- invocation graph.
Iter := Iterate_Elaboration_Roots (Inv_Graph);
while Has_Next (Iter) loop
Next (Iter, Current_Vertex);
if not Present (Root_Vertex)
and then Body_Vertex (Inv_Graph, Current_Vertex) = Vertex
then
Root_Vertex := Current_Vertex;
end if;
end loop;
return Root_Vertex;
end Find_Elaboration_Root;
-----------------------------------
-- Output_All_Cycles_Suggestions --
-----------------------------------
procedure Output_All_Cycles_Suggestions (G : Library_Graph) is
begin
pragma Assert (Present (G));
-- The library graph contains at least one cycle and only the highest
-- priority cycle was diagnosed. Diagnosing all cycles may yield extra
-- information for decision making.
if Number_Of_Cycles (G) > 1 and then not Debug_Flag_Underscore_CC then
Error_Msg_Info
(" diagnose all circularities (binder switch -d_C)");
end if;
end Output_All_Cycles_Suggestions;
--------------------------------------
-- Output_Elaborate_All_Suggestions --
--------------------------------------
procedure Output_Elaborate_All_Suggestions
(G : Library_Graph;
Pred : Library_Graph_Vertex_Id;
Succ : Library_Graph_Vertex_Id)
is
begin
pragma Assert (Present (G));
pragma Assert (Present (Pred));
pragma Assert (Present (Succ));
Error_Msg_Unit_1 := Name (G, Pred);
Error_Msg_Unit_2 := Name (G, Succ);
Error_Msg_Info
(" change pragma Elaborate_All for unit $ to Elaborate in unit $");
Error_Msg_Info
(" remove pragma Elaborate_All for unit $ in unit $");
end Output_Elaborate_All_Suggestions;
-------------------------------------
-- Output_Elaborate_All_Transition --
-------------------------------------
procedure Output_Elaborate_All_Transition
(G : Library_Graph;
Source : Library_Graph_Vertex_Id;
Actual_Destination : Library_Graph_Vertex_Id;
Expected_Destination : Library_Graph_Vertex_Id)
is
begin
pragma Assert (Present (G));
pragma Assert (Present (Source));
pragma Assert (Present (Actual_Destination));
pragma Assert (Present (Expected_Destination));
-- The actual and expected destination vertices match, and denote the
-- initial declaration of a unit.
--
-- Elaborate_All Actual_Destination
-- Source ---------------> spec -->
-- Expected_Destination
--
-- Elaborate_All Actual_Destination
-- Source ---------------> stand-alone body -->
-- Expected_Destination
if Actual_Destination = Expected_Destination then
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has with clause and pragma Elaborate_All for unit $");
-- Otherwise the actual destination vertex denotes the spec of a unit,
-- while the expected destination is the corresponding body.
--
-- Elaborate_All Actual_Destination
-- Source ---------------> spec
--
-- body -->
-- Expected_Destination
else
pragma Assert (Is_Spec_With_Body (G, Actual_Destination));
pragma Assert (Is_Body_With_Spec (G, Expected_Destination));
pragma Assert
(Proper_Body (G, Actual_Destination) = Expected_Destination);
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has with clause and pragma Elaborate_All for unit $");
Error_Msg_Unit_1 := Name (G, Expected_Destination);
Error_Msg_Info
(" unit $ is in the closure of pragma Elaborate_All");
end if;
end Output_Elaborate_All_Transition;
---------------------------------------
-- Output_Elaborate_Body_Suggestions --
---------------------------------------
procedure Output_Elaborate_Body_Suggestions
(G : Library_Graph;
Succ : Library_Graph_Vertex_Id)
is
Spec : Library_Graph_Vertex_Id;
begin
pragma Assert (Present (G));
pragma Assert (Present (Succ));
-- Find the initial declaration of the unit because it is the one
-- subject to pragma Elaborate_Body.
if Is_Body_With_Spec (G, Succ) then
Spec := Proper_Spec (G, Succ);
else
Spec := Succ;
end if;
Error_Msg_Unit_1 := Name (G, Spec);
Error_Msg_Info
(" remove pragma Elaborate_Body in unit $");
end Output_Elaborate_Body_Suggestions;
--------------------------------------
-- Output_Elaborate_Body_Transition --
--------------------------------------
procedure Output_Elaborate_Body_Transition
(G : Library_Graph;
Source : Library_Graph_Vertex_Id;
Actual_Destination : Library_Graph_Vertex_Id;
Expected_Destination : Library_Graph_Vertex_Id;
Elaborate_All_Active : Boolean)
is
begin
pragma Assert (Present (G));
pragma Assert (Present (Source));
pragma Assert (Present (Actual_Destination));
pragma Assert (Present (Expected_Destination));
-- The actual and expected destination vertices match
--
-- Actual_Destination
-- Source --------> spec -->
-- Elaborate_Body Expected_Destination
--
-- spec
--
-- Actual_Destination
-- Source --------> body -->
-- Elaborate_Body Expected_Destination
if Actual_Destination = Expected_Destination then
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has with clause for unit $");
-- The actual destination vertex denotes the spec of a unit while the
-- expected destination is the corresponding body, and the unit is in
-- the closure of an earlier Elaborate_All pragma.
--
-- Actual_Destination
-- Source --------> spec
-- Elaborate_Body
-- body -->
-- Expected_Destination
elsif Elaborate_All_Active then
pragma Assert (Is_Spec_With_Body (G, Actual_Destination));
pragma Assert (Is_Body_With_Spec (G, Expected_Destination));
pragma Assert
(Proper_Body (G, Actual_Destination) = Expected_Destination);
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has with clause for unit $");
Error_Msg_Unit_1 := Name (G, Expected_Destination);
Error_Msg_Info
(" unit $ is in the closure of pragma Elaborate_All");
-- Otherwise the actual destination vertex is the spec of a unit subject
-- to pragma Elaborate_Body and the expected destination vertex is the
-- completion body.
--
-- Actual_Destination
-- Source --------> spec Elaborate_Body
-- Elaborate_Body
-- body -->
-- Expected_Destination
else
pragma Assert
(Is_Elaborate_Body_Pair
(G => G,
Spec_Vertex => Actual_Destination,
Body_Vertex => Expected_Destination));
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has with clause for unit $");
Error_Msg_Unit_1 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ is subject to pragma Elaborate_Body");
Error_Msg_Unit_1 := Name (G, Expected_Destination);
Error_Msg_Info
(" unit $ is in the closure of pragma Elaborate_Body");
end if;
end Output_Elaborate_Body_Transition;
----------------------------------
-- Output_Elaborate_Suggestions --
----------------------------------
procedure Output_Elaborate_Suggestions
(G : Library_Graph;
Pred : Library_Graph_Vertex_Id;
Succ : Library_Graph_Vertex_Id)
is
begin
pragma Assert (Present (G));
pragma Assert (Present (Pred));
pragma Assert (Present (Succ));
Error_Msg_Unit_1 := Name (G, Pred);
Error_Msg_Unit_2 := Name (G, Succ);
Error_Msg_Info
(" remove pragma Elaborate for unit $ in unit $");
end Output_Elaborate_Suggestions;
---------------------------------
-- Output_Elaborate_Transition --
---------------------------------
procedure Output_Elaborate_Transition
(G : Library_Graph;
Source : Library_Graph_Vertex_Id;
Actual_Destination : Library_Graph_Vertex_Id;
Expected_Destination : Library_Graph_Vertex_Id)
is
Spec : Library_Graph_Vertex_Id;
begin
pragma Assert (Present (G));
pragma Assert (Present (Source));
pragma Assert (Present (Actual_Destination));
pragma Assert (Present (Expected_Destination));
-- The actual and expected destination vertices match, and denote the
-- initial declaration of a unit.
--
-- Elaborate Actual_Destination
-- Source -----------> spec -->
-- Expected_Destination
--
-- Elaborate Actual_Destination
-- Source -----------> stand-alone body -->
-- Expected_Destination
--
-- The processing of pragma Elaborate body generates an edge between a
-- successor and predecessor body.
--
-- spec
--
-- Elaborate Actual_Destination
-- Source -----------> body -->
-- Expected_Destination
if Actual_Destination = Expected_Destination then
-- Find the initial declaration of the unit because it is the one
-- subject to pragma Elaborate.
if Is_Body_With_Spec (G, Actual_Destination) then
Spec := Proper_Spec (G, Actual_Destination);
else
Spec := Actual_Destination;
end if;
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Spec);
Error_Msg_Info
(" unit $ has with clause and pragma Elaborate for unit $");
if Actual_Destination /= Spec then
Error_Msg_Unit_1 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ is in the closure of pragma Elaborate");
end if;
-- Otherwise the actual destination vertex denotes the spec of a unit
-- while the expected destination vertex is the corresponding body.
--
-- Elaborate Actual_Destination
-- Source -----------> spec
--
-- body -->
-- Expected_Destination
else
pragma Assert (Is_Spec_With_Body (G, Actual_Destination));
pragma Assert (Is_Body_With_Spec (G, Expected_Destination));
pragma Assert
(Proper_Body (G, Actual_Destination) = Expected_Destination);
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has with clause and pragma Elaborate for unit $");
Error_Msg_Unit_1 := Name (G, Expected_Destination);
Error_Msg_Info
(" unit $ is in the closure of pragma Elaborate");
end if;
end Output_Elaborate_Transition;
-------------------------------
-- Output_Forced_Suggestions --
-------------------------------
procedure Output_Forced_Suggestions
(G : Library_Graph;
Pred : Library_Graph_Vertex_Id;
Succ : Library_Graph_Vertex_Id)
is
begin
pragma Assert (Present (G));
pragma Assert (Present (Pred));
pragma Assert (Present (Succ));
Error_Msg_Unit_1 := Name (G, Succ);
Error_Msg_Unit_2 := Name (G, Pred);
Error_Msg_Info
(" remove the dependency of unit $ on unit $ from the argument of "
& "switch -f");
Error_Msg_Info
(" remove switch -f");
end Output_Forced_Suggestions;
------------------------------
-- Output_Forced_Transition --
------------------------------
procedure Output_Forced_Transition
(G : Library_Graph;
Source : Library_Graph_Vertex_Id;
Actual_Destination : Library_Graph_Vertex_Id;
Expected_Destination : Library_Graph_Vertex_Id;
Elaborate_All_Active : Boolean)
is
begin
pragma Assert (Present (G));
pragma Assert (Present (Source));
pragma Assert (Present (Actual_Destination));
pragma Assert (Present (Expected_Destination));
-- The actual and expected destination vertices match
--
-- Forced Actual_Destination
-- Source --------> spec -->
-- Expected_Destination
--
-- Forced Actual_Destination
-- Source --------> body -->
-- Expected_Destination
if Actual_Destination = Expected_Destination then
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has a dependency on unit $ forced by -f switch");
-- The actual destination vertex denotes the spec of a unit while the
-- expected destination is the corresponding body, and the unit is in
-- the closure of an earlier Elaborate_All pragma.
--
-- Forced Actual_Destination
-- Source --------> spec
--
-- body -->
-- Expected_Destination
elsif Elaborate_All_Active then
pragma Assert (Is_Spec_With_Body (G, Actual_Destination));
pragma Assert (Is_Body_With_Spec (G, Expected_Destination));
pragma Assert
(Proper_Body (G, Actual_Destination) = Expected_Destination);
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has a dependency on unit $ forced by -f switch");
Error_Msg_Unit_1 := Name (G, Expected_Destination);
Error_Msg_Info
(" unit $ is in the closure of pragma Elaborate_All");
-- Otherwise the actual destination vertex denotes a spec subject to
-- pragma Elaborate_Body while the expected destination denotes the
-- corresponding body.
--
-- Forced Actual_Destination
-- Source --------> spec Elaborate_Body
--
-- body -->
-- Expected_Destination
else
pragma Assert
(Is_Elaborate_Body_Pair
(G => G,
Spec_Vertex => Actual_Destination,
Body_Vertex => Expected_Destination));
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has a dependency on unit $ forced by -f switch");
Error_Msg_Unit_1 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ is subject to pragma Elaborate_Body");
Error_Msg_Unit_1 := Name (G, Expected_Destination);
Error_Msg_Info
(" unit $ is in the closure of pragma Elaborate_Body");
end if;
end Output_Forced_Transition;
--------------------------------------
-- Output_Full_Encoding_Suggestions --
--------------------------------------
procedure Output_Full_Encoding_Suggestions
(G : Library_Graph;
Cycle : Library_Graph_Cycle_Id;
First_Edge : Library_Graph_Edge_Id)
is
Succ : Library_Graph_Vertex_Id;
begin
pragma Assert (Present (G));
pragma Assert (Present (Cycle));
pragma Assert (Present (First_Edge));
if Is_Invocation_Edge (G, First_Edge) then
Succ := Successor (G, First_Edge);
if Invocation_Graph_Encoding (G, Succ) /= Full_Path_Encoding then
Error_Msg_Info
(" use detailed invocation information (compiler switch "
& "-gnatd_F)");
end if;
end if;
end Output_Full_Encoding_Suggestions;
----------------------------
-- Output_Invocation_Path --
-----------------------------
procedure Output_Invocation_Path
(Inv_Graph : Invocation_Graph;
Elaborated_Vertex : Library_Graph_Vertex_Id;
Path : IGE_Lists.Doubly_Linked_List;
Path_Id : in out Nat)
is
Lib_Graph : constant Library_Graph := Get_Lib_Graph (Inv_Graph);
Edge : Invocation_Graph_Edge_Id;
Iter : IGE_Lists.Iterator;
begin
pragma Assert (Present (Inv_Graph));
pragma Assert (Present (Lib_Graph));
pragma Assert (Present (Elaborated_Vertex));
pragma Assert (IGE_Lists.Present (Path));
Error_Msg_Nat_1 := Path_Id;
Error_Msg_Info (" path #:");
Error_Msg_Unit_1 := Name (Lib_Graph, Elaborated_Vertex);
Error_Msg_Info (" elaboration of unit $");
Iter := IGE_Lists.Iterate (Path);
while IGE_Lists.Has_Next (Iter) loop
IGE_Lists.Next (Iter, Edge);
Output_Invocation_Path_Transition
(Inv_Graph => Inv_Graph, Edge => Edge);
end loop;
Path_Id := Path_Id + 1;
end Output_Invocation_Path;
---------------------------------------
-- Output_Invocation_Path_Transition --
---------------------------------------
procedure Output_Invocation_Path_Transition
(Inv_Graph : Invocation_Graph;
Edge : Invocation_Graph_Edge_Id)
is
Lib_Graph : constant Library_Graph := Get_Lib_Graph (Inv_Graph);
pragma Assert (Present (Inv_Graph));
pragma Assert (Present (Lib_Graph));
pragma Assert (Present (Edge));
Declared : constant String := "declared at {:#:#";
Targ : constant Invocation_Graph_Vertex_Id :=
Target (Inv_Graph, Edge);
Targ_Extra : constant Name_Id :=
Extra (Inv_Graph, Edge);
Targ_Vertex : constant Library_Graph_Vertex_Id :=
Spec_Vertex (Inv_Graph, Targ);
begin
Error_Msg_Name_1 := Name (Inv_Graph, Targ);
Error_Msg_Nat_1 := Line (Inv_Graph, Targ);
Error_Msg_Nat_2 := Column (Inv_Graph, Targ);
Error_Msg_File_1 := File_Name (Lib_Graph, Targ_Vertex);
case Kind (Inv_Graph, Edge) is
when Accept_Alternative =>
Error_Msg_Info
(" selection of entry % "
& Declared);
when Access_Taken =>
Error_Msg_Info
(" aliasing of subprogram % "
& Declared);
when Call =>
Error_Msg_Info
(" call to subprogram % "
& Declared);
when Controlled_Adjustment
| Internal_Controlled_Adjustment
=>
Error_Msg_Name_1 := Targ_Extra;
Error_Msg_Info
(" adjustment actions for type % "
& Declared);
when Controlled_Finalization
| Internal_Controlled_Finalization
=>
Error_Msg_Name_1 := Targ_Extra;
Error_Msg_Info
(" finalization actions for type % "
& Declared);
when Controlled_Initialization
| Internal_Controlled_Initialization
| Type_Initialization
=>
Error_Msg_Name_1 := Targ_Extra;
Error_Msg_Info
(" initialization actions for type % "
& Declared);
when Default_Initial_Condition_Verification =>
Error_Msg_Name_1 := Targ_Extra;
Error_Msg_Info
(" verification of Default_Initial_Condition for type % "
& Declared);
when Initial_Condition_Verification =>
Error_Msg_Info
(" verification of Initial_Condition "
& Declared);
when Instantiation =>
Error_Msg_Info
(" instantiation % "
& Declared);
when Invariant_Verification =>
Error_Msg_Name_1 := Targ_Extra;
Error_Msg_Info
(" verification of invariant for type % "
& Declared);
when Postcondition_Verification =>
Error_Msg_Name_1 := Targ_Extra;
Error_Msg_Info
(" verification of postcondition for subprogram % "
& Declared);
when Protected_Entry_Call =>
Error_Msg_Info
(" call to protected entry % "
& Declared);
when Protected_Subprogram_Call =>
Error_Msg_Info
(" call to protected subprogram % "
& Declared);
when Task_Activation =>
Error_Msg_Info
(" activation of local task "
& Declared);
when Task_Entry_Call =>
Error_Msg_Info
(" call to task entry % "
& Declared);
when others =>
pragma Assert (False);
null;
end case;
end Output_Invocation_Path_Transition;
-------------------------------------------
-- Output_Invocation_Related_Suggestions --
-------------------------------------------
procedure Output_Invocation_Related_Suggestions
(G : Library_Graph;
Cycle : Library_Graph_Cycle_Id)
is
begin
pragma Assert (Present (G));
pragma Assert (Present (Cycle));
-- Nothing to do when the cycle does not contain an invocation edge
if Invocation_Edge_Count (G, Cycle) = 0 then
return;
end if;
-- The cycle contains at least one invocation edge, where at least
-- one of the paths the edge represents activates a task. The use of
-- restriction No_Entry_Calls_In_Elaboration_Code may halt the flow
-- within the task body on a select or accept statement, eliminating
-- subsequent invocation edges, thus breaking the cycle.
if not Cumulative_Restrictions.Set (No_Entry_Calls_In_Elaboration_Code)
and then Contains_Task_Activation (G, Cycle)
then
Error_Msg_Info
(" use pragma Restrictions "
& "(No_Entry_Calls_In_Elaboration_Code)");
end if;
-- The cycle contains at least one invocation edge where the successor
-- was statically elaborated. The use of the dynamic model may remove
-- one of the invocation edges in the cycle, thus breaking the cycle.
if Contains_Static_Successor_Edge (G, Cycle) then
Error_Msg_Info
(" use the dynamic elaboration model (compiler switch -gnatE)");
end if;
end Output_Invocation_Related_Suggestions;
----------------------------------
-- Output_Invocation_Transition --
----------------------------------
procedure Output_Invocation_Transition
(Inv_Graph : Invocation_Graph;
Source : Library_Graph_Vertex_Id;
Destination : Library_Graph_Vertex_Id)
is
Lib_Graph : constant Library_Graph := Get_Lib_Graph (Inv_Graph);
begin
pragma Assert (Present (Inv_Graph));
pragma Assert (Present (Lib_Graph));
pragma Assert (Present (Source));
pragma Assert (Present (Destination));
Error_Msg_Unit_1 := Name (Lib_Graph, Source);
Error_Msg_Unit_2 := Name (Lib_Graph, Destination);
Error_Msg_Info
(" unit $ invokes a construct of unit $ at elaboration time");
Find_And_Output_Invocation_Paths
(Inv_Graph => Inv_Graph,
Source => Source,
Destination => Destination);
end Output_Invocation_Transition;
------------------------------------------
-- Output_Reason_And_Circularity_Header --
------------------------------------------
procedure Output_Reason_And_Circularity_Header
(G : Library_Graph;
First_Edge : Library_Graph_Edge_Id)
is
pragma Assert (Present (G));
pragma Assert (Present (First_Edge));
Succ : constant Library_Graph_Vertex_Id := Successor (G, First_Edge);
begin
Error_Msg_Unit_1 := Name (G, Succ);
Error_Msg ("Elaboration circularity detected");
Error_Msg_Info ("");
Error_Msg_Info (" Reason:");
Error_Msg_Info ("");
Error_Msg_Info (" unit $ depends on its own elaboration");
Error_Msg_Info ("");
Error_Msg_Info (" Circularity:");
Error_Msg_Info ("");
end Output_Reason_And_Circularity_Header;
------------------------
-- Output_Suggestions --
------------------------
procedure Output_Suggestions
(G : Library_Graph;
Cycle : Library_Graph_Cycle_Id;
First_Edge : Library_Graph_Edge_Id)
is
pragma Assert (Present (G));
pragma Assert (Present (Cycle));
pragma Assert (Present (First_Edge));
Pred : constant Library_Graph_Vertex_Id := Predecessor (G, First_Edge);
Succ : constant Library_Graph_Vertex_Id := Successor (G, First_Edge);
begin
Error_Msg_Info ("");
Error_Msg_Info (" Suggestions:");
Error_Msg_Info ("");
-- Output edge-specific suggestions
if Is_Elaborate_All_Edge (G, First_Edge) then
Output_Elaborate_All_Suggestions
(G => G,
Pred => Pred,
Succ => Succ);
elsif Is_Elaborate_Body_Edge (G, First_Edge) then
Output_Elaborate_Body_Suggestions
(G => G,
Succ => Succ);
elsif Is_Elaborate_Edge (G, First_Edge) then
Output_Elaborate_Suggestions
(G => G,
Pred => Pred,
Succ => Succ);
elsif Is_Forced_Edge (G, First_Edge) then
Output_Forced_Suggestions
(G => G,
Pred => Pred,
Succ => Succ);
end if;
-- Output general purpose suggestions
Output_Invocation_Related_Suggestions
(G => G,
Cycle => Cycle);
Output_Full_Encoding_Suggestions
(G => G,
Cycle => Cycle,
First_Edge => First_Edge);
Output_All_Cycles_Suggestions (G);
Error_Msg_Info ("");
end Output_Suggestions;
-----------------------
-- Output_Transition --
-----------------------
procedure Output_Transition
(Inv_Graph : Invocation_Graph;
Current_Edge : Library_Graph_Edge_Id;
Next_Edge : Library_Graph_Edge_Id;
Elaborate_All_Active : Boolean)
is
Lib_Graph : constant Library_Graph := Get_Lib_Graph (Inv_Graph);
pragma Assert (Present (Inv_Graph));
pragma Assert (Present (Lib_Graph));
pragma Assert (Present (Current_Edge));
pragma Assert (Present (Next_Edge));
Actual_Destination : constant Library_Graph_Vertex_Id :=
Predecessor (Lib_Graph, Current_Edge);
Expected_Destination : constant Library_Graph_Vertex_Id :=
Successor (Lib_Graph, Next_Edge);
Source : constant Library_Graph_Vertex_Id :=
Successor (Lib_Graph, Current_Edge);
begin
if Is_Elaborate_All_Edge (Lib_Graph, Current_Edge) then
Output_Elaborate_All_Transition
(G => Lib_Graph,
Source => Source,
Actual_Destination => Actual_Destination,
Expected_Destination => Expected_Destination);
elsif Is_Elaborate_Body_Edge (Lib_Graph, Current_Edge) then
Output_Elaborate_Body_Transition
(G => Lib_Graph,
Source => Source,
Actual_Destination => Actual_Destination,
Expected_Destination => Expected_Destination,
Elaborate_All_Active => Elaborate_All_Active);
elsif Is_Elaborate_Edge (Lib_Graph, Current_Edge) then
Output_Elaborate_Transition
(G => Lib_Graph,
Source => Source,
Actual_Destination => Actual_Destination,
Expected_Destination => Expected_Destination);
elsif Is_Forced_Edge (Lib_Graph, Current_Edge) then
Output_Forced_Transition
(G => Lib_Graph,
Source => Source,
Actual_Destination => Actual_Destination,
Expected_Destination => Expected_Destination,
Elaborate_All_Active => Elaborate_All_Active);
elsif Is_Invocation_Edge (Lib_Graph, Current_Edge) then
Output_Invocation_Transition
(Inv_Graph => Inv_Graph,
Source => Source,
Destination => Expected_Destination);
else
pragma Assert (Is_With_Edge (Lib_Graph, Current_Edge));
Output_With_Transition
(G => Lib_Graph,
Source => Source,
Actual_Destination => Actual_Destination,
Expected_Destination => Expected_Destination,
Elaborate_All_Active => Elaborate_All_Active);
end if;
end Output_Transition;
----------------------------
-- Output_With_Transition --
----------------------------
procedure Output_With_Transition
(G : Library_Graph;
Source : Library_Graph_Vertex_Id;
Actual_Destination : Library_Graph_Vertex_Id;
Expected_Destination : Library_Graph_Vertex_Id;
Elaborate_All_Active : Boolean)
is
begin
pragma Assert (Present (G));
pragma Assert (Present (Source));
pragma Assert (Present (Actual_Destination));
pragma Assert (Present (Expected_Destination));
-- The actual and expected destination vertices match, and denote the
-- initial declaration of a unit.
--
-- with Actual_Destination
-- Source ------> spec -->
-- Expected_Destination
--
-- with Actual_Destination
-- Source ------> stand-alone body -->
-- Expected_Destination
if Actual_Destination = Expected_Destination then
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has with clause for unit $");
-- The actual destination vertex denotes the spec of a unit while the
-- expected destination is the corresponding body, and the unit is in
-- the closure of an earlier Elaborate_All pragma.
--
-- with Actual_Destination
-- Source ------> spec
--
-- body -->
-- Expected_Destination
elsif Elaborate_All_Active then
pragma Assert (Is_Spec_With_Body (G, Actual_Destination));
pragma Assert (Is_Body_With_Spec (G, Expected_Destination));
pragma Assert
(Proper_Body (G, Actual_Destination) = Expected_Destination);
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has with clause for unit $");
Error_Msg_Unit_1 := Name (G, Expected_Destination);
Error_Msg_Info
(" unit $ is in the closure of pragma Elaborate_All");
-- Otherwise the actual destination vertex denotes a spec subject to
-- pragma Elaborate_Body while the expected destination denotes the
-- corresponding body.
--
-- with Actual_Destination
-- Source ------> spec Elaborate_Body
--
-- body -->
-- Expected_Destination
else
pragma Assert
(Is_Elaborate_Body_Pair
(G => G,
Spec_Vertex => Actual_Destination,
Body_Vertex => Expected_Destination));
Error_Msg_Unit_1 := Name (G, Source);
Error_Msg_Unit_2 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ has with clause for unit $");
Error_Msg_Unit_1 := Name (G, Actual_Destination);
Error_Msg_Info
(" unit $ is subject to pragma Elaborate_Body");
Error_Msg_Unit_1 := Name (G, Expected_Destination);
Error_Msg_Info
(" unit $ is in the closure of pragma Elaborate_Body");
end if;
end Output_With_Transition;
------------------
-- Visit_Vertex --
------------------
procedure Visit_Vertex
(Inv_Graph : Invocation_Graph;
Invoker : Invocation_Graph_Vertex_Id;
Invoker_Vertex : Library_Graph_Vertex_Id;
Last_Vertex : Library_Graph_Vertex_Id;
Elaborated_Vertex : Library_Graph_Vertex_Id;
End_Vertex : Library_Graph_Vertex_Id;
Visited_Invokers : IGV_Sets.Membership_Set;
Path : IGE_Lists.Doubly_Linked_List;
Path_Id : in out Nat)
is
Lib_Graph : constant Library_Graph := Get_Lib_Graph (Inv_Graph);
Edge : Invocation_Graph_Edge_Id;
Iter : Edges_To_Targets_Iterator;
Targ : Invocation_Graph_Vertex_Id;
begin
pragma Assert (Present (Inv_Graph));
pragma Assert (Present (Lib_Graph));
pragma Assert (Present (Invoker));
pragma Assert (Present (Invoker_Vertex));
pragma Assert (Present (Last_Vertex));
pragma Assert (Present (Elaborated_Vertex));
pragma Assert (Present (End_Vertex));
pragma Assert (IGV_Sets.Present (Visited_Invokers));
pragma Assert (IGE_Lists.Present (Path));
-- The current invocation vertex resides within the end library vertex.
-- Emit the path that started from some elaboration root and ultimately
-- reached the desired library vertex.
if Body_Vertex (Inv_Graph, Invoker) = End_Vertex
and then Invoker_Vertex /= Last_Vertex
then
Output_Invocation_Path
(Inv_Graph => Inv_Graph,
Elaborated_Vertex => Elaborated_Vertex,
Path => Path,
Path_Id => Path_Id);
-- Otherwise extend the search for the end library vertex via all edges
-- to targets.
elsif not IGV_Sets.Contains (Visited_Invokers, Invoker) then
-- Prepare for invoker backtracking
IGV_Sets.Insert (Visited_Invokers, Invoker);
-- Extend the search via all edges to targets
Iter := Iterate_Edges_To_Targets (Inv_Graph, Invoker);
while Has_Next (Iter) loop
Next (Iter, Edge);
-- Prepare for edge backtracking
IGE_Lists.Append (Path, Edge);
-- The traversal proceeds through the library vertex that houses
-- the body of the target.
Targ := Target (Inv_Graph, Edge);
Visit_Vertex
(Inv_Graph => Inv_Graph,
Invoker => Targ,
Invoker_Vertex => Body_Vertex (Inv_Graph, Targ),
Last_Vertex => Invoker_Vertex,
Elaborated_Vertex => Elaborated_Vertex,
End_Vertex => End_Vertex,
Visited_Invokers => Visited_Invokers,
Path => Path,
Path_Id => Path_Id);
-- Backtrack the edge
IGE_Lists.Delete_Last (Path);
end loop;
-- Backtrack the invoker
IGV_Sets.Delete (Visited_Invokers, Invoker);
end if;
end Visit_Vertex;
end Bindo.Diagnostics;
|
optikos/oasis | Ada | 2,935 | ads | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Elements.Declarations;
with Program.Elements.Defining_Identifiers;
with Program.Lexical_Elements;
with Program.Elements.Definitions;
with Program.Elements.Expressions;
with Program.Elements.Aspect_Specifications;
package Program.Elements.Object_Declarations is
pragma Pure (Program.Elements.Object_Declarations);
type Object_Declaration is
limited interface and Program.Elements.Declarations.Declaration;
type Object_Declaration_Access is access all Object_Declaration'Class
with Storage_Size => 0;
not overriding function Names
(Self : Object_Declaration)
return not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Vector_Access is abstract;
not overriding function Object_Subtype
(Self : Object_Declaration)
return not null Program.Elements.Definitions.Definition_Access
is abstract;
not overriding function Initialization_Expression
(Self : Object_Declaration)
return Program.Elements.Expressions.Expression_Access is abstract;
not overriding function Aspects
(Self : Object_Declaration)
return Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access is abstract;
not overriding function Has_Aliased
(Self : Object_Declaration)
return Boolean is abstract;
not overriding function Has_Constant
(Self : Object_Declaration)
return Boolean is abstract;
type Object_Declaration_Text is limited interface;
type Object_Declaration_Text_Access is
access all Object_Declaration_Text'Class with Storage_Size => 0;
not overriding function To_Object_Declaration_Text
(Self : aliased in out Object_Declaration)
return Object_Declaration_Text_Access is abstract;
not overriding function Colon_Token
(Self : Object_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Aliased_Token
(Self : Object_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Constant_Token
(Self : Object_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Assignment_Token
(Self : Object_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function With_Token
(Self : Object_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Semicolon_Token
(Self : Object_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
end Program.Elements.Object_Declarations;
|
reznikmm/matreshka | Ada | 7,061 | 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.Cell_Content_Change_Elements is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters)
return Table_Cell_Content_Change_Element_Node is
begin
return Self : Table_Cell_Content_Change_Element_Node do
Matreshka.ODF_Table.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Table_Prefix);
end return;
end Create;
----------------
-- Enter_Node --
----------------
overriding procedure Enter_Node
(Self : not null access Table_Cell_Content_Change_Element_Node;
Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class;
Control : in out XML.DOM.Visitors.Traverse_Control) is
begin
if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then
ODF.DOM.Visitors.Abstract_ODF_Visitor'Class
(Visitor).Enter_Table_Cell_Content_Change
(ODF.DOM.Table_Cell_Content_Change_Elements.ODF_Table_Cell_Content_Change_Access
(Self),
Control);
else
Matreshka.DOM_Elements.Abstract_Element_Node
(Self.all).Enter_Node (Visitor, Control);
end if;
end Enter_Node;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Table_Cell_Content_Change_Element_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Cell_Content_Change_Element;
end Get_Local_Name;
----------------
-- Leave_Node --
----------------
overriding procedure Leave_Node
(Self : not null access Table_Cell_Content_Change_Element_Node;
Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class;
Control : in out XML.DOM.Visitors.Traverse_Control) is
begin
if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then
ODF.DOM.Visitors.Abstract_ODF_Visitor'Class
(Visitor).Leave_Table_Cell_Content_Change
(ODF.DOM.Table_Cell_Content_Change_Elements.ODF_Table_Cell_Content_Change_Access
(Self),
Control);
else
Matreshka.DOM_Elements.Abstract_Element_Node
(Self.all).Leave_Node (Visitor, Control);
end if;
end Leave_Node;
----------------
-- Visit_Node --
----------------
overriding procedure Visit_Node
(Self : not null access Table_Cell_Content_Change_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) is
begin
if Iterator in ODF.DOM.Iterators.Abstract_ODF_Iterator'Class then
ODF.DOM.Iterators.Abstract_ODF_Iterator'Class
(Iterator).Visit_Table_Cell_Content_Change
(Visitor,
ODF.DOM.Table_Cell_Content_Change_Elements.ODF_Table_Cell_Content_Change_Access
(Self),
Control);
else
Matreshka.DOM_Elements.Abstract_Element_Node
(Self.all).Visit_Node (Iterator, Visitor, Control);
end if;
end Visit_Node;
begin
Matreshka.DOM_Documents.Register_Element
(Matreshka.ODF_String_Constants.Table_URI,
Matreshka.ODF_String_Constants.Cell_Content_Change_Element,
Table_Cell_Content_Change_Element_Node'Tag);
end Matreshka.ODF_Table.Cell_Content_Change_Elements;
|
Rodeo-McCabe/orka | Ada | 1,868 | ads | -- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2020 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 Orka.SIMD.SSE2.Doubles;
with Orka.SIMD.AVX.Doubles;
package Orka.SIMD.FMA.Doubles.Arithmetic is
pragma Pure;
use SSE2.Doubles;
use AVX.Doubles;
function Multiply_Add (A, B, C : m128d) return m128d
with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_vfmaddpd";
function Multiply_Add_Sub (A, B, C : m128d) return m128d
with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_vfmaddsubpd";
function Multiply_Add (A, B, C : m256d) return m256d
with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_vfmaddpd256";
function Multiply_Add_Sub (A, B, C : m256d) return m256d
with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_vfmaddsubpd256";
function "*" (Left, Right : m256d_Array) return m256d_Array
with Inline;
-- Multiplies the left matrix with the right matrix. Matrix multiplication
-- is associative, but not commutative.
function "*" (Left : m256d_Array; Right : m256d) return m256d
with Inline;
-- Multiplies the left matrix with the right vector. Matrix multiplication
-- is associative, but not commutative.
end Orka.SIMD.FMA.Doubles.Arithmetic;
|
zhmu/ananas | Ada | 1,440 | ads | generic
package Predicate14 with
SPARK_Mode
is
type Field_Type is (F_Initial, F_Payload, F_Final);
type State_Type is (S_Valid, S_Invalid);
type Cursor_Type (State : State_Type := S_Invalid) is private;
type Cursors_Type is array (Field_Type) of Cursor_Type;
type Context_Type is private;
type Result_Type (Field : Field_Type := F_Initial) is
record
case Field is
when F_Initial | F_Final =>
null;
when F_Payload =>
Value : Integer;
end case;
end record;
function Valid_Context (Context : Context_Type) return Boolean;
private
function Valid_Type (Result : Result_Type) return Boolean is
(Result.Field = F_Initial);
type Cursor_Type (State : State_Type := S_Invalid) is
record
case State is
when S_Valid =>
Value : Result_Type;
when S_Invalid =>
null;
end case;
end record
with Dynamic_Predicate =>
(if State = S_Valid then Valid_Type (Value));
type Context_Type is
record
Field : Field_Type := F_Initial;
Cursors : Cursors_Type := (others => (State => S_Invalid));
end record;
function Valid_Context (Context : Context_Type) return Boolean is
(for all F in Context.Cursors'Range =>
(Context.Cursors (F).Value.Field = F));
procedure Dummy;
end Predicate14; |
onox/orka | Ada | 2,665 | ads | -- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2016 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 Orka.Rendering.Buffers.Mapped.Unsynchronized;
package Orka.Rendering.Buffers.MDI is
pragma Preelaborate;
package UB renames Mapped.Unsynchronized;
type Batch
(Vertex_Kind : Types.Numeric_Type;
Index_Kind : Types.Index_Type)
is tagged record
-- Attributes
Data : UB.Unsynchronized_Mapped_Buffer
(Kind => Vertex_Kind,
Mode => Mapped.Write);
Indices : UB.Unsynchronized_Mapped_Buffer
(Kind => Index_Kind,
Mode => Mapped.Write);
Commands : UB.Unsynchronized_Mapped_Buffer
(Kind => Types.Elements_Command_Type,
Mode => Mapped.Write);
Index_Offset : Natural := 0;
Vertex_Offset : Natural := 0;
Draw_Index : Natural := 0;
Instance_Index : Natural := 0;
end record;
procedure Append
(Object : in out Batch;
Instances : Natural;
Vertices : Natural;
Indices : Natural;
Append_Vertices : not null access procedure (Offset, Count : Natural);
Append_Indices : not null access procedure (Offset, Count : Natural));
function Create_Batch
(Vertex_Kind : Types.Numeric_Type;
Index_Kind : Types.Index_Type;
Parts, Vertex_Data, Indices : Positive) return Batch;
procedure Finish_Batch (Object : in out Batch);
-----------------------------------------------------------------------------
function Create_Batch (Parts, Vertices, Indices : Positive) return Batch
with Post => Create_Batch'Result.Vertex_Kind = Types.Half_Type and
Create_Batch'Result.Index_Kind = Types.UInt_Type;
procedure Append
(Object : in out Batch;
Positions : not null Indirect.Half_Array_Access;
Normals : not null Indirect.Half_Array_Access;
UVs : not null Indirect.Half_Array_Access;
Indices : not null Indirect.UInt_Array_Access)
with Pre => Object.Vertex_Kind = Types.Half_Type and Object.Index_Kind = Types.UInt_Type;
end Orka.Rendering.Buffers.MDI;
|
ekoeppen/STM32_Generic_Ada_Drivers | Ada | 2,069 | ads | with STM32_SVD.GPIO; use STM32_SVD.GPIO;
with STM32_SVD.USART; use STM32_SVD.USART;
with STM32_SVD.SPI; use STM32_SVD.SPI;
with STM32_SVD.I2C;
with STM32GD.GPIO;
with STM32GD.USART;
with STM32GD.SPI;
with STM32GD.I2C;
with STM32GD.RTC;
with STM32GD.Clock;
with STM32GD.Clock.Tree;
with Drivers.Text_IO;
package STM32GD.Board is
package Clocks is new STM32GD.Clock.Tree (LSE_Enabled => True);
package BUTTON is new STM32GD.GPIO (Pin => 7, Port => GPIOA_Periph);
package SWO is new STM32GD.GPIO (Pin => 3, Port => GPIOB_Periph, Alternate_Output => True);
package LED is new STM32GD.GPIO (Pin => 13, Port => GPIOC_Periph, Output => True);
package LED2 is new STM32GD.GPIO (Pin => 9, Port => GPIOB_Periph, Output => True);
package SCLK is new STM32GD.GPIO (Pin => 5, Port => GPIOA_Periph, Alternate_Output => True);
package MISO is new STM32GD.GPIO (Pin => 6, Port => GPIOA_Periph, Alternate_Output => True);
package MOSI is new STM32GD.GPIO (Pin => 7, Port => GPIOA_Periph, Alternate_Output => True);
package CSN is new STM32GD.GPIO (Pin => 4, Port => GPIOA_Periph, Output => True);
package TX is new STM32GD.GPIO (Pin => 9, Port => GPIOA_Periph, Alternate_Output => True);
package RX is new STM32GD.GPIO (Pin => 10, Port => GPIOA_Periph);
package SCL is new STM32GD.GPIO (Pin => 6, Port => GPIOB_Periph, Open_Drain => True, Alternate_Output => True);
package SDA is new STM32GD.GPIO (Pin => 7, Port => GPIOB_Periph, Open_Drain => True, Alternate_Output => True);
package SPI is new STM32GD.SPI (SPI => STM32_SVD.SPI.SPI1_Periph);
package USART is new STM32GD.USART (USART => STM32_SVD.USART.USART2_Periph, Speed => 115200, Clock_Tree => STM32GD.Board.Clocks, Clock => STM32GD.Clock.HSI);
package RTC is new STM32GD.RTC (Clock_Tree => STM32GD.Board.Clocks, Clock => STM32GD.Clock.LSE);
package Text_IO is new Drivers.Text_IO (USART => STM32GD.Board.USART);
procedure Init;
procedure USB_Re_Enumerate;
end STM32GD.Board;
|
Fabien-Chouteau/tiled-code-gen | Ada | 15,931 | adb | ------------------------------------------------------------------------------
-- --
-- tiled-code-gen --
-- --
-- Copyright (C) 2018 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 Ada.Directories;
with Ada.Text_IO;
with PDF_Out; use PDF_Out;
with TCG.Palette;
with TCG.Tilesets;
with TCG.Tile_Layers;
with TCG.Utils;
package body TCG.Outputs.PDF is
use type Palette.Color_Id;
use type Palette.ARGB_Color;
use type Tilesets.Master_Tile_Id;
function Convert (C : Palette.ARGB_Color) return PDF_Out.Color_Type;
procedure Draw_Square (Outfile : in out PDF_Out_File;
Rect : Rectangle;
Color : Color_Type);
procedure Put_Palette_Info (Outfile : in out PDF_Out_File;
Rect_Size : Real := 60.0;
Colors_Per_Line : Natural := 3);
procedure Draw_Tile (Outfile : in out PDF_Out_File;
Id : Tilesets.Master_Tile_Id;
Rect : Rectangle);
procedure Put_Master_Tileset (Outfile : in out PDF_Out_File;
Tile_Size : Real := 130.0;
Tiles_Per_Line : Natural := 2);
procedure Draw_Tile_Collision
(Outfile : in out PDF_Out_File;
Id : Tilesets.Master_Tile_Id;
Rect : Rectangle);
procedure Put_Master_Tileset_Collisions
(Outfile : in out PDF_Out_File;
Tile_Size : Real := 130.0;
Tiles_Per_Line : Natural := 2);
procedure Put_Map (Outfile : in out PDF_Out_File;
M : Maps.Map);
-------------
-- Convert --
-------------
function Convert (C : Palette.ARGB_Color)
return PDF_Out.Color_Type
is
R : constant Real := Real (C.R) / Real (Palette.Component'Last);
G : constant Real := Real (C.G) / Real (Palette.Component'Last);
B : constant Real := Real (C.B) / Real (Palette.Component'Last);
begin
return (R, G, B);
end Convert;
-----------------
-- Draw_Square --
-----------------
procedure Draw_Square (Outfile : in out PDF_Out_File;
Rect : Rectangle;
Color : PDF_Out.Color_Type)
is
begin
PDF_Out.Color (Outfile, Color);
Draw (Outfile, Rect, fill);
end Draw_Square;
----------------------
-- Put_Palette_Info --
----------------------
procedure Put_Palette_Info (Outfile : in out PDF_Out_File;
Rect_Size : Real := 60.0;
Colors_Per_Line : Natural := 3)
is
Layout : constant Rectangle := PDF_Out.Layout (Outfile);
Top_Margin : constant Real := 100.0;
Left_Margin : constant Real := Rect_Size;
Spacing : constant Real :=
(Layout.width - Left_Margin) / Real (Colors_Per_Line);
X : Real := Layout.x_min + Left_Margin;
Y : Real := Layout.y_min + Layout.height - Rect_Size - Top_Margin;
Cnt : Natural := 1;
C : Palette.ARGB_Color;
begin
Font_Size (Outfile, 40.0);
Put_Line (Outfile, "Color Palette");
Font_Size (Outfile, 11.0);
for Id in Palette.First_Id .. Palette.Last_Id loop
C := Palette.Convert (Id);
Draw_Square (Outfile, (X, Y, Rect_Size, Rect_Size), Convert (C));
Color (Outfile, PDF_Out.black);
Put_XY (Outfile,
X + Rect_Size * 1.3,
Y + Rect_Size * 0.8,
"Color #" & Id'Img);
New_Line (Outfile);
Put_Line (Outfile, "R:" & C.R'Img);
Put_Line (Outfile, "G:" & C.G'Img);
Put_Line (Outfile, "B:" & C.B'Img);
if Palette.Transparent = Id then
Put_Line (Outfile, "Transparent");
end if;
if Cnt mod Colors_Per_Line = 0 then
Y := Y - (Rect_Size + 20.0);
X := Layout.x_min + Left_Margin;
if Y <= Top_Margin then
New_Page (Outfile);
Y := Layout.y_min + Layout.height - Rect_Size - Top_Margin;
end if;
else
X := X + Spacing;
end if;
Cnt := Cnt + 1;
end loop;
end Put_Palette_Info;
---------------
-- Draw_Tile --
---------------
procedure Draw_Tile (Outfile : in out PDF_Out_File;
Id : Tilesets.Master_Tile_Id;
Rect : Rectangle)
is
Pix_W : constant Real := Rect.width / Real (Tilesets.Tile_Width);
Pix_H : constant Real := Rect.height / Real (Tilesets.Tile_Height);
C : Palette.ARGB_Color;
begin
for PX in 1 .. Tilesets.Tile_Width loop
for PY in 1 .. Tilesets.Tile_Height loop
C := Tilesets.Pix (Id, PX, (Tilesets.Tile_Height - PY + 1));
if C /= Palette.Transparent then
Draw_Square (Outfile,
(Rect.x_min + Real (PX - 1) * Pix_W,
Rect.y_min + Real (PY - 1) * Pix_H,
Pix_W, Pix_H),
Convert (C));
end if;
end loop;
end loop;
end Draw_Tile;
------------------------
-- Put_Master_Tileset --
------------------------
procedure Put_Master_Tileset (Outfile : in out PDF_Out_File;
Tile_Size : Real := 130.0;
Tiles_Per_Line : Natural := 2)
is
Layout : constant Rectangle := PDF_Out.Layout (Outfile);
Top_Margin : constant Real := 100.0;
Left_Margin : constant Real := 50.0;
Spacing : constant Real :=
(Layout.width - Left_Margin) / Real (Tiles_Per_Line);
X : Real := Layout.x_min + Left_Margin;
Y : Real := Layout.y_min + Layout.height - Tile_Size - Top_Margin;
Cnt : Natural := 1;
begin
Font_Size (Outfile, 40.0);
Put_Line (Outfile, "Tileset");
Font_Size (Outfile, 12.0);
for Id in Tilesets.First_Id .. Tilesets.Last_Id loop
if Id /= Tilesets.No_Tile then
Draw_Tile (Outfile, Id, (X, Y, Tile_Size, Tile_Size));
end if;
Color (Outfile, PDF_Out.black);
Draw (Outfile, (X, Y, Tile_Size, Tile_Size), stroke);
Put_XY (Outfile,
X + Tile_Size * 1.1,
Y + Tile_Size * 0.8,
"Tile #" & Id'Img);
New_Line (Outfile);
if Id = Tilesets.No_Tile then
Put_Line (Outfile, "No tile");
end if;
New_Line (Outfile);
if Cnt mod Tiles_Per_Line = 0 then
Y := Y - (Tile_Size + 20.0);
X := Layout.x_min + Left_Margin;
if Y <= Top_Margin then
New_Page (Outfile);
Y := Layout.y_min + Layout.height - Tile_Size - Top_Margin;
end if;
else
X := X + Spacing;
end if;
Cnt := Cnt + 1;
end loop;
end Put_Master_Tileset;
-------------------------
-- Draw_Tile_Collision --
-------------------------
procedure Draw_Tile_Collision (Outfile : in out PDF_Out_File;
Id : Tilesets.Master_Tile_Id;
Rect : Rectangle)
is
Pix_W : constant Real := Rect.width / Real (Tilesets.Tile_Width);
Pix_H : constant Real := Rect.height / Real (Tilesets.Tile_Height);
begin
for PX in 1 .. Tilesets.Tile_Width loop
for PY in 1 .. Tilesets.Tile_Height loop
if Tilesets.Collision (Id, PX, (Tilesets.Tile_Height - PY + 1))
then
Draw_Square (Outfile,
(Rect.x_min + Real (PX - 1) * Pix_W,
Rect.y_min + Real (PY - 1) * Pix_H,
Pix_W, Pix_H),
(1.0, 0.0, 0.0));
end if;
end loop;
end loop;
end Draw_Tile_Collision;
-----------------------------------
-- Put_Master_Tileset_Collisions --
-----------------------------------
procedure Put_Master_Tileset_Collisions
(Outfile : in out PDF_Out_File;
Tile_Size : Real := 130.0;
Tiles_Per_Line : Natural := 2)
is
Layout : constant Rectangle := PDF_Out.Layout (Outfile);
Top_Margin : constant Real := 100.0;
Left_Margin : constant Real := 50.0;
Spacing : constant Real :=
(Layout.width - Left_Margin) / Real (Tiles_Per_Line);
X : Real := Layout.x_min + Left_Margin;
Y : Real := Layout.y_min + Layout.height - Tile_Size - Top_Margin;
Cnt : Natural := 1;
begin
Font_Size (Outfile, 40.0);
Put_Line (Outfile, "Tileset collisions");
Font_Size (Outfile, 12.0);
for Id in Tilesets.First_Id .. Tilesets.Last_Id loop
if Id /= Tilesets.No_Tile then
Draw_Tile_Collision (Outfile, Id, (X, Y, Tile_Size, Tile_Size));
end if;
Color (Outfile, PDF_Out.black);
Draw (Outfile, (X, Y, Tile_Size, Tile_Size), stroke);
Put_XY (Outfile,
X + Tile_Size * 1.1,
Y + Tile_Size * 0.8,
"Tile #" & Id'Img);
New_Line (Outfile);
if Id = Tilesets.No_Tile then
Put_Line (Outfile, "No tile");
end if;
New_Line (Outfile);
if Cnt mod Tiles_Per_Line = 0 then
Y := Y - (Tile_Size + 20.0);
X := Layout.x_min + Left_Margin;
if Y <= Top_Margin then
New_Page (Outfile);
Y := Layout.y_min + Layout.height - Tile_Size - Top_Margin;
end if;
else
X := X + Spacing;
end if;
Cnt := Cnt + 1;
end loop;
end Put_Master_Tileset_Collisions;
-------------
-- Put_Map --
-------------
procedure Put_Map (Outfile : in out PDF_Out_File;
M : Maps.Map)
is
Tile_Width : constant Natural := Maps.Tile_Width (M);
Tile_Height : constant Natural := Maps.Tile_Height (M);
Width : constant Natural := Maps.Width (M) * Tile_Width;
Height : constant Natural := Maps.Height (M) * Tile_Height;
Layout : constant Rectangle := PDF_Out.Layout (Outfile);
Pix_W : constant Real := Layout.width / Real (Width);
Pix_H : constant Real := Layout.height / Real (Height);
Pix_Size : constant Real := Real'Min (Pix_W, Pix_H);
C : Palette.ARGB_Color;
T_Id : Tilesets.Master_Tile_Id;
begin
New_Page (Outfile);
for Y in reverse 0 .. Height - 1 loop
for X in 0 .. Width - 1 loop
C := Palette.Transparent;
for L in reverse Maps.First_Layer (M) .. Maps.Last_Layer (M)
loop
T_Id := Maps.Master_Tile (M,
Tile_Layers.Tile (Maps.Layer (M, L),
1 + X / Tile_Width,
1 + Y / Tile_Height));
if T_Id /= Tilesets.No_Tile then
C := Tilesets.Pix (T_Id,
1 + X mod Tile_Width,
1 + Y mod Tile_Height);
end if;
if C /= Palette.Transparent then
Draw_Square (Outfile,
(Layout.x_min + Real (X) * Pix_Size,
Layout.y_min + Real (Width - 1 - Y) * Pix_Size,
Pix_Size, Pix_Size),
Convert (C));
exit;
end if;
end loop;
end loop;
end loop;
Color (Outfile, PDF_Out.black);
Font_Size (Outfile, 20.0);
Put_XY (Outfile,
50.0,
Layout.y_min + Layout.height - 30.0,
Maps.Name (M));
New_Line (Outfile);
Font_Size (Outfile, 12.0);
for L in reverse Maps.First_Layer (M) .. Maps.Last_Layer (M) loop
Put_Line (Outfile, " - " & Tile_Layers.Name (Maps.Layer (M, L)));
end loop;
end Put_Map;
-----------------
-- Gen_PDF_Doc --
-----------------
procedure Gen_PDF_Doc (Directory : String;
Filename : String;
Map_List : TCG.Maps.List.List)
is
Outfile : PDF_Out_File;
begin
if not TCG.Utils.Make_Dir (Directory) then
Ada.Text_IO.Put_Line
(Ada.Text_IO.Standard_Error,
"Cannot create directory for documentation: '" & Directory & "'");
return;
end if;
Create (Outfile, Ada.Directories.Compose (Directory, Filename));
Title (Outfile, "");
Subject (Outfile, "");
Keywords (Outfile, "Tiled, maps, sprites, palette");
Creator_Application (Outfile, "Tiled_Code_Gen");
Page_Setup (Outfile, A4_portrait);
Put_Palette_Info (Outfile);
New_Page (Outfile);
Put_Master_Tileset (Outfile,
Tile_Size => 50.0,
Tiles_Per_Line => 5);
New_Page (Outfile);
Put_Master_Tileset_Collisions (Outfile,
Tile_Size => 50.0,
Tiles_Per_Line => 5);
for M of Map_List loop
Put_Map (Outfile, M);
end loop;
Close (Outfile);
end Gen_PDF_Doc;
end TCG.Outputs.PDF;
|
gspu/synth | Ada | 38,019 | adb | -- This file is covered by the Internet Software Consortium (ISC) License
-- Reference: ../License.txt
package body Replicant.Platform is
------------------
-- df_command --
------------------
function df_command return String is
begin
case platform_type is
when dragonfly |
freebsd |
netbsd => return "/bin/df -h";
when solaris => return "/usr/sbin/df -h";
when linux => return "/usr/bin/df -h";
when unknown => return "skip";
end case;
end df_command;
-------------------------
-- file_type_command --
-------------------------
function file_type_command return String
is
bsd_command : constant String := "/usr/bin/file -b " &
JT.USS (PM.configuration.dir_system) & "/bin/sh";
lin_command : constant String := "/usr/bin/file -b " &
JT.USS (PM.configuration.dir_system) & "/usr/bin/bash";
sol_command : constant String := "/usr/bin/file " &
JT.USS (PM.configuration.dir_system) & "/usr/sbin/sh";
begin
case platform_type is
when freebsd | dragonfly | netbsd =>
return bsd_command;
when linux =>
return lin_command;
when solaris =>
return sol_command;
when unknown =>
return "bad file_type_command invocation";
end case;
end file_type_command;
--------------------------
-- file_is_executable --
--------------------------
function file_is_executable (filename : String) return Boolean
is
command : constant String := "/usr/bin/file -b -L " &
"-e ascii -e encoding -e tar -e compress " &
LAT.Quotation & filename & LAT.Quotation;
sol_cmd : constant String := "/usr/bin/file " &
LAT.Quotation & filename & LAT.Quotation;
comres : JT.Text;
begin
case platform_type is
when dragonfly | freebsd | netbsd | linux =>
comres := internal_system_command (command);
when solaris =>
comres := internal_system_command (sol_cmd);
when unknown =>
return False;
end case;
return JT.contains (comres, "executable");
exception
when others => return False;
end file_is_executable;
--------------------------
-- ARM_version_7 --
--------------------------
function ARM_version_7 return Boolean
is
-- Don't worry about other platforms, consider synth *BSD now
command : constant String := "/usr/bin/readelf -A " &
JT.USS (PM.configuration.dir_system) & "/bin/sh";
comres : JT.Text;
begin
comres := internal_system_command (command);
declare
contents : constant String := JT.USS (comres);
markers : JT.Line_Markers;
begin
JT.initialize_markers (contents, markers);
if JT.next_line_with_content_present (contents, " Tag_CPU_arch:", markers) then
declare
line : constant String := JT.extract_line (contents, markers);
begin
return JT.trim (JT.part_2 (line, ":")) = "ARM v7";
end;
else
TIO.Put_Line ("ARM_version_7 error: expected Tag_CPU_arch not found");
return False;
end if;
end;
exception
when others =>
TIO.Put_Line ("Handled exception (ARM_version_7 failed: defaulted to FALSE)");
return False;
end ARM_version_7;
--------------------------
-- dynamically_linked --
--------------------------
function dynamically_linked (base, filename : String) return Boolean
is
command : String := chroot & base & " /usr/bin/file -b -L " &
"-e ascii -e encoding -e tar -e compress " &
LAT.Quotation & filename & LAT.Quotation;
sol_cmd : constant String := "/usr/bin/file " &
LAT.Quotation & filename & LAT.Quotation;
comres : JT.Text;
begin
case platform_type is
when dragonfly | freebsd | netbsd | linux =>
comres := internal_system_command (command);
when solaris =>
comres := internal_system_command (sol_cmd);
when unknown =>
return False;
end case;
return JT.contains (comres, "dynamically linked");
exception
when others => return False;
end dynamically_linked;
-----------------------------------
-- isolate_arch_from_file_type --
-----------------------------------
function isolate_arch_from_file_type (fileinfo : String) return filearch
is
-- DF: ELF 64-bit LSB executable, x86-64
-- FB: ELF 64-bit LSB executable, x86-64
-- FB: ELF 32-bit LSB executable, Intel 80386
-- NB: ELF 64-bit LSB executable, x86-64
-- L: ELF 64-bit LSB executable, x86-64
-- OPN: ELF 64-bit LSB shared object, x86-64, version 1 (FreeBSD), ...
fragment : constant String := JT.trim (JT.specific_field (fileinfo, 2, ","));
answer : filearch := (others => ' ');
begin
if fragment'Length > filearch'Length then
answer := fragment (fragment'First .. fragment'First + filearch'Length - 1);
else
answer (answer'First .. answer'First + fragment'Length - 1) := fragment;
end if;
return answer;
end isolate_arch_from_file_type;
----------------------------------
-- get_arch_from_bourne_shell --
----------------------------------
function get_arch_from_bourne_shell return String
is
function translate_arch (arch : filearch) return String;
badarch : constant String := "BADARCH";
comres : JT.Text;
arch : filearch;
function translate_arch (arch : filearch) return String is
begin
if arch (arch'First .. arch'First + 5) = "x86-64" or else
arch (arch'First .. arch'First + 4) = "AMD64"
then
case platform_type is
when freebsd => return "amd64";
when netbsd => return "amd64";
when dragonfly => return "x86_64";
when linux => return "x86_64";
when solaris => return "x86_64";
when unknown => return badarch;
end case;
elsif arch = "ARM aarch64" then
return "aarch64";
elsif arch = "ARM " then
if ARM_version_7 then
return "armv7";
else
return "armv6";
end if;
elsif arch = "Intel 80386" then
return "i386";
else
return badarch;
end if;
end translate_arch;
begin
comres := internal_system_command (file_type_command);
arch := isolate_arch_from_file_type (JT.USS (comres));
return translate_arch (arch);
exception
when others =>
return badarch;
end get_arch_from_bourne_shell;
--------------------------------------
-- determine_package_architecture --
--------------------------------------
function determine_package_architecture return package_abi
is
function newsuffix (arch : filearch) return String;
function suffix (arch : filearch) return String;
function get_major (fileinfo : String; OS : String) return String;
function even (fileinfo : String) return String;
command : constant String := file_type_command;
res : package_abi;
arch : filearch;
UN : JT.Text;
function suffix (arch : filearch) return String is
begin
if arch (arch'First .. arch'First + 5) = "x86-64" or else
arch (arch'First .. arch'First + 4) = "AMD64"
then
return "x86:64";
elsif arch = "Intel 80386" then
return "x86:32";
elsif arch = "ARM aarch64" then
return "aarch64:64";
elsif arch = "ARM " then
if ARM_version_7 then
return "armv7:32:el:eabi:softfp";
else
return "armv6:32:el:eabi:softfp";
end if;
else
return "unknown:" & arch;
end if;
end suffix;
function newsuffix (arch : filearch) return String is
begin
if arch (arch'First .. arch'First + 5) = "x86-64" or else
arch (arch'First .. arch'First + 4) = "AMD64"
then
return "amd64";
elsif arch = "Intel 80386" then
return "i386";
elsif arch = "ARM aarch64" then
return "aarch64";
elsif arch = "ARM " then
if ARM_version_7 then
return "armv7";
else
return "armv6";
end if;
else
return "unknown:" & arch;
end if;
end newsuffix;
function even (fileinfo : String) return String
is
-- file version 2.0 and later format:
-- DFV 400702: ... DragonFly 4.7.2
-- DFV 401117: ... DragonFly 4.11.17
-- DFV 600000: ... DragonFly 6.0.0
rest : constant String := JT.part_2 (fileinfo, "DragonFly ");
major : constant String := JT.part_1 (rest, ".");
rest2 : constant String := JT.part_2 (rest, ".");
part2 : constant String := JT.part_1 (rest2, ".");
rest3 : constant String := JT.part_2 (rest2, ".");
part3 : constant String := JT.part_1 (rest3, ",");
minor : String (1 .. 2) := "00";
point : Character;
begin
declare
lenp2 : constant Natural := part2'Length;
begin
minor (minor'Last - lenp2 + 1 .. minor'Last) := part2;
end;
point := minor (2);
case point is
when '1' => minor (2) := '2';
when '3' => minor (2) := '4';
when '5' => minor (2) := '6';
when '7' => minor (2) := '8';
when '9' => minor (2) := '0';
minor (1) := Character'Val (Character'Pos (minor (1)) + 1);
when others => null;
end case;
if minor (1) = '0' then
return major & "." & minor (2);
else
return major & "." & minor (1 .. 2);
end if;
end even;
function get_major (fileinfo : String; OS : String) return String
is
-- FreeBSD 10.2, stripped
-- FreeBSD 11.0 (1100093), stripped
-- NetBSD 7.0.1, not stripped
rest : constant String := JT.part_2 (fileinfo, OS);
major : constant String := JT.part_1 (rest, ".");
begin
return major;
end get_major;
begin
UN := internal_system_command (file_type_command);
arch := isolate_arch_from_file_type (JT.USS (UN));
case platform_type is
when dragonfly =>
declare
dfly : constant String := "dragonfly:";
release : constant String := even (JT.USS (UN));
begin
res.calculated_abi := JT.SUS (dfly);
JT.SU.Append (res.calculated_abi, release & ":");
res.calc_abi_noarch := res.calculated_abi;
JT.SU.Append (res.calculated_abi, suffix (arch));
JT.SU.Append (res.calc_abi_noarch, "*");
res.calculated_alt_abi := res.calculated_abi;
res.calc_alt_abi_noarch := res.calc_abi_noarch;
end;
when freebsd =>
declare
fbsd1 : constant String := "FreeBSD:";
fbsd2 : constant String := "freebsd:";
release : constant String := get_major (JT.USS (UN),
"FreeBSD ");
begin
res.calculated_abi := JT.SUS (fbsd1);
res.calculated_alt_abi := JT.SUS (fbsd2);
JT.SU.Append (res.calculated_abi, release & ":");
JT.SU.Append (res.calculated_alt_abi, release & ":");
res.calc_abi_noarch := res.calculated_abi;
res.calc_alt_abi_noarch := res.calculated_alt_abi;
JT.SU.Append (res.calculated_abi, newsuffix (arch));
JT.SU.Append (res.calculated_alt_abi, suffix (arch));
JT.SU.Append (res.calc_abi_noarch, "*");
JT.SU.Append (res.calc_alt_abi_noarch, "*");
end;
when netbsd =>
declare
net1 : constant String := "NetBSD:";
net2 : constant String := "netbsd:";
release : constant String := get_major (JT.USS (UN),
"NetBSD ");
begin
res.calculated_abi := JT.SUS (net1);
res.calculated_alt_abi := JT.SUS (net2);
JT.SU.Append (res.calculated_abi, release & ":");
JT.SU.Append (res.calculated_alt_abi, release & ":");
res.calc_abi_noarch := res.calculated_abi;
res.calc_alt_abi_noarch := res.calculated_alt_abi;
JT.SU.Append (res.calculated_abi, newsuffix (arch));
JT.SU.Append (res.calculated_alt_abi, suffix (arch));
JT.SU.Append (res.calc_abi_noarch, "*");
JT.SU.Append (res.calc_alt_abi_noarch, "*");
end;
when linux => null; -- TBD (check ABI first)
when solaris => null; -- TBD (check ABI first)
when unknown => null;
end case;
return res;
end determine_package_architecture;
------------------------
-- swapinfo_command --
------------------------
function swapinfo_command return String is
begin
case platform_type is
when dragonfly | freebsd =>
return "/usr/sbin/swapinfo -k";
when netbsd =>
return "/sbin/swapctl -lk";
when linux =>
return "/usr/sbin/swapon --bytes --show=NAME,SIZE,USED,PRIO";
when solaris =>
return "/usr/sbin/swap -l";
when unknown =>
return "";
end case;
end swapinfo_command;
-------------------------
-- interactive_shell --
-------------------------
function interactive_shell return String is
begin
case platform_type is
when dragonfly | freebsd =>
return "/bin/tcsh";
when netbsd =>
return "/bin/sh";
when linux =>
return "/bin/bash";
when solaris =>
return "TBD";
when unknown =>
return "DONTCARE";
end case;
end interactive_shell;
-----------------
-- load_core --
-----------------
function load_core (instant_load : Boolean) return Float
is
function probe_load return String;
----------------- 123456789-123456789-123456789-
-- DFLY/FreeBSD: vm.loadavg: { 0.00 0.00 0.00 }
-- NetBSD: vm.loadavg: 0.00 0.00 0.00
-- Linux: 0.00 0.01 0.05 3/382 15409
-- Solaris: [~42 chars]load average: 0.01, 0.01, 0.01
zero : constant Float := 0.0;
lo : Integer;
function probe_load return String
is
bsd : constant String := "/usr/bin/env LANG=C /sbin/sysctl vm.loadavg";
lin : constant String := "/bin/cat /proc/loadavg";
sol : constant String := "/usr/bin/uptime";
begin
case platform_type is
when dragonfly | freebsd =>
lo := 14;
return JT.USS (internal_system_command (bsd));
when netbsd =>
lo := 12;
return JT.USS (internal_system_command (bsd));
when linux =>
lo := 0;
return JT.USS (internal_system_command (lin));
when solaris =>
return JT.USS (internal_system_command (sol));
when unknown =>
return "";
end case;
end probe_load;
comres : constant String := probe_load;
begin
case platform_type is
when dragonfly | freebsd | netbsd | linux =>
declare
stripped : constant String := comres (comres'First + lo .. comres'Last);
begin
if instant_load then
return Float'Value (JT.specific_field (stripped, 1, " "));
else
return Float'Value (JT.specific_field (stripped, 2, " "));
end if;
end;
when solaris =>
declare
stripped : constant String := JT.part_2 (comres, "load average: ");
begin
if instant_load then
return Float'Value (JT.specific_field (stripped, 1, ", "));
else
return Float'Value (JT.specific_field (stripped, 2, ", "));
end if;
end;
when unknown => return zero;
end case;
exception
when others => return zero;
end load_core;
------------------------
-- get_instant_load --
------------------------
function get_instant_load return Float is
begin
return load_core (instant_load => True);
end get_instant_load;
-------------------------
-- get_5_minute_load --
-------------------------
function get_5_minute_load return Float is
begin
return load_core (instant_load => False);
end get_5_minute_load;
-----------------------
-- get_number_cpus --
-----------------------
function get_number_cpus return Positive
is
-- Chicken/Egg issue.
-- Platform type is not available. This function is called before
-- The profile loading which requires the number of cpus as an argument.
-- Therefore, we need two commands, the first being getting the OPSYS
-- through the uname -s command.
type opsys is (FreeFly, NetBSD, Linux, Solaris, Unsupported);
uname : constant String := "/usr/bin/uname -s";
bsd_cmd : constant String := "/sbin/sysctl hw.ncpu";
lin_cmd : constant String := "/usr/bin/nproc";
sol_cmd : constant String := "/usr/sbin/psrinfo -pv";
thissys : opsys;
comres : JT.Text;
status : Integer;
start : Positive;
begin
comres := Unix.piped_command (uname, status);
if status /= 0 then
return 1;
end if;
declare
resstr : String := JT.USS (comres);
opsys_str : String := resstr (resstr'First .. resstr'Last - 1);
begin
if opsys_str = "FreeBSD" then
thissys := FreeFly;
elsif opsys_str = "DragonFly" then
thissys := FreeFly;
elsif opsys_str = "NetBSD" then
thissys := NetBSD;
elsif opsys_str = "Linux" then
thissys := Linux;
elsif opsys_str = "SunOS" then
thissys := Solaris;
else
thissys := Unsupported;
end if;
end;
-- DF/Free: expected output: "hw.ncpu: C" where C is integer
-- NetBSD: expected output: "hw.ncpu = C"
-- Linux: expected output: "C"
-- Solaris: expected output:
-- The physical processor has 64 virtual processors (0-63)
-- UltraSPARC-T2+ (cpuid 0 clock 1165 MHz)
-- The physical processor has 64 virtual processors (64-127)
-- UltraSPARC-T2+ (cpuid 64 clock 1165 MHz)
case thissys is
when FreeFly =>
start := 10;
comres := Unix.piped_command (bsd_cmd, status);
when NetBSD =>
start := 11;
comres := Unix.piped_command (bsd_cmd, status);
when Linux =>
start := 1;
comres := Unix.piped_command (lin_cmd, status);
when Solaris =>
start := 1;
comres := Unix.piped_command (sol_cmd, status);
-- garbage (incomplete). See src/parameters.adb#L686 off ravenadm for rest
when Unsupported =>
return 1;
end case;
if status /= 0 then
return 1;
end if;
declare
resstr : String := JT.USS (comres);
ncpu : String := resstr (start .. resstr'Last - 1);
number : Positive := Integer'Value (ncpu);
begin
return number;
exception
when others => return 1;
end;
end get_number_cpus;
------------------------------
-- set_file_as_executable --
------------------------------
procedure set_file_as_executable (fullpath : String)
is
-- supported by all platforms
command : constant String := "/bin/chmod 755 " & fullpath;
begin
silent_exec (command);
exception
when others => null;
end set_file_as_executable;
-------------------------------
-- standalone_pkg8_install --
-------------------------------
function standalone_pkg8_install (id : builders) return Boolean
is
smount : constant String := get_slave_mount (id);
taropt1 : constant String := "*/pkg-static";
taropt2 : constant String := "*/pkg-static */pkgng_admin";
command : constant String := chroot & smount &
" /usr/bin/tar -x -f /packages/Latest/pkg.pkg -C / ";
install_make : constant String := chroot & smount &
" /usr/pkg/sbin/pkg-static add -A /packages/Latest/bmake.pkg";
begin
case software_framework is
when ports_collection =>
silent_exec (command & taropt1);
when pkgsrc =>
silent_exec (command & taropt2);
silent_exec (install_make);
end case;
return True;
exception
when others => return False;
end standalone_pkg8_install;
------------------------------
-- host_pkgsrc_mk_install --
------------------------------
function host_pkgsrc_mk_install (id : builders) return Boolean
is
smount : constant String := get_slave_mount (id);
src_dir : constant String := host_localbase & "/share/mk";
tgt_dir : constant String := smount & root_localbase & "/share/mk";
begin
return copy_directory_contents (src_dir, tgt_dir, "*.mk");
end host_pkgsrc_mk_install;
---------------------------------
-- host_pkgsrc_bmake_install --
---------------------------------
function host_pkgsrc_bmake_install (id : builders) return Boolean
is
smount : constant String := get_slave_mount (id);
host_bmake : constant String := host_localbase & "/bin/bmake";
slave_path : constant String := smount & root_localbase & "/bin";
slave_bmake : constant String := slave_path & "/bmake";
begin
if not AD.Exists (host_bmake) then
return False;
end if;
AD.Create_Path (slave_path);
AD.Copy_File (Source_Name => host_bmake,
Target_Name => slave_bmake);
set_file_as_executable (slave_bmake);
return True;
exception
when others => return False;
end host_pkgsrc_bmake_install;
----------------------------------
-- host_pkgsrc_digest_install --
----------------------------------
function host_pkgsrc_digest_install (id : builders) return Boolean
is
smount : String := get_slave_mount (id);
host_digest : String := host_localbase & "/bin/digest";
slave_digest : String := smount & root_localbase & "/bin/digest";
begin
if not AD.Exists (host_digest) then
return False;
end if;
AD.Copy_File (Source_Name => host_digest,
Target_Name => slave_digest);
set_file_as_executable (slave_digest);
return True;
exception
when others => return False;
end host_pkgsrc_digest_install;
--------------------------------
-- host_pkgsrc_pkg8_install --
--------------------------------
function host_pkgsrc_pkg8_install (id : builders) return Boolean
is
smount : constant String := get_slave_mount (id);
host_pkgst : constant String := host_localbase & "/sbin/pkg-static";
host_admin : constant String := host_localbase & "/sbin/pkgng_admin";
slave_path : constant String := smount & root_localbase & "/sbin";
slave_pkg : constant String := slave_path & "/pkg-static";
slave_admin : constant String := slave_path & "/pkgng_admin";
begin
if not AD.Exists (host_pkgst) or else not AD.Exists (host_admin) then
return False;
end if;
AD.Create_Path (slave_path);
AD.Copy_File (Source_Name => host_pkgst,
Target_Name => slave_pkg);
AD.Copy_File (Source_Name => host_admin,
Target_Name => slave_admin);
set_file_as_executable (slave_pkg);
set_file_as_executable (slave_admin);
return True;
exception
when others => return False;
end host_pkgsrc_pkg8_install;
----------------------------
-- cache_port_variables --
----------------------------
procedure cache_port_variables (path_to_mm : String)
is
function create_OSRELEASE (OSRELEASE : String) return String;
procedure write_if_defined (varname, value : String);
OSVER : constant String := get_osversion_from_param_header;
ARCH : constant String := get_arch_from_bourne_shell;
portsdir : constant String := JT.USS (PM.configuration.dir_portsdir);
fullport : constant String := portsdir & "/ports-mgmt/pkg";
command : constant String :=
host_make & " __MAKE_CONF=/dev/null -C " & fullport &
" USES=" & LAT.Quotation & "python compiler:features objc" & LAT.Quotation &
" GNU_CONFIGURE=1 USE_JAVA=1 USE_LINUX=1" &
" -VHAVE_COMPAT_IA32_KERN" &
" -VCONFIGURE_MAX_CMD_LEN" &
" -V_PERL5_FROM_BIN" &
" -V_CCVERSION_921dbbb2" &
" -V_CXXINTERNAL_acaad9ca" &
" -V_OBJC_CCVERSION_921dbbb2" &
" -VCC_OUTPUT_921dbbb2_58173849" & -- c89
" -VCC_OUTPUT_921dbbb2_9bdba57c" & -- c99
" -VCC_OUTPUT_921dbbb2_6a4fe7f5" & -- c11
" -VCC_OUTPUT_921dbbb2_6bcac02b" & -- gnu89
" -VCC_OUTPUT_921dbbb2_67d20829" & -- gnu99
" -VCC_OUTPUT_921dbbb2_bfa62e83" & -- gnu11
" -VCC_OUTPUT_921dbbb2_f0b4d593" & -- c++98
" -VCC_OUTPUT_921dbbb2_308abb44" & -- c++0x
" -VCC_OUTPUT_921dbbb2_f00456e5" & -- c++11
" -VCC_OUTPUT_921dbbb2_65ad290d" & -- c++14
" -VCC_OUTPUT_921dbbb2_b2657cc3" & -- gnu++98
" -VCC_OUTPUT_921dbbb2_380987f7"; -- gnu++11
content : JT.Text;
topline : JT.Text;
status : Integer;
vconf : TIO.File_Type;
type result_range is range 1 .. 18;
function create_OSRELEASE (OSRELEASE : String) return String
is
-- FreeBSD OSVERSION is 6 or 7 digits
-- OSVERSION [M]MNNPPP
-- DragonFly OSVERSION is 6 digits
-- OSVERSION MNNNPP
-- NetBSD OSVERSION is 9 or 10 digits
-- OSVERSION [M]MNNrrPP00
len : constant Natural := OSRELEASE'Length;
OSR : constant String (1 .. len) := OSRELEASE;
MM : String (1 .. 2) := " ";
NN : String (1 .. 2) := " ";
PP : String (1 .. 2) := " ";
FL : Natural;
one_digit : Boolean := True;
begin
if len < 6 then
return "1.0-SYNTH";
end if;
case platform_type is
when dragonfly =>
MM (2) := OSR (1);
FL := 3;
when freebsd =>
if len > 6 then
one_digit := False;
end if;
FL := len - 4;
when netbsd =>
if len > 9 then
one_digit := False;
end if;
FL := len - 7;
if OSR (FL + 4) = '0' then
PP (2) := OSR (FL + 5);
else
PP := OSR (FL + 4 .. FL + 5);
end if;
when unknown => null;
when linux | solaris => null; -- TBD
end case;
if one_digit then
MM (2) := OSR (1);
else
MM := OSR (1 .. 2);
end if;
if OSR (FL) = '0' then
NN (2) := OSR (FL + 1);
else
NN := OSR (FL .. FL + 1);
end if;
case software_framework is
when ports_collection =>
return JT.trim (MM) & "." & JT.trim (NN) & "-SYNTH";
when pkgsrc =>
case platform_type is
when netbsd =>
return JT.trim (MM) & "." & JT.trim (NN) & "." &
JT.trim (PP);
when others =>
return JT.trim (MM) & "." & JT.trim (NN);
end case;
end case;
end create_OSRELEASE;
procedure write_if_defined (varname, value : String) is
begin
if value /= "" then
TIO.Put_Line (vconf, varname & "=" & value);
end if;
end write_if_defined;
release : constant String := create_OSRELEASE (OSVER);
begin
builder_env := JT.blank;
TIO.Create (File => vconf,
Mode => TIO.Out_File,
Name => path_to_mm & "/varcache.conf");
-- framework specific parts
case software_framework is
when ports_collection =>
content := Unix.piped_command (command, status);
if status = 0 then
for k in result_range loop
JT.nextline (lineblock => content, firstline => topline);
declare
value : constant String := JT.USS (topline);
begin
case k is
when 1 => TIO.Put_Line (vconf, "HAVE_COMPAT_IA32_KERN=" & value);
when 2 => TIO.Put_Line (vconf, "CONFIGURE_MAX_CMD_LEN=" & value);
when 3 => TIO.Put_Line (vconf, "_PERL5_FROM_BIN=" & value);
when 4 => write_if_defined ("_CCVERSION_921dbbb2", value);
when 5 => write_if_defined ("_CXXINTERNAL_acaad9ca", value);
when 6 => write_if_defined ("_OBJC_CCVERSION_921dbbb2", value);
when 7 => write_if_defined ("CC_OUTPUT_921dbbb2_58173849", value);
when 8 => write_if_defined ("CC_OUTPUT_921dbbb2_9bdba57c", value);
when 9 => write_if_defined ("CC_OUTPUT_921dbbb2_6a4fe7f5", value);
when 10 => write_if_defined ("CC_OUTPUT_921dbbb2_6bcac02b", value);
when 11 => write_if_defined ("CC_OUTPUT_921dbbb2_67d20829", value);
when 12 => write_if_defined ("CC_OUTPUT_921dbbb2_bfa62e83", value);
when 13 => write_if_defined ("CC_OUTPUT_921dbbb2_f0b4d593", value);
when 14 => write_if_defined ("CC_OUTPUT_921dbbb2_308abb44", value);
when 15 => write_if_defined ("CC_OUTPUT_921dbbb2_f00456e5", value);
when 16 => write_if_defined ("CC_OUTPUT_921dbbb2_65ad290d", value);
when 17 => write_if_defined ("CC_OUTPUT_921dbbb2_b2657cc3", value);
when 18 => write_if_defined ("CC_OUTPUT_921dbbb2_380987f7", value);
end case;
end;
end loop;
end if;
TIO.Put_Line (vconf, "_ALTCCVERSION_921dbbb2=none");
TIO.Put_Line (vconf, "_OBJC_ALTCCVERSION_921dbbb2=none");
TIO.Put_Line (vconf, "_SMP_CPUS=" & JT.int2str (Integer (smp_cores)));
TIO.Put_Line (vconf, "UID=0");
TIO.Put_Line (vconf, "ARCH=" & ARCH);
case platform_type is
when freebsd =>
TIO.Put_Line (vconf, "OPSYS=FreeBSD");
TIO.Put_Line (vconf, "OSVERSION=" & OSVER);
when dragonfly =>
TIO.Put_Line (vconf, "OPSYS=DragonFly");
TIO.Put_Line (vconf, "DFLYVERSION=" & OSVER);
TIO.Put_Line (vconf, "OSVERSION=9999999");
when netbsd | linux | solaris => null;
when unknown => null;
end case;
TIO.Put_Line (vconf, "OSREL=" & release (1 .. release'Last - 6));
TIO.Put_Line (vconf, "_OSRELEASE=" & release);
TIO.Put_Line (vconf, "PYTHONBASE=/usr/local");
TIO.Put_Line (vconf, "_PKG_CHECKED=1");
when pkgsrc =>
TIO.Put_Line (vconf, "OS_VERSION= " & release);
TIO.Put_Line (vconf, "HOST_MACHINE_ARCH= " & ARCH);
case platform_type is
when freebsd =>
TIO.Put_Line
(vconf,
"OPSYS= FreeBSD" & LAT.LF &
"LOWER_OPSYS= freebsd" & LAT.LF &
"MAKEFLAGS= OPSYS=FreeBSD");
when dragonfly =>
TIO.Put_Line
(vconf,
"OPSYS= DragonFly" & LAT.LF &
"LOWER_OPSYS= dragonfly" & LAT.LF &
"MAKEFLAGS= OPSYS=DragonFly");
when netbsd =>
TIO.Put_Line
(vconf,
"OPSYS= NetBSD" & LAT.LF &
"LOWER_OPSYS= netbsd" & LAT.LF &
"MAKEFLAGS= OPSYS=NetBSD");
when linux =>
TIO.Put_Line
(vconf,
"OPSYS= Linux" & LAT.LF &
"LOWER_OPSYS= linux" & LAT.LF &
"MAKEFLAGS= OPSYS=Linux");
when solaris =>
TIO.Put_Line
(vconf,
"OPSYS= SunOS" & LAT.LF &
"LOWER_OPSYS= solaris" & LAT.LF &
"MAKEFLAGS= OPSYS=SunOS");
when unknown => null;
end case;
TIO.Put_Line
(vconf,
"MAKEFLAGS+= OS_VERSION=" & release & LAT.LF &
"MAKEFLAGS+= HOST_MACHINE_ARCH=" & ARCH & LAT.LF &
"MAKEFLAGS+= _PKGSRCDIR=/xports");
end case;
TIO.Close (vconf);
case platform_type is
when freebsd =>
JT.SU.Append (builder_env, "UNAME_s=FreeBSD " &
"UNAME_v=FreeBSD\ " & release);
when dragonfly =>
JT.SU.Append (builder_env, "UNAME_s=DragonFly " &
"UNAME_v=DragonFly\ " & release);
when netbsd =>
JT.SU.Append (builder_env, "UNAME_s=NetBSD " &
"UNAME_v=NetBSD\ " & release);
when linux =>
JT.SU.Append (builder_env, "UNAME_s=Linux " &
"UNAME_v=Linux\ " & release);
when solaris =>
JT.SU.Append (builder_env, "UNAME_s=SunOS " &
"UNAME_v=SunOS\ " & release);
when unknown => null;
end case;
-- The last entry of builder_env must be a blank space
JT.SU.Append (builder_env, " UNAME_p=" & ARCH);
JT.SU.Append (builder_env, " UNAME_m=" & ARCH);
JT.SU.Append (builder_env, " UNAME_r=" & release & " ");
end cache_port_variables;
---------------------------------------
-- get_osversion_from_param_header --
---------------------------------------
function get_osversion_from_param_header return String
is
function get_pattern return String;
function get_pattern return String
is
DFVER : constant String := "#define __DragonFly_version ";
FBVER : constant String := "#define __FreeBSD_version ";
NBVER : constant String := "#define" & LAT.HT &
"__NetBSD_Version__" & LAT.HT;
BADVER : constant String := "#define __Unknown_version ";
begin
case platform_type is
when freebsd => return FBVER;
when dragonfly => return DFVER;
when netbsd => return NBVER;
when linux => return BADVER; -- TBD
when solaris => return BADVER; -- TBD
when unknown => return BADVER;
end case;
end get_pattern;
header : TIO.File_Type;
badres : constant String := "100000";
pattern : constant String := get_pattern;
paramh : constant String := JT.USS (PM.configuration.dir_system) &
"/usr/include/sys/param.h";
begin
TIO.Open (File => header, Mode => TIO.In_File, Name => paramh);
while not TIO.End_Of_File (header) loop
declare
Line : constant String := TIO.Get_Line (header);
begin
if JT.contains (Line, pattern) then
declare
OSVER : constant String :=
JT.trim (JT.part_2 (Line, pattern));
len : constant Natural := OSVER'Length;
final : Integer;
begin
exit when len < 7;
TIO.Close (header);
final := OSVER'First + 5;
for x in final + 1 .. OSVER'Last loop
case OSVER (x) is
when '0' .. '9' => final := x;
when others => return OSVER (OSVER'First .. final);
end case;
end loop;
-- All characters from 5th position to end of OSVER are digits
return OSVER;
end;
end if;
end;
end loop;
TIO.Close (header);
return badres;
exception
when others =>
if TIO.Is_Open (header) then
TIO.Close (header);
end if;
return badres;
end get_osversion_from_param_header;
end Replicant.Platform;
|
pombredanne/ravenadm | Ada | 26,289 | adb | -- This file is covered by the Internet Software Consortium (ISC) License
-- Reference: ../License.txt
with Ada.Exceptions;
with Ada.Text_IO;
with HelperText;
with Signals;
with Unix;
with PortScan.Log;
package body Display is
package HT renames HelperText;
package SIG renames Signals;
package TIO renames Ada.Text_IO;
package EX renames Ada.Exceptions;
----------------------
-- launch_monitor --
----------------------
function launch_monitor (num_builders : builders) return Boolean is
begin
if not Start_Curses_Mode then
TIO.Put_Line ("Failed to enter curses modes");
return False;
end if;
if not TIC.Has_Colors or else not establish_colors then
Return_To_Text_Mode;
TIO.Put_Line ("The TERM environment variable value (" &
Unix.env_variable_value ("TERM") &
") does not support colors.");
TIO.Put_Line ("Falling back to text mode.");
return False;
end if;
begin
TIC.Set_Echo_Mode (False);
TIC.Set_Raw_Mode (True);
TIC.Set_Cbreak_Mode (True);
TIC.Set_Cursor_Visibility (Visibility => cursor_vis);
exception
when TIC.Curses_Exception =>
Return_To_Text_Mode;
return False;
end;
builders_used := Integer (num_builders);
if not launch_summary_zone or else
not launch_builders_zone or else
not launch_actions_zone
then
terminate_monitor;
return False;
end if;
draw_static_summary_zone;
draw_static_builders_zone;
Refresh_Zone (summary);
Refresh_Zone (builder);
Refresh_Zone (action);
return True;
end launch_monitor;
-------------------------
-- terminate_monitor --
-------------------------
procedure terminate_monitor
is
ok : Boolean := True;
begin
-- zone_window can't be used because Delete will modify Win variable
begin
TIC.Delete (Win => zone_summary);
TIC.Delete (Win => zone_builders);
TIC.Delete (Win => zone_actions);
exception
when TIC.Curses_Exception => ok := False;
end;
if ok then
Return_To_Text_Mode;
end if;
end terminate_monitor;
-----------------------------------
-- set_full_redraw_next_update --
-----------------------------------
procedure set_full_redraw_next_update is
begin
draw_static_summary_zone;
draw_static_builders_zone;
for zone in zones'Range loop
begin
TIC.Redraw (Win => zone_window (zone));
exception
when TIC.Curses_Exception => null;
end;
end loop;
exception
when thunder : others =>
log_non_curses_exception (EX.Exception_Message (thunder));
end set_full_redraw_next_update;
---------------------------
-- launch_summary_zone --
---------------------------
function launch_summary_zone return Boolean is
begin
zone_summary := TIC.Create (Number_Of_Lines => 2,
Number_Of_Columns => app_width,
First_Line_Position => 0,
First_Column_Position => 0);
return True;
exception
when TIC.Curses_Exception => return False;
end launch_summary_zone;
--------------------------------
-- draw_static_summary_zone --
--------------------------------
procedure draw_static_summary_zone
is
line1 : constant appline :=
custom_message (message => " Total Built Ignored " &
" Load 0.00 Pkg/hour ",
attribute => bright,
pen_color => c_sumlabel);
line2 : constant appline :=
custom_message (message => " Left Failed Skipped " &
" Swap 0.0% Impulse 00:00:00 ",
attribute => bright,
pen_color => c_sumlabel);
begin
Scrawl (summary, line1, 0);
Scrawl (summary, line2, 1);
end draw_static_summary_zone;
----------------------------
-- launch_builders_zone --
----------------------------
function launch_builders_zone return Boolean
is
hghtint : constant Integer := 4 + builders_used;
height : constant TIC.Line_Position := TIC.Line_Position (hghtint);
begin
zone_builders := TIC.Create (Number_Of_Lines => height,
Number_Of_Columns => app_width,
First_Line_Position => 2,
First_Column_Position => 0);
return True;
exception
when TIC.Curses_Exception => return False;
end launch_builders_zone;
---------------------------------
-- draw_static_builders_zone --
---------------------------------
procedure draw_static_builders_zone
is
hghtint : constant Integer := 4 + builders_used;
height : constant TIC.Line_Position := TIC.Line_Position (hghtint);
lastrow : constant TIC.Line_Position := inc (height, -1);
dmsg : constant String (appline'Range) := (others => '=');
dashes : constant appline := custom_message (message => dmsg,
attribute => bright,
pen_color => c_dashes);
headtxt : constant appline :=
custom_message
(message =>
" ID Duration Build Phase Origin Lines ",
attribute => normal,
pen_color => c_tableheader);
begin
Scrawl (builder, dashes, 0);
Scrawl (builder, dashes, 2);
Scrawl (builder, dashes, lastrow);
if SIG.graceful_shutdown_requested then
Scrawl (builder, shutdown_message, 1);
else
Scrawl (builder, headtxt, 1);
end if;
for z in 3 .. inc (lastrow, -1) loop
Scrawl (builder, blank_line, z);
end loop;
end draw_static_builders_zone;
---------------------------
-- launch_actions_zone --
---------------------------
function launch_actions_zone return Boolean
is
consumed : constant Integer := builders_used + 4 + 2;
viewpos : constant TIC.Line_Position := TIC.Line_Position (consumed);
difference : Integer := 0 - consumed;
use type TIC.Line_Position;
begin
historyheight := inc (TIC.Lines, difference);
-- Make sure history window lines range from 10 to 50
if historyheight < 10 then
historyheight := 10;
elsif historyheight > TIC.Line_Position (cyclic_range'Last) then
historyheight := TIC.Line_Position (cyclic_range'Last);
end if;
zone_actions := TIC.Create (Number_Of_Lines => historyheight,
Number_Of_Columns => app_width,
First_Line_Position => viewpos,
First_Column_Position => 0);
return True;
exception
when TIC.Curses_Exception => return False;
end launch_actions_zone;
-----------
-- inc --
-----------
function inc (X : TIC.Line_Position; by : Integer) return TIC.Line_Position
is
use type TIC.Line_Position;
begin
return X + TIC.Line_Position (by);
end inc;
-----------------
-- summarize --
-----------------
procedure summarize (data : summary_rec)
is
function pad (S : String; amount : Positive := 5) return String;
procedure colorado (S : String; color : TIC.Color_Pair;
col : TIC.Column_Position;
row : TIC.Line_Position;
dim : Boolean := False);
remaining : constant Integer := data.Initially - data.Built -
data.Failed - data.Ignored - data.Skipped;
function pad (S : String; amount : Positive := 5) return String
is
result : String (1 .. amount) := (others => ' ');
slen : constant Natural := S'Length;
begin
if slen <= amount then
result (1 .. slen) := S;
else
result := S (S'First .. S'First + amount - 1);
end if;
return result;
end pad;
procedure colorado (S : String; color : TIC.Color_Pair;
col : TIC.Column_Position;
row : TIC.Line_Position;
dim : Boolean := False)
is
info : TIC.Attributed_String := custom_message (message => S,
attribute => emphasis (dim),
pen_color => color);
begin
Scrawl (summary, info, row, col);
end colorado;
L1F1 : constant String := pad (HT.int2str (data.Initially));
L1F2 : constant String := pad (HT.int2str (data.Built));
L1F3 : constant String := pad (HT.int2str (data.Ignored));
L1F4 : fivelong;
L1F5 : constant String := pad (HT.int2str (data.pkg_hour), 4);
L2F1 : constant String := pad (HT.int2str (remaining));
L2F2 : constant String := pad (HT.int2str (data.Failed));
L2F3 : constant String := pad (HT.int2str (data.Skipped));
L2F4 : fivelong;
L2F5 : constant String := pad (HT.int2str (data.impulse), 4);
begin
if data.swap = 100.0 then
L2F4 := " 100%";
elsif data.swap > 100.0 then
L2F4 := " n/a";
else
L2F4 := fmtpc (data.swap, True);
end if;
if data.load >= 100.0 then
L1F4 := pad (HT.int2str (Integer (data.load)));
else
L1F4 := fmtpc (data.load, False);
end if;
colorado (L1F1, c_standard, 7, 0);
colorado (L1F2, c_success, 21, 0);
colorado (L1F3, c_ignored, 36, 0);
colorado (L1F4, c_standard, 48, 0, True);
colorado (L1F5, c_standard, 64, 0, True);
colorado (L2F1, c_standard, 7, 1);
colorado (L2F2, c_failure, 21, 1);
colorado (L2F3, c_skipped, 36, 1);
colorado (L2F4, c_standard, 48, 1, True);
colorado (L2F5, c_standard, 64, 1, True);
colorado (data.elapsed, c_elapsed, 70, 1);
Refresh_Zone (summary);
exception
when thunder : others =>
log_non_curses_exception (EX.Exception_Message (thunder));
end summarize;
-----------------------
-- update_builder --
-----------------------
procedure update_builder (BR : builder_rec)
is
procedure colorado (S : String; color : TIC.Color_Pair;
col : TIC.Column_Position;
row : TIC.Line_Position;
dim : Boolean := False);
procedure print_id;
row : TIC.Line_Position := inc (TIC.Line_Position (BR.id), 2);
procedure print_id
is
info : TIC.Attributed_String := custom_message (message => BR.slavid,
attribute => c_slave (BR.id).attribute,
pen_color => c_slave (BR.id).palette);
begin
Scrawl (builder, info, row, 1);
end print_id;
procedure colorado (S : String; color : TIC.Color_Pair;
col : TIC.Column_Position;
row : TIC.Line_Position;
dim : Boolean := False)
is
info : TIC.Attributed_String := custom_message (message => S,
attribute => emphasis (dim),
pen_color => color);
begin
Scrawl (builder, info, row, col);
end colorado;
begin
if SIG.graceful_shutdown_requested then
Scrawl (builder, shutdown_message, 1);
end if;
print_id;
colorado (BR.Elapsed, c_standard, 5, row, True);
colorado (BR.phase, c_bldphase, 15, row, True);
colorado (BR.origin, c_origin, 29, row, False);
colorado (BR.LLines, c_standard, 71, row, True);
exception
when thunder : others =>
log_non_curses_exception (EX.Exception_Message (thunder));
end update_builder;
------------------------------
-- refresh_builder_window --
------------------------------
procedure refresh_builder_window is
begin
Refresh_Zone (builder);
exception
when thunder : others =>
log_non_curses_exception (EX.Exception_Message (thunder));
end refresh_builder_window;
----------------------
-- insert_history --
----------------------
procedure insert_history (HR : history_rec) is
begin
if history_arrow = cyclic_range'Last then
history_arrow := cyclic_range'First;
else
history_arrow := history_arrow + 1;
end if;
history (history_arrow) := HR;
end insert_history;
------------------------------
-- refresh_history_window --
------------------------------
procedure refresh_history_window
is
procedure clear_row (row : TIC.Line_Position);
procedure colorado (S : String; color : TIC.Color_Pair;
col : TIC.Column_Position;
row : TIC.Line_Position;
dim : Boolean := False);
function col_action (status : String) return TIC.Color_Pair;
procedure print_id (id : builders; sid : String; row : TIC.Line_Position;
status : String);
procedure clear_row (row : TIC.Line_Position) is
begin
Scrawl (action, blank_line, row);
end clear_row;
procedure colorado (S : String; color : TIC.Color_Pair;
col : TIC.Column_Position;
row : TIC.Line_Position;
dim : Boolean := False)
is
info : TIC.Attributed_String := custom_message (message => S,
attribute => emphasis (dim),
pen_color => color);
begin
Scrawl (action, info, row, col);
end colorado;
function col_action (status : String) return TIC.Color_Pair is
begin
if status = "shutdown" then
return c_shutdown;
elsif status = "success " then
return c_success;
elsif status = "failure " then
return c_failure;
elsif status = "skipped " then
return c_skipped;
elsif status = "ignored " then
return c_ignored;
else
return c_standard;
end if;
end col_action;
procedure print_id (id : builders; sid : String; row : TIC.Line_Position;
status : String)
is
bracket : TIC.Attributed_String := custom_message (message => "[--]",
attribute => normal,
pen_color => c_standard);
bindex : Positive := 2;
begin
if status /= "skipped " and then status /= "ignored "
then
for index in sid'Range loop
bracket (bindex) := (Attr => c_slave (id).attribute,
Color => c_slave (id).palette,
Ch => sid (index));
bindex := bindex + 1;
end loop;
end if;
Scrawl (action, bracket, row, 10);
end print_id;
arrow : cyclic_range := history_arrow;
maxrow : Natural;
row : TIC.Line_Position;
begin
-- historyheight guaranteed to be no bigger than cyclic_range
maxrow := Integer (historyheight) - 1;
for rowindex in 0 .. maxrow loop
row := TIC.Line_Position (rowindex);
if history (arrow).established then
colorado (history (arrow).run_elapsed, c_standard, 1, row, True);
print_id (id => history (arrow).id,
sid => history (arrow).slavid,
row => row,
status => history (arrow).action);
colorado (history (arrow).action,
col_action (history (arrow).action), 15, row);
colorado (history (arrow).origin, c_origin, 24, row);
colorado (history (arrow).pkg_elapsed, c_standard, 70, row, True);
else
clear_row (row);
end if;
if arrow = cyclic_range'First then
arrow := cyclic_range'Last;
else
arrow := arrow - 1;
end if;
end loop;
Refresh_Zone (action);
exception
when thunder : others =>
log_non_curses_exception (EX.Exception_Message (thunder));
end refresh_history_window;
------------------------
-- establish_colors --
------------------------
function establish_colors return Boolean is
begin
TIC.Start_Color;
begin
TIC.Init_Pair (TIC.Color_Pair (1), TIC.White, TIC.Black);
TIC.Init_Pair (TIC.Color_Pair (2), TIC.Green, TIC.Black);
TIC.Init_Pair (TIC.Color_Pair (3), TIC.Red, TIC.Black);
TIC.Init_Pair (TIC.Color_Pair (4), TIC.Yellow, TIC.Black);
TIC.Init_Pair (TIC.Color_Pair (5), TIC.Black, TIC.Black);
TIC.Init_Pair (TIC.Color_Pair (6), TIC.Cyan, TIC.Black);
TIC.Init_Pair (TIC.Color_Pair (7), TIC.Blue, TIC.Black);
TIC.Init_Pair (TIC.Color_Pair (8), TIC.Magenta, TIC.Black);
TIC.Init_Pair (TIC.Color_Pair (9), TIC.Blue, TIC.White);
exception
when TIC.Curses_Exception => return False;
end;
c_standard := TIC.Color_Pair (1);
c_success := TIC.Color_Pair (2);
c_failure := TIC.Color_Pair (3);
c_ignored := TIC.Color_Pair (4);
c_skipped := TIC.Color_Pair (5);
c_sumlabel := TIC.Color_Pair (6);
c_dashes := TIC.Color_Pair (7);
c_elapsed := TIC.Color_Pair (4);
c_tableheader := TIC.Color_Pair (1);
c_origin := TIC.Color_Pair (6);
c_bldphase := TIC.Color_Pair (4);
c_shutdown := TIC.Color_Pair (1);
c_advisory := TIC.Color_Pair (4);
c_slave (1).palette := TIC.Color_Pair (1); -- white / Black
c_slave (1).attribute := bright;
c_slave (2).palette := TIC.Color_Pair (2); -- light green / Black
c_slave (2).attribute := bright;
c_slave (3).palette := TIC.Color_Pair (4); -- yellow / Black
c_slave (3).attribute := bright;
c_slave (4).palette := TIC.Color_Pair (8); -- light magenta / Black
c_slave (4).attribute := bright;
c_slave (5).palette := TIC.Color_Pair (3); -- light red / Black
c_slave (5).attribute := bright;
c_slave (6).palette := TIC.Color_Pair (7); -- light blue / Black
c_slave (6).attribute := bright;
c_slave (7).palette := TIC.Color_Pair (6); -- light cyan / Black
c_slave (7).attribute := bright;
c_slave (8).palette := TIC.Color_Pair (5); -- dark grey / Black
c_slave (8).attribute := bright;
c_slave (9).palette := TIC.Color_Pair (1); -- light grey / Black
c_slave (9).attribute := normal;
c_slave (10).palette := TIC.Color_Pair (2); -- light green / Black
c_slave (10).attribute := normal;
c_slave (11).palette := TIC.Color_Pair (4); -- brown / Black
c_slave (11).attribute := normal;
c_slave (12).palette := TIC.Color_Pair (8); -- dark magenta / Black
c_slave (12).attribute := normal;
c_slave (13).palette := TIC.Color_Pair (3); -- dark red / Black
c_slave (13).attribute := normal;
c_slave (14).palette := TIC.Color_Pair (7); -- dark blue / Black
c_slave (14).attribute := normal;
c_slave (15).palette := TIC.Color_Pair (6); -- dark cyan / Black
c_slave (15).attribute := normal;
c_slave (16).palette := TIC.Color_Pair (9); -- white / dark blue
c_slave (16).attribute := normal;
for bld in builders (17) .. builders (32) loop
c_slave (bld) := c_slave (bld - 16);
c_slave (bld).attribute.Under_Line := True;
end loop;
for bld in builders (33) .. builders (64) loop
c_slave (bld) := c_slave (bld - 32);
end loop;
return True;
end establish_colors;
------------------------------------------------------------------------
-- zone_window
------------------------------------------------------------------------
function zone_window (zone : zones) return TIC.Window is
begin
case zone is
when builder => return zone_builders;
when summary => return zone_summary;
when action => return zone_actions;
end case;
end zone_window;
------------------------------------------------------------------------
-- Scrawl
------------------------------------------------------------------------
procedure Scrawl (zone : zones;
information : TIC.Attributed_String;
at_line : TIC.Line_Position;
at_column : TIC.Column_Position := 0) is
begin
TIC.Add (Win => zone_window (zone),
Line => at_line,
Column => at_column,
Str => information,
Len => information'Length);
exception
when TIC.Curses_Exception => null;
end Scrawl;
------------------------------------------------------------------------
-- Return_To_Text_Mode
------------------------------------------------------------------------
procedure Return_To_Text_Mode is
begin
TIC.End_Windows;
exception
when TIC.Curses_Exception => null;
end Return_To_Text_Mode;
------------------------------------------------------------------------
-- Refresh_Zone
------------------------------------------------------------------------
procedure Refresh_Zone (zone : zones) is
begin
TIC.Refresh (Win => zone_window (zone));
exception
when TIC.Curses_Exception => null;
end Refresh_Zone;
------------------------------------------------------------------------
-- Start_Curses_Mode
------------------------------------------------------------------------
function Start_Curses_Mode return Boolean is
begin
TIC.Init_Screen;
return True;
exception
when TIC.Curses_Exception => return False;
end Start_Curses_Mode;
------------------------------------------------------------------------
-- blank_line
------------------------------------------------------------------------
function blank_line return appline
is
space : TIC.Attributed_Character := (Attr => TIC.Normal_Video,
Color => c_standard,
Ch => ' ');
product : appline := (others => space);
begin
return product;
end blank_line;
------------------------------------------------------------------------
-- custom_message
------------------------------------------------------------------------
function custom_message (message : String;
attribute : TIC.Character_Attribute_Set;
pen_color : TIC.Color_Pair) return TIC.Attributed_String
is
product : TIC.Attributed_String (1 .. message'Length);
pindex : Positive := 1;
begin
for index in message'Range loop
product (pindex) := (Attr => attribute,
Color => pen_color,
Ch => message (index));
pindex := pindex + 1;
end loop;
return product;
end custom_message;
------------------------------------------------------------------------
-- shutdown_message
------------------------------------------------------------------------
function shutdown_message return appline
is
data : constant String :=
" Graceful shutdown in progress, so no new tasks will be started. ";
product : appline := custom_message (message => data,
attribute => bright,
pen_color => c_advisory);
begin
return product;
end shutdown_message;
------------------------------------------------------------------------
-- emphasis
------------------------------------------------------------------------
function emphasis (dimmed : Boolean) return TIC.Character_Attribute_Set is
begin
if dimmed then
return normal;
else
return bright;
end if;
end emphasis;
------------------------------------------------------------------------
-- fmtpc
------------------------------------------------------------------------
function fmtpc (f : Float; percent : Boolean) return fivelong
is
type loadtype is delta 0.01 digits 4;
result : fivelong := (others => ' ');
raw1 : constant loadtype := loadtype (f);
raw2 : constant String := raw1'Img;
raw3 : constant String := raw2 (2 .. raw2'Last);
rlen : constant Natural := raw3'Length;
start : constant Natural := 6 - rlen;
begin
result (start .. 5) := raw3;
if percent then
result (5) := '%';
end if;
return result;
end fmtpc;
------------------------------------------------------------------------
-- log_non_curses_exception
------------------------------------------------------------------------
procedure log_non_curses_exception (message_text : String) is
begin
PortScan.Log.scribe (PortScan.total, "DISPLAY EXCEPTION EXCOUNTERED !!", False);
PortScan.Log.scribe (PortScan.total, message_text, True);
end log_non_curses_exception;
end Display;
|
reznikmm/matreshka | Ada | 4,632 | 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_Combine_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Style_Text_Combine_Attribute_Node is
begin
return Self : Style_Text_Combine_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_Combine_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Text_Combine_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Style_URI,
Matreshka.ODF_String_Constants.Text_Combine_Attribute,
Style_Text_Combine_Attribute_Node'Tag);
end Matreshka.ODF_Style.Text_Combine_Attributes;
|
stcarrez/ada-css | Ada | 5,615 | adb | -----------------------------------------------------------------------
-- css-analysis-rules-tests -- Unit tests for CSS rule analyzer
-- Copyright (C) 2017, 2023 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.Text_IO;
with Ada.Directories;
with Util.Measures;
with CSS.Core.Sheets;
with CSS.Core.Errors.Default;
with CSS.Parser;
with CSS.Analysis.Parser;
package body CSS.Analysis.Rules.Tests is
use Ada.Strings.Unbounded;
-- ------------------------------
-- Test case name
-- ------------------------------
overriding
function Name (T : in Test) return Util.Tests.Message_String is
begin
return Util.Tests.Format ("Test CSS analysis " & To_String (T.Name));
end Name;
-- ------------------------------
-- Perform the test.
-- ------------------------------
overriding
procedure Run_Test (T : in out Test) is
Rules_Path : constant String := Util.Tests.Get_Path ("config/rules");
Name : constant String := Ada.Strings.Unbounded.To_String (T.Name);
Path : constant String := Ada.Strings.Unbounded.To_String (T.File);
Doc : aliased CSS.Core.Sheets.CSSStylesheet;
Errors : aliased CSS.Core.Errors.Default.Error_Handler;
Repo : aliased Repository_Type;
begin
CSS.Analysis.Parser.Load_All (Rules_Path, Repo'Unchecked_Access);
declare
Time : Util.Measures.Stamp;
begin
Doc.Set_Href (Name);
Ada.Text_IO.Create (Errors.File, Ada.Text_IO.Out_File, To_String (T.Result));
CSS.Parser.Load (Path, Doc'Unchecked_Access, Errors'Unchecked_Access);
CSS.Analysis.Rules.Analyze (Repo, Doc, Errors);
Util.Measures.Report (Time, "Parse and analyse " & Name);
end;
Ada.Text_IO.Close (Errors.File);
if T.Has_Error then
T.Assert (Errors.Error_Count > 0, "No error reported for '" & Name & "'");
else
Util.Tests.Assert_Equals (T, 0, Errors.Error_Count,
"Errors reported for '" & Name & "'");
end if;
Util.Tests.Assert_Equal_Files (T, Ada.Strings.Unbounded.To_String (T.Expect),
To_String (T.Result), "Analysis of " & Name & " failed");
exception
when others =>
if Ada.Text_IO.Is_Open (Errors.File) then
Ada.Text_IO.Close (Errors.File);
end if;
raise;
end Run_Test;
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is
use Ada.Directories;
procedure Add_Parser_Tests (Dir : in String;
Has_Error : in Boolean);
function Create_Test (Name : in String;
Path : in String) return Test_Case_Access;
Expect_Dir : constant String := "regtests/expect/rules/";
Expect_Path : constant String := Util.Tests.Get_Path (Expect_Dir);
Result_Path : constant String := Util.Tests.Get_Test_Path ("rules/");
Search : Search_Type;
Filter : constant Filter_Type := (others => True);
Ent : Directory_Entry_Type;
function Create_Test (Name : in String;
Path : in String) return Test_Case_Access is
Tst : Test_Case_Access;
begin
Tst := new Test;
Tst.Name := To_Unbounded_String (Name);
Tst.File := To_Unbounded_String (Path);
Tst.Expect := To_Unbounded_String (Expect_Path & Name);
Tst.Result := To_Unbounded_String (Result_Path & Name);
return Tst;
end Create_Test;
procedure Add_Parser_Tests (Dir : in String;
Has_Error : in Boolean) is
Path : constant String := Util.Tests.Get_Path (Dir);
begin
if Kind (Path) /= Directory then
Ada.Text_IO.Put_Line ("Cannot read test directory: " & Path);
end if;
Start_Search (Search, Directory => Path, Pattern => "*.css", Filter => Filter);
while More_Entries (Search) loop
Get_Next_Entry (Search, Ent);
declare
Simple : constant String := Simple_Name (Ent);
Name : constant String := Base_Name (Simple);
Tst : Test_Case_Access;
begin
if Simple /= "." and then Simple /= ".."
and then Simple /= ".svn" and then Simple (Simple'Last) /= '~'
then
Tst := Create_Test (Name, Path & "/" & Simple);
if Tst /= null then
Ada.Directories.Create_Path (Result_Path);
Tst.Has_Error := Has_Error;
Suite.Add_Test (Tst.all'Access);
end if;
end if;
end;
end loop;
end Add_Parser_Tests;
begin
Add_Parser_Tests ("regtests/files/rules", False);
end Add_Tests;
end CSS.Analysis.Rules.Tests;
|
reznikmm/matreshka | Ada | 4,583 | 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_Draw.Concave_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Draw_Concave_Attribute_Node is
begin
return Self : Draw_Concave_Attribute_Node do
Matreshka.ODF_Draw.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Draw_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Draw_Concave_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Concave_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Draw_URI,
Matreshka.ODF_String_Constants.Concave_Attribute,
Draw_Concave_Attribute_Node'Tag);
end Matreshka.ODF_Draw.Concave_Attributes;
|
AdaCore/Ada_Drivers_Library | Ada | 21,391 | ads | -- This spec has been automatically generated from STM32F7x9.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.SDMMC is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- PWRCTRL
type POWER_PWRCTRL_Field is
(
-- The clock to card is stopped.
Power_Off,
-- The card is clocked.
Power_On)
with Size => 2;
for POWER_PWRCTRL_Field use
(Power_Off => 0,
Power_On => 3);
-- power control register
type POWER_Register is record
-- PWRCTRL
PWRCTRL : POWER_PWRCTRL_Field := STM32_SVD.SDMMC.Power_Off;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for POWER_Register use record
PWRCTRL at 0 range 0 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
subtype CLKCR_CLKDIV_Field is HAL.UInt8;
-- Wide bus mode enable bit
type CLKCR_WIDBUS_Field is
(
-- Default bus mode: SDMMC_D0 is used.
Bus_Wide_1B,
-- 4-wide bus mode: SDMMC_D[3:0] used.
Bus_Wide_4B,
-- 8-wide bus mode: SDMMC_D[7:0] used.
Bus_Wide_8B)
with Size => 2;
for CLKCR_WIDBUS_Field use
(Bus_Wide_1B => 0,
Bus_Wide_4B => 1,
Bus_Wide_8B => 2);
-- SDIO_CK dephasing selection bit
type CLKCR_NEGEDGE_Field is
(
-- Cmd and Data changed on the SDMMCCLK falling edge succeeding the
-- rising edge of SDMMC_CK.
Edge_Rising,
-- Cmd and Data changed on the SDMMC_CK falling edge.
Edge_Falling)
with Size => 1;
for CLKCR_NEGEDGE_Field use
(Edge_Rising => 0,
Edge_Falling => 1);
-- SDI clock control register
type CLKCR_Register is record
-- Clock divide factor
CLKDIV : CLKCR_CLKDIV_Field := 16#0#;
-- Clock enable bit
CLKEN : Boolean := False;
-- Power saving configuration bit
PWRSAV : Boolean := False;
-- Clock divider bypass enable bit
BYPASS : Boolean := False;
-- Wide bus mode enable bit
WIDBUS : CLKCR_WIDBUS_Field := STM32_SVD.SDMMC.Bus_Wide_1B;
-- SDIO_CK dephasing selection bit
NEGEDGE : CLKCR_NEGEDGE_Field := STM32_SVD.SDMMC.Edge_Rising;
-- HW Flow Control enable
HWFC_EN : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CLKCR_Register use record
CLKDIV at 0 range 0 .. 7;
CLKEN at 0 range 8 .. 8;
PWRSAV at 0 range 9 .. 9;
BYPASS at 0 range 10 .. 10;
WIDBUS at 0 range 11 .. 12;
NEGEDGE at 0 range 13 .. 13;
HWFC_EN at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
subtype CMD_CMDINDEX_Field is HAL.UInt6;
-- Wait for response bits
type CMD_WAITRESP_Field is
(
-- No response, expect CMDSENT flag.
No_Response,
-- Short response, expect CMDREND or CCRCFAIL flag.
Short_Response,
-- Long response, expect CMDREND or CCRCFAIL flag.
Long_Response)
with Size => 2;
for CMD_WAITRESP_Field use
(No_Response => 0,
Short_Response => 1,
Long_Response => 3);
-- command register
type CMD_Register is record
-- Command index
CMDINDEX : CMD_CMDINDEX_Field := 16#0#;
-- Wait for response bits
WAITRESP : CMD_WAITRESP_Field := STM32_SVD.SDMMC.No_Response;
-- CPSM waits for interrupt request
WAITINT : Boolean := False;
-- CPSM Waits for ends of data transfer (CmdPend internal signal)
WAITPEND : Boolean := False;
-- Command path state machine (CPSM) Enable bit
CPSMEN : Boolean := False;
-- SD I/O suspend command
SDIOSuspend : Boolean := False;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CMD_Register use record
CMDINDEX at 0 range 0 .. 5;
WAITRESP at 0 range 6 .. 7;
WAITINT at 0 range 8 .. 8;
WAITPEND at 0 range 9 .. 9;
CPSMEN at 0 range 10 .. 10;
SDIOSuspend at 0 range 11 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype RESPCMD_RESPCMD_Field is HAL.UInt6;
-- command response register
type RESPCMD_Register is record
-- Read-only. Response command index
RESPCMD : RESPCMD_RESPCMD_Field;
-- unspecified
Reserved_6_31 : HAL.UInt26;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for RESPCMD_Register use record
RESPCMD at 0 range 0 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
subtype DLEN_DATALENGTH_Field is HAL.UInt25;
-- data length register
type DLEN_Register is record
-- Data length value
DATALENGTH : DLEN_DATALENGTH_Field := 16#0#;
-- unspecified
Reserved_25_31 : HAL.UInt7 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DLEN_Register use record
DATALENGTH at 0 range 0 .. 24;
Reserved_25_31 at 0 range 25 .. 31;
end record;
-- Data transfer direction selection
type DCTRL_DTDIR_Field is
(
-- Data is sent to the card
Controller_To_Card,
-- Data is read from the card
Card_To_Controller)
with Size => 1;
for DCTRL_DTDIR_Field use
(Controller_To_Card => 0,
Card_To_Controller => 1);
-- Data transfer mode selection 1: Stream or SDIO multibyte data transfer
type DCTRL_DTMODE_Field is
(
-- Block data transfer
Block,
-- Stream or SDIO multibyte data transfer
Stream)
with Size => 1;
for DCTRL_DTMODE_Field use
(Block => 0,
Stream => 1);
-- Data block size
type DCTRL_DBLOCKSIZE_Field is
(
-- Block length = 2**0 = 1 byte
Block_1B,
-- Block length = 2**1 = 2 byte
Block_2B,
-- Block length = 2**2 = 4 byte
Block_4B,
-- Block length = 2**3 = 8 byte
Block_8B,
-- Block length = 2**4 = 16 byte
Block_16B,
-- Block length = 2**5 = 32 byte
Block_32B,
-- Block length = 2**6 = 64 byte
Block_64B,
-- Block length = 2**7 = 128 byte
Block_128B,
-- Block length = 2**8 = 256 byte
Block_256B,
-- Block length = 2**9 = 512 byte
Block_512B,
-- Block length = 2**10 = 1024 byte
Block_1024B,
-- Block length = 2**11 = 2048 byte
Block_2048B,
-- Block length = 2**12 = 4096 byte
Block_4096B,
-- Block length = 2**13 = 8192 byte
Block_8192B,
-- Block length = 2**14 = 16384 byte
Block_16384B)
with Size => 4;
for DCTRL_DBLOCKSIZE_Field use
(Block_1B => 0,
Block_2B => 1,
Block_4B => 2,
Block_8B => 3,
Block_16B => 4,
Block_32B => 5,
Block_64B => 6,
Block_128B => 7,
Block_256B => 8,
Block_512B => 9,
Block_1024B => 10,
Block_2048B => 11,
Block_4096B => 12,
Block_8192B => 13,
Block_16384B => 14);
-- data control register
type DCTRL_Register is record
-- DTEN
DTEN : Boolean := False;
-- Data transfer direction selection
DTDIR : DCTRL_DTDIR_Field :=
STM32_SVD.SDMMC.Controller_To_Card;
-- Data transfer mode selection 1: Stream or SDIO multibyte data
-- transfer
DTMODE : DCTRL_DTMODE_Field := STM32_SVD.SDMMC.Block;
-- DMA enable bit
DMAEN : Boolean := False;
-- Data block size
DBLOCKSIZE : DCTRL_DBLOCKSIZE_Field := STM32_SVD.SDMMC.Block_1B;
-- Read wait start
RWSTART : Boolean := False;
-- Read wait stop
RWSTOP : Boolean := False;
-- Read wait mode
RWMOD : Boolean := False;
-- SD I/O enable functions
SDIOEN : Boolean := False;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DCTRL_Register use record
DTEN at 0 range 0 .. 0;
DTDIR at 0 range 1 .. 1;
DTMODE at 0 range 2 .. 2;
DMAEN at 0 range 3 .. 3;
DBLOCKSIZE at 0 range 4 .. 7;
RWSTART at 0 range 8 .. 8;
RWSTOP at 0 range 9 .. 9;
RWMOD at 0 range 10 .. 10;
SDIOEN at 0 range 11 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype DCOUNT_DATACOUNT_Field is HAL.UInt25;
-- data counter register
type DCOUNT_Register is record
-- Read-only. Data count value
DATACOUNT : DCOUNT_DATACOUNT_Field;
-- unspecified
Reserved_25_31 : HAL.UInt7;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DCOUNT_Register use record
DATACOUNT at 0 range 0 .. 24;
Reserved_25_31 at 0 range 25 .. 31;
end record;
-- status register
type STA_Register is record
-- Read-only. Command response received (CRC check failed)
CCRCFAIL : Boolean;
-- Read-only. Data block sent/received (CRC check failed)
DCRCFAIL : Boolean;
-- Read-only. Command response timeout
CTIMEOUT : Boolean;
-- Read-only. Data timeout
DTIMEOUT : Boolean;
-- Read-only. Transmit FIFO underrun error
TXUNDERR : Boolean;
-- Read-only. Received FIFO overrun error
RXOVERR : Boolean;
-- Read-only. Command response received (CRC check passed)
CMDREND : Boolean;
-- Read-only. Command sent (no response required)
CMDSENT : Boolean;
-- Read-only. Data end (data counter, SDIDCOUNT, is zero)
DATAEND : Boolean;
-- Read-only. Start bit not detected on all data signals in wide bus
-- mode
STBITERR : Boolean;
-- Read-only. Data block sent/received (CRC check passed)
DBCKEND : Boolean;
-- Read-only. Command transfer in progress
CMDACT : Boolean;
-- Read-only. Data transmit in progress
TXACT : Boolean;
-- Read-only. Data receive in progress
RXACT : Boolean;
-- Read-only. Transmit FIFO half empty: at least 8 words can be written
-- into the FIFO
TXFIFOHE : Boolean;
-- Read-only. Receive FIFO half full: there are at least 8 words in the
-- FIFO
RXFIFOHF : Boolean;
-- Read-only. Transmit FIFO full
TXFIFOF : Boolean;
-- Read-only. Receive FIFO full
RXFIFOF : Boolean;
-- Read-only. Transmit FIFO empty
TXFIFOE : Boolean;
-- Read-only. Receive FIFO empty
RXFIFOE : Boolean;
-- Read-only. Data available in transmit FIFO
TXDAVL : Boolean;
-- Read-only. Data available in receive FIFO
RXDAVL : Boolean;
-- Read-only. SDIO interrupt received
SDIOIT : Boolean;
-- Read-only. CE-ATA command completion signal received for CMD61
CEATAEND : Boolean;
-- unspecified
Reserved_24_31 : HAL.UInt8;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for STA_Register use record
CCRCFAIL at 0 range 0 .. 0;
DCRCFAIL at 0 range 1 .. 1;
CTIMEOUT at 0 range 2 .. 2;
DTIMEOUT at 0 range 3 .. 3;
TXUNDERR at 0 range 4 .. 4;
RXOVERR at 0 range 5 .. 5;
CMDREND at 0 range 6 .. 6;
CMDSENT at 0 range 7 .. 7;
DATAEND at 0 range 8 .. 8;
STBITERR at 0 range 9 .. 9;
DBCKEND at 0 range 10 .. 10;
CMDACT at 0 range 11 .. 11;
TXACT at 0 range 12 .. 12;
RXACT at 0 range 13 .. 13;
TXFIFOHE at 0 range 14 .. 14;
RXFIFOHF at 0 range 15 .. 15;
TXFIFOF at 0 range 16 .. 16;
RXFIFOF at 0 range 17 .. 17;
TXFIFOE at 0 range 18 .. 18;
RXFIFOE at 0 range 19 .. 19;
TXDAVL at 0 range 20 .. 20;
RXDAVL at 0 range 21 .. 21;
SDIOIT at 0 range 22 .. 22;
CEATAEND at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- interrupt clear register
type ICR_Register is record
-- CCRCFAIL flag clear bit
CCRCFAILC : Boolean := False;
-- DCRCFAIL flag clear bit
DCRCFAILC : Boolean := False;
-- CTIMEOUT flag clear bit
CTIMEOUTC : Boolean := False;
-- DTIMEOUT flag clear bit
DTIMEOUTC : Boolean := False;
-- TXUNDERR flag clear bit
TXUNDERRC : Boolean := False;
-- RXOVERR flag clear bit
RXOVERRC : Boolean := False;
-- CMDREND flag clear bit
CMDRENDC : Boolean := False;
-- CMDSENT flag clear bit
CMDSENTC : Boolean := False;
-- DATAEND flag clear bit
DATAENDC : Boolean := False;
-- STBITERR flag clear bit
STBITERRC : Boolean := False;
-- DBCKEND flag clear bit
DBCKENDC : Boolean := False;
-- unspecified
Reserved_11_21 : HAL.UInt11 := 16#0#;
-- SDIOIT flag clear bit
SDIOITC : Boolean := False;
-- CEATAEND flag clear bit
CEATAENDC : Boolean := False;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ICR_Register use record
CCRCFAILC at 0 range 0 .. 0;
DCRCFAILC at 0 range 1 .. 1;
CTIMEOUTC at 0 range 2 .. 2;
DTIMEOUTC at 0 range 3 .. 3;
TXUNDERRC at 0 range 4 .. 4;
RXOVERRC at 0 range 5 .. 5;
CMDRENDC at 0 range 6 .. 6;
CMDSENTC at 0 range 7 .. 7;
DATAENDC at 0 range 8 .. 8;
STBITERRC at 0 range 9 .. 9;
DBCKENDC at 0 range 10 .. 10;
Reserved_11_21 at 0 range 11 .. 21;
SDIOITC at 0 range 22 .. 22;
CEATAENDC at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- mask register
type MASK_Register is record
-- Command CRC fail interrupt enable
CCRCFAILIE : Boolean := False;
-- Data CRC fail interrupt enable
DCRCFAILIE : Boolean := False;
-- Command timeout interrupt enable
CTIMEOUTIE : Boolean := False;
-- Data timeout interrupt enable
DTIMEOUTIE : Boolean := False;
-- Tx FIFO underrun error interrupt enable
TXUNDERRIE : Boolean := False;
-- Rx FIFO overrun error interrupt enable
RXOVERRIE : Boolean := False;
-- Command response received interrupt enable
CMDRENDIE : Boolean := False;
-- Command sent interrupt enable
CMDSENTIE : Boolean := False;
-- Data end interrupt enable
DATAENDIE : Boolean := False;
-- Start bit error interrupt enable
STBITERRIE : Boolean := False;
-- Data block end interrupt enable
DBCKENDIE : Boolean := False;
-- Command acting interrupt enable
CMDACTIE : Boolean := False;
-- Data transmit acting interrupt enable
TXACTIE : Boolean := False;
-- Data receive acting interrupt enable
RXACTIE : Boolean := False;
-- Tx FIFO half empty interrupt enable
TXFIFOHEIE : Boolean := False;
-- Rx FIFO half full interrupt enable
RXFIFOHFIE : Boolean := False;
-- Tx FIFO full interrupt enable
TXFIFOFIE : Boolean := False;
-- Rx FIFO full interrupt enable
RXFIFOFIE : Boolean := False;
-- Tx FIFO empty interrupt enable
TXFIFOEIE : Boolean := False;
-- Rx FIFO empty interrupt enable
RXFIFOEIE : Boolean := False;
-- Data available in Tx FIFO interrupt enable
TXDAVLIE : Boolean := False;
-- Data available in Rx FIFO interrupt enable
RXDAVLIE : Boolean := False;
-- SDIO mode interrupt received interrupt enable
SDIOITIE : Boolean := False;
-- CE-ATA command completion signal received interrupt enable
CEATAENDIE : Boolean := False;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for MASK_Register use record
CCRCFAILIE at 0 range 0 .. 0;
DCRCFAILIE at 0 range 1 .. 1;
CTIMEOUTIE at 0 range 2 .. 2;
DTIMEOUTIE at 0 range 3 .. 3;
TXUNDERRIE at 0 range 4 .. 4;
RXOVERRIE at 0 range 5 .. 5;
CMDRENDIE at 0 range 6 .. 6;
CMDSENTIE at 0 range 7 .. 7;
DATAENDIE at 0 range 8 .. 8;
STBITERRIE at 0 range 9 .. 9;
DBCKENDIE at 0 range 10 .. 10;
CMDACTIE at 0 range 11 .. 11;
TXACTIE at 0 range 12 .. 12;
RXACTIE at 0 range 13 .. 13;
TXFIFOHEIE at 0 range 14 .. 14;
RXFIFOHFIE at 0 range 15 .. 15;
TXFIFOFIE at 0 range 16 .. 16;
RXFIFOFIE at 0 range 17 .. 17;
TXFIFOEIE at 0 range 18 .. 18;
RXFIFOEIE at 0 range 19 .. 19;
TXDAVLIE at 0 range 20 .. 20;
RXDAVLIE at 0 range 21 .. 21;
SDIOITIE at 0 range 22 .. 22;
CEATAENDIE at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
subtype FIFOCNT_FIFOCOUNT_Field is HAL.UInt24;
-- FIFO counter register
type FIFOCNT_Register is record
-- Read-only. Remaining number of words to be written to or read from
-- the FIFO
FIFOCOUNT : FIFOCNT_FIFOCOUNT_Field;
-- unspecified
Reserved_24_31 : HAL.UInt8;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for FIFOCNT_Register use record
FIFOCOUNT at 0 range 0 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Secure digital input/output interface
type SDMMC_Peripheral is record
-- power control register
POWER : aliased POWER_Register;
-- SDI clock control register
CLKCR : aliased CLKCR_Register;
-- argument register
ARG : aliased HAL.UInt32;
-- command register
CMD : aliased CMD_Register;
-- command response register
RESPCMD : aliased RESPCMD_Register;
-- response 1..4 register
RESP1 : aliased HAL.UInt32;
-- response 1..4 register
RESP2 : aliased HAL.UInt32;
-- response 1..4 register
RESP3 : aliased HAL.UInt32;
-- response 1..4 register
RESP4 : aliased HAL.UInt32;
-- data timer register
DTIMER : aliased HAL.UInt32;
-- data length register
DLEN : aliased DLEN_Register;
-- data control register
DCTRL : aliased DCTRL_Register;
-- data counter register
DCOUNT : aliased DCOUNT_Register;
-- status register
STA : aliased STA_Register;
-- interrupt clear register
ICR : aliased ICR_Register;
-- mask register
MASK : aliased MASK_Register;
-- FIFO counter register
FIFOCNT : aliased FIFOCNT_Register;
-- data FIFO register
FIFO : aliased HAL.UInt32;
end record
with Volatile;
for SDMMC_Peripheral use record
POWER at 16#0# range 0 .. 31;
CLKCR at 16#4# range 0 .. 31;
ARG at 16#8# range 0 .. 31;
CMD at 16#C# range 0 .. 31;
RESPCMD at 16#10# range 0 .. 31;
RESP1 at 16#14# range 0 .. 31;
RESP2 at 16#18# range 0 .. 31;
RESP3 at 16#1C# range 0 .. 31;
RESP4 at 16#20# range 0 .. 31;
DTIMER at 16#24# range 0 .. 31;
DLEN at 16#28# range 0 .. 31;
DCTRL at 16#2C# range 0 .. 31;
DCOUNT at 16#30# range 0 .. 31;
STA at 16#34# range 0 .. 31;
ICR at 16#38# range 0 .. 31;
MASK at 16#3C# range 0 .. 31;
FIFOCNT at 16#48# range 0 .. 31;
FIFO at 16#80# range 0 .. 31;
end record;
-- Secure digital input/output interface
SDMMC1_Periph : aliased SDMMC_Peripheral
with Import, Address => System'To_Address (16#40012C00#);
-- Secure digital input/output interface
SDMMC2_Periph : aliased SDMMC_Peripheral
with Import, Address => System'To_Address (16#40011C00#);
end STM32_SVD.SDMMC;
|
charlie5/aIDE | Ada | 1,517 | adb | with
Gtk.Container,
Gtk.Style_Provider,
Gtk.Style_Context,
Gtk.Css_Provider,
Glib.Error,
Glib,
Ada.Text_IO;
package body aIDE.Style
is
use Gtk.Style_Provider,
Gtk.Style_Context,
Gtk.Css_Provider,
Ada.Text_IO,
Gtk.Container;
Provider : Gtk_Css_Provider;
procedure define
is
Error : aliased Glib.Error.GError;
begin
Provider := Gtk_Css_Provider_New;
if not Provider.Load_From_Path ("./css_accordion.css", Error'Access)
then
Put_Line ("Failed to load css_accordion.css !");
Put_Line (Glib.Error.Get_Message (Error));
return;
end if;
end define;
procedure Apply_Css_recursive (Widget : not null access Gtk.Widget.Gtk_Widget_Record'Class;
Provider : Gtk_Style_Provider)
is
package FA is new Forall_User_Data (Gtk_Style_Provider);
begin
Get_Style_Context (Widget).Add_Provider (Provider, Glib.Guint'Last);
if Widget.all in Gtk_Container_Record'Class
then
declare
Container : constant Gtk_Container := Gtk_Container (Widget);
begin
FA.Forall (Container, Apply_Css_recursive'Unrestricted_Access, Provider);
end;
end if;
end Apply_Css_recursive;
procedure apply_CSS (Widget : not null access Gtk.Widget.Gtk_Widget_Record'Class)
is
begin
Apply_Css_recursive (Widget, +Provider);
end apply_CSS;
end aIDE.Style;
|
smola/language-dataset | Ada | 1,579 | ads | -----------------------------------------------------------------------
-- util-http-rest-rest_get_vector -- REST API support
-- Copyright (C) 2012, 2013 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.Serialize.Mappers.Vector_Mapper;
-- Execute an HTTP GET operation on the given <b>URI</b> and parse the JSON response
-- into the target object refered to by <b>Into</b> by using the mapping described
-- in <b>Mapping</b>.
generic
-- Package that maps the element into a vector of records.
with package Vector_Mapper is
new Util.Serialize.Mappers.Vector_Mapper (<>);
procedure Util.Http.Rest.Rest_Get_Vector (URI : in String;
Mapping : in Util.Serialize.Mappers.Mapper_Access;
Path : in String := "";
Into : in Vector_Mapper.Vector_Type_Access);
|
micahwelf/FLTK-Ada | Ada | 2,386 | ads |
with
FLTK.Widgets;
package FLTK.Tooltips is
function Get_Target
return access FLTK.Widgets.Widget'Class;
procedure Set_Target
(To : in FLTK.Widgets.Widget'Class);
function Is_Enabled
return Boolean;
procedure Set_Enabled
(To : in Boolean);
procedure Enter_Area
(Item : in FLTK.Widgets.Widget'Class;
X, Y, W, H : in Integer;
Tip : in String);
function Get_Delay
return Float;
procedure Set_Delay
(To : in Float);
function Get_Hover_Delay
return Float;
procedure Set_Hover_Delay
(To : in Float);
function Get_Background_Color
return Color;
procedure Set_Background_Color
(To : in Color);
function Get_Margin_Height
return Natural;
-- procedure Set_Margin_Height
-- (To : in Natural);
function Get_Margin_Width
return Natural;
-- procedure Set_Margin_Width
-- (To : in Natural);
function Get_Wrap_Width
return Natural;
-- procedure Set_Wrap_Width
-- (To : in Natural);
function Get_Text_Color
return Color;
procedure Set_Text_Color
(To : in Color);
function Get_Text_Font
return Font_Kind;
procedure Set_Text_Font
(To : in Font_Kind);
function Get_Text_Size
return Font_Size;
procedure Set_Text_Size
(To : in Font_Size);
private
pragma Inline (Get_Target);
pragma Inline (Set_Target);
pragma Inline (Is_Enabled);
pragma Inline (Set_Enabled);
pragma Inline (Enter_Area);
pragma Inline (Get_Delay);
pragma Inline (Set_Delay);
pragma Inline (Get_Hover_Delay);
pragma Inline (Set_Hover_Delay);
pragma Inline (Get_Background_Color);
pragma Inline (Set_Background_Color);
pragma Inline (Get_Margin_Height);
-- pragma Inline (Set_Margin_Height);
pragma Inline (Get_Margin_Width);
-- pragma Inline (Set_Margin_Width);
pragma Inline (Get_Wrap_Width);
-- pragma Inline (Set_Wrap_Width);
pragma Inline (Get_Text_Color);
pragma Inline (Set_Text_Color);
pragma Inline (Get_Text_Font);
pragma Inline (Set_Text_Font);
pragma Inline (Get_Text_Size);
pragma Inline (Set_Text_Size);
end FLTK.Tooltips;
|
onox/sdlada | Ada | 6,040 | 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.Video.Textures
--
-- Texture abstraction.
--------------------------------------------------------------------------------------------------------------------
with Ada.Finalization;
with System;
private with SDL.C_Pointers;
with SDL.Video.Palettes;
with SDL.Video.Pixel_Formats;
with SDL.Video.Pixels;
with SDL.Video.Rectangles;
limited with SDL.Video.Renderers;
with SDL.Video.Surfaces;
with SDL.Video;
package SDL.Video.Textures is
Texture_Error : exception;
-- Was SDL_TextureAccess.
type Kinds is (Static, Streaming, Target) with
Convention => C;
type Texture is new Ada.Finalization.Limited_Controlled with private;
Null_Texture : constant Texture;
procedure Destroy (Self : in out Texture);
-- Get the alpha value to be multiplied (modulated) into render copy operations.
function Get_Alpha (Self : in Texture) return SDL.Video.Palettes.Colour_Component;
procedure Set_Alpha (Self : in out Texture; Alpha : in SDL.Video.Palettes.Colour_Component);
function Get_Blend_Mode (Self : in Texture) return Blend_Modes;
procedure Set_Blend_Mode (Self : in out Texture; Mode : in Blend_Modes);
function Get_Modulate_Colour (Self : in Texture) return SDL.Video.Palettes.RGB_Colour;
procedure Set_Modulate_Colour (Self : in out Texture; Colour : in SDL.Video.Palettes.RGB_Colour);
-- TODO: Fix this.
-- Lock returns access to pixel data as write-only.
-- function Lock (Self : in out Texture; Pixel_Data : out SDL.Video.Pixels.Pixel) return Boolean with
-- function Lock (Self : in out Texture; Area : in SDL.Video.Rectangles.Rectangle;
-- Pixel_Data : out SDL.Video.Pixels.Pixel) return Boolean with
-- Pre => Self.Locked = False,
-- Post => Result = True and then Self.Locked = True;
--
-- Lock should return an object representing the bitmap data. We should be able to access it like an array,
-- e.g. (x, y) and also using an iterator, which traverses, top -> bottom, left -> right, 1 pixel at a time. We
-- need to be able to do subimage copies using Ada's slices, e.g. bm1 (x .. x2, y .. y2) := bm2 (x .. x2, y .. y2)
--
-- For YV12 format:
--
-- package ARGB_8888_Array is new SDL.Video.Pixels.Texture_Data (Width => , Height => , Element => );
-- procedure Lock_Texture (Self : in out Texture;
-- Pixels : out SDL.Video.Pixels.Pixel_ARGB_8888_Array_Access);
-- Lock
--
-- Lock the entire texture data.
--
-- There will be multiple pixel formats, there should only be one Lock sub-program to handle them all.
generic
type Pixel_Pointer_Type is private;
procedure Lock (Self : in out Texture;
Pixels : out Pixel_Pointer_Type);
-- Lock
--
-- Lock a particular area of the texture data.
generic
type Pixel_Pointer_Type is private;
procedure Lock_Area (Self : in out Texture;
Area : in SDL.Video.Rectangles.Rectangle;
Pixels : out Pixel_Pointer_Type;
Pitch : out SDL.Video.Pixels.Pitches);
procedure Unlock (Self : in out Texture);
procedure Query (Self : in Texture;
Pixel_Format_Name : out SDL.Video.Pixel_Formats.Pixel_Format_Names;
Kind : out Kinds;
Size : out SDL.Sizes);
function Get_Pixel_Format (Self : in Texture) return SDL.Video.Pixel_Formats.Pixel_Format_Names;
function Get_Kind (Self : in Texture) return Kinds;
function Get_Size (Self : in Texture) return SDL.Sizes;
-- SDL_UpdateTexture
-- SDL_UpdateYUVTexture
private
type Texture is new Ada.Finalization.Limited_Controlled with
record
Internal : SDL.C_Pointers.Texture_Pointer := null;
Owns : Boolean := True;
Locked : Boolean := False;
Size : SDL.Sizes := SDL.Zero_Size;
Pixel_Format : SDL.Video.Pixel_Formats.Pixel_Format_Names := SDL.Video.Pixel_Formats.Pixel_Format_Unknown;
end record;
overriding
procedure Finalize (Self : in out Texture);
function Get_Internal_Texture (Self : in Texture) return SDL.C_Pointers.Texture_Pointer with
Export => True,
Convention => Ada;
Null_Texture : constant Texture := (Ada.Finalization.Limited_Controlled with
Internal => null,
Owns => True,
Size => SDL.Zero_Size,
Pixel_Format => Pixel_Formats.Pixel_Format_Unknown,
Locked => False);
end SDL.Video.Textures;
|
io7m/coreland-lua-ada-load | Ada | 542 | adb | with Ada.Text_IO;
with Test;
procedure test0005 is
package IO renames Ada.Text_IO;
begin
Test.Init ("test0005.lua");
Test.Load.Table_Start (Test.Loader_Access, "x");
declare
x : constant Long_Float := Test.Load.Named_Local (Test.Loader_Access, "y");
begin
IO.Put_Line ("x.y: " & Integer'Image (Integer (x)));
end;
Test.Load.Table_End (Test.Loader_Access);
exception
when Test.Load.Load_Error =>
IO.Put_Line ("fail: " & Test.Load.Error_String (Test.Loader_Access));
raise Test.Load.Load_Error;
end test0005;
|
ekoeppen/STM32_Generic_Ada_Drivers | Ada | 1,504 | adb | with Ada.Real_Time; use Ada.Real_Time;
with STM32GD.Board; use STM32GD.Board;
procedure Main is
procedure Print_Registers is new Radio.Print_Registers (
Put_Line => Text_IO.Put_Line);
procedure RX_Test is
RX_Address : constant Radio.Address_Type := (
16#00#, 16#F0#, 16#F0#, 16#F0#, 16#F0#);
begin
Text_IO.Put_Line ("Starting RX test");
Radio.Set_RX_Address (RX_Address);
Radio.RX_Mode;
Print_Registers;
loop
LED.Toggle;
Timer.After (Seconds (10), Radio.Cancel'Access);
if Radio.Wait_For_RX then
Text_IO.New_Line;
Text_IO.Put_Line ("Packet received");
else
Text_IO.Put_Line ("*");
end if;
Print_Registers;
end loop;
end RX_Test;
procedure TX_Test is
Period : constant Time_Span := Seconds (3);
Broadcast_Address : constant Radio.Address_Type := (
16#00#, 16#F0#, 16#F0#, 16#F0#, 16#F0#);
TX_Data : constant Radio.Packet_Type := (
16#00#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#,
16#55#);
begin
Text_IO.Put_Line ("Starting TX test");
Radio.Set_TX_Address (Broadcast_Address);
Radio.TX_Mode;
loop
LED.Toggle;
Radio.TX (TX_Data);
Print_Registers;
delay until Clock + Period;
end loop;
end TX_Test;
begin
Init;
Radio.Set_Channel (70);
loop
RX_Test;
end loop;
end Main;
|
reznikmm/matreshka | Ada | 4,583 | 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_Text.Formula_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Text_Formula_Attribute_Node is
begin
return Self : Text_Formula_Attribute_Node do
Matreshka.ODF_Text.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Text_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Text_Formula_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Formula_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Text_URI,
Matreshka.ODF_String_Constants.Formula_Attribute,
Text_Formula_Attribute_Node'Tag);
end Matreshka.ODF_Text.Formula_Attributes;
|
osannolik/ada-canopen | Ada | 3,836 | adb | package body ACO.Nodes.Locals is
overriding
procedure Set_State
(This : in out Local;
State : in ACO.States.State)
is
begin
This.NMT.Set (State);
end Set_State;
overriding
function Get_State
(This : Local)
return ACO.States.State
is
begin
return This.NMT.Get;
end Get_State;
overriding
procedure Start
(This : in out Local)
is
begin
This.Handler.Start;
This.Set_State (ACO.States.Initializing);
end Start;
overriding
procedure Write
(This : in out Local;
Index : in ACO.OD_Types.Object_Index;
Subindex : in ACO.OD_Types.Object_Subindex;
An_Entry : in ACO.OD_Types.Entry_Base'Class)
is
begin
This.Od.Set_Entry
(New_Entry => An_Entry,
Index => Index,
Subindex => Subindex);
end Write;
overriding
procedure Read
(This : in out Local;
Index : in ACO.OD_Types.Object_Index;
Subindex : in ACO.OD_Types.Object_Subindex;
To_Entry : out ACO.OD_Types.Entry_Base'Class)
is
begin
To_Entry := This.Read (Index, Subindex);
end Read;
function Read
(This : Local;
Index : ACO.OD_Types.Object_Index;
Subindex : ACO.OD_Types.Object_Subindex)
return ACO.OD_Types.Entry_Base'Class
is
begin
return This.Od.Get_Entry (Index => Index,
Subindex => Subindex);
end Read;
procedure On_Message_Dispatch
(This : in out Local;
Msg : in ACO.Messages.Message)
is
begin
if This.NMT.Is_Valid (Msg) then
This.NMT.Message_Received (Msg);
elsif This.EC.Is_Valid (Msg) then
This.EC.Message_Received (Msg);
elsif This.SDO.Is_Valid (Msg) then
This.SDO.Message_Received (Msg);
elsif This.SYNC.Is_Valid (Msg) then
This.SYNC.Message_Received (Msg);
end if;
end On_Message_Dispatch;
procedure Periodic_Actions
(This : in out Local;
T_Now : in Ada.Real_Time.Time)
is
begin
This.EC.Periodic_Actions (T_Now);
This.SDO.Periodic_Actions (T_Now);
This.SYNC.Periodic_Actions (T_Now);
end Periodic_Actions;
overriding
procedure Result_Callback
(This : in out Server_Only;
Session : in ACO.SDO_Sessions.SDO_Session;
Result : in ACO.SDO_Sessions.SDO_Result)
is
begin
This.Od.Events.Node_Events.Put
((Event => ACO.Events.SDO_Status_Update,
SDO_Status => (Endpoint_Id => Session.Endpoint.Id,
Result => Result)));
This.Clear (Session.Endpoint.Id);
end Result_Callback;
overriding
function Tx_CAN_Id
(This : Server_Only;
Parameter : ACO.SDO_Sessions.SDO_Parameters)
return ACO.Messages.Id_Type
is
(Parameter.CAN_Id_S2C);
overriding
function Rx_CAN_Id
(This : Server_Only;
Parameter : ACO.SDO_Sessions.SDO_Parameters)
return ACO.Messages.Id_Type
is
(Parameter.CAN_Id_C2S);
overriding
function Get_Endpoint
(This : Server_Only;
Rx_CAN_Id : ACO.Messages.Id_Type)
return ACO.SDO_Sessions.Endpoint_Type
is
use type ACO.Messages.Id_Type;
I : ACO.SDO_Sessions.Endpoint_Nr :=
ACO.SDO_Sessions.Valid_Endpoint_Nr'First;
Parameters : constant ACO.SDO_Sessions.SDO_Parameter_Array :=
This.Od.Get_SDO_Server_Parameters;
begin
for P of Parameters loop
if This.Rx_CAN_Id (P) = Rx_CAN_Id then
return (Id => I, Parameters => P);
end if;
I := ACO.SDO_Sessions.Endpoint_Nr'Succ (I);
end loop;
return ACO.SDO_Sessions.No_Endpoint;
end Get_Endpoint;
end ACO.Nodes.Locals;
|
rveenker/sdlada | Ada | 1,181 | adb | with SDL;
with SDL.Error;
with SDL.Libraries;
with SDL.Log;
with System;
use type System.Bit_Order;
-- Run with: LD_LIBRARY_PATH=./gen/debug/test:$LD_LIBRARY_PATH ./gen/debug/test/libraries
procedure Libraries is
Lib : SDL.Libraries.Handles;
begin
SDL.Libraries.Load (Lib, "libtestmaths.so");
SDL.Log.Set (Category => SDL.Log.Application, Priority => SDL.Log.Debug);
declare
type Access_To_Add is access function (A, B : in Integer) return Integer;
type Access_To_Sub is access function (A, B : in Integer) return Integer with
Convention => C;
function Load is new SDL.Libraries.Load_Sub_Program
(Access_To_Sub_Program => Access_To_Add,
Name => "Add");
function Load is new SDL.Libraries.Load_Sub_Program
(Access_To_Sub_Program => Access_To_Sub,
Name => "sub");
Add : Access_To_Add := Load (From_Library => Lib);
Sub : Access_To_Sub := Load (From_Library => Lib);
begin
SDL.Log.Put_Debug ("1 + 2 = " & Integer'Image (Add (1, 2)));
SDL.Log.Put_Debug ("5 - 1 = " & Integer'Image (Sub (5, 1)));
end;
SDL.Finalise;
end Libraries;
|
AdaCore/Ada_Drivers_Library | Ada | 2,869 | ads | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015-2016, 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. --
-- --
------------------------------------------------------------------------------
package HAL.Time is
pragma Preelaborate;
type Delays is limited interface;
type Any_Delays is access all Delays'Class;
procedure Delay_Microseconds (This : in out Delays;
Us : Integer) is abstract;
procedure Delay_Milliseconds (This : in out Delays;
Ms : Integer) is abstract;
procedure Delay_Seconds (This : in out Delays;
S : Integer) is abstract;
end HAL.Time;
|
stcarrez/ada-wiki | Ada | 3,470 | adb | -----------------------------------------------------------------------
-- Util.Concurrent -- Concurrent Counters
-- Copyright (C) 2009, 2010, 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 body Util.Concurrent.Counters is
function Sync_Sub_And_Fetch (Ptr : access Interfaces.Unsigned_32;
Value : in Interfaces.Unsigned_32) return Interfaces.Unsigned_32;
pragma Import (Intrinsic, Sync_Sub_And_Fetch,
External_Name => "__sync_sub_and_fetch_4");
function Sync_Fetch_And_Add (Ptr : access Interfaces.Unsigned_32;
Value : in Interfaces.Unsigned_32) return Interfaces.Unsigned_32;
pragma Import (Intrinsic, Sync_Fetch_And_Add,
External_Name => "__sync_fetch_and_add_4");
procedure Sync_Add (Ptr : access Interfaces.Unsigned_32;
Value : in Interfaces.Unsigned_32);
pragma Import (Intrinsic, Sync_Add,
External_Name => "__sync_add_and_fetch_4");
procedure Sync_Sub (Ptr : access Interfaces.Unsigned_32;
Value : in Interfaces.Unsigned_32);
pragma Import (Intrinsic, Sync_Sub,
External_Name => "__sync_sub_and_fetch_4");
-- ------------------------------
-- Increment the counter atomically.
-- ------------------------------
procedure Increment (C : in out Counter) is
begin
Sync_Add (C.Value'Unrestricted_Access, 1);
end Increment;
-- ------------------------------
-- Increment the counter atomically and return the value before increment.
-- ------------------------------
procedure Increment (C : in out Counter;
Value : out Integer) is
begin
Value := Integer (Sync_Fetch_And_Add (C.Value'Unrestricted_Access, 1));
end Increment;
-- ------------------------------
-- Decrement the counter atomically.
-- ------------------------------
procedure Decrement (C : in out Counter) is
use type Interfaces.Unsigned_32;
begin
Sync_Sub (C.Value'Unrestricted_Access, 1);
end Decrement;
-- ------------------------------
-- Decrement the counter atomically and return a status.
-- ------------------------------
procedure Decrement (C : in out Counter;
Is_Zero : out Boolean) is
use type Interfaces.Unsigned_32;
Value : Interfaces.Unsigned_32;
begin
Value := Sync_Sub_And_Fetch (C.Value'Unrestricted_Access, 1);
Is_Zero := Value = 0;
end Decrement;
-- ------------------------------
-- Get the counter value
-- ------------------------------
function Value (C : in Counter) return Integer is
begin
return Integer (C.Value);
end Value;
end Util.Concurrent.Counters;
|
reznikmm/matreshka | Ada | 4,752 | 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.Table_Table_Column_Elements;
package Matreshka.ODF_Table.Table_Column_Elements is
type Table_Table_Column_Element_Node is
new Matreshka.ODF_Table.Abstract_Table_Element_Node
and ODF.DOM.Table_Table_Column_Elements.ODF_Table_Table_Column
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters)
return Table_Table_Column_Element_Node;
overriding function Get_Local_Name
(Self : not null access constant Table_Table_Column_Element_Node)
return League.Strings.Universal_String;
overriding procedure Enter_Node
(Self : not null access Table_Table_Column_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 Table_Table_Column_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 Table_Table_Column_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_Table.Table_Column_Elements;
|
sungyeon/drake | Ada | 36 | adb | ../machine-apple-darwin/s-prdyli.adb |
dshadrin/AProxy | Ada | 2,456 | ads | ----------------------------------------
-- Copyright (C) 2019 Dmitriy Shadrin --
-- All rights reserved. --
----------------------------------------
with Pal;
with Logging_Message;
with ConfigTree;
with Ada.Strings.Unbounded;
with Ada.Containers.Vectors;
package Sinks is
use all type Logging_Message.LogMessage;
package LogsVector is new Ada.Containers.Vectors (Pal.uint32_t, Logging_Message.LogMessage);
type LVectorPtr is access all LogsVector.Vector;
package LogsSP is new Pal.Smart_Ptr (TypeName => LogsVector.Vector, SharedObject => LVectorPtr);
subtype LogMessages is LogsSP.Shared_Ptr;
type ESinkType is ( CONSOLE_SINK, FILE_SINK );
for ESinkType'Size use Pal.uint8_t'Size;
type Sink is limited private;
function Channel (self : access Sink) return Logging_Message.LogChannel
with inline, pre => self /= null;
procedure WriteLogs (self : access Sink; logs : in LogMessages)
with pre => self /= null;
procedure Close (self : access Sink)
with pre => self /= null;
procedure MakeSink (self : out Sink; name : in String; cfg : in ConfigTree.NodePtr)
with pre => not ConfigTree.IsNull (cfg) and then cfg.GetName = "sink";
activeSinksCounter : aliased Pal.uint32_t := 0;
-----------------------------------------------------------------------------
task type SinkOutputer is
entry Write (logs : in LogMessages;
file : Ada.Strings.Unbounded.Unbounded_String := Ada.Strings.Unbounded.Null_Unbounded_String);
entry Start (tag : ESinkType;
sev : Logging_Message.ESeverity;
ch : Logging_Message.LogChannel);
entry Stop;
end SinkOutputer;
type SinkOutputerPtr is access SinkOutputer;
private
type Sink is limited
record
SinkType : ESinkType;
severity : Logging_Message.ESeverity;
channel : Logging_Message.LogChannel;
template : Ada.Strings.Unbounded.Unbounded_String;
prefix : Ada.Strings.Unbounded.Unbounded_String;
suffix : Ada.Strings.Unbounded.Unbounded_String;
filename : Ada.Strings.Unbounded.Unbounded_String;
open_by_demand : Pal.bool;
handler : SinkOutputerPtr;
end record;
function MakeFilename (self : in out Sink) return Ada.Strings.Unbounded.Unbounded_String;
end Sinks;
|
optikos/oasis | Ada | 8,638 | ads | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Lexical_Elements;
with Program.Elements.Defining_Names;
with Program.Elements.Expressions;
with Program.Elements.Parameter_Associations;
with Program.Elements.Aspect_Specifications;
with Program.Elements.Procedure_Instantiations;
with Program.Element_Visitors;
package Program.Nodes.Procedure_Instantiations is
pragma Preelaborate;
type Procedure_Instantiation is
new Program.Nodes.Node
and Program.Elements.Procedure_Instantiations.Procedure_Instantiation
and Program.Elements.Procedure_Instantiations
.Procedure_Instantiation_Text
with private;
function Create
(Not_Token : Program.Lexical_Elements.Lexical_Element_Access;
Overriding_Token : Program.Lexical_Elements.Lexical_Element_Access;
Procedure_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Name : not null Program.Elements.Defining_Names
.Defining_Name_Access;
Is_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
New_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Generic_Procedure_Name : not null Program.Elements.Expressions
.Expression_Access;
Left_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access;
Parameters : Program.Elements.Parameter_Associations
.Parameter_Association_Vector_Access;
Right_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access;
With_Token : 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 Procedure_Instantiation;
type Implicit_Procedure_Instantiation is
new Program.Nodes.Node
and Program.Elements.Procedure_Instantiations.Procedure_Instantiation
with private;
function Create
(Name : not null Program.Elements.Defining_Names
.Defining_Name_Access;
Generic_Procedure_Name : not null Program.Elements.Expressions
.Expression_Access;
Parameters : Program.Elements.Parameter_Associations
.Parameter_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;
Has_Not : Boolean := False;
Has_Overriding : Boolean := False)
return Implicit_Procedure_Instantiation
with Pre =>
Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance;
private
type Base_Procedure_Instantiation is
abstract new Program.Nodes.Node
and Program.Elements.Procedure_Instantiations.Procedure_Instantiation
with record
Name : not null Program.Elements.Defining_Names
.Defining_Name_Access;
Generic_Procedure_Name : not null Program.Elements.Expressions
.Expression_Access;
Parameters : Program.Elements.Parameter_Associations
.Parameter_Association_Vector_Access;
Aspects : Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access;
end record;
procedure Initialize
(Self : aliased in out Base_Procedure_Instantiation'Class);
overriding procedure Visit
(Self : not null access Base_Procedure_Instantiation;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class);
overriding function Name
(Self : Base_Procedure_Instantiation)
return not null Program.Elements.Defining_Names.Defining_Name_Access;
overriding function Generic_Procedure_Name
(Self : Base_Procedure_Instantiation)
return not null Program.Elements.Expressions.Expression_Access;
overriding function Parameters
(Self : Base_Procedure_Instantiation)
return Program.Elements.Parameter_Associations
.Parameter_Association_Vector_Access;
overriding function Aspects
(Self : Base_Procedure_Instantiation)
return Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access;
overriding function Is_Procedure_Instantiation_Element
(Self : Base_Procedure_Instantiation)
return Boolean;
overriding function Is_Declaration_Element
(Self : Base_Procedure_Instantiation)
return Boolean;
type Procedure_Instantiation is
new Base_Procedure_Instantiation
and Program.Elements.Procedure_Instantiations
.Procedure_Instantiation_Text
with record
Not_Token : Program.Lexical_Elements.Lexical_Element_Access;
Overriding_Token : Program.Lexical_Elements.Lexical_Element_Access;
Procedure_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Is_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
New_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Left_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access;
Right_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access;
With_Token : Program.Lexical_Elements.Lexical_Element_Access;
Semicolon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
end record;
overriding function To_Procedure_Instantiation_Text
(Self : aliased in out Procedure_Instantiation)
return Program.Elements.Procedure_Instantiations
.Procedure_Instantiation_Text_Access;
overriding function Not_Token
(Self : Procedure_Instantiation)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Overriding_Token
(Self : Procedure_Instantiation)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Procedure_Token
(Self : Procedure_Instantiation)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Is_Token
(Self : Procedure_Instantiation)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function New_Token
(Self : Procedure_Instantiation)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Left_Bracket_Token
(Self : Procedure_Instantiation)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Right_Bracket_Token
(Self : Procedure_Instantiation)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function With_Token
(Self : Procedure_Instantiation)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Semicolon_Token
(Self : Procedure_Instantiation)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Has_Not (Self : Procedure_Instantiation) return Boolean;
overriding function Has_Overriding
(Self : Procedure_Instantiation)
return Boolean;
type Implicit_Procedure_Instantiation is
new Base_Procedure_Instantiation
with record
Is_Part_Of_Implicit : Boolean;
Is_Part_Of_Inherited : Boolean;
Is_Part_Of_Instance : Boolean;
Has_Not : Boolean;
Has_Overriding : Boolean;
end record;
overriding function To_Procedure_Instantiation_Text
(Self : aliased in out Implicit_Procedure_Instantiation)
return Program.Elements.Procedure_Instantiations
.Procedure_Instantiation_Text_Access;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Procedure_Instantiation)
return Boolean;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Procedure_Instantiation)
return Boolean;
overriding function Is_Part_Of_Instance
(Self : Implicit_Procedure_Instantiation)
return Boolean;
overriding function Has_Not
(Self : Implicit_Procedure_Instantiation)
return Boolean;
overriding function Has_Overriding
(Self : Implicit_Procedure_Instantiation)
return Boolean;
end Program.Nodes.Procedure_Instantiations;
|
charlie5/aIDE | Ada | 139 | adb |
package body AdaM.Assist.Query.find_All.Metrics
is
procedure dummy is begin null; end dummy;
end AdaM.Assist.Query.find_All.Metrics;
|
godunko/adawebpack | Ada | 56 | adb |
with Demo;
procedure Main is
begin
null;
end Main;
|
reznikmm/matreshka | Ada | 4,048 | ads | ------------------------------------------------------------------------------
-- --
-- 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 FastCGI.Handlers.Responder;
with FastCGI.Requests;
with FastCGI.Replies;
package FastCGI.Application is
type Callback is
not null access procedure
(Request : FastCGI.Requests.Request;
Reply : out FastCGI.Replies.Reply;
Status : out Integer);
type Responder_Factory is
not null access function
return FastCGI.Handlers.Responder.Responder_Access;
procedure Initialize;
-- Initializes module.
procedure Execute (Handler : FastCGI.Application.Callback);
-- Executes main loop.
procedure Execute
(Responder_Factory : FastCGI.Application.Responder_Factory);
-- Executes main loop.
procedure Finalize;
end FastCGI.Application;
|
reznikmm/matreshka | Ada | 4,631 | 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_Dr3d.Lighting_Mode_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Dr3d_Lighting_Mode_Attribute_Node is
begin
return Self : Dr3d_Lighting_Mode_Attribute_Node do
Matreshka.ODF_Dr3d.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Dr3d_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Dr3d_Lighting_Mode_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Lighting_Mode_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Dr3d_URI,
Matreshka.ODF_String_Constants.Lighting_Mode_Attribute,
Dr3d_Lighting_Mode_Attribute_Node'Tag);
end Matreshka.ODF_Dr3d.Lighting_Mode_Attributes;
|
stcarrez/swagger-ada | Ada | 1,527 | ads | -----------------------------------------------------------------------
-- openapi-server-operation -- Rest server operation
-- Copyright (C) 2017, 2018, 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 Security.Permissions;
generic
with procedure Handler (Req : in out OpenAPI.Servers.Request'Class;
Reply : in out OpenAPI.Servers.Response'Class;
Stream : in out OpenAPI.Servers.Output_Stream'Class;
Context : in out OpenAPI.Servers.Context_Type);
Method : Method_Type := Servlet.Rest.GET;
URI : String;
Permission : Security.Permissions.Permission_Index := Security.Permissions.NONE;
Mimes : Mime_List_Access;
package OpenAPI.Servers.Operation is
function Definition return Descriptor_Access;
end OpenAPI.Servers.Operation;
|
reznikmm/matreshka | Ada | 4,019 | 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.Style_Script_Type_Attributes;
package Matreshka.ODF_Style.Script_Type_Attributes is
type Style_Script_Type_Attribute_Node is
new Matreshka.ODF_Style.Abstract_Style_Attribute_Node
and ODF.DOM.Style_Script_Type_Attributes.ODF_Style_Script_Type_Attribute
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Style_Script_Type_Attribute_Node;
overriding function Get_Local_Name
(Self : not null access constant Style_Script_Type_Attribute_Node)
return League.Strings.Universal_String;
end Matreshka.ODF_Style.Script_Type_Attributes;
|
reznikmm/matreshka | Ada | 3,669 | 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.Meta_Generator_Elements is
pragma Preelaborate;
type ODF_Meta_Generator is limited interface
and XML.DOM.Elements.DOM_Element;
type ODF_Meta_Generator_Access is
access all ODF_Meta_Generator'Class
with Storage_Size => 0;
end ODF.DOM.Meta_Generator_Elements;
|
reznikmm/matreshka | Ada | 6,861 | 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.First_Row_Elements is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters)
return Table_First_Row_Element_Node is
begin
return Self : Table_First_Row_Element_Node do
Matreshka.ODF_Table.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Table_Prefix);
end return;
end Create;
----------------
-- Enter_Node --
----------------
overriding procedure Enter_Node
(Self : not null access Table_First_Row_Element_Node;
Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class;
Control : in out XML.DOM.Visitors.Traverse_Control) is
begin
if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then
ODF.DOM.Visitors.Abstract_ODF_Visitor'Class
(Visitor).Enter_Table_First_Row
(ODF.DOM.Table_First_Row_Elements.ODF_Table_First_Row_Access
(Self),
Control);
else
Matreshka.DOM_Elements.Abstract_Element_Node
(Self.all).Enter_Node (Visitor, Control);
end if;
end Enter_Node;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Table_First_Row_Element_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.First_Row_Element;
end Get_Local_Name;
----------------
-- Leave_Node --
----------------
overriding procedure Leave_Node
(Self : not null access Table_First_Row_Element_Node;
Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class;
Control : in out XML.DOM.Visitors.Traverse_Control) is
begin
if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then
ODF.DOM.Visitors.Abstract_ODF_Visitor'Class
(Visitor).Leave_Table_First_Row
(ODF.DOM.Table_First_Row_Elements.ODF_Table_First_Row_Access
(Self),
Control);
else
Matreshka.DOM_Elements.Abstract_Element_Node
(Self.all).Leave_Node (Visitor, Control);
end if;
end Leave_Node;
----------------
-- Visit_Node --
----------------
overriding procedure Visit_Node
(Self : not null access Table_First_Row_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) is
begin
if Iterator in ODF.DOM.Iterators.Abstract_ODF_Iterator'Class then
ODF.DOM.Iterators.Abstract_ODF_Iterator'Class
(Iterator).Visit_Table_First_Row
(Visitor,
ODF.DOM.Table_First_Row_Elements.ODF_Table_First_Row_Access
(Self),
Control);
else
Matreshka.DOM_Elements.Abstract_Element_Node
(Self.all).Visit_Node (Iterator, Visitor, Control);
end if;
end Visit_Node;
begin
Matreshka.DOM_Documents.Register_Element
(Matreshka.ODF_String_Constants.Table_URI,
Matreshka.ODF_String_Constants.First_Row_Element,
Table_First_Row_Element_Node'Tag);
end Matreshka.ODF_Table.First_Row_Elements;
|
jwarwick/aoc_2020 | Ada | 307 | adb | -- AOC 2020, Day 25
with Ada.Text_IO; use Ada.Text_IO;
with Day; use Day;
procedure main is
key_pk : constant Long_Integer := 6270530;
door_pk : constant Long_Integer := 14540258;
part1 : constant Long_Integer := encryption_key(key_pk, door_pk);
begin
put_line("Part 1: " & part1'IMAGE);
end main;
|
persan/spawn-manager | Ada | 3,845 | ads | pragma Ada_2012;
with GNAT.OS_Lib; use GNAT.OS_Lib;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Ada.Containers.Vectors;
private with Interfaces;
package Spawn_Manager is
-- This package provides tasksafe variants of the GNAT.OS_Lib Spawn routines.
Version : constant String := "1.2.3";
Default_Server_Name : aliased constant String := "gnat-os_lib-spawn-manager-server";
-- The default name of the spawn server.
type Wait_Options is
(WCONTINUED,
-- The waitpid() function shall report the status of any continued
-- child process specified by pid whose status has not been reported
-- since it continued from a job control stop.
WNOHANG,
-- The waitpid() function shall not suspend execution of the calling
-- thread if status is not immediately available for one of the
-- child processes specified by pid.
WUNTRACED
-- The status of any child processes specified by pid
-- that are stopped, and whose status has not yet been reported
-- since they stopped, shall also be reported to the
-- requesting process.
);
type Status_Kind is private;
function WIFEXITED (Stat_Val : Status_Kind) return Boolean;
-- True value if status was returned for a
-- child process that terminated normally.
function WEXITSTATUS (Stat_Val : Status_Kind) return Integer;
-- If the value of WIFEXITED is True, this
-- evaluates to the low-order 8 bits of the status argument that
-- the child process passed to _exit() or exit(),
-- or the value the child process returned from main().
--# function WIFSIGNALED (Stat_Val : Status_Kind) return Boolean;
-- True if status was returned for a child process
-- that terminated due to the receipt of a signal that was not caught
-- (see <signal.h>).
--# function WTERMSIG (Stat_Val : Status_Kind) return Boolean;
-- If WIFSIGNALED(stat_val) is True, this evaluates to
-- the number of the signal that caused
-- the termination of the child process.
--# function WIFSTOPPED (Stat_Val : Status_Kind) return Boolean;
-- True if status was returned for a child process that is
-- currently stopped.
--# function WSTOPSIG (Stat_Val : Status_Kind) return Integer;
-- If the value of WIFSTOPPED(stat_val) is True, this evaluates
-- to the number of the signal that caused the child process to stop.
function WIFCONTINUED (Stat_Val : Status_Kind) return Boolean;
-- True if status was returned for a child process that has
-- continued from a job control stop.
private
package Unbounded_String_Vectors is new
Ada.Containers.Vectors (Natural, Unbounded_String);
type Request_Kind is
(Terminate_Server,
Spawn_1, Spawn_2, Spawn_3,
Non_Blocking_Spawn_1, Non_Blocking_Spawn_2,
Wait_Process, Waitpid);
type Spawn_Request is record
Id : Long_Integer := 0;
Spawn_Type : Request_Kind := Spawn_1;
Program_Name : Unbounded_String := Null_Unbounded_String;
Args : Unbounded_String_Vectors.Vector := Unbounded_String_Vectors.Empty_Vector;
Output_File : Unbounded_String := Null_Unbounded_String;
Err_To_Out : Boolean := True;
Version : Unbounded_String := To_Unbounded_String (Spawn_Manager.Version);
Pid : Process_Id;
Options : Wait_Options;
end record;
type Spawn_Response is record
Success : Boolean := False;
Return_Code : aliased Integer := 0;
Pid : Process_Id := Invalid_Pid;
Message : Unbounded_String := Null_Unbounded_String;
end record;
function Is_Exit_Message (Request : Spawn_Request) return Boolean;
type Status_Kind is new Interfaces.Unsigned_32;
Debug : Boolean := False;
end Spawn_Manager;
|
michael-hardeman/contacts_app | Ada | 15,355 | adb | -- This file is covered by the Internet Software Consortium (ISC) License
-- Reference: ../../License.txt
with Ada.Exceptions;
package body AdaBase.Driver.Base.MySQL is
package EX renames Ada.Exceptions;
---------------
-- execute --
---------------
overriding
function execute (driver : MySQL_Driver; sql : String)
return Affected_Rows
is
trsql : String := CT.trim_sql (sql);
nquery : Natural := CT.count_queries (trsql);
aborted : constant Affected_Rows := 0;
err1 : constant CT.Text :=
CT.SUS ("ACK! Execution attempted on inactive connection");
err2 : constant String :=
"Driver is configured to allow only one query at " &
"time, but this SQL contains multiple queries: ";
begin
if not driver.connection_active then
-- Fatal attempt to query an unccnnected database
driver.log_problem (category => execution,
message => err1,
break => True);
return aborted;
end if;
if nquery > 1 and then not driver.trait_multiquery_enabled then
-- Fatal attempt to execute multiple queries when it's not permitted
driver.log_problem (category => execution,
message => CT.SUS (err2 & trsql),
break => True);
return aborted;
end if;
declare
result : Affected_Rows;
begin
-- MySQL execute is configured to support multiquery at this point
-- so it is not necessary to loop through subqueries. We send the
-- trimmed compound query as it was received.
driver.connection.execute (trsql);
driver.log_nominal (execution, CT.SUS (trsql));
result := driver.connection.rows_affected_by_execution;
return result;
exception
when ACM.QUERY_FAIL =>
driver.log_problem (category => execution,
message => CT.SUS (trsql),
pull_codes => True);
return aborted;
end;
end execute;
------------------------------------------------------------------------
-- ROUTINES OF ALL DRIVERS NOT COVERED BY INTERFACES (TECH REASON) --
------------------------------------------------------------------------
-------------
-- query --
-------------
function query (driver : MySQL_Driver; sql : String)
return ASM.MySQL_statement is
begin
return driver.private_query (sql);
end query;
---------------
-- prepare --
---------------
function prepare (driver : MySQL_Driver; sql : String)
return ASM.MySQL_statement is
begin
return driver.private_prepare (sql);
end prepare;
--------------------
-- query_select --
--------------------
function query_select (driver : MySQL_Driver;
distinct : Boolean := False;
tables : String;
columns : String;
conditions : String := blankstring;
groupby : String := blankstring;
having : String := blankstring;
order : String := blankstring;
null_sort : Null_Priority := native;
limit : Trax_ID := 0;
offset : Trax_ID := 0)
return ASM.MySQL_statement is
begin
return driver.private_query
(driver.sql_assemble (distinct => distinct,
tables => tables,
columns => columns,
conditions => conditions,
groupby => groupby,
having => having,
order => order,
null_sort => null_sort,
limit => limit,
offset => offset));
end query_select;
----------------------
-- prepare_select --
----------------------
function prepare_select (driver : MySQL_Driver;
distinct : Boolean := False;
tables : String;
columns : String;
conditions : String := blankstring;
groupby : String := blankstring;
having : String := blankstring;
order : String := blankstring;
null_sort : Null_Priority := native;
limit : Trax_ID := 0;
offset : Trax_ID := 0)
return ASM.MySQL_statement is
begin
return driver.private_prepare
(driver.sql_assemble (distinct => distinct,
tables => tables,
columns => columns,
conditions => conditions,
groupby => groupby,
having => having,
order => order,
null_sort => null_sort,
limit => limit,
offset => offset));
end prepare_select;
------------------------------------------------------------------------
-- PUBLIC ROUTINES NOT COVERED BY INTERFACES --
------------------------------------------------------------------------
---------------------------------
-- trait_compressed_protocol --
---------------------------------
function trait_protocol_compressed (driver : MySQL_Driver) return Boolean
is
begin
return driver.connection.compressed;
end trait_protocol_compressed;
--------------------------------
-- trait_query_buffers_used --
--------------------------------
function trait_query_buffers_used (driver : MySQL_Driver) return Boolean
is
begin
return driver.connection.useBuffer;
end trait_query_buffers_used;
--------------------------------------
-- set_trait_compressed_protocol --
-------------------------------------
procedure set_trait_protocol_compressed (driver : MySQL_Driver;
trait : Boolean)
is
begin
driver.connection.setCompressed (compressed => trait);
end set_trait_protocol_compressed;
------------------------------
-- set_query_buffers_used --
------------------------------
procedure set_trait_query_buffers_used (driver : MySQL_Driver;
trait : Boolean)
is
begin
driver.connection.setUseBuffer (buffered => trait);
end set_trait_query_buffers_used;
------------------------------------------------------------------------
-- PRIVATE ROUTINES NOT COVERED BY INTERFACES --
------------------------------------------------------------------------
------------------
-- initialize --
------------------
overriding
procedure initialize (Object : in out MySQL_Driver)
is
begin
Object.connection := Object.local_connection'Unchecked_Access;
Object.dialect := driver_mysql;
end initialize;
-----------------------
-- private_connect --
-----------------------
overriding
procedure private_connect (driver : out MySQL_Driver;
database : String;
username : String;
password : String;
hostname : String := blankstring;
socket : String := blankstring;
port : Posix_Port := portless)
is
err1 : constant CT.Text :=
CT.SUS ("ACK! Reconnection attempted on active connection");
nom : constant CT.Text :=
CT.SUS ("Connection to " & database & " database succeeded.");
begin
if driver.connection_active then
driver.log_problem (category => execution,
message => err1);
return;
end if;
driver.connection.connect (database => database,
username => username,
password => password,
socket => socket,
hostname => hostname,
port => port);
driver.connection_active := driver.connection.all.connected;
driver.log_nominal (category => connecting, message => nom);
exception
when Error : others =>
driver.log_problem
(category => connecting,
break => True,
message => CT.SUS (ACM.EX.Exception_Message (X => Error)));
end private_connect;
---------------------
-- private_query --
---------------------
function private_query (driver : MySQL_Driver; sql : String)
return ASM.MySQL_statement
is
duplicate : aliased String := sql;
err1 : constant CT.Text :=
CT.SUS ("ACK! Query attempted on inactive connection");
begin
if driver.connection_active then
declare
err2 : constant CT.Text := CT.SUS ("Query failed!");
statement : ASM.MySQL_statement
(type_of_statement => AID.ASB.direct_statement,
log_handler => logger'Access,
mysql_conn => ACM.MySQL_Connection_Access
(driver.connection),
initial_sql => duplicate'Unchecked_Access,
con_error_mode => driver.trait_error_mode,
con_case_mode => driver.trait_column_case,
con_max_blob => driver.trait_max_blob_size,
con_buffered => driver.trait_query_buffers_used);
begin
if statement.successful then
driver.log_nominal (category => execution,
message => CT.SUS ("query succeeded," &
statement.rows_returned'Img &
" rows returned"));
else
driver.log_nominal (category => execution, message => err2);
end if;
return statement;
exception
when RES : others =>
-- Fatal attempt to create a direct statement
driver.log_problem
(category => execution,
message => CT.SUS (EX.Exception_Message (RES)),
pull_codes => True,
break => True);
end;
else
-- Fatal attempt to query an unconnected database
driver.log_problem (category => execution,
message => err1,
break => True);
end if;
-- We never get here, the driver.log_problem throws exception first
raise ACM.STMT_NOT_VALID
with "failed to return MySQL statement";
end private_query;
-----------------------
-- private_prepare --
-----------------------
function private_prepare (driver : MySQL_Driver; sql : String)
return ASM.MySQL_statement
is
duplicate : aliased String := sql;
err1 : constant CT.Text :=
CT.SUS ("ACK! Query attempted on inactive connection");
begin
if driver.connection_active then
declare
statement : ASM.MySQL_statement
(type_of_statement => AID.ASB.prepared_statement,
log_handler => logger'Access,
mysql_conn => ACM.MySQL_Connection_Access
(driver.connection),
initial_sql => duplicate'Unchecked_Access,
con_error_mode => driver.trait_error_mode,
con_case_mode => driver.trait_column_case,
con_max_blob => driver.trait_max_blob_size,
con_buffered => driver.trait_query_buffers_used);
begin
return statement;
exception
when RES : others =>
-- Fatal attempt to prepare a statement
driver.log_problem
(category => statement_preparation,
message => CT.SUS (EX.Exception_Message (RES)),
pull_codes => True,
break => True);
end;
else
-- Fatal attempt to query an unconnected database
driver.log_problem (category => statement_preparation,
message => err1,
break => True);
end if;
-- We never get here, the driver.log_problem throws exception first
raise ACM.STMT_NOT_VALID
with "failed to return MySQL statement";
end private_prepare;
--------------------
-- sql_assemble --
--------------------
function sql_assemble (driver : MySQL_Driver;
distinct : Boolean := False;
tables : String;
columns : String;
conditions : String := blankstring;
groupby : String := blankstring;
having : String := blankstring;
order : String := blankstring;
null_sort : Null_Priority := native;
limit : Trax_ID := 0;
offset : Trax_ID := 0) return String
is
vanilla : String := assembly_common_select
(distinct, tables, columns, conditions, groupby, having, order);
begin
if null_sort /= native then
driver.log_nominal
(category => execution,
message => CT.SUS ("Note that NULLS FIRST/LAST is not " &
"supported by MySQL so the null_sort setting is ignored"));
end if;
if limit > 0 then
if offset > 0 then
return vanilla & " LIMIT" & limit'Img & " OFFSET" & offset'Img;
else
return vanilla & " LIMIT" & limit'Img;
end if;
end if;
return vanilla;
end sql_assemble;
-----------------------------
-- call_stored_procedure --
-----------------------------
function call_stored_procedure (driver : MySQL_Driver;
stored_procedure : String;
proc_arguments : String)
return ASM.MySQL_statement
is
SQL : String := "CALL " & stored_procedure & " (" & proc_arguments & ")";
begin
return driver.query (SQL);
end call_stored_procedure;
end AdaBase.Driver.Base.MySQL;
|
caqg/linux-home | Ada | 160,419 | adb | -- generated parser support file.
-- command line: wisitoken-bnf-generate.exe --generate LR1 Ada_Emacs re2c PROCESS gpr.wy
--
-- Copyright (C) 2013 - 2019 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, or (at
-- your option) any later version.
--
-- This software 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
with Gpr_Process_Actions; use Gpr_Process_Actions;
with WisiToken.Lexer.re2c;
with gpr_re2c_c;
package body Gpr_Process_Main is
package Lexer is new WisiToken.Lexer.re2c
(gpr_re2c_c.New_Lexer,
gpr_re2c_c.Free_Lexer,
gpr_re2c_c.Reset_Lexer,
gpr_re2c_c.Next_Token);
procedure Create_Parser
(Parser : out WisiToken.Parse.LR.Parser.Parser;
Language_Fixes : in WisiToken.Parse.LR.Parser.Language_Fixes_Access;
Language_Matching_Begin_Tokens : in WisiToken.Parse.LR.Parser.Language_Matching_Begin_Tokens_Access;
Language_String_ID_Set : in WisiToken.Parse.LR.Parser.Language_String_ID_Set_Access;
Trace : not null access WisiToken.Trace'Class;
User_Data : in WisiToken.Syntax_Trees.User_Data_Access)
is
use WisiToken.Parse.LR;
McKenzie_Param : constant McKenzie_Param_Type :=
(First_Terminal => 3,
Last_Terminal => 39,
First_Nonterminal => 40,
Last_Nonterminal => 73,
Insert =>
(4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4),
Delete =>
(4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4),
Push_Back =>
(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2),
Undo_Reduce =>
(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2),
Minimal_Complete_Cost_Delta => -1,
Fast_Forward => 0,
Matching_Begin => 0,
Ignore_Check_Fail => 2,
Task_Count => 0,
Check_Limit => 3,
Check_Delta_Limit => 200,
Enqueue_Limit => 10000);
Table : constant Parse_Table_Ptr := new Parse_Table
(State_First => 0,
State_Last => 322,
First_Terminal => 3,
Last_Terminal => 39,
First_Nonterminal => 40,
Last_Nonterminal => 73);
begin
Table.McKenzie_Param := McKenzie_Param;
declare
procedure Subr_1
is begin
Table.States (0).Action_List.Set_Capacity (8);
Add_Action (Table.States (0), 3, Reduce, (50, 0), 0, null, null);
Add_Action (Table.States (0), 5, Reduce, (50, 0), 0, null, null);
Add_Action (Table.States (0), 7, Reduce, (50, 0), 0, null, null);
Add_Action (Table.States (0), 15, Reduce, (50, 0), 0, null, null);
Add_Action (Table.States (0), 19, Reduce, (50, 0), 0, null, null);
Add_Action (Table.States (0), 22, Reduce, (50, 0), 0, null, null);
Add_Action (Table.States (0), 26, 1);
Add_Action (Table.States (0), 39, Reduce, (50, 0), 0, null, null);
Table.States (0).Goto_List.Set_Capacity (4);
Add_Goto (Table.States (0), 48, 2);
Add_Goto (Table.States (0), 49, 3);
Add_Goto (Table.States (0), 50, 4);
Add_Goto (Table.States (0), 73, 5);
Table.States (0).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 48, 0)));
Table.States (1).Action_List.Set_Capacity (11);
Add_Action (Table.States (1), 10, 6);
Add_Action (Table.States (1), 11, 7);
Add_Action (Table.States (1), 14, 8);
Add_Action (Table.States (1), 19, 9);
Add_Action (Table.States (1), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (1), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (1), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (1), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (1), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (1), 37, 10);
Add_Action (Table.States (1), 38, 11);
Table.States (1).Goto_List.Set_Capacity (10);
Add_Goto (Table.States (1), 41, 12);
Add_Goto (Table.States (1), 43, 13);
Add_Goto (Table.States (1), 44, 14);
Add_Goto (Table.States (1), 56, 15);
Add_Goto (Table.States (1), 57, 16);
Add_Goto (Table.States (1), 58, 17);
Add_Goto (Table.States (1), 59, 18);
Add_Goto (Table.States (1), 69, 19);
Add_Goto (Table.States (1), 70, 20);
Add_Goto (Table.States (1), 71, 21);
Table.States (1).Kernel := To_Vector ((0 => (73, 26, 1, False)));
Table.States (1).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 70, 0)));
Table.States (2).Action_List.Set_Capacity (1);
Add_Action (Table.States (2), 39, Accept_It, (40, 0), 1, null, null);
Table.States (2).Kernel := To_Vector ((0 => (40, 48, 1, False)));
Table.States (3).Action_List.Set_Capacity (8);
Add_Action (Table.States (3), 3, Reduce, (50, 1), 1, null, null);
Add_Action (Table.States (3), 5, Reduce, (50, 1), 1, null, null);
Add_Action (Table.States (3), 7, Reduce, (50, 1), 1, null, null);
Add_Action (Table.States (3), 15, Reduce, (50, 1), 1, null, null);
Add_Action (Table.States (3), 19, Reduce, (50, 1), 1, null, null);
Add_Action (Table.States (3), 22, Reduce, (50, 1), 1, null, null);
Add_Action (Table.States (3), 26, 1);
Add_Action (Table.States (3), 39, Reduce, (50, 1), 1, null, null);
Table.States (3).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (3), 73, 22);
Table.States (3).Kernel := To_Vector (((49, 49, 2, True), (50, 49, 0, False)));
Table.States (3).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 50, 1)));
Table.States (4).Action_List.Set_Capacity (7);
Add_Action (Table.States (4), 3, 23);
Add_Action (Table.States (4), 5, 24);
Add_Action (Table.States (4), 7, 25);
Add_Action (Table.States (4), 15, 26);
Add_Action (Table.States (4), 19, Reduce, (66, 0), 0, null, null);
Add_Action (Table.States (4), 22, 27);
Add_Action (Table.States (4), 39, Reduce, (66, 0), 0, null, null);
Table.States (4).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (4), 66, 28);
Table.States (4).Kernel := To_Vector ((0 => (48, 50, 0, False)));
Table.States (4).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 66, 0)));
Table.States (5).Action_List.Set_Capacity (8);
Add_Action (Table.States (5), (3, 5, 7, 15, 19, 22, 26, 39), (49, 0), 1, null, null);
Table.States (5).Kernel := To_Vector ((0 => (49, 73, 0, False)));
Table.States (5).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 49, 1)));
Table.States (6).Action_List.Set_Capacity (1);
Add_Action (Table.States (6), 14, 29);
Table.States (6).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (6), 41, 30);
Table.States (6).Kernel := To_Vector ((0 => (57, 10, 2, False)));
Table.States (6).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 29)));
Table.States (7).Action_List.Set_Capacity (1);
Add_Action (Table.States (7), 14, 29);
Table.States (7).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (7), 41, 31);
Table.States (7).Kernel := To_Vector ((0 => (57, 11, 2, False)));
Table.States (7).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 29)));
Table.States (8).Action_List.Set_Capacity (11);
Add_Action (Table.States (8), 10, 32);
Add_Action (Table.States (8), 11, 33);
Add_Action (Table.States (8), 14, 34);
Add_Action (Table.States (8), 19, 9);
Add_Action (Table.States (8), 21, 35);
Add_Conflict (Table.States (8), 21, (58, 0), 0, null, null);
Add_Action (Table.States (8), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (8), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (8), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (8), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (8), 37, 36);
Add_Action (Table.States (8), 38, 37);
Table.States (8).Goto_List.Set_Capacity (10);
Add_Goto (Table.States (8), 41, 38);
Add_Goto (Table.States (8), 43, 39);
Add_Goto (Table.States (8), 44, 40);
Add_Goto (Table.States (8), 56, 41);
Add_Goto (Table.States (8), 57, 42);
Add_Goto (Table.States (8), 58, 43);
Add_Goto (Table.States (8), 59, 44);
Add_Goto (Table.States (8), 69, 45);
Add_Goto (Table.States (8), 70, 46);
Add_Goto (Table.States (8), 71, 47);
Table.States (8).Kernel := To_Vector (((41, 14, 1, False), (71, 14, 1, False)));
Table.States (8).Minimal_Complete_Actions := To_Vector (((Reduce, 70, 0), (Shift, 21, 35)));
Table.States (9).Action_List.Set_Capacity (1);
Add_Action (Table.States (9), (1 => 33), (43, 0), 1, null, null);
Table.States (9).Kernel := To_Vector ((0 => (43, 19, 0, False)));
Table.States (9).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 43, 1)));
Table.States (10).Action_List.Set_Capacity (5);
Add_Action (Table.States (10), (27, 30, 31, 33, 34), (58, 1), 1, null, identifier_opt_1_check'Access);
Table.States (10).Kernel := To_Vector ((0 => (58, 37, 0, False)));
Table.States (10).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 1)));
Table.States (11).Action_List.Set_Capacity (3);
Add_Action (Table.States (11), (27, 30, 34), (69, 0), 1, null, null);
Table.States (11).Kernel := To_Vector ((0 => (69, 38, 0, False)));
Table.States (11).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (12).Action_List.Set_Capacity (3);
Add_Action (Table.States (12), (27, 30, 34), (71, 2), 1, null, null);
Table.States (12).Kernel := To_Vector ((0 => (71, 41, 0, False)));
Table.States (12).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 1)));
Table.States (13).Action_List.Set_Capacity (1);
Add_Action (Table.States (13), 33, 48);
Table.States (13).Kernel := To_Vector (((44, 43, 2, False), (44, 43, 5, False)));
Table.States (13).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 33, 48)));
Table.States (14).Action_List.Set_Capacity (3);
Add_Action (Table.States (14), (27, 30, 34), (69, 3), 1, null, null);
Table.States (14).Kernel := To_Vector ((0 => (69, 44, 0, False)));
Table.States (14).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (15).Action_List.Set_Capacity (3);
Add_Action (Table.States (15), 27, 49);
Add_Action (Table.States (15), 30, Reduce, (70, 0), 1, null, null);
Add_Action (Table.States (15), 34, Reduce, (70, 0), 1, null, null);
Table.States (15).Kernel := To_Vector (((56, 56, 1, True), (70, 56, 0, False)));
Table.States (15).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 70, 1)));
Table.States (16).Action_List.Set_Capacity (3);
Add_Action (Table.States (16), (27, 30, 34), (69, 2), 1, null, null);
Table.States (16).Kernel := To_Vector ((0 => (69, 57, 0, False)));
Table.States (16).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (17).Action_List.Set_Capacity (5);
Add_Action (Table.States (17), (27, 30, 31, 33, 34), (59, 0), 1, null, null);
Table.States (17).Kernel := To_Vector ((0 => (59, 58, 0, False)));
Table.States (17).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 1)));
Table.States (18).Action_List.Set_Capacity (5);
Add_Action (Table.States (18), 27, Reduce, (69, 1), 1, null, null);
Add_Action (Table.States (18), 30, Reduce, (69, 1), 1, null, null);
Add_Action (Table.States (18), 31, 50);
Add_Action (Table.States (18), 33, Reduce, (43, 1), 1, null, null);
Add_Action (Table.States (18), 34, Reduce, (69, 1), 1, null, null);
Table.States (18).Kernel := To_Vector (((43, 59, 0, False), (59, 59, 2, True), (69, 59, 0, False)));
Table.States (18).Minimal_Complete_Actions := To_Vector (((Reduce, 43, 1), (Reduce, 69, 1)));
Table.States (19).Action_List.Set_Capacity (3);
Add_Action (Table.States (19), (27, 30, 34), (71, 0), 1, null, null);
Table.States (19).Kernel := To_Vector ((0 => (71, 69, 0, False)));
Table.States (19).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 1)));
Table.States (20).Action_List.Set_Capacity (2);
Add_Action (Table.States (20), 30, 51);
Add_Action (Table.States (20), 34, 52);
Table.States (20).Kernel := To_Vector (((70, 70, 1, True), (73, 70, 1, False)));
Table.States (20).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 52)));
Table.States (21).Action_List.Set_Capacity (3);
Add_Action (Table.States (21), (27, 30, 34), (56, 0), 1, null, null);
Table.States (21).Kernel := To_Vector ((0 => (56, 71, 0, False)));
Table.States (21).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 1)));
Table.States (22).Action_List.Set_Capacity (8);
Add_Action (Table.States (22), (3, 5, 7, 15, 19, 22, 26, 39), (49, 1), 2, null, null);
Table.States (22).Kernel := To_Vector ((0 => (49, 73, 0, True)));
Table.States (22).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 49, 2)));
Table.States (22).Minimal_Complete_Actions_Recursive := True;
Table.States (23).Action_List.Set_Capacity (2);
Add_Action (Table.States (23), (19, 39), (66, 1), 1, null, null);
Table.States (23).Kernel := To_Vector ((0 => (66, 3, 0, False)));
Table.States (23).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 66, 1)));
Table.States (24).Action_List.Set_Capacity (3);
Add_Action (Table.States (24), 15, 53);
Add_Action (Table.States (24), 19, Reduce, (66, 3), 1, null, null);
Add_Action (Table.States (24), 39, Reduce, (66, 3), 1, null, null);
Table.States (24).Kernel := To_Vector (((66, 5, 0, False), (66, 5, 1, False)));
Table.States (24).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 66, 1)));
Table.States (25).Action_List.Set_Capacity (2);
Add_Action (Table.States (25), (19, 39), (66, 6), 1, null, null);
Table.States (25).Kernel := To_Vector ((0 => (66, 7, 0, False)));
Table.States (25).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 66, 1)));
Table.States (26).Action_List.Set_Capacity (2);
Add_Action (Table.States (26), (19, 39), (66, 5), 1, null, null);
Table.States (26).Kernel := To_Vector ((0 => (66, 15, 0, False)));
Table.States (26).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 66, 1)));
Table.States (27).Action_List.Set_Capacity (2);
Add_Action (Table.States (27), (19, 39), (66, 2), 1, null, null);
Table.States (27).Kernel := To_Vector ((0 => (66, 22, 0, False)));
Table.States (27).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 66, 1)));
Table.States (28).Action_List.Set_Capacity (2);
Add_Action (Table.States (28), 19, 54);
Add_Action (Table.States (28), 39, Reduce, (64, 0), 0, null, null);
Table.States (28).Goto_List.Set_Capacity (3);
Add_Goto (Table.States (28), 64, 55);
Add_Goto (Table.States (28), 65, 56);
Add_Goto (Table.States (28), 68, 57);
Table.States (28).Kernel := To_Vector ((0 => (48, 66, 0, False)));
Table.States (28).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 64, 0)));
Table.States (29).Action_List.Set_Capacity (11);
Add_Action (Table.States (29), 10, 32);
Add_Action (Table.States (29), 11, 33);
Add_Action (Table.States (29), 14, 34);
Add_Action (Table.States (29), 19, 9);
Add_Action (Table.States (29), 21, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (29), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (29), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (29), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (29), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (29), 37, 36);
Add_Action (Table.States (29), 38, 37);
Table.States (29).Goto_List.Set_Capacity (10);
Add_Goto (Table.States (29), 41, 38);
Add_Goto (Table.States (29), 43, 39);
Add_Goto (Table.States (29), 44, 40);
Add_Goto (Table.States (29), 56, 41);
Add_Goto (Table.States (29), 57, 42);
Add_Goto (Table.States (29), 58, 43);
Add_Goto (Table.States (29), 59, 44);
Add_Goto (Table.States (29), 69, 45);
Add_Goto (Table.States (29), 70, 46);
Add_Goto (Table.States (29), 71, 47);
Table.States (29).Kernel := To_Vector ((0 => (41, 14, 1, False)));
Table.States (29).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 70, 0)));
Table.States (30).Action_List.Set_Capacity (3);
Add_Action (Table.States (30), (27, 30, 34), (57, 0), 2, null, null);
Table.States (30).Kernel := To_Vector ((0 => (57, 41, 0, False)));
Table.States (30).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 57, 2)));
Table.States (31).Action_List.Set_Capacity (3);
Add_Action (Table.States (31), (27, 30, 34), (57, 1), 2, null, null);
Table.States (31).Kernel := To_Vector ((0 => (57, 41, 0, False)));
Table.States (31).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 57, 2)));
Table.States (32).Action_List.Set_Capacity (1);
Add_Action (Table.States (32), 14, 58);
Table.States (32).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (32), 41, 59);
Table.States (32).Kernel := To_Vector ((0 => (57, 10, 2, False)));
Table.States (32).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 58)));
Table.States (33).Action_List.Set_Capacity (1);
Add_Action (Table.States (33), 14, 58);
Table.States (33).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (33), 41, 60);
Table.States (33).Kernel := To_Vector ((0 => (57, 11, 2, False)));
Table.States (33).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 58)));
Table.States (34).Action_List.Set_Capacity (11);
Add_Action (Table.States (34), 10, 32);
Add_Action (Table.States (34), 11, 33);
Add_Action (Table.States (34), 14, 34);
Add_Action (Table.States (34), 19, 9);
Add_Action (Table.States (34), 21, 61);
Add_Conflict (Table.States (34), 21, (58, 0), 0, null, null);
Add_Action (Table.States (34), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (34), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (34), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (34), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (34), 37, 36);
Add_Action (Table.States (34), 38, 37);
Table.States (34).Goto_List.Set_Capacity (10);
Add_Goto (Table.States (34), 41, 38);
Add_Goto (Table.States (34), 43, 39);
Add_Goto (Table.States (34), 44, 40);
Add_Goto (Table.States (34), 56, 41);
Add_Goto (Table.States (34), 57, 42);
Add_Goto (Table.States (34), 58, 43);
Add_Goto (Table.States (34), 59, 44);
Add_Goto (Table.States (34), 69, 45);
Add_Goto (Table.States (34), 70, 62);
Add_Goto (Table.States (34), 71, 47);
Table.States (34).Kernel := To_Vector (((41, 14, 1, False), (71, 14, 1, False)));
Table.States (34).Minimal_Complete_Actions := To_Vector (((Reduce, 70, 0), (Shift, 21, 61)));
Table.States (35).Action_List.Set_Capacity (3);
Add_Action (Table.States (35), (27, 30, 34), (71, 1), 2, null, null);
Table.States (35).Kernel := To_Vector ((0 => (71, 21, 0, False)));
Table.States (35).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 2)));
Table.States (36).Action_List.Set_Capacity (5);
Add_Action (Table.States (36), (21, 27, 30, 31, 33), (58, 1), 1, null, identifier_opt_1_check'Access);
Table.States (36).Kernel := To_Vector ((0 => (58, 37, 0, False)));
Table.States (36).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 1)));
Table.States (37).Action_List.Set_Capacity (3);
Add_Action (Table.States (37), (21, 27, 30), (69, 0), 1, null, null);
Table.States (37).Kernel := To_Vector ((0 => (69, 38, 0, False)));
Table.States (37).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (38).Action_List.Set_Capacity (3);
Add_Action (Table.States (38), (21, 27, 30), (71, 2), 1, null, null);
Table.States (38).Kernel := To_Vector ((0 => (71, 41, 0, False)));
Table.States (38).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 1)));
Table.States (39).Action_List.Set_Capacity (1);
Add_Action (Table.States (39), 33, 63);
Table.States (39).Kernel := To_Vector (((44, 43, 2, False), (44, 43, 5, False)));
Table.States (39).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 33, 63)));
Table.States (40).Action_List.Set_Capacity (3);
Add_Action (Table.States (40), (21, 27, 30), (69, 3), 1, null, null);
Table.States (40).Kernel := To_Vector ((0 => (69, 44, 0, False)));
Table.States (40).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (41).Action_List.Set_Capacity (3);
Add_Action (Table.States (41), 21, Reduce, (70, 0), 1, null, null);
Add_Action (Table.States (41), 27, 64);
Add_Action (Table.States (41), 30, Reduce, (70, 0), 1, null, null);
Table.States (41).Kernel := To_Vector (((56, 56, 1, True), (70, 56, 0, False)));
Table.States (41).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 70, 1)));
Table.States (42).Action_List.Set_Capacity (3);
Add_Action (Table.States (42), (21, 27, 30), (69, 2), 1, null, null);
Table.States (42).Kernel := To_Vector ((0 => (69, 57, 0, False)));
Table.States (42).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (43).Action_List.Set_Capacity (5);
Add_Action (Table.States (43), (21, 27, 30, 31, 33), (59, 0), 1, null, null);
Table.States (43).Kernel := To_Vector ((0 => (59, 58, 0, False)));
Table.States (43).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 1)));
Table.States (44).Action_List.Set_Capacity (5);
Add_Action (Table.States (44), 21, Reduce, (69, 1), 1, null, null);
Add_Action (Table.States (44), 27, Reduce, (69, 1), 1, null, null);
Add_Action (Table.States (44), 30, Reduce, (69, 1), 1, null, null);
Add_Action (Table.States (44), 31, 65);
Add_Action (Table.States (44), 33, Reduce, (43, 1), 1, null, null);
Table.States (44).Kernel := To_Vector (((43, 59, 0, False), (59, 59, 2, True), (69, 59, 0, False)));
Table.States (44).Minimal_Complete_Actions := To_Vector (((Reduce, 43, 1), (Reduce, 69, 1)));
Table.States (45).Action_List.Set_Capacity (3);
Add_Action (Table.States (45), (21, 27, 30), (71, 0), 1, null, null);
Table.States (45).Kernel := To_Vector ((0 => (71, 69, 0, False)));
Table.States (45).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 1)));
Table.States (46).Action_List.Set_Capacity (2);
Add_Action (Table.States (46), 21, 66);
Add_Action (Table.States (46), 30, 67);
Table.States (46).Kernel := To_Vector (((41, 70, 1, False), (70, 70, 1, True)));
Table.States (46).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 66)));
Table.States (47).Action_List.Set_Capacity (3);
Add_Action (Table.States (47), (21, 27, 30), (56, 0), 1, null, null);
Table.States (47).Kernel := To_Vector ((0 => (56, 71, 0, False)));
Table.States (47).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 1)));
Table.States (48).Action_List.Set_Capacity (1);
Add_Action (Table.States (48), 37, 68);
Table.States (48).Kernel := To_Vector (((44, 33, 1, False), (44, 33, 4, False)));
Table.States (48).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 68)));
Table.States (49).Action_List.Set_Capacity (11);
Add_Action (Table.States (49), 10, 6);
Add_Action (Table.States (49), 11, 7);
Add_Action (Table.States (49), 14, 8);
Add_Action (Table.States (49), 19, 9);
Add_Action (Table.States (49), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (49), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (49), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (49), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (49), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (49), 37, 10);
Add_Action (Table.States (49), 38, 11);
Table.States (49).Goto_List.Set_Capacity (8);
Add_Goto (Table.States (49), 41, 12);
Add_Goto (Table.States (49), 43, 13);
Add_Goto (Table.States (49), 44, 14);
Add_Goto (Table.States (49), 57, 16);
Add_Goto (Table.States (49), 58, 17);
Add_Goto (Table.States (49), 59, 18);
Add_Goto (Table.States (49), 69, 19);
Add_Goto (Table.States (49), 71, 69);
Table.States (49).Kernel := To_Vector ((0 => (56, 27, 0, True)));
Table.States (49).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 0)));
Table.States (49).Minimal_Complete_Actions_Recursive := True;
Table.States (50).Action_List.Set_Capacity (1);
Add_Action (Table.States (50), 37, 70);
Table.States (50).Kernel := To_Vector ((0 => (59, 31, 1, True)));
Table.States (50).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 70)));
Table.States (50).Minimal_Complete_Actions_Recursive := True;
Table.States (51).Action_List.Set_Capacity (11);
Add_Action (Table.States (51), 10, 6);
Add_Action (Table.States (51), 11, 7);
Add_Action (Table.States (51), 14, 8);
Add_Action (Table.States (51), 19, 9);
Add_Action (Table.States (51), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (51), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (51), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (51), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (51), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (51), 37, 10);
Add_Action (Table.States (51), 38, 11);
Table.States (51).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (51), 41, 12);
Add_Goto (Table.States (51), 43, 13);
Add_Goto (Table.States (51), 44, 14);
Add_Goto (Table.States (51), 56, 71);
Add_Goto (Table.States (51), 57, 16);
Add_Goto (Table.States (51), 58, 17);
Add_Goto (Table.States (51), 59, 18);
Add_Goto (Table.States (51), 69, 19);
Add_Goto (Table.States (51), 71, 21);
Table.States (51).Kernel := To_Vector ((0 => (70, 30, 0, True)));
Table.States (51).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (51).Minimal_Complete_Actions_Recursive := True;
Table.States (52).Action_List.Set_Capacity (8);
Add_Action (Table.States (52), (3, 5, 7, 15, 19, 22, 26, 39), (73, 0), 3, null, null);
Table.States (52).Kernel := To_Vector ((0 => (73, 34, 0, False)));
Table.States (52).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 73, 3)));
Table.States (53).Action_List.Set_Capacity (2);
Add_Action (Table.States (53), (19, 39), (66, 4), 2, null, null);
Table.States (53).Kernel := To_Vector ((0 => (66, 15, 0, False)));
Table.States (53).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 66, 2)));
Table.States (54).Action_List.Set_Capacity (3);
Add_Action (Table.States (54), 9, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (54), 13, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (54), 37, 72);
Table.States (54).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (54), 58, 73);
Table.States (54).Kernel := To_Vector (((65, 19, 5, False), (68, 19, 3, False)));
Table.States (54).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 0)));
Table.States (55).Action_List.Set_Capacity (1);
Add_Action (Table.States (55), (1 => 39), (48, 0), 3, compilation_unit_0'Access, null);
Table.States (55).Kernel := To_Vector ((0 => (48, 64, 0, False)));
Table.States (55).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 48, 3)));
Table.States (56).Action_List.Set_Capacity (1);
Add_Action (Table.States (56), (1 => 39), (64, 2), 1, null, null);
Table.States (56).Kernel := To_Vector ((0 => (64, 65, 0, False)));
Table.States (56).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 64, 1)));
Table.States (57).Action_List.Set_Capacity (1);
Add_Action (Table.States (57), (1 => 39), (64, 1), 1, null, null);
Table.States (57).Kernel := To_Vector ((0 => (64, 68, 0, False)));
Table.States (57).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 64, 1)));
Table.States (58).Action_List.Set_Capacity (11);
Add_Action (Table.States (58), 10, 32);
Add_Action (Table.States (58), 11, 33);
Add_Action (Table.States (58), 14, 34);
Add_Action (Table.States (58), 19, 9);
Add_Action (Table.States (58), 21, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (58), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (58), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (58), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (58), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (58), 37, 36);
Add_Action (Table.States (58), 38, 37);
Table.States (58).Goto_List.Set_Capacity (10);
Add_Goto (Table.States (58), 41, 38);
Add_Goto (Table.States (58), 43, 39);
Add_Goto (Table.States (58), 44, 40);
Add_Goto (Table.States (58), 56, 41);
Add_Goto (Table.States (58), 57, 42);
Add_Goto (Table.States (58), 58, 43);
Add_Goto (Table.States (58), 59, 44);
Add_Goto (Table.States (58), 69, 45);
Add_Goto (Table.States (58), 70, 62);
Add_Goto (Table.States (58), 71, 47);
Table.States (58).Kernel := To_Vector ((0 => (41, 14, 1, False)));
Table.States (58).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 70, 0)));
Table.States (59).Action_List.Set_Capacity (3);
Add_Action (Table.States (59), (21, 27, 30), (57, 0), 2, null, null);
Table.States (59).Kernel := To_Vector ((0 => (57, 41, 0, False)));
Table.States (59).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 57, 2)));
Table.States (60).Action_List.Set_Capacity (3);
Add_Action (Table.States (60), (21, 27, 30), (57, 1), 2, null, null);
Table.States (60).Kernel := To_Vector ((0 => (57, 41, 0, False)));
Table.States (60).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 57, 2)));
Table.States (61).Action_List.Set_Capacity (3);
Add_Action (Table.States (61), (21, 27, 30), (71, 1), 2, null, null);
Table.States (61).Kernel := To_Vector ((0 => (71, 21, 0, False)));
Table.States (61).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 2)));
Table.States (62).Action_List.Set_Capacity (2);
Add_Action (Table.States (62), 21, 74);
Add_Action (Table.States (62), 30, 67);
Table.States (62).Kernel := To_Vector (((41, 70, 1, False), (70, 70, 1, True)));
Table.States (62).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 74)));
Table.States (63).Action_List.Set_Capacity (1);
Add_Action (Table.States (63), 37, 75);
Table.States (63).Kernel := To_Vector (((44, 33, 1, False), (44, 33, 4, False)));
Table.States (63).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 75)));
Table.States (64).Action_List.Set_Capacity (11);
Add_Action (Table.States (64), 10, 32);
Add_Action (Table.States (64), 11, 33);
Add_Action (Table.States (64), 14, 34);
Add_Action (Table.States (64), 19, 9);
Add_Action (Table.States (64), 21, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (64), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (64), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (64), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (64), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (64), 37, 36);
Add_Action (Table.States (64), 38, 37);
Table.States (64).Goto_List.Set_Capacity (8);
Add_Goto (Table.States (64), 41, 38);
Add_Goto (Table.States (64), 43, 39);
Add_Goto (Table.States (64), 44, 40);
Add_Goto (Table.States (64), 57, 42);
Add_Goto (Table.States (64), 58, 43);
Add_Goto (Table.States (64), 59, 44);
Add_Goto (Table.States (64), 69, 45);
Add_Goto (Table.States (64), 71, 76);
Table.States (64).Kernel := To_Vector ((0 => (56, 27, 0, True)));
Table.States (64).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 0)));
Table.States (64).Minimal_Complete_Actions_Recursive := True;
Table.States (65).Action_List.Set_Capacity (1);
Add_Action (Table.States (65), 37, 77);
Table.States (65).Kernel := To_Vector ((0 => (59, 31, 1, True)));
Table.States (65).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 77)));
Table.States (65).Minimal_Complete_Actions_Recursive := True;
Table.States (66).Action_List.Set_Capacity (3);
Add_Action (Table.States (66), (27, 30, 34), (41, 0), 3, aggregate_g_0'Access, null);
Table.States (66).Kernel := To_Vector ((0 => (41, 21, 0, False)));
Table.States (66).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 41, 3)));
Table.States (67).Action_List.Set_Capacity (11);
Add_Action (Table.States (67), 10, 32);
Add_Action (Table.States (67), 11, 33);
Add_Action (Table.States (67), 14, 34);
Add_Action (Table.States (67), 19, 9);
Add_Action (Table.States (67), 21, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (67), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (67), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (67), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (67), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (67), 37, 36);
Add_Action (Table.States (67), 38, 37);
Table.States (67).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (67), 41, 38);
Add_Goto (Table.States (67), 43, 39);
Add_Goto (Table.States (67), 44, 40);
Add_Goto (Table.States (67), 56, 78);
Add_Goto (Table.States (67), 57, 42);
Add_Goto (Table.States (67), 58, 43);
Add_Goto (Table.States (67), 59, 44);
Add_Goto (Table.States (67), 69, 45);
Add_Goto (Table.States (67), 71, 47);
Table.States (67).Kernel := To_Vector ((0 => (70, 30, 0, True)));
Table.States (67).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (67).Minimal_Complete_Actions_Recursive := True;
Table.States (68).Action_List.Set_Capacity (4);
Add_Action (Table.States (68), 14, 79);
Add_Action (Table.States (68), 27, Reduce, (44, 0), 3, null, null);
Add_Action (Table.States (68), 30, Reduce, (44, 0), 3, null, null);
Add_Action (Table.States (68), 34, Reduce, (44, 0), 3, null, null);
Table.States (68).Kernel := To_Vector (((44, 37, 0, False), (44, 37, 3, False)));
Table.States (68).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 44, 3)));
Table.States (69).Action_List.Set_Capacity (3);
Add_Action (Table.States (69), (27, 30, 34), (56, 1), 3, null, null);
Table.States (69).Kernel := To_Vector ((0 => (56, 71, 0, True)));
Table.States (69).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 3)));
Table.States (69).Minimal_Complete_Actions_Recursive := True;
Table.States (70).Action_List.Set_Capacity (5);
Add_Action (Table.States (70), (27, 30, 31, 33, 34), (59, 1), 3, null, null);
Table.States (70).Kernel := To_Vector ((0 => (59, 37, 0, True)));
Table.States (70).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 3)));
Table.States (70).Minimal_Complete_Actions_Recursive := True;
Table.States (71).Action_List.Set_Capacity (3);
Add_Action (Table.States (71), 27, 49);
Add_Action (Table.States (71), 30, Reduce, (70, 1), 3, null, null);
Add_Action (Table.States (71), 34, Reduce, (70, 1), 3, null, null);
Table.States (71).Kernel := To_Vector (((56, 56, 1, True), (70, 56, 0, True)));
Table.States (71).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 70, 3)));
Table.States (71).Minimal_Complete_Actions_Recursive := True;
Table.States (72).Action_List.Set_Capacity (2);
Add_Action (Table.States (72), (9, 13), (58, 1), 1, null, identifier_opt_1_check'Access);
Table.States (72).Kernel := To_Vector ((0 => (58, 37, 0, False)));
Table.States (72).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 1)));
Table.States (73).Action_List.Set_Capacity (2);
Add_Action (Table.States (73), 9, 80);
Add_Action (Table.States (73), 13, 81);
Table.States (73).Kernel := To_Vector (((65, 58, 5, False), (68, 58, 3, False)));
Table.States (73).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 13, 81)));
Table.States (74).Action_List.Set_Capacity (3);
Add_Action (Table.States (74), (21, 27, 30), (41, 0), 3, aggregate_g_0'Access, null);
Table.States (74).Kernel := To_Vector ((0 => (41, 21, 0, False)));
Table.States (74).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 41, 3)));
Table.States (75).Action_List.Set_Capacity (4);
Add_Action (Table.States (75), 14, 82);
Add_Action (Table.States (75), 21, Reduce, (44, 0), 3, null, null);
Add_Action (Table.States (75), 27, Reduce, (44, 0), 3, null, null);
Add_Action (Table.States (75), 30, Reduce, (44, 0), 3, null, null);
Table.States (75).Kernel := To_Vector (((44, 37, 0, False), (44, 37, 3, False)));
Table.States (75).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 44, 3)));
Table.States (76).Action_List.Set_Capacity (3);
Add_Action (Table.States (76), (21, 27, 30), (56, 1), 3, null, null);
Table.States (76).Kernel := To_Vector ((0 => (56, 71, 0, True)));
Table.States (76).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 3)));
Table.States (76).Minimal_Complete_Actions_Recursive := True;
Table.States (77).Action_List.Set_Capacity (5);
Add_Action (Table.States (77), (21, 27, 30, 31, 33), (59, 1), 3, null, null);
Table.States (77).Kernel := To_Vector ((0 => (59, 37, 0, True)));
Table.States (77).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 3)));
Table.States (77).Minimal_Complete_Actions_Recursive := True;
Table.States (78).Action_List.Set_Capacity (3);
Add_Action (Table.States (78), 21, Reduce, (70, 1), 3, null, null);
Add_Action (Table.States (78), 27, 64);
Add_Action (Table.States (78), 30, Reduce, (70, 1), 3, null, null);
Table.States (78).Kernel := To_Vector (((56, 56, 1, True), (70, 56, 0, True)));
Table.States (78).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 70, 3)));
Table.States (78).Minimal_Complete_Actions_Recursive := True;
Table.States (79).Action_List.Set_Capacity (1);
Add_Action (Table.States (79), 38, 83);
Table.States (79).Kernel := To_Vector ((0 => (44, 14, 2, False)));
Table.States (79).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 38, 83)));
Table.States (80).Action_List.Set_Capacity (1);
Add_Action (Table.States (80), 38, 84);
Table.States (80).Kernel := To_Vector ((0 => (65, 9, 4, False)));
Table.States (80).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 38, 84)));
Table.States (81).Action_List.Set_Capacity (7);
Add_Action (Table.States (81), 6, 85);
Add_Action (Table.States (81), 8, Reduce, (53, 0), 0, null, null);
Add_Action (Table.States (81), 12, 86);
Add_Action (Table.States (81), 16, 87);
Add_Action (Table.States (81), 18, 88);
Add_Action (Table.States (81), 23, 89);
Add_Action (Table.States (81), 37, 90);
Table.States (81).Goto_List.Set_Capacity (11);
Add_Goto (Table.States (81), 42, 91);
Add_Goto (Table.States (81), 45, 92);
Add_Goto (Table.States (81), 51, 93);
Add_Goto (Table.States (81), 52, 94);
Add_Goto (Table.States (81), 53, 95);
Add_Goto (Table.States (81), 60, 96);
Add_Goto (Table.States (81), 61, 97);
Add_Goto (Table.States (81), 62, 98);
Add_Goto (Table.States (81), 63, 99);
Add_Goto (Table.States (81), 67, 100);
Add_Goto (Table.States (81), 72, 101);
Table.States (81).Kernel := To_Vector ((0 => (68, 13, 2, False)));
Table.States (81).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 53, 0)));
Table.States (82).Action_List.Set_Capacity (1);
Add_Action (Table.States (82), 38, 102);
Table.States (82).Kernel := To_Vector ((0 => (44, 14, 2, False)));
Table.States (82).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 38, 102)));
Table.States (83).Action_List.Set_Capacity (1);
Add_Action (Table.States (83), 21, 103);
Table.States (83).Kernel := To_Vector ((0 => (44, 38, 1, False)));
Table.States (83).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 103)));
Table.States (84).Action_List.Set_Capacity (1);
Add_Action (Table.States (84), 13, 104);
Table.States (84).Kernel := To_Vector ((0 => (65, 38, 3, False)));
Table.States (84).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 13, 104)));
Table.States (85).Action_List.Set_Capacity (3);
Add_Action (Table.States (85), 13, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (85), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (85), 37, 105);
Table.States (85).Goto_List.Set_Capacity (2);
Add_Goto (Table.States (85), 58, 106);
Add_Goto (Table.States (85), 59, 107);
Table.States (85).Kernel := To_Vector ((0 => (45, 6, 4, False)));
Table.States (85).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 0)));
Table.States (86).Action_List.Set_Capacity (2);
Add_Action (Table.States (86), 10, 108);
Add_Action (Table.States (86), 37, 109);
Table.States (86).Kernel := To_Vector (((42, 12, 3, False), (42, 12, 5, False), (42, 12, 7, False), (42,
12, 6, False)));
Table.States (86).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 109)));
Table.States (87).Action_List.Set_Capacity (1);
Add_Action (Table.States (87), 34, 110);
Table.States (87).Kernel := To_Vector ((0 => (67, 16, 1, False)));
Table.States (87).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 110)));
Table.States (88).Action_List.Set_Capacity (4);
Add_Action (Table.States (88), 9, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (88), 13, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (88), 20, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (88), 37, 111);
Table.States (88).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (88), 58, 112);
Table.States (88).Kernel := To_Vector (((61, 18, 3, False), (62, 18, 4, False), (63, 18, 2, False)));
Table.States (88).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 0)));
Table.States (89).Action_List.Set_Capacity (1);
Add_Action (Table.States (89), 37, 113);
Table.States (89).Kernel := To_Vector ((0 => (72, 23, 5, False)));
Table.States (89).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 113)));
Table.States (90).Action_List.Set_Capacity (2);
Add_Action (Table.States (90), 28, 114);
Add_Action (Table.States (90), 29, 115);
Table.States (90).Kernel := To_Vector (((67, 37, 2, False), (67, 37, 4, False)));
Table.States (90).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 29, 115)));
Table.States (91).Action_List.Set_Capacity (7);
Add_Action (Table.States (91), (6, 8, 12, 16, 18, 23, 37), (67, 2), 1, null, null);
Table.States (91).Kernel := To_Vector ((0 => (67, 42, 0, False)));
Table.States (91).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 67, 1)));
Table.States (92).Action_List.Set_Capacity (7);
Add_Action (Table.States (92), (6, 8, 12, 16, 18, 23, 37), (67, 3), 1, null, null);
Table.States (92).Kernel := To_Vector ((0 => (67, 45, 0, False)));
Table.States (92).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 67, 1)));
Table.States (93).Action_List.Set_Capacity (7);
Add_Action (Table.States (93), (6, 8, 12, 16, 18, 23, 37), (52, 0), 1, null, null);
Table.States (93).Kernel := To_Vector ((0 => (52, 51, 0, False)));
Table.States (93).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 52, 1)));
Table.States (94).Action_List.Set_Capacity (7);
Add_Action (Table.States (94), 6, 85);
Add_Action (Table.States (94), 8, Reduce, (53, 1), 1, null, null);
Add_Action (Table.States (94), 12, 86);
Add_Action (Table.States (94), 16, 87);
Add_Action (Table.States (94), 18, 88);
Add_Action (Table.States (94), 23, 89);
Add_Action (Table.States (94), 37, 90);
Table.States (94).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (94), 42, 91);
Add_Goto (Table.States (94), 45, 92);
Add_Goto (Table.States (94), 51, 116);
Add_Goto (Table.States (94), 60, 96);
Add_Goto (Table.States (94), 61, 97);
Add_Goto (Table.States (94), 62, 98);
Add_Goto (Table.States (94), 63, 99);
Add_Goto (Table.States (94), 67, 100);
Add_Goto (Table.States (94), 72, 101);
Table.States (94).Kernel := To_Vector (((52, 52, 2, True), (53, 52, 0, False)));
Table.States (94).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 53, 1)));
Table.States (95).Action_List.Set_Capacity (1);
Add_Action (Table.States (95), 8, 117);
Table.States (95).Kernel := To_Vector ((0 => (68, 53, 2, False)));
Table.States (95).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 8, 117)));
Table.States (96).Action_List.Set_Capacity (7);
Add_Action (Table.States (96), (6, 8, 12, 16, 18, 23, 37), (51, 2), 1, null, null);
Table.States (96).Kernel := To_Vector ((0 => (51, 60, 0, False)));
Table.States (96).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 51, 1)));
Table.States (97).Action_List.Set_Capacity (7);
Add_Action (Table.States (97), (6, 8, 12, 16, 18, 23, 37), (60, 0), 1, null, null);
Table.States (97).Kernel := To_Vector ((0 => (60, 61, 0, False)));
Table.States (97).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 60, 1)));
Table.States (98).Action_List.Set_Capacity (7);
Add_Action (Table.States (98), (6, 8, 12, 16, 18, 23, 37), (60, 1), 1, null, null);
Table.States (98).Kernel := To_Vector ((0 => (60, 62, 0, False)));
Table.States (98).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 60, 1)));
Table.States (99).Action_List.Set_Capacity (7);
Add_Action (Table.States (99), (6, 8, 12, 16, 18, 23, 37), (60, 2), 1, null, null);
Table.States (99).Kernel := To_Vector ((0 => (60, 63, 0, False)));
Table.States (99).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 60, 1)));
Table.States (100).Action_List.Set_Capacity (7);
Add_Action (Table.States (100), (6, 8, 12, 16, 18, 23, 37), (51, 0), 1, null, null);
Table.States (100).Kernel := To_Vector ((0 => (51, 67, 0, False)));
Table.States (100).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 51, 1)));
Table.States (101).Action_List.Set_Capacity (7);
Add_Action (Table.States (101), (6, 8, 12, 16, 18, 23, 37), (51, 1), 1, null, null);
Table.States (101).Kernel := To_Vector ((0 => (51, 72, 0, False)));
Table.States (101).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 51, 1)));
Table.States (102).Action_List.Set_Capacity (1);
Add_Action (Table.States (102), 21, 118);
Table.States (102).Kernel := To_Vector ((0 => (44, 38, 1, False)));
Table.States (102).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 118)));
Table.States (103).Action_List.Set_Capacity (3);
Add_Action (Table.States (103), (27, 30, 34), (44, 1), 6, null, null);
Table.States (103).Kernel := To_Vector ((0 => (44, 21, 0, False)));
Table.States (103).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 44, 6)));
Table.States (104).Action_List.Set_Capacity (7);
Add_Action (Table.States (104), 6, 85);
Add_Action (Table.States (104), 8, Reduce, (53, 0), 0, null, null);
Add_Action (Table.States (104), 12, 86);
Add_Action (Table.States (104), 16, 87);
Add_Action (Table.States (104), 18, 88);
Add_Action (Table.States (104), 23, 89);
Add_Action (Table.States (104), 37, 90);
Table.States (104).Goto_List.Set_Capacity (11);
Add_Goto (Table.States (104), 42, 91);
Add_Goto (Table.States (104), 45, 92);
Add_Goto (Table.States (104), 51, 93);
Add_Goto (Table.States (104), 52, 94);
Add_Goto (Table.States (104), 53, 119);
Add_Goto (Table.States (104), 60, 96);
Add_Goto (Table.States (104), 61, 97);
Add_Goto (Table.States (104), 62, 98);
Add_Goto (Table.States (104), 63, 99);
Add_Goto (Table.States (104), 67, 100);
Add_Goto (Table.States (104), 72, 101);
Table.States (104).Kernel := To_Vector ((0 => (65, 13, 2, False)));
Table.States (104).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 53, 0)));
end Subr_1;
procedure Subr_2
is begin
Table.States (105).Action_List.Set_Capacity (2);
Add_Action (Table.States (105), (13, 31), (58, 1), 1, null, identifier_opt_1_check'Access);
Table.States (105).Kernel := To_Vector ((0 => (58, 37, 0, False)));
Table.States (105).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 1)));
Table.States (106).Action_List.Set_Capacity (2);
Add_Action (Table.States (106), (13, 31), (59, 0), 1, null, null);
Table.States (106).Kernel := To_Vector ((0 => (59, 58, 0, False)));
Table.States (106).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 1)));
Table.States (107).Action_List.Set_Capacity (2);
Add_Action (Table.States (107), 13, 120);
Add_Action (Table.States (107), 31, 121);
Table.States (107).Kernel := To_Vector (((45, 59, 4, False), (59, 59, 2, True)));
Table.States (107).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 13, 120)));
Table.States (108).Action_List.Set_Capacity (1);
Add_Action (Table.States (108), 14, 122);
Table.States (108).Kernel := To_Vector ((0 => (42, 10, 5, False)));
Table.States (108).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 122)));
Table.States (109).Action_List.Set_Capacity (2);
Add_Action (Table.States (109), 14, 123);
Add_Action (Table.States (109), 24, 124);
Table.States (109).Kernel := To_Vector (((42, 37, 2, False), (42, 37, 4, False), (42, 37, 6, False)));
Table.States (109).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 24, 124)));
Table.States (110).Action_List.Set_Capacity (7);
Add_Action (Table.States (110), (6, 8, 12, 16, 18, 23, 37), (67, 4), 2, simple_declarative_item_4'Access,
null);
Table.States (110).Kernel := To_Vector ((0 => (67, 34, 0, False)));
Table.States (110).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 67, 2)));
Table.States (111).Action_List.Set_Capacity (3);
Add_Action (Table.States (111), (9, 13, 20), (58, 1), 1, null, identifier_opt_1_check'Access);
Table.States (111).Kernel := To_Vector ((0 => (58, 37, 0, False)));
Table.States (111).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 1)));
Table.States (112).Action_List.Set_Capacity (3);
Add_Action (Table.States (112), 9, 125);
Add_Action (Table.States (112), 13, 126);
Add_Action (Table.States (112), 20, 127);
Table.States (112).Kernel := To_Vector (((61, 58, 3, False), (62, 58, 4, False), (63, 58, 2, False)));
Table.States (112).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 20, 127)));
Table.States (113).Action_List.Set_Capacity (1);
Add_Action (Table.States (113), 13, 128);
Table.States (113).Kernel := To_Vector ((0 => (72, 37, 4, False)));
Table.States (113).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 13, 128)));
Table.States (114).Action_List.Set_Capacity (1);
Add_Action (Table.States (114), 37, 129);
Table.States (114).Kernel := To_Vector ((0 => (67, 28, 3, False)));
Table.States (114).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 129)));
Table.States (115).Action_List.Set_Capacity (10);
Add_Action (Table.States (115), 10, 130);
Add_Action (Table.States (115), 11, 131);
Add_Action (Table.States (115), 14, 132);
Add_Action (Table.States (115), 19, 9);
Add_Action (Table.States (115), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (115), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (115), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (115), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (115), 37, 133);
Add_Action (Table.States (115), 38, 134);
Table.States (115).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (115), 41, 135);
Add_Goto (Table.States (115), 43, 136);
Add_Goto (Table.States (115), 44, 137);
Add_Goto (Table.States (115), 56, 138);
Add_Goto (Table.States (115), 57, 139);
Add_Goto (Table.States (115), 58, 140);
Add_Goto (Table.States (115), 59, 141);
Add_Goto (Table.States (115), 69, 142);
Add_Goto (Table.States (115), 71, 143);
Table.States (115).Kernel := To_Vector ((0 => (67, 29, 1, False)));
Table.States (115).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (116).Action_List.Set_Capacity (7);
Add_Action (Table.States (116), (6, 8, 12, 16, 18, 23, 37), (52, 1), 2, null, null);
Table.States (116).Kernel := To_Vector ((0 => (52, 51, 0, True)));
Table.States (116).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 52, 2)));
Table.States (116).Minimal_Complete_Actions_Recursive := True;
Table.States (117).Action_List.Set_Capacity (2);
Add_Action (Table.States (117), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (117), 37, 144);
Table.States (117).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (117), 58, 145);
Table.States (117).Kernel := To_Vector ((0 => (68, 8, 1, False)));
Table.States (117).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 0)));
Table.States (118).Action_List.Set_Capacity (3);
Add_Action (Table.States (118), (21, 27, 30), (44, 1), 6, null, null);
Table.States (118).Kernel := To_Vector ((0 => (44, 21, 0, False)));
Table.States (118).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 44, 6)));
Table.States (119).Action_List.Set_Capacity (1);
Add_Action (Table.States (119), 8, 146);
Table.States (119).Kernel := To_Vector ((0 => (65, 53, 2, False)));
Table.States (119).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 8, 146)));
Table.States (120).Action_List.Set_Capacity (2);
Add_Action (Table.States (120), 8, Reduce, (47, 0), 0, null, null);
Add_Action (Table.States (120), 25, 147);
Add_Conflict (Table.States (120), 25, (47, 0), 0, null, null);
Table.States (120).Goto_List.Set_Capacity (2);
Add_Goto (Table.States (120), 46, 148);
Add_Goto (Table.States (120), 47, 149);
Table.States (120).Kernel := To_Vector ((0 => (45, 13, 3, False)));
Table.States (120).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 47, 0)));
Table.States (121).Action_List.Set_Capacity (1);
Add_Action (Table.States (121), 37, 150);
Table.States (121).Kernel := To_Vector ((0 => (59, 31, 1, True)));
Table.States (121).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 150)));
Table.States (121).Minimal_Complete_Actions_Recursive := True;
Table.States (122).Action_List.Set_Capacity (1);
Add_Action (Table.States (122), 38, 151);
Table.States (122).Kernel := To_Vector ((0 => (42, 14, 4, False)));
Table.States (122).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 38, 151)));
Table.States (123).Action_List.Set_Capacity (3);
Add_Action (Table.States (123), 17, 152);
Add_Action (Table.States (123), 21, Reduce, (54, 0), 0, null, null);
Add_Action (Table.States (123), 38, 153);
Table.States (123).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (123), 54, 154);
Table.States (123).Kernel := To_Vector (((42, 14, 3, False), (42, 14, 5, False)));
Table.States (123).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 54, 0)));
Table.States (124).Action_List.Set_Capacity (10);
Add_Action (Table.States (124), 10, 130);
Add_Action (Table.States (124), 11, 131);
Add_Action (Table.States (124), 14, 132);
Add_Action (Table.States (124), 19, 9);
Add_Action (Table.States (124), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (124), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (124), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (124), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (124), 37, 133);
Add_Action (Table.States (124), 38, 134);
Table.States (124).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (124), 41, 135);
Add_Goto (Table.States (124), 43, 136);
Add_Goto (Table.States (124), 44, 137);
Add_Goto (Table.States (124), 56, 155);
Add_Goto (Table.States (124), 57, 139);
Add_Goto (Table.States (124), 58, 140);
Add_Goto (Table.States (124), 59, 141);
Add_Goto (Table.States (124), 69, 142);
Add_Goto (Table.States (124), 71, 143);
Table.States (124).Kernel := To_Vector ((0 => (42, 24, 1, False)));
Table.States (124).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (125).Action_List.Set_Capacity (3);
Add_Action (Table.States (125), 13, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (125), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (125), 37, 105);
Table.States (125).Goto_List.Set_Capacity (2);
Add_Goto (Table.States (125), 58, 106);
Add_Goto (Table.States (125), 59, 156);
Table.States (125).Kernel := To_Vector ((0 => (62, 9, 3, False)));
Table.States (125).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 0)));
Table.States (126).Action_List.Set_Capacity (7);
Add_Action (Table.States (126), 6, 85);
Add_Action (Table.States (126), 8, Reduce, (53, 0), 0, null, null);
Add_Action (Table.States (126), 12, 86);
Add_Action (Table.States (126), 16, 87);
Add_Action (Table.States (126), 18, 88);
Add_Action (Table.States (126), 23, 89);
Add_Action (Table.States (126), 37, 90);
Table.States (126).Goto_List.Set_Capacity (11);
Add_Goto (Table.States (126), 42, 91);
Add_Goto (Table.States (126), 45, 92);
Add_Goto (Table.States (126), 51, 93);
Add_Goto (Table.States (126), 52, 94);
Add_Goto (Table.States (126), 53, 157);
Add_Goto (Table.States (126), 60, 96);
Add_Goto (Table.States (126), 61, 97);
Add_Goto (Table.States (126), 62, 98);
Add_Goto (Table.States (126), 63, 99);
Add_Goto (Table.States (126), 67, 100);
Add_Goto (Table.States (126), 72, 101);
Table.States (126).Kernel := To_Vector ((0 => (61, 13, 2, False)));
Table.States (126).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 53, 0)));
Table.States (127).Action_List.Set_Capacity (3);
Add_Action (Table.States (127), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (127), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (127), 37, 158);
Table.States (127).Goto_List.Set_Capacity (2);
Add_Goto (Table.States (127), 58, 159);
Add_Goto (Table.States (127), 59, 160);
Table.States (127).Kernel := To_Vector ((0 => (63, 20, 1, False)));
Table.States (127).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 0)));
Table.States (128).Action_List.Set_Capacity (1);
Add_Action (Table.States (128), 14, 161);
Table.States (128).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (128), 41, 162);
Table.States (128).Kernel := To_Vector ((0 => (72, 13, 3, False)));
Table.States (128).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 161)));
Table.States (129).Action_List.Set_Capacity (1);
Add_Action (Table.States (129), 29, 163);
Table.States (129).Kernel := To_Vector ((0 => (67, 37, 2, False)));
Table.States (129).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 29, 163)));
Table.States (130).Action_List.Set_Capacity (1);
Add_Action (Table.States (130), 14, 164);
Table.States (130).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (130), 41, 165);
Table.States (130).Kernel := To_Vector ((0 => (57, 10, 2, False)));
Table.States (130).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 164)));
Table.States (131).Action_List.Set_Capacity (1);
Add_Action (Table.States (131), 14, 164);
Table.States (131).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (131), 41, 166);
Table.States (131).Kernel := To_Vector ((0 => (57, 11, 2, False)));
Table.States (131).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 164)));
Table.States (132).Action_List.Set_Capacity (11);
Add_Action (Table.States (132), 10, 32);
Add_Action (Table.States (132), 11, 33);
Add_Action (Table.States (132), 14, 34);
Add_Action (Table.States (132), 19, 9);
Add_Action (Table.States (132), 21, 167);
Add_Conflict (Table.States (132), 21, (58, 0), 0, null, null);
Add_Action (Table.States (132), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (132), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (132), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (132), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (132), 37, 36);
Add_Action (Table.States (132), 38, 37);
Table.States (132).Goto_List.Set_Capacity (10);
Add_Goto (Table.States (132), 41, 38);
Add_Goto (Table.States (132), 43, 39);
Add_Goto (Table.States (132), 44, 40);
Add_Goto (Table.States (132), 56, 41);
Add_Goto (Table.States (132), 57, 42);
Add_Goto (Table.States (132), 58, 43);
Add_Goto (Table.States (132), 59, 44);
Add_Goto (Table.States (132), 69, 45);
Add_Goto (Table.States (132), 70, 168);
Add_Goto (Table.States (132), 71, 47);
Table.States (132).Kernel := To_Vector (((41, 14, 1, False), (71, 14, 1, False)));
Table.States (132).Minimal_Complete_Actions := To_Vector (((Reduce, 70, 0), (Shift, 21, 167)));
Table.States (133).Action_List.Set_Capacity (4);
Add_Action (Table.States (133), (27, 31, 33, 34), (58, 1), 1, null, identifier_opt_1_check'Access);
Table.States (133).Kernel := To_Vector ((0 => (58, 37, 0, False)));
Table.States (133).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 1)));
Table.States (134).Action_List.Set_Capacity (2);
Add_Action (Table.States (134), (27, 34), (69, 0), 1, null, null);
Table.States (134).Kernel := To_Vector ((0 => (69, 38, 0, False)));
Table.States (134).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (135).Action_List.Set_Capacity (2);
Add_Action (Table.States (135), (27, 34), (71, 2), 1, null, null);
Table.States (135).Kernel := To_Vector ((0 => (71, 41, 0, False)));
Table.States (135).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 1)));
Table.States (136).Action_List.Set_Capacity (1);
Add_Action (Table.States (136), 33, 169);
Table.States (136).Kernel := To_Vector (((44, 43, 2, False), (44, 43, 5, False)));
Table.States (136).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 33, 169)));
Table.States (137).Action_List.Set_Capacity (2);
Add_Action (Table.States (137), (27, 34), (69, 3), 1, null, null);
Table.States (137).Kernel := To_Vector ((0 => (69, 44, 0, False)));
Table.States (137).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (138).Action_List.Set_Capacity (2);
Add_Action (Table.States (138), 27, 170);
Add_Action (Table.States (138), 34, 171);
Table.States (138).Kernel := To_Vector (((56, 56, 1, True), (67, 56, 1, False)));
Table.States (138).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 171)));
Table.States (139).Action_List.Set_Capacity (2);
Add_Action (Table.States (139), (27, 34), (69, 2), 1, null, null);
Table.States (139).Kernel := To_Vector ((0 => (69, 57, 0, False)));
Table.States (139).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (140).Action_List.Set_Capacity (4);
Add_Action (Table.States (140), (27, 31, 33, 34), (59, 0), 1, null, null);
Table.States (140).Kernel := To_Vector ((0 => (59, 58, 0, False)));
Table.States (140).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 1)));
Table.States (141).Action_List.Set_Capacity (4);
Add_Action (Table.States (141), 27, Reduce, (69, 1), 1, null, null);
Add_Action (Table.States (141), 31, 172);
Add_Action (Table.States (141), 33, Reduce, (43, 1), 1, null, null);
Add_Action (Table.States (141), 34, Reduce, (69, 1), 1, null, null);
Table.States (141).Kernel := To_Vector (((43, 59, 0, False), (59, 59, 2, True), (69, 59, 0, False)));
Table.States (141).Minimal_Complete_Actions := To_Vector (((Reduce, 43, 1), (Reduce, 69, 1)));
Table.States (142).Action_List.Set_Capacity (2);
Add_Action (Table.States (142), (27, 34), (71, 0), 1, null, null);
Table.States (142).Kernel := To_Vector ((0 => (71, 69, 0, False)));
Table.States (142).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 1)));
Table.States (143).Action_List.Set_Capacity (2);
Add_Action (Table.States (143), (27, 34), (56, 0), 1, null, null);
Table.States (143).Kernel := To_Vector ((0 => (56, 71, 0, False)));
Table.States (143).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 1)));
Table.States (144).Action_List.Set_Capacity (1);
Add_Action (Table.States (144), (1 => 34), (58, 1), 1, null, identifier_opt_1_check'Access);
Table.States (144).Kernel := To_Vector ((0 => (58, 37, 0, False)));
Table.States (144).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 1)));
Table.States (145).Action_List.Set_Capacity (1);
Add_Action (Table.States (145), 34, 173);
Table.States (145).Kernel := To_Vector ((0 => (68, 58, 1, False)));
Table.States (145).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 173)));
Table.States (146).Action_List.Set_Capacity (2);
Add_Action (Table.States (146), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (146), 37, 144);
Table.States (146).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (146), 58, 174);
Table.States (146).Kernel := To_Vector ((0 => (65, 8, 1, False)));
Table.States (146).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 0)));
Table.States (147).Action_List.Set_Capacity (4);
Add_Action (Table.States (147), 17, 175);
Add_Action (Table.States (147), 32, Reduce, (54, 0), 0, null, null);
Add_Action (Table.States (147), 35, Reduce, (54, 0), 0, null, null);
Add_Action (Table.States (147), 38, 176);
Table.States (147).Goto_List.Set_Capacity (2);
Add_Goto (Table.States (147), 54, 177);
Add_Goto (Table.States (147), 55, 178);
Table.States (147).Kernel := To_Vector ((0 => (46, 25, 1, False)));
Table.States (147).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 55, 0)));
Table.States (148).Action_List.Set_Capacity (2);
Add_Action (Table.States (148), (8, 25), (47, 1), 1, null, null);
Table.States (148).Kernel := To_Vector ((0 => (47, 46, 0, False)));
Table.States (148).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 47, 1)));
Table.States (149).Action_List.Set_Capacity (2);
Add_Action (Table.States (149), 8, 179);
Add_Action (Table.States (149), 25, 147);
Table.States (149).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (149), 46, 180);
Table.States (149).Kernel := To_Vector (((45, 47, 3, False), (47, 47, 2, True)));
Table.States (149).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 8, 179)));
Table.States (150).Action_List.Set_Capacity (2);
Add_Action (Table.States (150), (13, 31), (59, 1), 3, null, null);
Table.States (150).Kernel := To_Vector ((0 => (59, 37, 0, True)));
Table.States (150).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 3)));
Table.States (150).Minimal_Complete_Actions_Recursive := True;
Table.States (151).Action_List.Set_Capacity (1);
Add_Action (Table.States (151), 21, 181);
Table.States (151).Kernel := To_Vector ((0 => (42, 38, 3, False)));
Table.States (151).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 181)));
Table.States (152).Action_List.Set_Capacity (1);
Add_Action (Table.States (152), (1 => 21), (54, 2), 1, null, null);
Table.States (152).Kernel := To_Vector ((0 => (54, 17, 0, False)));
Table.States (152).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 54, 1)));
Table.States (153).Action_List.Set_Capacity (1);
Add_Action (Table.States (153), (1 => 21), (54, 1), 1, null, null);
Table.States (153).Kernel := To_Vector ((0 => (54, 38, 0, False)));
Table.States (153).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 54, 1)));
Table.States (154).Action_List.Set_Capacity (1);
Add_Action (Table.States (154), 21, 182);
Table.States (154).Kernel := To_Vector (((42, 54, 3, False), (42, 54, 5, False)));
Table.States (154).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 182)));
Table.States (155).Action_List.Set_Capacity (2);
Add_Action (Table.States (155), 27, 170);
Add_Action (Table.States (155), 34, 183);
Table.States (155).Kernel := To_Vector (((42, 56, 1, False), (56, 56, 1, True)));
Table.States (155).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 183)));
Table.States (156).Action_List.Set_Capacity (2);
Add_Action (Table.States (156), 13, 184);
Add_Action (Table.States (156), 31, 121);
Table.States (156).Kernel := To_Vector (((59, 59, 2, True), (62, 59, 3, False)));
Table.States (156).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 13, 184)));
Table.States (157).Action_List.Set_Capacity (1);
Add_Action (Table.States (157), 8, 185);
Table.States (157).Kernel := To_Vector ((0 => (61, 53, 2, False)));
Table.States (157).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 8, 185)));
Table.States (158).Action_List.Set_Capacity (2);
Add_Action (Table.States (158), (31, 34), (58, 1), 1, null, identifier_opt_1_check'Access);
Table.States (158).Kernel := To_Vector ((0 => (58, 37, 0, False)));
Table.States (158).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 1)));
Table.States (159).Action_List.Set_Capacity (2);
Add_Action (Table.States (159), (31, 34), (59, 0), 1, null, null);
Table.States (159).Kernel := To_Vector ((0 => (59, 58, 0, False)));
Table.States (159).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 1)));
Table.States (160).Action_List.Set_Capacity (2);
Add_Action (Table.States (160), 31, 186);
Add_Action (Table.States (160), 34, 187);
Table.States (160).Kernel := To_Vector (((59, 59, 2, True), (63, 59, 1, False)));
Table.States (160).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 187)));
Table.States (161).Action_List.Set_Capacity (11);
Add_Action (Table.States (161), 10, 32);
Add_Action (Table.States (161), 11, 33);
Add_Action (Table.States (161), 14, 34);
Add_Action (Table.States (161), 19, 9);
Add_Action (Table.States (161), 21, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (161), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (161), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (161), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (161), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (161), 37, 36);
Add_Action (Table.States (161), 38, 37);
Table.States (161).Goto_List.Set_Capacity (10);
Add_Goto (Table.States (161), 41, 38);
Add_Goto (Table.States (161), 43, 39);
Add_Goto (Table.States (161), 44, 40);
Add_Goto (Table.States (161), 56, 41);
Add_Goto (Table.States (161), 57, 42);
Add_Goto (Table.States (161), 58, 43);
Add_Goto (Table.States (161), 59, 44);
Add_Goto (Table.States (161), 69, 45);
Add_Goto (Table.States (161), 70, 188);
Add_Goto (Table.States (161), 71, 47);
Table.States (161).Kernel := To_Vector ((0 => (41, 14, 1, False)));
Table.States (161).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 70, 0)));
Table.States (162).Action_List.Set_Capacity (1);
Add_Action (Table.States (162), 34, 189);
Table.States (162).Kernel := To_Vector ((0 => (72, 41, 1, False)));
Table.States (162).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 189)));
Table.States (163).Action_List.Set_Capacity (10);
Add_Action (Table.States (163), 10, 130);
Add_Action (Table.States (163), 11, 131);
Add_Action (Table.States (163), 14, 132);
Add_Action (Table.States (163), 19, 9);
Add_Action (Table.States (163), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (163), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (163), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (163), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (163), 37, 133);
Add_Action (Table.States (163), 38, 134);
Table.States (163).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (163), 41, 135);
Add_Goto (Table.States (163), 43, 136);
Add_Goto (Table.States (163), 44, 137);
Add_Goto (Table.States (163), 56, 190);
Add_Goto (Table.States (163), 57, 139);
Add_Goto (Table.States (163), 58, 140);
Add_Goto (Table.States (163), 59, 141);
Add_Goto (Table.States (163), 69, 142);
Add_Goto (Table.States (163), 71, 143);
Table.States (163).Kernel := To_Vector ((0 => (67, 29, 1, False)));
Table.States (163).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (164).Action_List.Set_Capacity (11);
Add_Action (Table.States (164), 10, 32);
Add_Action (Table.States (164), 11, 33);
Add_Action (Table.States (164), 14, 34);
Add_Action (Table.States (164), 19, 9);
Add_Action (Table.States (164), 21, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (164), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (164), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (164), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (164), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (164), 37, 36);
Add_Action (Table.States (164), 38, 37);
Table.States (164).Goto_List.Set_Capacity (10);
Add_Goto (Table.States (164), 41, 38);
Add_Goto (Table.States (164), 43, 39);
Add_Goto (Table.States (164), 44, 40);
Add_Goto (Table.States (164), 56, 41);
Add_Goto (Table.States (164), 57, 42);
Add_Goto (Table.States (164), 58, 43);
Add_Goto (Table.States (164), 59, 44);
Add_Goto (Table.States (164), 69, 45);
Add_Goto (Table.States (164), 70, 168);
Add_Goto (Table.States (164), 71, 47);
Table.States (164).Kernel := To_Vector ((0 => (41, 14, 1, False)));
Table.States (164).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 70, 0)));
Table.States (165).Action_List.Set_Capacity (2);
Add_Action (Table.States (165), (27, 34), (57, 0), 2, null, null);
Table.States (165).Kernel := To_Vector ((0 => (57, 41, 0, False)));
Table.States (165).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 57, 2)));
Table.States (166).Action_List.Set_Capacity (2);
Add_Action (Table.States (166), (27, 34), (57, 1), 2, null, null);
Table.States (166).Kernel := To_Vector ((0 => (57, 41, 0, False)));
Table.States (166).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 57, 2)));
Table.States (167).Action_List.Set_Capacity (2);
Add_Action (Table.States (167), (27, 34), (71, 1), 2, null, null);
Table.States (167).Kernel := To_Vector ((0 => (71, 21, 0, False)));
Table.States (167).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 2)));
Table.States (168).Action_List.Set_Capacity (2);
Add_Action (Table.States (168), 21, 191);
Add_Action (Table.States (168), 30, 67);
Table.States (168).Kernel := To_Vector (((41, 70, 1, False), (70, 70, 1, True)));
Table.States (168).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 191)));
Table.States (169).Action_List.Set_Capacity (1);
Add_Action (Table.States (169), 37, 192);
Table.States (169).Kernel := To_Vector (((44, 33, 1, False), (44, 33, 4, False)));
Table.States (169).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 192)));
Table.States (170).Action_List.Set_Capacity (10);
Add_Action (Table.States (170), 10, 130);
Add_Action (Table.States (170), 11, 131);
Add_Action (Table.States (170), 14, 132);
Add_Action (Table.States (170), 19, 9);
Add_Action (Table.States (170), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (170), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (170), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (170), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (170), 37, 133);
Add_Action (Table.States (170), 38, 134);
Table.States (170).Goto_List.Set_Capacity (8);
Add_Goto (Table.States (170), 41, 135);
Add_Goto (Table.States (170), 43, 136);
Add_Goto (Table.States (170), 44, 137);
Add_Goto (Table.States (170), 57, 139);
Add_Goto (Table.States (170), 58, 140);
Add_Goto (Table.States (170), 59, 141);
Add_Goto (Table.States (170), 69, 142);
Add_Goto (Table.States (170), 71, 193);
Table.States (170).Kernel := To_Vector ((0 => (56, 27, 0, True)));
Table.States (170).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 0)));
Table.States (170).Minimal_Complete_Actions_Recursive := True;
Table.States (171).Action_List.Set_Capacity (7);
Add_Action (Table.States (171), (6, 8, 12, 16, 18, 23, 37), (67, 0), 4, simple_declarative_item_0'Access,
null);
Table.States (171).Kernel := To_Vector ((0 => (67, 34, 0, False)));
Table.States (171).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 67, 4)));
Table.States (172).Action_List.Set_Capacity (1);
Add_Action (Table.States (172), 37, 194);
Table.States (172).Kernel := To_Vector ((0 => (59, 31, 1, True)));
Table.States (172).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 194)));
Table.States (172).Minimal_Complete_Actions_Recursive := True;
Table.States (173).Action_List.Set_Capacity (1);
Add_Action (Table.States (173), (1 => 39), (68, 0), 7, simple_project_declaration_0'Access,
simple_project_declaration_0_check'Access);
Table.States (173).Kernel := To_Vector ((0 => (68, 34, 0, False)));
Table.States (173).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 68, 7)));
Table.States (174).Action_List.Set_Capacity (1);
Add_Action (Table.States (174), 34, 195);
Table.States (174).Kernel := To_Vector ((0 => (65, 58, 1, False)));
Table.States (174).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 195)));
Table.States (175).Action_List.Set_Capacity (2);
Add_Action (Table.States (175), (32, 35), (54, 2), 1, null, null);
Table.States (175).Kernel := To_Vector ((0 => (54, 17, 0, False)));
Table.States (175).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 54, 1)));
Table.States (176).Action_List.Set_Capacity (2);
Add_Action (Table.States (176), (32, 35), (54, 1), 1, null, null);
Table.States (176).Kernel := To_Vector ((0 => (54, 38, 0, False)));
Table.States (176).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 54, 1)));
Table.States (177).Action_List.Set_Capacity (2);
Add_Action (Table.States (177), (32, 35), (55, 0), 1, null, null);
Table.States (177).Kernel := To_Vector ((0 => (55, 54, 0, False)));
Table.States (177).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 55, 1)));
Table.States (178).Action_List.Set_Capacity (2);
Add_Action (Table.States (178), 32, 196);
Add_Action (Table.States (178), 35, 197);
Table.States (178).Kernel := To_Vector (((46, 55, 1, False), (55, 55, 1, True)));
Table.States (178).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 32, 196)));
Table.States (179).Action_List.Set_Capacity (1);
Add_Action (Table.States (179), 6, 198);
Table.States (179).Kernel := To_Vector ((0 => (45, 8, 2, False)));
Table.States (179).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 6, 198)));
Table.States (180).Action_List.Set_Capacity (2);
Add_Action (Table.States (180), (8, 25), (47, 2), 2, null, null);
Table.States (180).Kernel := To_Vector ((0 => (47, 46, 0, True)));
Table.States (180).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 47, 2)));
Table.States (180).Minimal_Complete_Actions_Recursive := True;
Table.States (181).Action_List.Set_Capacity (1);
Add_Action (Table.States (181), 24, 199);
Table.States (181).Kernel := To_Vector ((0 => (42, 21, 2, False)));
Table.States (181).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 24, 199)));
Table.States (182).Action_List.Set_Capacity (1);
Add_Action (Table.States (182), 24, 200);
Table.States (182).Kernel := To_Vector (((42, 21, 2, False), (42, 21, 4, False)));
Table.States (182).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 24, 200)));
Table.States (183).Action_List.Set_Capacity (7);
Add_Action (Table.States (183), (6, 8, 12, 16, 18, 23, 37), (42, 0), 5, attribute_declaration_0'Access,
null);
Table.States (183).Kernel := To_Vector ((0 => (42, 34, 0, False)));
Table.States (183).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 42, 5)));
Table.States (184).Action_List.Set_Capacity (7);
Add_Action (Table.States (184), 6, 85);
Add_Action (Table.States (184), 8, Reduce, (53, 0), 0, null, null);
Add_Action (Table.States (184), 12, 86);
Add_Action (Table.States (184), 16, 87);
Add_Action (Table.States (184), 18, 88);
Add_Action (Table.States (184), 23, 89);
Add_Action (Table.States (184), 37, 90);
Table.States (184).Goto_List.Set_Capacity (11);
Add_Goto (Table.States (184), 42, 91);
Add_Goto (Table.States (184), 45, 92);
Add_Goto (Table.States (184), 51, 93);
Add_Goto (Table.States (184), 52, 94);
Add_Goto (Table.States (184), 53, 201);
Add_Goto (Table.States (184), 60, 96);
Add_Goto (Table.States (184), 61, 97);
Add_Goto (Table.States (184), 62, 98);
Add_Goto (Table.States (184), 63, 99);
Add_Goto (Table.States (184), 67, 100);
Add_Goto (Table.States (184), 72, 101);
Table.States (184).Kernel := To_Vector ((0 => (62, 13, 2, False)));
Table.States (184).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 53, 0)));
Table.States (185).Action_List.Set_Capacity (2);
Add_Action (Table.States (185), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (185), 37, 144);
Table.States (185).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (185), 58, 202);
Table.States (185).Kernel := To_Vector ((0 => (61, 8, 1, False)));
Table.States (185).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 0)));
Table.States (186).Action_List.Set_Capacity (1);
Add_Action (Table.States (186), 37, 203);
Table.States (186).Kernel := To_Vector ((0 => (59, 31, 1, True)));
Table.States (186).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 203)));
Table.States (186).Minimal_Complete_Actions_Recursive := True;
Table.States (187).Action_List.Set_Capacity (7);
Add_Action (Table.States (187), (6, 8, 12, 16, 18, 23, 37), (63, 0), 5, package_renaming_0'Access, null);
Table.States (187).Kernel := To_Vector ((0 => (63, 34, 0, False)));
Table.States (187).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 63, 5)));
Table.States (188).Action_List.Set_Capacity (2);
Add_Action (Table.States (188), 21, 204);
Add_Action (Table.States (188), 30, 67);
Table.States (188).Kernel := To_Vector (((41, 70, 1, False), (70, 70, 1, True)));
Table.States (188).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 204)));
Table.States (189).Action_List.Set_Capacity (7);
Add_Action (Table.States (189), (6, 8, 12, 16, 18, 23, 37), (72, 0), 5, typed_string_declaration_0'Access,
null);
Table.States (189).Kernel := To_Vector ((0 => (72, 34, 0, False)));
Table.States (189).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 72, 5)));
Table.States (190).Action_List.Set_Capacity (2);
Add_Action (Table.States (190), 27, 170);
Add_Action (Table.States (190), 34, 205);
Table.States (190).Kernel := To_Vector (((56, 56, 1, True), (67, 56, 1, False)));
Table.States (190).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 205)));
Table.States (191).Action_List.Set_Capacity (2);
Add_Action (Table.States (191), (27, 34), (41, 0), 3, aggregate_g_0'Access, null);
Table.States (191).Kernel := To_Vector ((0 => (41, 21, 0, False)));
Table.States (191).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 41, 3)));
Table.States (192).Action_List.Set_Capacity (3);
Add_Action (Table.States (192), 14, 206);
Add_Action (Table.States (192), 27, Reduce, (44, 0), 3, null, null);
Add_Action (Table.States (192), 34, Reduce, (44, 0), 3, null, null);
Table.States (192).Kernel := To_Vector (((44, 37, 0, False), (44, 37, 3, False)));
Table.States (192).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 44, 3)));
Table.States (193).Action_List.Set_Capacity (2);
Add_Action (Table.States (193), (27, 34), (56, 1), 3, null, null);
Table.States (193).Kernel := To_Vector ((0 => (56, 71, 0, True)));
Table.States (193).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 3)));
Table.States (193).Minimal_Complete_Actions_Recursive := True;
Table.States (194).Action_List.Set_Capacity (4);
Add_Action (Table.States (194), (27, 31, 33, 34), (59, 1), 3, null, null);
Table.States (194).Kernel := To_Vector ((0 => (59, 37, 0, True)));
Table.States (194).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 3)));
Table.States (194).Minimal_Complete_Actions_Recursive := True;
Table.States (195).Action_List.Set_Capacity (1);
Add_Action (Table.States (195), (1 => 39), (65, 0), 9, project_extension_0'Access,
project_extension_0_check'Access);
Table.States (195).Kernel := To_Vector ((0 => (65, 34, 0, False)));
Table.States (195).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 65, 9)));
Table.States (196).Action_List.Set_Capacity (8);
Add_Action (Table.States (196), 6, 207);
Add_Action (Table.States (196), 8, Reduce, (53, 0), 0, null, null);
Add_Action (Table.States (196), 12, 208);
Add_Action (Table.States (196), 16, 209);
Add_Action (Table.States (196), 18, 210);
Add_Action (Table.States (196), 23, 211);
Add_Action (Table.States (196), 25, Reduce, (53, 0), 0, null, null);
Add_Action (Table.States (196), 37, 212);
Table.States (196).Goto_List.Set_Capacity (11);
Add_Goto (Table.States (196), 42, 213);
Add_Goto (Table.States (196), 45, 214);
Add_Goto (Table.States (196), 51, 215);
Add_Goto (Table.States (196), 52, 216);
Add_Goto (Table.States (196), 53, 217);
Add_Goto (Table.States (196), 60, 218);
Add_Goto (Table.States (196), 61, 219);
Add_Goto (Table.States (196), 62, 220);
Add_Goto (Table.States (196), 63, 221);
Add_Goto (Table.States (196), 67, 222);
Add_Goto (Table.States (196), 72, 223);
Table.States (196).Kernel := To_Vector ((0 => (46, 32, 0, False)));
Table.States (196).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 53, 0)));
Table.States (197).Action_List.Set_Capacity (4);
Add_Action (Table.States (197), 17, 175);
Add_Action (Table.States (197), 32, Reduce, (54, 0), 0, null, null);
Add_Action (Table.States (197), 35, Reduce, (54, 0), 0, null, null);
Add_Action (Table.States (197), 38, 176);
Table.States (197).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (197), 54, 224);
Table.States (197).Kernel := To_Vector ((0 => (55, 35, 0, True)));
Table.States (197).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 54, 0)));
Table.States (197).Minimal_Complete_Actions_Recursive := True;
Table.States (198).Action_List.Set_Capacity (1);
Add_Action (Table.States (198), 34, 225);
Table.States (198).Kernel := To_Vector ((0 => (45, 6, 1, False)));
Table.States (198).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 225)));
Table.States (199).Action_List.Set_Capacity (10);
Add_Action (Table.States (199), 10, 130);
Add_Action (Table.States (199), 11, 131);
Add_Action (Table.States (199), 14, 132);
Add_Action (Table.States (199), 19, 9);
Add_Action (Table.States (199), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (199), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (199), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (199), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (199), 37, 133);
Add_Action (Table.States (199), 38, 134);
Table.States (199).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (199), 41, 135);
Add_Goto (Table.States (199), 43, 136);
Add_Goto (Table.States (199), 44, 137);
Add_Goto (Table.States (199), 56, 226);
Add_Goto (Table.States (199), 57, 139);
Add_Goto (Table.States (199), 58, 140);
Add_Goto (Table.States (199), 59, 141);
Add_Goto (Table.States (199), 69, 142);
Add_Goto (Table.States (199), 71, 143);
Table.States (199).Kernel := To_Vector ((0 => (42, 24, 1, False)));
Table.States (199).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (200).Action_List.Set_Capacity (11);
Add_Action (Table.States (200), 4, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (200), 10, 227);
Add_Action (Table.States (200), 11, 228);
Add_Action (Table.States (200), 14, 229);
Add_Action (Table.States (200), 19, 9);
Add_Action (Table.States (200), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (200), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (200), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (200), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (200), 37, 230);
Add_Action (Table.States (200), 38, 231);
Table.States (200).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (200), 41, 232);
Add_Goto (Table.States (200), 43, 233);
Add_Goto (Table.States (200), 44, 234);
Add_Goto (Table.States (200), 56, 235);
Add_Goto (Table.States (200), 57, 236);
Add_Goto (Table.States (200), 58, 237);
Add_Goto (Table.States (200), 59, 238);
Add_Goto (Table.States (200), 69, 239);
Add_Goto (Table.States (200), 71, 240);
Table.States (200).Kernel := To_Vector (((42, 24, 1, False), (42, 24, 3, False)));
Table.States (200).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (201).Action_List.Set_Capacity (1);
Add_Action (Table.States (201), 8, 241);
Table.States (201).Kernel := To_Vector ((0 => (62, 53, 2, False)));
Table.States (201).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 8, 241)));
Table.States (202).Action_List.Set_Capacity (1);
Add_Action (Table.States (202), 34, 242);
Table.States (202).Kernel := To_Vector ((0 => (61, 58, 1, False)));
Table.States (202).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 242)));
Table.States (203).Action_List.Set_Capacity (2);
Add_Action (Table.States (203), (31, 34), (59, 1), 3, null, null);
Table.States (203).Kernel := To_Vector ((0 => (59, 37, 0, True)));
Table.States (203).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 3)));
Table.States (203).Minimal_Complete_Actions_Recursive := True;
Table.States (204).Action_List.Set_Capacity (1);
Add_Action (Table.States (204), (1 => 34), (41, 0), 3, aggregate_g_0'Access, null);
Table.States (204).Kernel := To_Vector ((0 => (41, 21, 0, False)));
Table.States (204).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 41, 3)));
Table.States (205).Action_List.Set_Capacity (7);
Add_Action (Table.States (205), (6, 8, 12, 16, 18, 23, 37), (67, 1), 6, simple_declarative_item_1'Access,
null);
Table.States (205).Kernel := To_Vector ((0 => (67, 34, 0, False)));
Table.States (205).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 67, 6)));
Table.States (206).Action_List.Set_Capacity (1);
Add_Action (Table.States (206), 38, 243);
Table.States (206).Kernel := To_Vector ((0 => (44, 14, 2, False)));
Table.States (206).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 38, 243)));
Table.States (207).Action_List.Set_Capacity (3);
Add_Action (Table.States (207), 13, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (207), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (207), 37, 105);
Table.States (207).Goto_List.Set_Capacity (2);
Add_Goto (Table.States (207), 58, 106);
Add_Goto (Table.States (207), 59, 244);
Table.States (207).Kernel := To_Vector ((0 => (45, 6, 4, False)));
Table.States (207).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 0)));
Table.States (208).Action_List.Set_Capacity (2);
Add_Action (Table.States (208), 10, 245);
Add_Action (Table.States (208), 37, 246);
Table.States (208).Kernel := To_Vector (((42, 12, 3, False), (42, 12, 5, False), (42, 12, 7, False), (42,
12, 6, False)));
Table.States (208).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 246)));
Table.States (209).Action_List.Set_Capacity (1);
Add_Action (Table.States (209), 34, 247);
Table.States (209).Kernel := To_Vector ((0 => (67, 16, 1, False)));
Table.States (209).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 247)));
Table.States (210).Action_List.Set_Capacity (4);
Add_Action (Table.States (210), 9, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (210), 13, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (210), 20, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (210), 37, 111);
Table.States (210).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (210), 58, 248);
Table.States (210).Kernel := To_Vector (((61, 18, 3, False), (62, 18, 4, False), (63, 18, 2, False)));
Table.States (210).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 0)));
end Subr_2;
procedure Subr_3
is begin
Table.States (211).Action_List.Set_Capacity (1);
Add_Action (Table.States (211), 37, 249);
Table.States (211).Kernel := To_Vector ((0 => (72, 23, 5, False)));
Table.States (211).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 249)));
Table.States (212).Action_List.Set_Capacity (2);
Add_Action (Table.States (212), 28, 250);
Add_Action (Table.States (212), 29, 251);
Table.States (212).Kernel := To_Vector (((67, 37, 2, False), (67, 37, 4, False)));
Table.States (212).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 29, 251)));
Table.States (213).Action_List.Set_Capacity (8);
Add_Action (Table.States (213), (6, 8, 12, 16, 18, 23, 25, 37), (67, 2), 1, null, null);
Table.States (213).Kernel := To_Vector ((0 => (67, 42, 0, False)));
Table.States (213).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 67, 1)));
Table.States (214).Action_List.Set_Capacity (8);
Add_Action (Table.States (214), (6, 8, 12, 16, 18, 23, 25, 37), (67, 3), 1, null, null);
Table.States (214).Kernel := To_Vector ((0 => (67, 45, 0, False)));
Table.States (214).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 67, 1)));
Table.States (215).Action_List.Set_Capacity (8);
Add_Action (Table.States (215), (6, 8, 12, 16, 18, 23, 25, 37), (52, 0), 1, null, null);
Table.States (215).Kernel := To_Vector ((0 => (52, 51, 0, False)));
Table.States (215).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 52, 1)));
Table.States (216).Action_List.Set_Capacity (8);
Add_Action (Table.States (216), 6, 207);
Add_Action (Table.States (216), 8, Reduce, (53, 1), 1, null, null);
Add_Action (Table.States (216), 12, 208);
Add_Action (Table.States (216), 16, 209);
Add_Action (Table.States (216), 18, 210);
Add_Action (Table.States (216), 23, 211);
Add_Action (Table.States (216), 25, Reduce, (53, 1), 1, null, null);
Add_Action (Table.States (216), 37, 212);
Table.States (216).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (216), 42, 213);
Add_Goto (Table.States (216), 45, 214);
Add_Goto (Table.States (216), 51, 252);
Add_Goto (Table.States (216), 60, 218);
Add_Goto (Table.States (216), 61, 219);
Add_Goto (Table.States (216), 62, 220);
Add_Goto (Table.States (216), 63, 221);
Add_Goto (Table.States (216), 67, 222);
Add_Goto (Table.States (216), 72, 223);
Table.States (216).Kernel := To_Vector (((52, 52, 2, True), (53, 52, 0, False)));
Table.States (216).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 53, 1)));
Table.States (217).Action_List.Set_Capacity (2);
Add_Action (Table.States (217), (8, 25), (46, 0), 4, case_item_0'Access, null);
Table.States (217).Kernel := To_Vector ((0 => (46, 53, 0, False)));
Table.States (217).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 46, 4)));
Table.States (218).Action_List.Set_Capacity (8);
Add_Action (Table.States (218), (6, 8, 12, 16, 18, 23, 25, 37), (51, 2), 1, null, null);
Table.States (218).Kernel := To_Vector ((0 => (51, 60, 0, False)));
Table.States (218).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 51, 1)));
Table.States (219).Action_List.Set_Capacity (8);
Add_Action (Table.States (219), (6, 8, 12, 16, 18, 23, 25, 37), (60, 0), 1, null, null);
Table.States (219).Kernel := To_Vector ((0 => (60, 61, 0, False)));
Table.States (219).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 60, 1)));
Table.States (220).Action_List.Set_Capacity (8);
Add_Action (Table.States (220), (6, 8, 12, 16, 18, 23, 25, 37), (60, 1), 1, null, null);
Table.States (220).Kernel := To_Vector ((0 => (60, 62, 0, False)));
Table.States (220).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 60, 1)));
Table.States (221).Action_List.Set_Capacity (8);
Add_Action (Table.States (221), (6, 8, 12, 16, 18, 23, 25, 37), (60, 2), 1, null, null);
Table.States (221).Kernel := To_Vector ((0 => (60, 63, 0, False)));
Table.States (221).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 60, 1)));
Table.States (222).Action_List.Set_Capacity (8);
Add_Action (Table.States (222), (6, 8, 12, 16, 18, 23, 25, 37), (51, 0), 1, null, null);
Table.States (222).Kernel := To_Vector ((0 => (51, 67, 0, False)));
Table.States (222).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 51, 1)));
Table.States (223).Action_List.Set_Capacity (8);
Add_Action (Table.States (223), (6, 8, 12, 16, 18, 23, 25, 37), (51, 1), 1, null, null);
Table.States (223).Kernel := To_Vector ((0 => (51, 72, 0, False)));
Table.States (223).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 51, 1)));
Table.States (224).Action_List.Set_Capacity (2);
Add_Action (Table.States (224), (32, 35), (55, 1), 3, null, null);
Table.States (224).Kernel := To_Vector ((0 => (55, 54, 0, True)));
Table.States (224).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 55, 3)));
Table.States (224).Minimal_Complete_Actions_Recursive := True;
Table.States (225).Action_List.Set_Capacity (7);
Add_Action (Table.States (225), (6, 8, 12, 16, 18, 23, 37), (45, 0), 7, case_statement_0'Access, null);
Table.States (225).Kernel := To_Vector ((0 => (45, 34, 0, False)));
Table.States (225).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 45, 7)));
Table.States (226).Action_List.Set_Capacity (2);
Add_Action (Table.States (226), 27, 170);
Add_Action (Table.States (226), 34, 253);
Table.States (226).Kernel := To_Vector (((42, 56, 1, False), (56, 56, 1, True)));
Table.States (226).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 253)));
Table.States (227).Action_List.Set_Capacity (1);
Add_Action (Table.States (227), 14, 254);
Table.States (227).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (227), 41, 255);
Table.States (227).Kernel := To_Vector ((0 => (57, 10, 2, False)));
Table.States (227).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 254)));
Table.States (228).Action_List.Set_Capacity (1);
Add_Action (Table.States (228), 14, 254);
Table.States (228).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (228), 41, 256);
Table.States (228).Kernel := To_Vector ((0 => (57, 11, 2, False)));
Table.States (228).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 254)));
Table.States (229).Action_List.Set_Capacity (11);
Add_Action (Table.States (229), 10, 32);
Add_Action (Table.States (229), 11, 33);
Add_Action (Table.States (229), 14, 34);
Add_Action (Table.States (229), 19, 9);
Add_Action (Table.States (229), 21, 257);
Add_Conflict (Table.States (229), 21, (58, 0), 0, null, null);
Add_Action (Table.States (229), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (229), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (229), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (229), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (229), 37, 36);
Add_Action (Table.States (229), 38, 37);
Table.States (229).Goto_List.Set_Capacity (10);
Add_Goto (Table.States (229), 41, 38);
Add_Goto (Table.States (229), 43, 39);
Add_Goto (Table.States (229), 44, 40);
Add_Goto (Table.States (229), 56, 41);
Add_Goto (Table.States (229), 57, 42);
Add_Goto (Table.States (229), 58, 43);
Add_Goto (Table.States (229), 59, 44);
Add_Goto (Table.States (229), 69, 45);
Add_Goto (Table.States (229), 70, 258);
Add_Goto (Table.States (229), 71, 47);
Table.States (229).Kernel := To_Vector (((41, 14, 1, False), (71, 14, 1, False)));
Table.States (229).Minimal_Complete_Actions := To_Vector (((Reduce, 70, 0), (Shift, 21, 257)));
Table.States (230).Action_List.Set_Capacity (5);
Add_Action (Table.States (230), (4, 27, 31, 33, 34), (58, 1), 1, null, identifier_opt_1_check'Access);
Table.States (230).Kernel := To_Vector ((0 => (58, 37, 0, False)));
Table.States (230).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 1)));
Table.States (231).Action_List.Set_Capacity (3);
Add_Action (Table.States (231), (4, 27, 34), (69, 0), 1, null, null);
Table.States (231).Kernel := To_Vector ((0 => (69, 38, 0, False)));
Table.States (231).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (232).Action_List.Set_Capacity (3);
Add_Action (Table.States (232), (4, 27, 34), (71, 2), 1, null, null);
Table.States (232).Kernel := To_Vector ((0 => (71, 41, 0, False)));
Table.States (232).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 1)));
Table.States (233).Action_List.Set_Capacity (1);
Add_Action (Table.States (233), 33, 259);
Table.States (233).Kernel := To_Vector (((44, 43, 2, False), (44, 43, 5, False)));
Table.States (233).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 33, 259)));
Table.States (234).Action_List.Set_Capacity (3);
Add_Action (Table.States (234), (4, 27, 34), (69, 3), 1, null, null);
Table.States (234).Kernel := To_Vector ((0 => (69, 44, 0, False)));
Table.States (234).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (235).Action_List.Set_Capacity (3);
Add_Action (Table.States (235), 4, 260);
Add_Action (Table.States (235), 27, 261);
Add_Action (Table.States (235), 34, 262);
Table.States (235).Kernel := To_Vector (((42, 56, 1, False), (42, 56, 3, False), (56, 56, 1, True)));
Table.States (235).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 262)));
Table.States (236).Action_List.Set_Capacity (3);
Add_Action (Table.States (236), (4, 27, 34), (69, 2), 1, null, null);
Table.States (236).Kernel := To_Vector ((0 => (69, 57, 0, False)));
Table.States (236).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 69, 1)));
Table.States (237).Action_List.Set_Capacity (5);
Add_Action (Table.States (237), (4, 27, 31, 33, 34), (59, 0), 1, null, null);
Table.States (237).Kernel := To_Vector ((0 => (59, 58, 0, False)));
Table.States (237).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 1)));
Table.States (238).Action_List.Set_Capacity (5);
Add_Action (Table.States (238), 4, Reduce, (69, 1), 1, null, null);
Add_Action (Table.States (238), 27, Reduce, (69, 1), 1, null, null);
Add_Action (Table.States (238), 31, 263);
Add_Action (Table.States (238), 33, Reduce, (43, 1), 1, null, null);
Add_Action (Table.States (238), 34, Reduce, (69, 1), 1, null, null);
Table.States (238).Kernel := To_Vector (((43, 59, 0, False), (59, 59, 2, True), (69, 59, 0, False)));
Table.States (238).Minimal_Complete_Actions := To_Vector (((Reduce, 43, 1), (Reduce, 69, 1)));
Table.States (239).Action_List.Set_Capacity (3);
Add_Action (Table.States (239), (4, 27, 34), (71, 0), 1, null, null);
Table.States (239).Kernel := To_Vector ((0 => (71, 69, 0, False)));
Table.States (239).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 1)));
Table.States (240).Action_List.Set_Capacity (3);
Add_Action (Table.States (240), (4, 27, 34), (56, 0), 1, null, null);
Table.States (240).Kernel := To_Vector ((0 => (56, 71, 0, False)));
Table.States (240).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 1)));
Table.States (241).Action_List.Set_Capacity (2);
Add_Action (Table.States (241), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (241), 37, 144);
Table.States (241).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (241), 58, 264);
Table.States (241).Kernel := To_Vector ((0 => (62, 8, 1, False)));
Table.States (241).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 0)));
Table.States (242).Action_List.Set_Capacity (7);
Add_Action (Table.States (242), (6, 8, 12, 16, 18, 23, 37), (61, 0), 7, package_spec_0'Access,
package_spec_0_check'Access);
Table.States (242).Kernel := To_Vector ((0 => (61, 34, 0, False)));
Table.States (242).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 61, 7)));
Table.States (243).Action_List.Set_Capacity (1);
Add_Action (Table.States (243), 21, 265);
Table.States (243).Kernel := To_Vector ((0 => (44, 38, 1, False)));
Table.States (243).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 265)));
Table.States (244).Action_List.Set_Capacity (2);
Add_Action (Table.States (244), 13, 266);
Add_Action (Table.States (244), 31, 121);
Table.States (244).Kernel := To_Vector (((45, 59, 4, False), (59, 59, 2, True)));
Table.States (244).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 13, 266)));
Table.States (245).Action_List.Set_Capacity (1);
Add_Action (Table.States (245), 14, 267);
Table.States (245).Kernel := To_Vector ((0 => (42, 10, 5, False)));
Table.States (245).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 267)));
Table.States (246).Action_List.Set_Capacity (2);
Add_Action (Table.States (246), 14, 268);
Add_Action (Table.States (246), 24, 269);
Table.States (246).Kernel := To_Vector (((42, 37, 2, False), (42, 37, 4, False), (42, 37, 6, False)));
Table.States (246).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 24, 269)));
Table.States (247).Action_List.Set_Capacity (8);
Add_Action (Table.States (247), (6, 8, 12, 16, 18, 23, 25, 37), (67, 4), 2,
simple_declarative_item_4'Access, null);
Table.States (247).Kernel := To_Vector ((0 => (67, 34, 0, False)));
Table.States (247).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 67, 2)));
Table.States (248).Action_List.Set_Capacity (3);
Add_Action (Table.States (248), 9, 270);
Add_Action (Table.States (248), 13, 271);
Add_Action (Table.States (248), 20, 272);
Table.States (248).Kernel := To_Vector (((61, 58, 3, False), (62, 58, 4, False), (63, 58, 2, False)));
Table.States (248).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 20, 272)));
Table.States (249).Action_List.Set_Capacity (1);
Add_Action (Table.States (249), 13, 273);
Table.States (249).Kernel := To_Vector ((0 => (72, 37, 4, False)));
Table.States (249).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 13, 273)));
Table.States (250).Action_List.Set_Capacity (1);
Add_Action (Table.States (250), 37, 274);
Table.States (250).Kernel := To_Vector ((0 => (67, 28, 3, False)));
Table.States (250).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 274)));
Table.States (251).Action_List.Set_Capacity (10);
Add_Action (Table.States (251), 10, 130);
Add_Action (Table.States (251), 11, 131);
Add_Action (Table.States (251), 14, 132);
Add_Action (Table.States (251), 19, 9);
Add_Action (Table.States (251), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (251), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (251), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (251), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (251), 37, 133);
Add_Action (Table.States (251), 38, 134);
Table.States (251).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (251), 41, 135);
Add_Goto (Table.States (251), 43, 136);
Add_Goto (Table.States (251), 44, 137);
Add_Goto (Table.States (251), 56, 275);
Add_Goto (Table.States (251), 57, 139);
Add_Goto (Table.States (251), 58, 140);
Add_Goto (Table.States (251), 59, 141);
Add_Goto (Table.States (251), 69, 142);
Add_Goto (Table.States (251), 71, 143);
Table.States (251).Kernel := To_Vector ((0 => (67, 29, 1, False)));
Table.States (251).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (252).Action_List.Set_Capacity (8);
Add_Action (Table.States (252), (6, 8, 12, 16, 18, 23, 25, 37), (52, 1), 2, null, null);
Table.States (252).Kernel := To_Vector ((0 => (52, 51, 0, True)));
Table.States (252).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 52, 2)));
Table.States (252).Minimal_Complete_Actions_Recursive := True;
Table.States (253).Action_List.Set_Capacity (7);
Add_Action (Table.States (253), (6, 8, 12, 16, 18, 23, 37), (42, 3), 8, attribute_declaration_3'Access,
null);
Table.States (253).Kernel := To_Vector ((0 => (42, 34, 0, False)));
Table.States (253).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 42, 8)));
Table.States (254).Action_List.Set_Capacity (11);
Add_Action (Table.States (254), 10, 32);
Add_Action (Table.States (254), 11, 33);
Add_Action (Table.States (254), 14, 34);
Add_Action (Table.States (254), 19, 9);
Add_Action (Table.States (254), 21, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (254), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (254), 30, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (254), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (254), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (254), 37, 36);
Add_Action (Table.States (254), 38, 37);
Table.States (254).Goto_List.Set_Capacity (10);
Add_Goto (Table.States (254), 41, 38);
Add_Goto (Table.States (254), 43, 39);
Add_Goto (Table.States (254), 44, 40);
Add_Goto (Table.States (254), 56, 41);
Add_Goto (Table.States (254), 57, 42);
Add_Goto (Table.States (254), 58, 43);
Add_Goto (Table.States (254), 59, 44);
Add_Goto (Table.States (254), 69, 45);
Add_Goto (Table.States (254), 70, 258);
Add_Goto (Table.States (254), 71, 47);
Table.States (254).Kernel := To_Vector ((0 => (41, 14, 1, False)));
Table.States (254).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 70, 0)));
Table.States (255).Action_List.Set_Capacity (3);
Add_Action (Table.States (255), (4, 27, 34), (57, 0), 2, null, null);
Table.States (255).Kernel := To_Vector ((0 => (57, 41, 0, False)));
Table.States (255).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 57, 2)));
Table.States (256).Action_List.Set_Capacity (3);
Add_Action (Table.States (256), (4, 27, 34), (57, 1), 2, null, null);
Table.States (256).Kernel := To_Vector ((0 => (57, 41, 0, False)));
Table.States (256).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 57, 2)));
Table.States (257).Action_List.Set_Capacity (3);
Add_Action (Table.States (257), (4, 27, 34), (71, 1), 2, null, null);
Table.States (257).Kernel := To_Vector ((0 => (71, 21, 0, False)));
Table.States (257).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 2)));
Table.States (258).Action_List.Set_Capacity (2);
Add_Action (Table.States (258), 21, 276);
Add_Action (Table.States (258), 30, 67);
Table.States (258).Kernel := To_Vector (((41, 70, 1, False), (70, 70, 1, True)));
Table.States (258).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 276)));
Table.States (259).Action_List.Set_Capacity (1);
Add_Action (Table.States (259), 37, 277);
Table.States (259).Kernel := To_Vector (((44, 33, 1, False), (44, 33, 4, False)));
Table.States (259).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 277)));
Table.States (260).Action_List.Set_Capacity (1);
Add_Action (Table.States (260), 36, 278);
Table.States (260).Kernel := To_Vector ((0 => (42, 4, 2, False)));
Table.States (260).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 36, 278)));
Table.States (261).Action_List.Set_Capacity (11);
Add_Action (Table.States (261), 4, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (261), 10, 227);
Add_Action (Table.States (261), 11, 228);
Add_Action (Table.States (261), 14, 229);
Add_Action (Table.States (261), 19, 9);
Add_Action (Table.States (261), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (261), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (261), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (261), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (261), 37, 230);
Add_Action (Table.States (261), 38, 231);
Table.States (261).Goto_List.Set_Capacity (8);
Add_Goto (Table.States (261), 41, 232);
Add_Goto (Table.States (261), 43, 233);
Add_Goto (Table.States (261), 44, 234);
Add_Goto (Table.States (261), 57, 236);
Add_Goto (Table.States (261), 58, 237);
Add_Goto (Table.States (261), 59, 238);
Add_Goto (Table.States (261), 69, 239);
Add_Goto (Table.States (261), 71, 279);
Table.States (261).Kernel := To_Vector ((0 => (56, 27, 0, True)));
Table.States (261).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 71, 0)));
Table.States (261).Minimal_Complete_Actions_Recursive := True;
Table.States (262).Action_List.Set_Capacity (7);
Add_Action (Table.States (262), (6, 8, 12, 16, 18, 23, 37), (42, 1), 8, attribute_declaration_1'Access,
null);
Table.States (262).Kernel := To_Vector ((0 => (42, 34, 0, False)));
Table.States (262).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 42, 8)));
Table.States (263).Action_List.Set_Capacity (1);
Add_Action (Table.States (263), 37, 280);
Table.States (263).Kernel := To_Vector ((0 => (59, 31, 1, True)));
Table.States (263).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 37, 280)));
Table.States (263).Minimal_Complete_Actions_Recursive := True;
Table.States (264).Action_List.Set_Capacity (1);
Add_Action (Table.States (264), 34, 281);
Table.States (264).Kernel := To_Vector ((0 => (62, 58, 1, False)));
Table.States (264).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 281)));
Table.States (265).Action_List.Set_Capacity (2);
Add_Action (Table.States (265), (27, 34), (44, 1), 6, null, null);
Table.States (265).Kernel := To_Vector ((0 => (44, 21, 0, False)));
Table.States (265).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 44, 6)));
Table.States (266).Action_List.Set_Capacity (2);
Add_Action (Table.States (266), 8, Reduce, (47, 0), 0, null, null);
Add_Action (Table.States (266), 25, 147);
Add_Conflict (Table.States (266), 25, (47, 0), 0, null, null);
Table.States (266).Goto_List.Set_Capacity (2);
Add_Goto (Table.States (266), 46, 148);
Add_Goto (Table.States (266), 47, 282);
Table.States (266).Kernel := To_Vector ((0 => (45, 13, 3, False)));
Table.States (266).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 47, 0)));
Table.States (267).Action_List.Set_Capacity (1);
Add_Action (Table.States (267), 38, 283);
Table.States (267).Kernel := To_Vector ((0 => (42, 14, 4, False)));
Table.States (267).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 38, 283)));
Table.States (268).Action_List.Set_Capacity (3);
Add_Action (Table.States (268), 17, 152);
Add_Action (Table.States (268), 21, Reduce, (54, 0), 0, null, null);
Add_Action (Table.States (268), 38, 153);
Table.States (268).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (268), 54, 284);
Table.States (268).Kernel := To_Vector (((42, 14, 3, False), (42, 14, 5, False)));
Table.States (268).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 54, 0)));
Table.States (269).Action_List.Set_Capacity (10);
Add_Action (Table.States (269), 10, 130);
Add_Action (Table.States (269), 11, 131);
Add_Action (Table.States (269), 14, 132);
Add_Action (Table.States (269), 19, 9);
Add_Action (Table.States (269), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (269), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (269), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (269), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (269), 37, 133);
Add_Action (Table.States (269), 38, 134);
Table.States (269).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (269), 41, 135);
Add_Goto (Table.States (269), 43, 136);
Add_Goto (Table.States (269), 44, 137);
Add_Goto (Table.States (269), 56, 285);
Add_Goto (Table.States (269), 57, 139);
Add_Goto (Table.States (269), 58, 140);
Add_Goto (Table.States (269), 59, 141);
Add_Goto (Table.States (269), 69, 142);
Add_Goto (Table.States (269), 71, 143);
Table.States (269).Kernel := To_Vector ((0 => (42, 24, 1, False)));
Table.States (269).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (270).Action_List.Set_Capacity (3);
Add_Action (Table.States (270), 13, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (270), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (270), 37, 105);
Table.States (270).Goto_List.Set_Capacity (2);
Add_Goto (Table.States (270), 58, 106);
Add_Goto (Table.States (270), 59, 286);
Table.States (270).Kernel := To_Vector ((0 => (62, 9, 3, False)));
Table.States (270).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 0)));
Table.States (271).Action_List.Set_Capacity (7);
Add_Action (Table.States (271), 6, 85);
Add_Action (Table.States (271), 8, Reduce, (53, 0), 0, null, null);
Add_Action (Table.States (271), 12, 86);
Add_Action (Table.States (271), 16, 87);
Add_Action (Table.States (271), 18, 88);
Add_Action (Table.States (271), 23, 89);
Add_Action (Table.States (271), 37, 90);
Table.States (271).Goto_List.Set_Capacity (11);
Add_Goto (Table.States (271), 42, 91);
Add_Goto (Table.States (271), 45, 92);
Add_Goto (Table.States (271), 51, 93);
Add_Goto (Table.States (271), 52, 94);
Add_Goto (Table.States (271), 53, 287);
Add_Goto (Table.States (271), 60, 96);
Add_Goto (Table.States (271), 61, 97);
Add_Goto (Table.States (271), 62, 98);
Add_Goto (Table.States (271), 63, 99);
Add_Goto (Table.States (271), 67, 100);
Add_Goto (Table.States (271), 72, 101);
Table.States (271).Kernel := To_Vector ((0 => (61, 13, 2, False)));
Table.States (271).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 53, 0)));
Table.States (272).Action_List.Set_Capacity (3);
Add_Action (Table.States (272), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (272), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (272), 37, 158);
Table.States (272).Goto_List.Set_Capacity (2);
Add_Goto (Table.States (272), 58, 159);
Add_Goto (Table.States (272), 59, 288);
Table.States (272).Kernel := To_Vector ((0 => (63, 20, 1, False)));
Table.States (272).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 0)));
Table.States (273).Action_List.Set_Capacity (1);
Add_Action (Table.States (273), 14, 161);
Table.States (273).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (273), 41, 289);
Table.States (273).Kernel := To_Vector ((0 => (72, 13, 3, False)));
Table.States (273).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 14, 161)));
Table.States (274).Action_List.Set_Capacity (1);
Add_Action (Table.States (274), 29, 290);
Table.States (274).Kernel := To_Vector ((0 => (67, 37, 2, False)));
Table.States (274).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 29, 290)));
Table.States (275).Action_List.Set_Capacity (2);
Add_Action (Table.States (275), 27, 170);
Add_Action (Table.States (275), 34, 291);
Table.States (275).Kernel := To_Vector (((56, 56, 1, True), (67, 56, 1, False)));
Table.States (275).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 291)));
Table.States (276).Action_List.Set_Capacity (3);
Add_Action (Table.States (276), (4, 27, 34), (41, 0), 3, aggregate_g_0'Access, null);
Table.States (276).Kernel := To_Vector ((0 => (41, 21, 0, False)));
Table.States (276).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 41, 3)));
Table.States (277).Action_List.Set_Capacity (4);
Add_Action (Table.States (277), 4, Reduce, (44, 0), 3, null, null);
Add_Action (Table.States (277), 14, 292);
Add_Action (Table.States (277), 27, Reduce, (44, 0), 3, null, null);
Add_Action (Table.States (277), 34, Reduce, (44, 0), 3, null, null);
Table.States (277).Kernel := To_Vector (((44, 37, 0, False), (44, 37, 3, False)));
Table.States (277).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 44, 3)));
Table.States (278).Action_List.Set_Capacity (1);
Add_Action (Table.States (278), 34, 293);
Table.States (278).Kernel := To_Vector ((0 => (42, 36, 1, False)));
Table.States (278).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 293)));
Table.States (279).Action_List.Set_Capacity (3);
Add_Action (Table.States (279), (4, 27, 34), (56, 1), 3, null, null);
Table.States (279).Kernel := To_Vector ((0 => (56, 71, 0, True)));
Table.States (279).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 3)));
Table.States (279).Minimal_Complete_Actions_Recursive := True;
Table.States (280).Action_List.Set_Capacity (5);
Add_Action (Table.States (280), (4, 27, 31, 33, 34), (59, 1), 3, null, null);
Table.States (280).Kernel := To_Vector ((0 => (59, 37, 0, True)));
Table.States (280).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 59, 3)));
Table.States (280).Minimal_Complete_Actions_Recursive := True;
Table.States (281).Action_List.Set_Capacity (7);
Add_Action (Table.States (281), (6, 8, 12, 16, 18, 23, 37), (62, 0), 9, package_extension_0'Access,
package_extension_0_check'Access);
Table.States (281).Kernel := To_Vector ((0 => (62, 34, 0, False)));
Table.States (281).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 62, 9)));
Table.States (282).Action_List.Set_Capacity (2);
Add_Action (Table.States (282), 8, 294);
Add_Action (Table.States (282), 25, 147);
Table.States (282).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (282), 46, 180);
Table.States (282).Kernel := To_Vector (((45, 47, 3, False), (47, 47, 2, True)));
Table.States (282).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 8, 294)));
Table.States (283).Action_List.Set_Capacity (1);
Add_Action (Table.States (283), 21, 295);
Table.States (283).Kernel := To_Vector ((0 => (42, 38, 3, False)));
Table.States (283).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 295)));
Table.States (284).Action_List.Set_Capacity (1);
Add_Action (Table.States (284), 21, 296);
Table.States (284).Kernel := To_Vector (((42, 54, 3, False), (42, 54, 5, False)));
Table.States (284).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 296)));
Table.States (285).Action_List.Set_Capacity (2);
Add_Action (Table.States (285), 27, 170);
Add_Action (Table.States (285), 34, 297);
Table.States (285).Kernel := To_Vector (((42, 56, 1, False), (56, 56, 1, True)));
Table.States (285).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 297)));
Table.States (286).Action_List.Set_Capacity (2);
Add_Action (Table.States (286), 13, 298);
Add_Action (Table.States (286), 31, 121);
Table.States (286).Kernel := To_Vector (((59, 59, 2, True), (62, 59, 3, False)));
Table.States (286).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 13, 298)));
Table.States (287).Action_List.Set_Capacity (1);
Add_Action (Table.States (287), 8, 299);
Table.States (287).Kernel := To_Vector ((0 => (61, 53, 2, False)));
Table.States (287).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 8, 299)));
Table.States (288).Action_List.Set_Capacity (2);
Add_Action (Table.States (288), 31, 186);
Add_Action (Table.States (288), 34, 300);
Table.States (288).Kernel := To_Vector (((59, 59, 2, True), (63, 59, 1, False)));
Table.States (288).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 300)));
Table.States (289).Action_List.Set_Capacity (1);
Add_Action (Table.States (289), 34, 301);
Table.States (289).Kernel := To_Vector ((0 => (72, 41, 1, False)));
Table.States (289).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 301)));
Table.States (290).Action_List.Set_Capacity (10);
Add_Action (Table.States (290), 10, 130);
Add_Action (Table.States (290), 11, 131);
Add_Action (Table.States (290), 14, 132);
Add_Action (Table.States (290), 19, 9);
Add_Action (Table.States (290), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (290), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (290), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (290), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (290), 37, 133);
Add_Action (Table.States (290), 38, 134);
Table.States (290).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (290), 41, 135);
Add_Goto (Table.States (290), 43, 136);
Add_Goto (Table.States (290), 44, 137);
Add_Goto (Table.States (290), 56, 302);
Add_Goto (Table.States (290), 57, 139);
Add_Goto (Table.States (290), 58, 140);
Add_Goto (Table.States (290), 59, 141);
Add_Goto (Table.States (290), 69, 142);
Add_Goto (Table.States (290), 71, 143);
Table.States (290).Kernel := To_Vector ((0 => (67, 29, 1, False)));
Table.States (290).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (291).Action_List.Set_Capacity (8);
Add_Action (Table.States (291), (6, 8, 12, 16, 18, 23, 25, 37), (67, 0), 4,
simple_declarative_item_0'Access, null);
Table.States (291).Kernel := To_Vector ((0 => (67, 34, 0, False)));
Table.States (291).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 67, 4)));
Table.States (292).Action_List.Set_Capacity (1);
Add_Action (Table.States (292), 38, 303);
Table.States (292).Kernel := To_Vector ((0 => (44, 14, 2, False)));
Table.States (292).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 38, 303)));
Table.States (293).Action_List.Set_Capacity (7);
Add_Action (Table.States (293), (6, 8, 12, 16, 18, 23, 37), (42, 2), 10, attribute_declaration_2'Access,
null);
Table.States (293).Kernel := To_Vector ((0 => (42, 34, 0, False)));
Table.States (293).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 42, 10)));
Table.States (294).Action_List.Set_Capacity (1);
Add_Action (Table.States (294), 6, 304);
Table.States (294).Kernel := To_Vector ((0 => (45, 8, 2, False)));
Table.States (294).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 6, 304)));
Table.States (295).Action_List.Set_Capacity (1);
Add_Action (Table.States (295), 24, 305);
Table.States (295).Kernel := To_Vector ((0 => (42, 21, 2, False)));
Table.States (295).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 24, 305)));
Table.States (296).Action_List.Set_Capacity (1);
Add_Action (Table.States (296), 24, 306);
Table.States (296).Kernel := To_Vector (((42, 21, 2, False), (42, 21, 4, False)));
Table.States (296).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 24, 306)));
Table.States (297).Action_List.Set_Capacity (8);
Add_Action (Table.States (297), (6, 8, 12, 16, 18, 23, 25, 37), (42, 0), 5, attribute_declaration_0'Access,
null);
Table.States (297).Kernel := To_Vector ((0 => (42, 34, 0, False)));
Table.States (297).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 42, 5)));
Table.States (298).Action_List.Set_Capacity (7);
Add_Action (Table.States (298), 6, 85);
Add_Action (Table.States (298), 8, Reduce, (53, 0), 0, null, null);
Add_Action (Table.States (298), 12, 86);
Add_Action (Table.States (298), 16, 87);
Add_Action (Table.States (298), 18, 88);
Add_Action (Table.States (298), 23, 89);
Add_Action (Table.States (298), 37, 90);
Table.States (298).Goto_List.Set_Capacity (11);
Add_Goto (Table.States (298), 42, 91);
Add_Goto (Table.States (298), 45, 92);
Add_Goto (Table.States (298), 51, 93);
Add_Goto (Table.States (298), 52, 94);
Add_Goto (Table.States (298), 53, 307);
Add_Goto (Table.States (298), 60, 96);
Add_Goto (Table.States (298), 61, 97);
Add_Goto (Table.States (298), 62, 98);
Add_Goto (Table.States (298), 63, 99);
Add_Goto (Table.States (298), 67, 100);
Add_Goto (Table.States (298), 72, 101);
Table.States (298).Kernel := To_Vector ((0 => (62, 13, 2, False)));
Table.States (298).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 53, 0)));
Table.States (299).Action_List.Set_Capacity (2);
Add_Action (Table.States (299), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (299), 37, 144);
Table.States (299).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (299), 58, 308);
Table.States (299).Kernel := To_Vector ((0 => (61, 8, 1, False)));
Table.States (299).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 0)));
Table.States (300).Action_List.Set_Capacity (8);
Add_Action (Table.States (300), (6, 8, 12, 16, 18, 23, 25, 37), (63, 0), 5, package_renaming_0'Access,
null);
Table.States (300).Kernel := To_Vector ((0 => (63, 34, 0, False)));
Table.States (300).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 63, 5)));
Table.States (301).Action_List.Set_Capacity (8);
Add_Action (Table.States (301), (6, 8, 12, 16, 18, 23, 25, 37), (72, 0), 5,
typed_string_declaration_0'Access, null);
Table.States (301).Kernel := To_Vector ((0 => (72, 34, 0, False)));
Table.States (301).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 72, 5)));
Table.States (302).Action_List.Set_Capacity (2);
Add_Action (Table.States (302), 27, 170);
Add_Action (Table.States (302), 34, 309);
Table.States (302).Kernel := To_Vector (((56, 56, 1, True), (67, 56, 1, False)));
Table.States (302).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 309)));
Table.States (303).Action_List.Set_Capacity (1);
Add_Action (Table.States (303), 21, 310);
Table.States (303).Kernel := To_Vector ((0 => (44, 38, 1, False)));
Table.States (303).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 21, 310)));
Table.States (304).Action_List.Set_Capacity (1);
Add_Action (Table.States (304), 34, 311);
Table.States (304).Kernel := To_Vector ((0 => (45, 6, 1, False)));
Table.States (304).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 311)));
Table.States (305).Action_List.Set_Capacity (10);
Add_Action (Table.States (305), 10, 130);
Add_Action (Table.States (305), 11, 131);
Add_Action (Table.States (305), 14, 132);
Add_Action (Table.States (305), 19, 9);
Add_Action (Table.States (305), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (305), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (305), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (305), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (305), 37, 133);
Add_Action (Table.States (305), 38, 134);
Table.States (305).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (305), 41, 135);
Add_Goto (Table.States (305), 43, 136);
Add_Goto (Table.States (305), 44, 137);
Add_Goto (Table.States (305), 56, 312);
Add_Goto (Table.States (305), 57, 139);
Add_Goto (Table.States (305), 58, 140);
Add_Goto (Table.States (305), 59, 141);
Add_Goto (Table.States (305), 69, 142);
Add_Goto (Table.States (305), 71, 143);
Table.States (305).Kernel := To_Vector ((0 => (42, 24, 1, False)));
Table.States (305).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (306).Action_List.Set_Capacity (11);
Add_Action (Table.States (306), 4, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (306), 10, 227);
Add_Action (Table.States (306), 11, 228);
Add_Action (Table.States (306), 14, 229);
Add_Action (Table.States (306), 19, 9);
Add_Action (Table.States (306), 27, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (306), 31, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (306), 33, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (306), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (306), 37, 230);
Add_Action (Table.States (306), 38, 231);
Table.States (306).Goto_List.Set_Capacity (9);
Add_Goto (Table.States (306), 41, 232);
Add_Goto (Table.States (306), 43, 233);
Add_Goto (Table.States (306), 44, 234);
Add_Goto (Table.States (306), 56, 313);
Add_Goto (Table.States (306), 57, 236);
Add_Goto (Table.States (306), 58, 237);
Add_Goto (Table.States (306), 59, 238);
Add_Goto (Table.States (306), 69, 239);
Add_Goto (Table.States (306), 71, 240);
Table.States (306).Kernel := To_Vector (((42, 24, 1, False), (42, 24, 3, False)));
Table.States (306).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 56, 0)));
Table.States (307).Action_List.Set_Capacity (1);
Add_Action (Table.States (307), 8, 314);
Table.States (307).Kernel := To_Vector ((0 => (62, 53, 2, False)));
Table.States (307).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 8, 314)));
Table.States (308).Action_List.Set_Capacity (1);
Add_Action (Table.States (308), 34, 315);
Table.States (308).Kernel := To_Vector ((0 => (61, 58, 1, False)));
Table.States (308).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 315)));
Table.States (309).Action_List.Set_Capacity (8);
Add_Action (Table.States (309), (6, 8, 12, 16, 18, 23, 25, 37), (67, 1), 6,
simple_declarative_item_1'Access, null);
Table.States (309).Kernel := To_Vector ((0 => (67, 34, 0, False)));
Table.States (309).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 67, 6)));
Table.States (310).Action_List.Set_Capacity (3);
Add_Action (Table.States (310), (4, 27, 34), (44, 1), 6, null, null);
Table.States (310).Kernel := To_Vector ((0 => (44, 21, 0, False)));
Table.States (310).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 44, 6)));
Table.States (311).Action_List.Set_Capacity (8);
Add_Action (Table.States (311), (6, 8, 12, 16, 18, 23, 25, 37), (45, 0), 7, case_statement_0'Access, null);
Table.States (311).Kernel := To_Vector ((0 => (45, 34, 0, False)));
Table.States (311).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 45, 7)));
Table.States (312).Action_List.Set_Capacity (2);
Add_Action (Table.States (312), 27, 170);
Add_Action (Table.States (312), 34, 316);
Table.States (312).Kernel := To_Vector (((42, 56, 1, False), (56, 56, 1, True)));
Table.States (312).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 316)));
Table.States (313).Action_List.Set_Capacity (3);
Add_Action (Table.States (313), 4, 317);
Add_Action (Table.States (313), 27, 261);
Add_Action (Table.States (313), 34, 318);
Table.States (313).Kernel := To_Vector (((42, 56, 1, False), (42, 56, 3, False), (56, 56, 1, True)));
Table.States (313).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 318)));
Table.States (314).Action_List.Set_Capacity (2);
Add_Action (Table.States (314), 34, Reduce, (58, 0), 0, null, null);
Add_Action (Table.States (314), 37, 144);
Table.States (314).Goto_List.Set_Capacity (1);
Add_Goto (Table.States (314), 58, 319);
Table.States (314).Kernel := To_Vector ((0 => (62, 8, 1, False)));
Table.States (314).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 58, 0)));
Table.States (315).Action_List.Set_Capacity (8);
Add_Action (Table.States (315), (6, 8, 12, 16, 18, 23, 25, 37), (61, 0), 7, package_spec_0'Access,
package_spec_0_check'Access);
Table.States (315).Kernel := To_Vector ((0 => (61, 34, 0, False)));
Table.States (315).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 61, 7)));
Table.States (316).Action_List.Set_Capacity (8);
Add_Action (Table.States (316), (6, 8, 12, 16, 18, 23, 25, 37), (42, 3), 8, attribute_declaration_3'Access,
null);
Table.States (316).Kernel := To_Vector ((0 => (42, 34, 0, False)));
Table.States (316).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 42, 8)));
Table.States (317).Action_List.Set_Capacity (1);
Add_Action (Table.States (317), 36, 320);
Table.States (317).Kernel := To_Vector ((0 => (42, 4, 2, False)));
Table.States (317).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 36, 320)));
Table.States (318).Action_List.Set_Capacity (8);
Add_Action (Table.States (318), (6, 8, 12, 16, 18, 23, 25, 37), (42, 1), 8, attribute_declaration_1'Access,
null);
Table.States (318).Kernel := To_Vector ((0 => (42, 34, 0, False)));
Table.States (318).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 42, 8)));
Table.States (319).Action_List.Set_Capacity (1);
Add_Action (Table.States (319), 34, 321);
Table.States (319).Kernel := To_Vector ((0 => (62, 58, 1, False)));
Table.States (319).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 321)));
Table.States (320).Action_List.Set_Capacity (1);
Add_Action (Table.States (320), 34, 322);
Table.States (320).Kernel := To_Vector ((0 => (42, 36, 1, False)));
Table.States (320).Minimal_Complete_Actions := To_Vector ((0 => (Shift, 34, 322)));
Table.States (321).Action_List.Set_Capacity (8);
Add_Action (Table.States (321), (6, 8, 12, 16, 18, 23, 25, 37), (62, 0), 9, package_extension_0'Access,
package_extension_0_check'Access);
Table.States (321).Kernel := To_Vector ((0 => (62, 34, 0, False)));
Table.States (321).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 62, 9)));
Table.States (322).Action_List.Set_Capacity (8);
Add_Action (Table.States (322), (6, 8, 12, 16, 18, 23, 25, 37), (42, 2), 10,
attribute_declaration_2'Access, null);
Table.States (322).Kernel := To_Vector ((0 => (42, 34, 0, False)));
Table.States (322).Minimal_Complete_Actions := To_Vector ((0 => (Reduce, 42, 10)));
end Subr_3;
begin
Subr_1;
Subr_2;
Subr_3;
Table.Error_Action := new Parse_Action_Node'((Verb => Error), null);
end;
WisiToken.Parse.LR.Parser.New_Parser
(Parser,
Trace,
Lexer.New_Lexer (Trace.Descriptor),
Table,
Language_Fixes,
Language_Matching_Begin_Tokens,
Language_String_ID_Set,
User_Data,
Max_Parallel => 15,
Terminate_Same_State => True);
end Create_Parser;
end Gpr_Process_Main;
|
xeenta/learning-ada | Ada | 537 | adb | with Ada.Text_IO; use Ada.Text_IO;
procedure Loopinv is
A : array (1 .. 20) of Integer;
package IO is new Integer_IO (Integer);
begin
-- let's fill the array with data
for I in A'Range loop
A (I) := (if I mod 2 = 0 then I-1 else I);
IO.Put (A (I));
end loop;
New_Line (2);
for I in A'First .. A'Last / 2 loop
for J in I + 1 .. I + A'Last / 2 loop
pragma Loop_Invariant (A (I) <= A (J));
IO.Put (A (I)); IO.Put (A (J)); New_Line;
end loop;
end loop;
end Loopinv;
|
reznikmm/matreshka | Ada | 110,751 | adb | ------------------------------------------------------------------------------
-- --
-- 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.
------------------------------------------------------------------------------
with AMF.DC.Holders.Alignment_Kinds;
with AMF.DC.Holders.Bounds;
with AMF.DC.Holders.Dimensions;
with AMF.DC.Holders.Points;
with AMF.DC.Point_Collections.Internals;
with AMF.DG.Canvases;
with AMF.DG.Circles;
with AMF.DG.Clip_Paths;
with AMF.DG.Ellipses;
with AMF.DG.Fills.Collections;
with AMF.DG.Gradient_Stop_Collections.Internals;
with AMF.DG.Graphical_Elements.Collections;
with AMF.DG.Groups;
with AMF.DG.Images;
with AMF.DG.Linear_Gradients;
with AMF.DG.Lines;
with AMF.DG.Marked_Elements;
with AMF.DG.Markers.Collections;
with AMF.DG.Path_Command_Collections.Internals;
with AMF.DG.Paths;
with AMF.DG.Patterns;
with AMF.DG.Polygons;
with AMF.DG.Polylines;
with AMF.DG.Radial_Gradients;
with AMF.DG.Rectangles;
with AMF.DG.Styles.Collections;
with AMF.DG.Texts;
with AMF.DG.Transform_Collections.Internals;
with AMF.Holders.Elements;
with AMF.Holders.Reals;
with AMF.Internals.Helpers;
with AMF.Internals.Holders.DG_Holders;
with AMF.Internals.Tables.DD_Element_Table;
with AMF.Internals.Tables.DD_Types;
with AMF.Internals.Tables.DG_Metamodel;
with AMF.Real_Collections.Internals;
with League.Holders.Booleans;
package body AMF.Internals.Tables.DD_Reflection is
---------
-- Get --
---------
function Get
(Self : AMF.Internals.AMF_Element;
Property : CMOF_Element) return League.Holders.Holder
is
function DG_Canvas_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Canvas class.
function DG_Circle_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Circle class.
function DG_Clip_Path_Get return League.Holders.Holder;
-- Returns attribute's value of instance of ClipPath class.
function DG_Ellipse_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Ellipse class.
function DG_Group_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Group class.
function DG_Image_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Image class.
function DG_Line_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Line class.
function DG_Linear_Gradient_Get return League.Holders.Holder;
-- Returns attribute's value of instance of LinearGradient class.
function DG_Marked_Element_Get return League.Holders.Holder;
-- Returns attribute's value of instance of MarkedElement class.
function DG_Marker_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Marker class.
function DG_Path_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Path class.
function DG_Pattern_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Pattern class.
function DG_Polygon_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Polygon class.
function DG_Polyline_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Polyline class.
function DG_Radial_Gradient_Get return League.Holders.Holder;
-- Returns attribute's value of instance of RadialGradient class.
function DG_Rectangle_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Rectangle class.
function DG_Style_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Style class.
function DG_Text_Get return League.Holders.Holder;
-- Returns attribute's value of instance of Text class.
-------------------
-- DG_Canvas_Get --
-------------------
function DG_Canvas_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Canvas_Background_Color then
-- Canvas::backgroundColor : Color
return
AMF.DC.Holders.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Background_Color);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Canvas_Background_Fill_A_Canvas then
-- Canvas::backgroundFill : Fill
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Fills.DG_Fill_Access'
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Background_Fill));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Group_Member_Graphical_Element_Group then
-- Group::member : GraphicalElement
return
AMF.DG.Graphical_Elements.Collections.DG_Graphical_Element_Collections.Internals.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Member);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Canvas_Packaged_Fill_Fill_Canvas then
-- Canvas::packagedFill : Fill
return
AMF.DG.Fills.Collections.DG_Fill_Collections.Internals.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Packaged_Fill);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Canvas_Packaged_Marker_Marker_Canvas then
-- Canvas::packagedMarker : Marker
return
AMF.DG.Markers.Collections.DG_Marker_Collections.Internals.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Packaged_Marker);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Canvas_Packaged_Style_A_Canvas then
-- Canvas::packagedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Packaged_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Canvas_Get;
-------------------
-- DG_Circle_Get --
-------------------
function DG_Circle_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Circle_Center then
-- Circle::center : Point
return
AMF.DC.Holders.Points.To_Holder
(AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Center);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Circle_Radius then
-- Circle::radius : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Radius);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Circle_Get;
----------------------
-- DG_Clip_Path_Get --
----------------------
function DG_Clip_Path_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Clip_Path_Clipped_Element_Graphical_Element_Clip_Path then
-- ClipPath::clippedElement : GraphicalElement
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Graphical_Elements.DG_Graphical_Element_Access'
(AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clipped_Element));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Group_Member_Graphical_Element_Group then
-- Group::member : GraphicalElement
return
AMF.DG.Graphical_Elements.Collections.DG_Graphical_Element_Collections.Internals.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Member);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Clip_Path_Get;
--------------------
-- DG_Ellipse_Get --
--------------------
function DG_Ellipse_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Ellipse_Center then
-- Ellipse::center : Point
return
AMF.DC.Holders.Points.To_Holder
(AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Center);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Ellipse_Radii then
-- Ellipse::radii : Dimension
return
AMF.DC.Holders.Dimensions.To_Holder
(AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Radii);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Ellipse_Get;
------------------
-- DG_Group_Get --
------------------
function DG_Group_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Groups.DG_Group_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Groups.DG_Group_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Groups.DG_Group_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Group_Member_Graphical_Element_Group then
-- Group::member : GraphicalElement
return
AMF.DG.Graphical_Elements.Collections.DG_Graphical_Element_Collections.Internals.To_Holder
(AMF.DG.Groups.DG_Group_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Member);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Groups.DG_Group_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Groups.DG_Group_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Group_Get;
------------------
-- DG_Image_Get --
------------------
function DG_Image_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Image_Bounds then
-- Image::bounds : Bounds
return
AMF.DC.Holders.Bounds.To_Holder
(AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Bounds);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Image_Is_Aspect_Ratio_Preserved then
-- Image::isAspectRatioPreserved : Boolean
return
League.Holders.Booleans.To_Holder
(AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Is_Aspect_Ratio_Preserved);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Image_Source then
-- Image::source : String
return
League.Holders.To_Holder
(AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Source);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Image_Get;
-----------------
-- DG_Line_Get --
-----------------
function DG_Line_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Line_End then
-- Line::end : Point
return
AMF.DC.Holders.Points.To_Holder
(AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_End);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_End_Marker_A_Marked_Element then
-- MarkedElement::endMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_End_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Mid_Marker_A_Marked_Element then
-- MarkedElement::midMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Mid_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Line_Start then
-- Line::start : Point
return
AMF.DC.Holders.Points.To_Holder
(AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Start);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Start_Marker_A_Marked_Element then
-- MarkedElement::startMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Start_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Line_Get;
----------------------------
-- DG_Linear_Gradient_Get --
----------------------------
function DG_Linear_Gradient_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Fill_Canvas_Canvas_Packaged_Fill then
-- Fill::canvas : Canvas
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access'
(AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Canvas));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Gradient_Stop then
-- Gradient::stop : GradientStop
return
AMF.DG.Gradient_Stop_Collections.Internals.To_Holder
(AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Stop);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Fill_Transform then
-- Fill::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_X1 then
-- LinearGradient::x1 : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_X1);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_X2 then
-- LinearGradient::x2 : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_X2);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_Y1 then
-- LinearGradient::y1 : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Y1);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_Y2 then
-- LinearGradient::y2 : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Y2);
else
raise Program_Error;
end if;
end DG_Linear_Gradient_Get;
---------------------------
-- DG_Marked_Element_Get --
---------------------------
function DG_Marked_Element_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_End_Marker_A_Marked_Element then
-- MarkedElement::endMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_End_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Mid_Marker_A_Marked_Element then
-- MarkedElement::midMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Mid_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Start_Marker_A_Marked_Element then
-- MarkedElement::startMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Start_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Marked_Element_Get;
-------------------
-- DG_Marker_Get --
-------------------
function DG_Marker_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marker_Canvas_Canvas_Packaged_Marker then
-- Marker::canvas : Canvas
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access'
(AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Canvas));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Group_Member_Graphical_Element_Group then
-- Group::member : GraphicalElement
return
AMF.DG.Graphical_Elements.Collections.DG_Graphical_Element_Collections.Internals.To_Holder
(AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Member);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marker_Reference then
-- Marker::reference : Point
return
AMF.DC.Holders.Points.To_Holder
(AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Reference);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marker_Size then
-- Marker::size : Dimension
return
AMF.DC.Holders.Dimensions.To_Holder
(AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Size);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Marker_Get;
-----------------
-- DG_Path_Get --
-----------------
function DG_Path_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Path_Command then
-- Path::command : PathCommand
return
AMF.DG.Path_Command_Collections.Internals.To_Holder
(AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Command);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_End_Marker_A_Marked_Element then
-- MarkedElement::endMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_End_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Mid_Marker_A_Marked_Element then
-- MarkedElement::midMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Mid_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Start_Marker_A_Marked_Element then
-- MarkedElement::startMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Start_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Path_Get;
--------------------
-- DG_Pattern_Get --
--------------------
function DG_Pattern_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Pattern_Bounds then
-- Pattern::bounds : Bounds
return
AMF.DC.Holders.Bounds.To_Holder
(AMF.DG.Patterns.DG_Pattern_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Bounds);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Fill_Canvas_Canvas_Packaged_Fill then
-- Fill::canvas : Canvas
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access'
(AMF.DG.Patterns.DG_Pattern_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Canvas));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Pattern_Tile_A_Pattern then
-- Pattern::tile : GraphicalElement
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Graphical_Elements.DG_Graphical_Element_Access'
(AMF.DG.Patterns.DG_Pattern_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Tile));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Fill_Transform then
-- Fill::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Patterns.DG_Pattern_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Pattern_Get;
--------------------
-- DG_Polygon_Get --
--------------------
function DG_Polygon_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_End_Marker_A_Marked_Element then
-- MarkedElement::endMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_End_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Mid_Marker_A_Marked_Element then
-- MarkedElement::midMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Mid_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Polygon_Point then
-- Polygon::point : Point
return
AMF.DC.Point_Collections.Internals.To_Holder
(AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Point);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Start_Marker_A_Marked_Element then
-- MarkedElement::startMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Start_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Polygon_Get;
---------------------
-- DG_Polyline_Get --
---------------------
function DG_Polyline_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_End_Marker_A_Marked_Element then
-- MarkedElement::endMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_End_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Mid_Marker_A_Marked_Element then
-- MarkedElement::midMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Mid_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Polyline_Point then
-- Polyline::point : Point
return
AMF.DC.Point_Collections.Internals.To_Holder
(AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Point);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Start_Marker_A_Marked_Element then
-- MarkedElement::startMarker : Marker
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Markers.DG_Marker_Access'
(AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Start_Marker));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Polyline_Get;
----------------------------
-- DG_Radial_Gradient_Get --
----------------------------
function DG_Radial_Gradient_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Fill_Canvas_Canvas_Packaged_Fill then
-- Fill::canvas : Canvas
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Canvases.DG_Canvas_Access'
(AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Canvas));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Center_X then
-- RadialGradient::centerX : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Center_X);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Center_Y then
-- RadialGradient::centerY : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Center_Y);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Focus_X then
-- RadialGradient::focusX : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Focus_X);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Focus_Y then
-- RadialGradient::focusY : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Focus_Y);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Radius then
-- RadialGradient::radius : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Radius);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Gradient_Stop then
-- Gradient::stop : GradientStop
return
AMF.DG.Gradient_Stop_Collections.Internals.To_Holder
(AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Stop);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Fill_Transform then
-- Fill::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Radial_Gradient_Get;
----------------------
-- DG_Rectangle_Get --
----------------------
function DG_Rectangle_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Rectangle_Bounds then
-- Rectangle::bounds : Bounds
return
AMF.DC.Holders.Bounds.To_Holder
(AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Bounds);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Rectangle_Corner_Radius then
-- Rectangle::cornerRadius : Real
return
AMF.Holders.Reals.To_Holder
(AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Corner_Radius);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Rectangle_Get;
------------------
-- DG_Style_Get --
------------------
function DG_Style_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Fill_A_Style then
-- Style::fill : Fill
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Fills.DG_Fill_Access'
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Fill));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Fill_Color then
-- Style::fillColor : Color
return
AMF.DC.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Fill_Color);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Fill_Opacity then
-- Style::fillOpacity : Real
return
AMF.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Fill_Opacity);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Bold then
-- Style::fontBold : Boolean
return
AMF.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Font_Bold);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Color then
-- Style::fontColor : Color
return
AMF.DC.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Font_Color);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Italic then
-- Style::fontItalic : Boolean
return
AMF.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Font_Italic);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Name then
-- Style::fontName : String
return
AMF.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Font_Name);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Size then
-- Style::fontSize : Real
return
AMF.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Font_Size);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Strike_Through then
-- Style::fontStrikeThrough : Boolean
return
AMF.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Font_Strike_Through);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Underline then
-- Style::fontUnderline : Boolean
return
AMF.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Font_Underline);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Stroke_Color then
-- Style::strokeColor : Color
return
AMF.DC.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Stroke_Color);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Stroke_Dash_Length then
-- Style::strokeDashLength : Real
return
AMF.Real_Collections.Internals.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Stroke_Dash_Length);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Stroke_Opacity then
-- Style::strokeOpacity : Real
return
AMF.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Stroke_Opacity);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Stroke_Width then
-- Style::strokeWidth : Real
return
AMF.Holders.To_Holder
(AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Stroke_Width);
else
raise Program_Error;
end if;
end DG_Style_Get;
-----------------
-- DG_Text_Get --
-----------------
function DG_Text_Get return League.Holders.Holder is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Text_Alignment then
-- Text::alignment : AlignmentKind
return
AMF.DC.Holders.Alignment_Kinds.To_Holder
(AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Alignment);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Text_Bounds then
-- Text::bounds : Bounds
return
AMF.DC.Holders.Bounds.To_Holder
(AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Bounds);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Clip_Paths.DG_Clip_Path_Access'
(AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Clip_Path));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Text_Data then
-- Text::data : String
return
League.Holders.To_Holder
(AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Data);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
return
AMF.Internals.Holders.DG_Holders.To_Holder
(AMF.DG.Groups.DG_Group_Access'
(AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Group));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Local_Style_A_Styled_Element then
-- GraphicalElement::localStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Local_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Shared_Style_A_Styled_Element then
-- GraphicalElement::sharedStyle : Style
return
AMF.DG.Styles.Collections.DG_Style_Collections.Internals.To_Holder
(AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Shared_Style);
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Transform then
-- GraphicalElement::transform : Transform
return
AMF.DG.Transform_Collections.Internals.To_Holder
(AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Get_Transform);
else
raise Program_Error;
end if;
end DG_Text_Get;
begin
case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is
when AMF.Internals.Tables.DD_Types.E_None =>
raise Program_Error;
when AMF.Internals.Tables.DD_Types.E_DG_Canvas =>
return DG_Canvas_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Circle =>
return DG_Circle_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path =>
return DG_Clip_Path_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Ellipse =>
return DG_Ellipse_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Group =>
return DG_Group_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Image =>
return DG_Image_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Line =>
return DG_Line_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Linear_Gradient =>
return DG_Linear_Gradient_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element =>
return DG_Marked_Element_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Marker =>
return DG_Marker_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Path =>
return DG_Path_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Pattern =>
return DG_Pattern_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Polygon =>
return DG_Polygon_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Polyline =>
return DG_Polyline_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Radial_Gradient =>
return DG_Radial_Gradient_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Rectangle =>
return DG_Rectangle_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Style =>
return DG_Style_Get;
when AMF.Internals.Tables.DD_Types.E_DG_Text =>
return DG_Text_Get;
end case;
end Get;
--------------------
-- Get_Meta_Class --
--------------------
function Get_Meta_Class
(Self : AMF.Internals.AMF_Element) return CMOF_Element is
begin
case DD_Element_Table.Table (Self).Kind is
when AMF.Internals.Tables.DD_Types.E_None =>
return 0;
when AMF.Internals.Tables.DD_Types.E_DG_Canvas =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Canvas;
when AMF.Internals.Tables.DD_Types.E_DG_Circle =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Circle;
when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Clip_Path;
when AMF.Internals.Tables.DD_Types.E_DG_Ellipse =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Ellipse;
when AMF.Internals.Tables.DD_Types.E_DG_Group =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Group;
when AMF.Internals.Tables.DD_Types.E_DG_Image =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Image;
when AMF.Internals.Tables.DD_Types.E_DG_Line =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Line;
when AMF.Internals.Tables.DD_Types.E_DG_Linear_Gradient =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Linear_Gradient;
when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Marked_Element;
when AMF.Internals.Tables.DD_Types.E_DG_Marker =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Marker;
when AMF.Internals.Tables.DD_Types.E_DG_Path =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Path;
when AMF.Internals.Tables.DD_Types.E_DG_Pattern =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Pattern;
when AMF.Internals.Tables.DD_Types.E_DG_Polygon =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Polygon;
when AMF.Internals.Tables.DD_Types.E_DG_Polyline =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Polyline;
when AMF.Internals.Tables.DD_Types.E_DG_Radial_Gradient =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Radial_Gradient;
when AMF.Internals.Tables.DD_Types.E_DG_Rectangle =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Rectangle;
when AMF.Internals.Tables.DD_Types.E_DG_Style =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Style;
when AMF.Internals.Tables.DD_Types.E_DG_Text =>
return AMF.Internals.Tables.DG_Metamodel.MC_DG_Text;
end case;
end Get_Meta_Class;
---------
-- Set --
---------
procedure Set
(Self : AMF.Internals.AMF_Element;
Property : CMOF_Element;
Value : League.Holders.Holder)
is
procedure DG_Canvas_Set;
-- Sets attribute's value of instance of Canvas class.
procedure DG_Circle_Set;
-- Sets attribute's value of instance of Circle class.
procedure DG_Clip_Path_Set;
-- Sets attribute's value of instance of ClipPath class.
procedure DG_Ellipse_Set;
-- Sets attribute's value of instance of Ellipse class.
procedure DG_Group_Set;
-- Sets attribute's value of instance of Group class.
procedure DG_Image_Set;
-- Sets attribute's value of instance of Image class.
procedure DG_Line_Set;
-- Sets attribute's value of instance of Line class.
procedure DG_Linear_Gradient_Set;
-- Sets attribute's value of instance of LinearGradient class.
procedure DG_Marked_Element_Set;
-- Sets attribute's value of instance of MarkedElement class.
procedure DG_Marker_Set;
-- Sets attribute's value of instance of Marker class.
procedure DG_Path_Set;
-- Sets attribute's value of instance of Path class.
procedure DG_Pattern_Set;
-- Sets attribute's value of instance of Pattern class.
procedure DG_Polygon_Set;
-- Sets attribute's value of instance of Polygon class.
procedure DG_Polyline_Set;
-- Sets attribute's value of instance of Polyline class.
procedure DG_Radial_Gradient_Set;
-- Sets attribute's value of instance of RadialGradient class.
procedure DG_Rectangle_Set;
-- Sets attribute's value of instance of Rectangle class.
procedure DG_Style_Set;
-- Sets attribute's value of instance of Style class.
procedure DG_Text_Set;
-- Sets attribute's value of instance of Text class.
-------------------
-- DG_Canvas_Set --
-------------------
procedure DG_Canvas_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Canvas_Background_Color then
-- Canvas::backgroundColor : Color
AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Background_Color
(AMF.DC.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Canvas_Background_Fill_A_Canvas then
-- Canvas::backgroundFill : Fill
AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Background_Fill
(AMF.DG.Fills.DG_Fill_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Canvases.DG_Canvas_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Canvas_Set;
-------------------
-- DG_Circle_Set --
-------------------
procedure DG_Circle_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Circle_Center then
-- Circle::center : Point
AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Center
(AMF.DC.Holders.Points.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Circle_Radius then
-- Circle::radius : Real
AMF.DG.Circles.DG_Circle_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Radius
(AMF.Holders.Reals.Element (Value));
else
raise Program_Error;
end if;
end DG_Circle_Set;
----------------------
-- DG_Clip_Path_Set --
----------------------
procedure DG_Clip_Path_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Clip_Path_Clipped_Element_Graphical_Element_Clip_Path then
-- ClipPath::clippedElement : GraphicalElement
AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clipped_Element
(AMF.DG.Graphical_Elements.DG_Graphical_Element_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Clip_Paths.DG_Clip_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Clip_Path_Set;
--------------------
-- DG_Ellipse_Set --
--------------------
procedure DG_Ellipse_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Ellipse_Center then
-- Ellipse::center : Point
AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Center
(AMF.DC.Holders.Points.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Ellipse_Radii then
-- Ellipse::radii : Dimension
AMF.DG.Ellipses.DG_Ellipse_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Radii
(AMF.DC.Holders.Dimensions.Element (Value));
else
raise Program_Error;
end if;
end DG_Ellipse_Set;
------------------
-- DG_Group_Set --
------------------
procedure DG_Group_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Groups.DG_Group_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Groups.DG_Group_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Group_Set;
------------------
-- DG_Image_Set --
------------------
procedure DG_Image_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Image_Bounds then
-- Image::bounds : Bounds
AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Bounds
(AMF.DC.Holders.Bounds.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Image_Is_Aspect_Ratio_Preserved then
-- Image::isAspectRatioPreserved : Boolean
AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Is_Aspect_Ratio_Preserved
(League.Holders.Booleans.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Image_Source then
-- Image::source : String
AMF.DG.Images.DG_Image_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Source
(League.Holders.Element (Value));
else
raise Program_Error;
end if;
end DG_Image_Set;
-----------------
-- DG_Line_Set --
-----------------
procedure DG_Line_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Line_End then
-- Line::end : Point
AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_End
(AMF.DC.Holders.Points.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_End_Marker_A_Marked_Element then
-- MarkedElement::endMarker : Marker
AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_End_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Mid_Marker_A_Marked_Element then
-- MarkedElement::midMarker : Marker
AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Mid_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Line_Start then
-- Line::start : Point
AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Start
(AMF.DC.Holders.Points.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Start_Marker_A_Marked_Element then
-- MarkedElement::startMarker : Marker
AMF.DG.Lines.DG_Line_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Start_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Line_Set;
----------------------------
-- DG_Linear_Gradient_Set --
----------------------------
procedure DG_Linear_Gradient_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Fill_Canvas_Canvas_Packaged_Fill then
-- Fill::canvas : Canvas
AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Canvas
(AMF.DG.Canvases.DG_Canvas_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_X1 then
-- LinearGradient::x1 : Real
AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_X1
(AMF.Holders.Reals.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_X2 then
-- LinearGradient::x2 : Real
AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_X2
(AMF.Holders.Reals.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_Y1 then
-- LinearGradient::y1 : Real
AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Y1
(AMF.Holders.Reals.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_Y2 then
-- LinearGradient::y2 : Real
AMF.DG.Linear_Gradients.DG_Linear_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Y2
(AMF.Holders.Reals.Element (Value));
else
raise Program_Error;
end if;
end DG_Linear_Gradient_Set;
---------------------------
-- DG_Marked_Element_Set --
---------------------------
procedure DG_Marked_Element_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_End_Marker_A_Marked_Element then
-- MarkedElement::endMarker : Marker
AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_End_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Mid_Marker_A_Marked_Element then
-- MarkedElement::midMarker : Marker
AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Mid_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Start_Marker_A_Marked_Element then
-- MarkedElement::startMarker : Marker
AMF.DG.Marked_Elements.DG_Marked_Element_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Start_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Marked_Element_Set;
-------------------
-- DG_Marker_Set --
-------------------
procedure DG_Marker_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marker_Canvas_Canvas_Packaged_Marker then
-- Marker::canvas : Canvas
AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Canvas
(AMF.DG.Canvases.DG_Canvas_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marker_Reference then
-- Marker::reference : Point
AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Reference
(AMF.DC.Holders.Points.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marker_Size then
-- Marker::size : Dimension
AMF.DG.Markers.DG_Marker_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Size
(AMF.DC.Holders.Dimensions.Element (Value));
else
raise Program_Error;
end if;
end DG_Marker_Set;
-----------------
-- DG_Path_Set --
-----------------
procedure DG_Path_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_End_Marker_A_Marked_Element then
-- MarkedElement::endMarker : Marker
AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_End_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Mid_Marker_A_Marked_Element then
-- MarkedElement::midMarker : Marker
AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Mid_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Start_Marker_A_Marked_Element then
-- MarkedElement::startMarker : Marker
AMF.DG.Paths.DG_Path_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Start_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Path_Set;
--------------------
-- DG_Pattern_Set --
--------------------
procedure DG_Pattern_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Pattern_Bounds then
-- Pattern::bounds : Bounds
AMF.DG.Patterns.DG_Pattern_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Bounds
(AMF.DC.Holders.Bounds.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Fill_Canvas_Canvas_Packaged_Fill then
-- Fill::canvas : Canvas
AMF.DG.Patterns.DG_Pattern_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Canvas
(AMF.DG.Canvases.DG_Canvas_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Pattern_Tile_A_Pattern then
-- Pattern::tile : GraphicalElement
AMF.DG.Patterns.DG_Pattern_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Tile
(AMF.DG.Graphical_Elements.DG_Graphical_Element_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Pattern_Set;
--------------------
-- DG_Polygon_Set --
--------------------
procedure DG_Polygon_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_End_Marker_A_Marked_Element then
-- MarkedElement::endMarker : Marker
AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_End_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Mid_Marker_A_Marked_Element then
-- MarkedElement::midMarker : Marker
AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Mid_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Start_Marker_A_Marked_Element then
-- MarkedElement::startMarker : Marker
AMF.DG.Polygons.DG_Polygon_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Start_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Polygon_Set;
---------------------
-- DG_Polyline_Set --
---------------------
procedure DG_Polyline_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_End_Marker_A_Marked_Element then
-- MarkedElement::endMarker : Marker
AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_End_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Mid_Marker_A_Marked_Element then
-- MarkedElement::midMarker : Marker
AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Mid_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Marked_Element_Start_Marker_A_Marked_Element then
-- MarkedElement::startMarker : Marker
AMF.DG.Polylines.DG_Polyline_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Start_Marker
(AMF.DG.Markers.DG_Marker_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Polyline_Set;
----------------------------
-- DG_Radial_Gradient_Set --
----------------------------
procedure DG_Radial_Gradient_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Fill_Canvas_Canvas_Packaged_Fill then
-- Fill::canvas : Canvas
AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Canvas
(AMF.DG.Canvases.DG_Canvas_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Center_X then
-- RadialGradient::centerX : Real
AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Center_X
(AMF.Holders.Reals.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Center_Y then
-- RadialGradient::centerY : Real
AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Center_Y
(AMF.Holders.Reals.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Focus_X then
-- RadialGradient::focusX : Real
AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Focus_X
(AMF.Holders.Reals.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Focus_Y then
-- RadialGradient::focusY : Real
AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Focus_Y
(AMF.Holders.Reals.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Radius then
-- RadialGradient::radius : Real
AMF.DG.Radial_Gradients.DG_Radial_Gradient_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Radius
(AMF.Holders.Reals.Element (Value));
else
raise Program_Error;
end if;
end DG_Radial_Gradient_Set;
----------------------
-- DG_Rectangle_Set --
----------------------
procedure DG_Rectangle_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Rectangle_Bounds then
-- Rectangle::bounds : Bounds
AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Bounds
(AMF.DC.Holders.Bounds.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Rectangle_Corner_Radius then
-- Rectangle::cornerRadius : Real
AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Corner_Radius
(AMF.Holders.Reals.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Rectangles.DG_Rectangle_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Rectangle_Set;
------------------
-- DG_Style_Set --
------------------
procedure DG_Style_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Fill_A_Style then
-- Style::fill : Fill
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Fill
(AMF.DG.Fills.DG_Fill_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Fill_Color then
-- Style::fillColor : Color
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Fill_Color
(AMF.DC.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Fill_Opacity then
-- Style::fillOpacity : Real
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Fill_Opacity
(AMF.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Bold then
-- Style::fontBold : Boolean
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Font_Bold
(AMF.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Color then
-- Style::fontColor : Color
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Font_Color
(AMF.DC.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Italic then
-- Style::fontItalic : Boolean
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Font_Italic
(AMF.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Name then
-- Style::fontName : String
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Font_Name
(AMF.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Size then
-- Style::fontSize : Real
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Font_Size
(AMF.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Strike_Through then
-- Style::fontStrikeThrough : Boolean
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Font_Strike_Through
(AMF.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Underline then
-- Style::fontUnderline : Boolean
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Font_Underline
(AMF.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Stroke_Color then
-- Style::strokeColor : Color
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Stroke_Color
(AMF.DC.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Stroke_Opacity then
-- Style::strokeOpacity : Real
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Stroke_Opacity
(AMF.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Stroke_Width then
-- Style::strokeWidth : Real
AMF.DG.Styles.DG_Style_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Stroke_Width
(AMF.Holders.Element (Value));
else
raise Program_Error;
end if;
end DG_Style_Set;
-----------------
-- DG_Text_Set --
-----------------
procedure DG_Text_Set is
begin
if Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Text_Alignment then
-- Text::alignment : AlignmentKind
AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Alignment
(AMF.DC.Holders.Alignment_Kinds.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Text_Bounds then
-- Text::bounds : Bounds
AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Bounds
(AMF.DC.Holders.Bounds.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Clip_Path_Clip_Path_Clipped_Element then
-- GraphicalElement::clipPath : ClipPath
AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Clip_Path
(AMF.DG.Clip_Paths.DG_Clip_Path_Access (AMF.Holders.Elements.Element (Value)));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Text_Data then
-- Text::data : String
AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Data
(League.Holders.Element (Value));
elsif Property = AMF.Internals.Tables.DG_Metamodel.MP_DG_Graphical_Element_Group_Group_Member then
-- GraphicalElement::group : Group
AMF.DG.Texts.DG_Text_Access
(AMF.Internals.Helpers.To_Element (Self)).Set_Group
(AMF.DG.Groups.DG_Group_Access (AMF.Holders.Elements.Element (Value)));
else
raise Program_Error;
end if;
end DG_Text_Set;
begin
case DD_Element_Table.Table (Self).Kind is
when AMF.Internals.Tables.DD_Types.E_None =>
raise Program_Error;
when AMF.Internals.Tables.DD_Types.E_DG_Canvas =>
DG_Canvas_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Circle =>
DG_Circle_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path =>
DG_Clip_Path_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Ellipse =>
DG_Ellipse_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Group =>
DG_Group_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Image =>
DG_Image_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Line =>
DG_Line_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Linear_Gradient =>
DG_Linear_Gradient_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element =>
DG_Marked_Element_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Marker =>
DG_Marker_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Path =>
DG_Path_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Pattern =>
DG_Pattern_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Polygon =>
DG_Polygon_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Polyline =>
DG_Polyline_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Radial_Gradient =>
DG_Radial_Gradient_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Rectangle =>
DG_Rectangle_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Style =>
DG_Style_Set;
when AMF.Internals.Tables.DD_Types.E_DG_Text =>
DG_Text_Set;
end case;
end Set;
end AMF.Internals.Tables.DD_Reflection;
|
burratoo/Acton | Ada | 1,245 | ads | ------------------------------------------------------------------------------------------
-- --
-- OAK CORE SUPPORT PACKAGE --
-- ARM CORTEX M4F --
-- --
-- OAK.CORE_SUPPORT_PACKAGE.CLOCK.INTERRUPT --
-- --
-- Copyright (C) 2014-2021, Patrick Bernardi --
-- --
------------------------------------------------------------------------------------------
package Oak.Core_Support_Package.Clock.Interrupt with Preelaborate is
-- Note that this package exists so as to force gcc to use only the saved
-- registers so that the stack is not implicitly used.
procedure Update_Clock;
pragma Machine_Attribute
(Update_Clock, "naked");
end Oak.Core_Support_Package.Clock.Interrupt;
|
alvaromb/Compilemon | Ada | 4,280 | adb | package body Semantica is
procedure Abuit
(P : out Pnode) is
begin
P := null;
end Abuit;
procedure Creanode_Programa
(P : out Atribut;
A : in Atribut) is
begin
P := A;
Arbre := P.A;
end Creanode_Programa;
procedure Creanode
(P : out Atribut;
Fe, Fd : in Atribut;
Tn : in Tipusnode) is
Paux : Pnode;
begin
Paux := new Node(Tn);
Paux.Fe1 := Fe.A;
Paux.Fd1 := Fd.A;
P := (Nodearbre, 0, 0, Paux);
end Creanode;
procedure Creanode
(P : out Atribut;
Fe, Fc, Fd : in Atribut;
Tn : in Tipusnode) is
Paux : Pnode;
begin
Paux := new Node(Tn);
Paux.Fe2 := Fe.A;
Paux.Fd2 := Fd.A;
Paux.Fc2 := Fc.A;
P := (Nodearbre, 0, 0, Paux);
end Creanode;
procedure Creanode
(P : out Atribut;
Fe, Fd : in Atribut;
Op : in Operacio;
Tn : in Tipusnode) is
Paux : Pnode;
begin
Paux := new Node(Tn);
Paux.Fe3 := Fe.A;
Paux.Fd3 := Fd.A;
Paux.Op3 := Op;
P := (Nodearbre, 0, 0, Paux);
end Creanode;
procedure Creanode
(P : out Atribut;
F : in Atribut;
Op : in Operacio;
Tn : in Tipusnode) is
Paux : Pnode;
begin
Paux := new Node(Tn);
Paux.F4 := F.A;
Paux.Op4 := Op;
P := (Nodearbre, 0, 0, Paux);
end Creanode;
procedure Creanode
(P : out Atribut;
Fe, Fce, Fc, Fd : in Atribut;
Tn : in Tipusnode) is
Paux : Pnode;
begin
Paux := new Node(Tn);
Paux.Fe5 := Fe.A;
Paux.Fc5 := Fce.A;
Paux.Fd5 := Fc.A;
Paux.Fid5 := Fd.A;
P := (Nodearbre, 0, 0, Paux);
end Creanode;
procedure Creanode
(P : out atribut;
F : in atribut;
Tn : in Tipusnode) is
Paux : Pnode;
begin
Paux := new Node(Tn);
Paux.F6 := F.A;
P := (Nodearbre, 0, 0, Paux);
end Creanode;
-- Crea node per identificadors
procedure Creanode_Id
(P : out Atribut;
Id : in Atribut;
Tn : in Tipusnode) is
Paux : Pnode;
begin
Paux := new Node(Tn);
Paux.Id12 := Id.Idn;
Paux.L1 := Id.Lin;
Paux.C1 := Id.Col;
P := (Nodearbre, 0, 0, Paux);
end Creanode_Id;
procedure Creanode_Val
(P : out Atribut;
A : in Atribut;
Tn : in Tipusnode;
S : in Valor) is
Paux : Pnode;
begin
Paux := new Node(Tn);
if S = 0 then
Paux.Val := A.Val*(-1);
else
Paux.Val := A.Val;
end if;
Paux.Tconst := A.T;
Paux.L2 := A.Lin;
Paux.C2 := A.Col;
P := (Nodearbre, 0, 0, Paux);
end Creanode_Val;
procedure Creanode_Mode
(P : out Atribut;
M : in mmode;
Tn : in Tipusnode) is
Paux : Pnode;
begin
Paux := new Node(Tn);
Paux.M12 := M;
P := (NodeArbre, 0, 0, Paux);
end Creanode_Mode;
procedure Creanode
(P : out Atribut;
Tn : in Tipusnode) is
Paux : Pnode;
begin
Paux := new Node(tn);
P := (NodeArbre, 0, 0, Paux);
end Creanode;
procedure Remunta
(P : out Atribut;
A : in Atribut) is
begin
P := A;
end Remunta;
procedure Cons_Tnode
(P : in Pnode;
Tn : out Tipusnode) is
begin
Tn := P.Tipus;
end Cons_Tnode;
-- Procediments per a les Taules
procedure Noves_taules
(Tp : out T_Procs;
Tv : out T_Vars) is
begin
Tp.Np := 0;
Tv.Nv := 0;
end Noves_taules;
-- Procediments per Taula de Procediments
procedure Posa
(Tp : in out T_Procs;
Ip : in Info_Proc;
Idp : out num_Proc) is
begin
Tp.Np := Tp.Np+1;
Tp.Tp(Tp.Np) := Ip;
Idp := Tp.Np;
end Posa;
procedure Modif_Descripcio
(Tp : in out T_Procs;
Idp : in Num_Proc;
Ip : in Info_Proc) is
begin
Tp.Tp(Idp) := Ip;
end Modif_Descripcio;
-- Procediments per a la Taula de Variables
procedure Posa
(Tv : in out T_Vars;
Iv : in Info_Var;
Idv : out Num_Var) is
begin
Tv.Nv := Tv.Nv+1;
Tv.Tv(Tv.Nv) := Iv;
Idv := Tv.Nv;
end Posa;
function Nova_Etiq return Num_Etiq is
begin
Ne := Ne+1;
return Ne;
end Nova_Etiq;
end Semantica;
|
tum-ei-rcs/StratoX | Ada | 9,378 | 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_cortex.c --
-- @author MCD Application Team --
-- @version V1.1.0 --
-- @date 19-June-2014 --
-- @brief CORTEX HAL module driver. --
-- --
-- COPYRIGHT(c) 2014 STMicroelectronics --
------------------------------------------------------------------------------
with Memory_Barriers;
package body Cortex_M.NVIC is
-----------------------
-- Priority_Grouping --
-----------------------
function Priority_Grouping return Word is
begin
return Shift_Right (SCB.AIRCR and SCB_AIRCR_PRIGROUP_Mask,
SCB_AIRCR_PRIGROUP_Pos);
end Priority_Grouping;
---------------------------
-- Set_Priority_Grouping --
---------------------------
procedure Set_Priority_Grouping (Priority_Group : Word) is
Reg_Value : Word;
PriorityGroupTmp : constant Word := Priority_Group and 16#07#;
Key : constant := 16#5FA#;
begin
Reg_Value := SCB.AIRCR;
Reg_Value := Reg_Value and
(not (SCB_AIRCR_VECTKEY_Mask or SCB_AIRCR_PRIGROUP_Mask));
Reg_Value := Reg_Value or
Shift_Left (Key, SCB_AIRCR_VECTKEY_Pos) or
Shift_Left (PriorityGroupTmp, 8);
SCB.AIRCR := Reg_Value;
end Set_Priority_Grouping;
------------------
-- Set_Priority --
------------------
procedure Set_Priority
(IRQn : Interrupt_ID;
Priority : Word)
is
Index : constant Natural := Integer (IRQn);
Value : constant Word :=
Shift_Left (Priority, 8 - NVIC_PRIO_BITS) and 16#FF#;
begin
-- IRQ numbers are never less than 0 in the current definition, hence
-- the code is different from that in the CMSIS.
NVIC.IP (Index) := Byte (Value);
end Set_Priority;
----------------------
-- Encoded_Priority --
----------------------
function Encoded_Priority
(Priority_Group : Word; Preempt_Priority : Word; Subpriority : Word)
return Word
is
PriorityGroupTmp : constant Word := Priority_Group and 16#07#;
PreemptPriorityBits : Word;
SubPriorityBits : Word;
Temp1 : Word;
Temp2 : Word;
Temp3 : Word;
Temp4 : Word;
Temp5 : Word;
begin
if (7 - PriorityGroupTmp) > NVIC_PRIO_BITS then
PreemptPriorityBits := NVIC_PRIO_BITS;
else
PreemptPriorityBits := 7 - PriorityGroupTmp;
end if;
if (PriorityGroupTmp + NVIC_PRIO_BITS) < 7 then
SubPriorityBits := 0;
else
SubPriorityBits := PriorityGroupTmp - 7 + NVIC_PRIO_BITS;
end if;
Temp1 := Shift_Left (1, Integer (PreemptPriorityBits)) - 1;
Temp2 := Preempt_Priority and Temp1;
Temp3 := Shift_Left (Temp2, Integer (SubPriorityBits));
Temp4 := Shift_Left (1, Integer (SubPriorityBits)) - 1;
Temp5 := Subpriority and Temp4;
return Temp3 or Temp5;
end Encoded_Priority;
------------------
-- Set_Priority --
------------------
procedure Set_Priority
(IRQn : Interrupt_ID;
Preempt_Priority : Word;
Subpriority : Word)
is
Priority_Group : constant Word := Priority_Grouping;
begin
Set_Priority
(IRQn,
Encoded_Priority (Priority_Group, Preempt_Priority, Subpriority));
end Set_Priority;
----------------------
-- Enable_Interrupt --
----------------------
procedure Enable_Interrupt (IRQn : Interrupt_ID) is
IRQn_As_Word : constant Word := Word (IRQn);
Index : constant Natural :=
Integer (Shift_Right (IRQn_As_Word, 5));
begin
NVIC.ISER (Index) := Shift_Left (IRQn_As_Word and 16#1F#, 1);
end Enable_Interrupt;
-----------------------
-- Disable_Interrupt --
-----------------------
procedure Disable_Interrupt (IRQn : Interrupt_ID) is
IRQn_As_Word : constant Word := Word (IRQn);
Index : constant Natural :=
Integer (Shift_Right (IRQn_As_Word, 5));
begin
-- NVIC->ICER[((uint32_t)(IRQn)>>5)] = (1 << ((uint32_t)(IRQn) & 0x1F));
NVIC.ICER (Index) := Shift_Left (1, Integer (IRQn_As_Word and 16#1F#));
end Disable_Interrupt;
------------
-- Active --
------------
function Active (IRQn : Interrupt_ID) return Boolean is
IRQn_As_Word : constant Word := Word (IRQn);
Index : constant Natural :=
Integer (Shift_Right (IRQn_As_Word, 5));
Value : constant Word :=
Shift_Left (1, Integer (IRQn_As_Word and 16#1F#));
begin
return (NVIC.IABR (Index) and Value) /= 0;
end Active;
-------------
-- Pending --
-------------
function Pending (IRQn : Interrupt_ID) return Boolean is
IRQn_As_Word : constant Word := Word (IRQn);
Index : constant Natural :=
Integer (Shift_Right (IRQn_As_Word, 5));
Value : constant Word :=
Shift_Left (1, Integer (IRQn_As_Word and 16#1F#));
begin
return (NVIC.ISPR (Index) and Value) /= 0;
end Pending;
-----------------
-- Set_Pending --
-----------------
procedure Set_Pending (IRQn : Interrupt_ID) is
IRQn_As_Word : constant Word := Word (IRQn);
Index : constant Natural :=
Integer (Shift_Right (IRQn_As_Word, 5));
begin
NVIC.ISPR (Index) := Shift_Left (1, Integer (IRQn_As_Word and 16#1F#));
end Set_Pending;
-------------------
-- Clear_Pending --
-------------------
procedure Clear_Pending (IRQn : Interrupt_ID) is
IRQn_As_Word : constant Word := Word (IRQn);
Index : constant Natural :=
Integer (Shift_Right (IRQn_As_Word, 5));
begin
NVIC.ICPR (Index) := Shift_Left (1, Integer (IRQn_As_Word and 16#1F#));
end Clear_Pending;
------------------
-- Reset_System --
------------------
procedure Reset_System is
Key : constant := 16#05FA#; -- required for write to be accepted
use Memory_Barriers;
begin
-- Ensure all outstanding memory accesses including
-- buffered writes are completed
Data_Synchronization_Barrier;
SCB.AIRCR := Shift_Left (Key, SCB_AIRCR_VECTKEY_Pos) or
-- keep priority group unchanged
(SCB.AIRCR and SCB_AIRCR_PRIGROUP_Mask) or
SCB_AIRCR_SYSRESETREQ_Mask;
-- TODO: why is all code from here onward in the CMSIS???
Data_Synchronization_Barrier;
-- wait until reset
pragma Warnings (Off);
<<spin>> goto spin;
pragma Warnings (On);
end Reset_System;
end Cortex_M.NVIC;
|
sungyeon/drake | Ada | 605 | ads | pragma License (Unrestricted);
-- implementation unit
package System.UTF_Conversions.From_32_To_8 is
pragma Pure;
pragma Suppress (All_Checks); -- for instantiation
procedure Convert is
new Convert_Procedure (
Wide_Wide_Character,
Wide_Wide_String,
Character,
String,
From_UTF_32,
To_UTF_8);
function Convert is
new Convert_Function (
Wide_Wide_Character,
Wide_Wide_String,
Character,
String,
Expanding_From_32_To_8,
Convert);
end System.UTF_Conversions.From_32_To_8;
|
soccasys/Ada_Drivers_Library | Ada | 3,509 | ads | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2016-2020, 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. --
-- --
------------------------------------------------------------------------------
package nRF.GPIO.Tasks_And_Events is
type GPIOTE_Channel is range 0 .. 3;
procedure Disable (Chan : GPIOTE_Channel);
type Event_Polarity is (Rising_Edge, Falling_Edge, Any_Change);
procedure Enable_Event (Chan : GPIOTE_Channel;
GPIO_Pin : GPIO_Pin_Index;
Polarity : Event_Polarity);
-- When GPIO_Pin value changes the event associated with Chan is raised
type Task_Action is (Set_Pin, Clear_Pin, Toggle_Pin);
type Init_Value is (Init_Set, Init_Clear);
procedure Enable_Task (Chan : GPIOTE_Channel;
GPIO_Pin : GPIO_Pin_Index;
Action : Task_Action;
Initial_Value : Init_Value);
-- When the tasks associated with Chan is triggered, Action (Set, Clear,
-- Toggle) is applied to GPIO_Pin.
function Out_Task (Chan : GPIOTE_Channel) return Task_Type;
-- Return the nRF task associated with Chan
function In_Event (Chan : GPIOTE_Channel) return Event_Type;
-- Return the nRF event associated with Chan
end nRF.GPIO.Tasks_And_Events;
|
sparre/Command-Line-Parser-Generator | Ada | 250 | ads | package Bad_Declares_Function is
procedure Run (Help : in Boolean := False);
procedure Batch_Mode (Help : in Boolean := False;
A, B : in Natural);
function Help_Text return String;
end Bad_Declares_Function;
|
Letractively/ada-ado | Ada | 1,440 | ads | -----------------------------------------------------------------------
-- ado-drivers-tests -- Unit tests for database drivers
-- Copyright (C) 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.Tests;
package ADO.Drivers.Tests is
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite);
type Test is new Util.Tests.Test with null record;
-- Test the Get_Config operation.
procedure Test_Get_Config (T : in out Test);
-- Test the Get_Driver operation.
procedure Test_Get_Driver (T : in out Test);
-- Test loading some invalid database driver.
procedure Test_Load_Invalid_Driver (T : in out Test);
-- Test the Get_Driver_Index operation.
procedure Test_Get_Driver_Index (T : in out Test);
end ADO.Drivers.Tests;
|
optikos/oasis | Ada | 7,377 | adb | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
package body Program.Nodes.Formal_Interface_Types is
function Create
(Limited_Token : Program.Lexical_Elements.Lexical_Element_Access;
Task_Token : Program.Lexical_Elements.Lexical_Element_Access;
Protected_Token : Program.Lexical_Elements.Lexical_Element_Access;
Synchronized_Token : Program.Lexical_Elements.Lexical_Element_Access;
Interface_Token : Program.Lexical_Elements.Lexical_Element_Access;
And_Token : Program.Lexical_Elements.Lexical_Element_Access;
Progenitors : Program.Elements.Expressions
.Expression_Vector_Access)
return Formal_Interface_Type is
begin
return Result : Formal_Interface_Type :=
(Limited_Token => Limited_Token, Task_Token => Task_Token,
Protected_Token => Protected_Token,
Synchronized_Token => Synchronized_Token,
Interface_Token => Interface_Token, And_Token => And_Token,
Progenitors => Progenitors, Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
function Create
(Progenitors : Program.Elements.Expressions
.Expression_Vector_Access;
Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False;
Has_Limited : Boolean := False;
Has_Task : Boolean := False;
Has_Protected : Boolean := False;
Has_Synchronized : Boolean := False)
return Implicit_Formal_Interface_Type is
begin
return Result : Implicit_Formal_Interface_Type :=
(Progenitors => Progenitors,
Is_Part_Of_Implicit => Is_Part_Of_Implicit,
Is_Part_Of_Inherited => Is_Part_Of_Inherited,
Is_Part_Of_Instance => Is_Part_Of_Instance,
Has_Limited => Has_Limited, Has_Task => Has_Task,
Has_Protected => Has_Protected, Has_Synchronized => Has_Synchronized,
Enclosing_Element => null)
do
Initialize (Result);
end return;
end Create;
overriding function Progenitors
(Self : Base_Formal_Interface_Type)
return Program.Elements.Expressions.Expression_Vector_Access is
begin
return Self.Progenitors;
end Progenitors;
overriding function Limited_Token
(Self : Formal_Interface_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Limited_Token;
end Limited_Token;
overriding function Task_Token
(Self : Formal_Interface_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Task_Token;
end Task_Token;
overriding function Protected_Token
(Self : Formal_Interface_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Protected_Token;
end Protected_Token;
overriding function Synchronized_Token
(Self : Formal_Interface_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Synchronized_Token;
end Synchronized_Token;
overriding function Interface_Token
(Self : Formal_Interface_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.Interface_Token;
end Interface_Token;
overriding function And_Token
(Self : Formal_Interface_Type)
return Program.Lexical_Elements.Lexical_Element_Access is
begin
return Self.And_Token;
end And_Token;
overriding function Has_Limited
(Self : Formal_Interface_Type)
return Boolean is
begin
return Self.Limited_Token.Assigned;
end Has_Limited;
overriding function Has_Task
(Self : Formal_Interface_Type)
return Boolean is
begin
return Self.Task_Token.Assigned;
end Has_Task;
overriding function Has_Protected
(Self : Formal_Interface_Type)
return Boolean is
begin
return Self.Protected_Token.Assigned;
end Has_Protected;
overriding function Has_Synchronized
(Self : Formal_Interface_Type)
return Boolean is
begin
return Self.Synchronized_Token.Assigned;
end Has_Synchronized;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Formal_Interface_Type)
return Boolean is
begin
return Self.Is_Part_Of_Implicit;
end Is_Part_Of_Implicit;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Formal_Interface_Type)
return Boolean is
begin
return Self.Is_Part_Of_Inherited;
end Is_Part_Of_Inherited;
overriding function Is_Part_Of_Instance
(Self : Implicit_Formal_Interface_Type)
return Boolean is
begin
return Self.Is_Part_Of_Instance;
end Is_Part_Of_Instance;
overriding function Has_Limited
(Self : Implicit_Formal_Interface_Type)
return Boolean is
begin
return Self.Has_Limited;
end Has_Limited;
overriding function Has_Task
(Self : Implicit_Formal_Interface_Type)
return Boolean is
begin
return Self.Has_Task;
end Has_Task;
overriding function Has_Protected
(Self : Implicit_Formal_Interface_Type)
return Boolean is
begin
return Self.Has_Protected;
end Has_Protected;
overriding function Has_Synchronized
(Self : Implicit_Formal_Interface_Type)
return Boolean is
begin
return Self.Has_Synchronized;
end Has_Synchronized;
procedure Initialize
(Self : aliased in out Base_Formal_Interface_Type'Class) is
begin
for Item in Self.Progenitors.Each_Element loop
Set_Enclosing_Element (Item.Element, Self'Unchecked_Access);
end loop;
null;
end Initialize;
overriding function Is_Formal_Interface_Type_Element
(Self : Base_Formal_Interface_Type)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Formal_Interface_Type_Element;
overriding function Is_Formal_Type_Definition_Element
(Self : Base_Formal_Interface_Type)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Formal_Type_Definition_Element;
overriding function Is_Definition_Element
(Self : Base_Formal_Interface_Type)
return Boolean is
pragma Unreferenced (Self);
begin
return True;
end Is_Definition_Element;
overriding procedure Visit
(Self : not null access Base_Formal_Interface_Type;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is
begin
Visitor.Formal_Interface_Type (Self);
end Visit;
overriding function To_Formal_Interface_Type_Text
(Self : aliased in out Formal_Interface_Type)
return Program.Elements.Formal_Interface_Types
.Formal_Interface_Type_Text_Access is
begin
return Self'Unchecked_Access;
end To_Formal_Interface_Type_Text;
overriding function To_Formal_Interface_Type_Text
(Self : aliased in out Implicit_Formal_Interface_Type)
return Program.Elements.Formal_Interface_Types
.Formal_Interface_Type_Text_Access is
pragma Unreferenced (Self);
begin
return null;
end To_Formal_Interface_Type_Text;
end Program.Nodes.Formal_Interface_Types;
|
optikos/oasis | Ada | 1,502 | ads | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Elements.Formal_Type_Definitions;
with Program.Lexical_Elements;
package Program.Elements.Formal_Floating_Point_Definitions is
pragma Pure (Program.Elements.Formal_Floating_Point_Definitions);
type Formal_Floating_Point_Definition is
limited interface
and Program.Elements.Formal_Type_Definitions.Formal_Type_Definition;
type Formal_Floating_Point_Definition_Access is
access all Formal_Floating_Point_Definition'Class with Storage_Size => 0;
type Formal_Floating_Point_Definition_Text is limited interface;
type Formal_Floating_Point_Definition_Text_Access is
access all Formal_Floating_Point_Definition_Text'Class
with Storage_Size => 0;
not overriding function To_Formal_Floating_Point_Definition_Text
(Self : aliased in out Formal_Floating_Point_Definition)
return Formal_Floating_Point_Definition_Text_Access is abstract;
not overriding function Digits_Token
(Self : Formal_Floating_Point_Definition_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Box_Token
(Self : Formal_Floating_Point_Definition_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
end Program.Elements.Formal_Floating_Point_Definitions;
|
BrickBot/Bound-T-H8-300 | Ada | 5,282 | ads | -- Flow.Life.Opt (decl)
--
-- Command-line options for the live-cell analysis.
--
-- 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.9 $
-- $Date: 2015/10/24 19:36:49 $
--
-- $Log: flow-life-opt.ads,v $
-- Revision 1.9 2015/10/24 19:36:49 niklas
-- Moved to free licence.
--
-- Revision 1.8 2013-02-12 08:47:19 niklas
-- BT-CH-0245: Global volatile cells and "volatile" assertions.
--
-- Revision 1.7 2011-08-31 04:23:34 niklas
-- BT-CH-0222: Option registry. Option -dump. External help files.
--
-- Revision 1.6 2007/12/21 10:09:39 niklas
-- BT-CH-0100: Fix Flow.Life re edge preconditions.
--
-- Revision 1.5 2007/08/02 11:16:36 niklas
-- Added the option Trace_Joining.
--
-- Revision 1.4 2007/01/25 21:25:15 niklas
-- BT-CH-0043.
--
-- Revision 1.3 2005/09/12 19:02:59 niklas
-- BT-CH-0008.
--
-- Revision 1.2 2001/03/10 00:31:29 holsti
-- All_Live option removed.
--
-- Revision 1.1 2001/01/07 21:54:17 holsti
-- First version.
--
with Options.Bool;
package Flow.Life.Opt is
pragma Elaborate_Body;
--
-- To register the options.
Trace_Iteration_Opt : aliased Options.Bool.Option_T (Default => False);
--
-- Whether to trace the steps in the least-fixpoint iteration that
-- computes the set of live cells after each step.
--
Trace_Iteration : Boolean renames Trace_Iteration_Opt.Value;
Trace_Cells_Opt : aliased Options.Bool.Option_T (Default => False);
--
-- Whether to display the set of cells found to be "live" after
-- each step.
--
Trace_Cells : Boolean renames Trace_Cells_Opt.Value;
Trace_Volatile_Opt : aliased Options.Bool.Option_T (Default => False);
--
-- Whether to display the occurrences of volatile cells in
-- the liveness analysis and its results.
--
Trace_Volatile : Boolean renames Trace_Volatile_Opt.Value;
Show_Per_Step_Opt : aliased Options.Bool.Option_T (Default => False);
--
-- Whether to display the "live" assignments found for each step,
-- ordered by step index.
--
Show_Per_Step : Boolean renames Show_Per_Step_Opt.Value;
Show_Per_Node_Opt : aliased Options.Bool.Option_T (Default => False);
--
-- Whether to display the "live" assignments found for each step,
-- ordered by nodes (basic blocks).
--
Show_Per_Node : Boolean renames Show_Per_Node_Opt.Value;
Show_Dead_Opt : aliased Options.Bool.Option_T (Default => False);
--
-- Whether to display the "dead" assignments found.
--
Show_Dead : Boolean renames Show_Dead_Opt.Value;
Statistics_Opt : aliased Options.Bool.Option_T (Default => False);
--
-- Whether to display the number of assignments found to be live
-- resp. dead.
--
Statistics : Boolean renames Statistics_Opt.Value;
Trace_Joining_Opt : aliased Options.Bool.Option_T (Default => False);
--
-- Whether to display the process of joining the effects of
-- consecutive steps, as they are done. (Trace_Joint_Effect, below,
-- shows only the end result, the joined effect.)
--
Trace_Joining : Boolean renames Trace_Joining_Opt.Value;
Trace_Joint_Effect_Opt : aliased Options.Bool.Option_T (Default => False);
--
-- Whether to display the consecutive steps for which a joint
-- effect is created. The joint effect is also displayed if so.
--
Trace_Joint_Effect : Boolean renames Trace_Joint_Effect_Opt.Value;
Deallocate : Boolean := True;
--
-- Whether to use Unchecked_Deallocation to release unused
-- heap memory.
end Flow.Life.Opt;
|
Owen864720655/userIntentDataset | Ada | 563,098 | ads | 907 __DUMMY__ 1.0 false 0.0
913 12 0.09429520151330775 21 0.09411039326464475 11 0.08503785573778895 13 0.07685188879136369 22 0.07116072183101782 18 0.0603641870103712 19 0.058724145112958176 10 0.0551657358168489 14 0.04831789916495111 0 0.04729938776145979 17 0.039561262576752514 20 0.037356818664404635 23 0.03628054065694983 24 0.035710173465976186 9 0.03465429426026759 16 0.028195006154994325 4 0.01573846636729239 5 0.015176166368502905 6 0.01407598431486882 __DUMMY__ 0.01107437563277585 7 0.008717013210004555 8 0.008553990350464995 1 0.008453876496727354 2 0.00826922493576567 3 0.006855390539540232 false 0.0
918 13 0.12640139578142845 12 0.10652964506851763 14 0.09597314304608659 21 0.07542467755051092 18 0.0672377680127153 10 0.06583184487644517 11 0.05992894694483192 20 0.05327235502489032 15 0.049636947944687794 19 0.04831706365399714 23 0.04068368073950736 22 0.037716124186714446 0 0.028048472750413674 24 0.026944287262756553 17 0.02401509213460989 16 0.021895066101015576 9 0.01874758659138446 6 0.010645370157716633 4 0.010084241299620324 5 0.009841800285010832 __DUMMY__ 0.006929455193712259 1 0.004034792843090258 8 0.003999605254817866 7 0.003980333315020981 2 0.0038803039804976114 false 0.0
919 19 0.10619796906588559 18 0.07916337222724834 20 0.07824028418544099 16 0.07754330830424165 21 0.07505375159658557 22 0.0660830888593656 17 0.06255360997113746 11 0.06235872452809442 12 0.06014184005849478 24 0.054998937797431875 10 0.051958719476642545 23 0.04606647328956112 0 0.042205089382265706 14 0.031696574173288555 13 0.029059539662454163 15 0.026332508740691235 9 0.026327922728667966 __DUMMY__ 0.008692994605989957 4 0.005091654490732576 5 0.004626263369605951 3 0.0020265523633601294 6 0.0017286929008544457 8 6.489980019541666E-4 7 6.462000795860082E-4 1 5.141748027610019E-4 2 4.275533765818051E-5 false 0.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 20 0.11444257469690805 19 0.10131762440474903 24 0.08267224677749868 18 0.08033791504037234 21 0.07898290267641031 12 0.07679673976580778 23 0.06566995960839014 16 0.0590853544929229 13 0.0509557497898012 14 0.0495415323434993 22 0.04596308605295078 15 0.04030321998844845 11 0.038409793858175036 17 0.037764156576314635 10 0.036001939325564086 __DUMMY__ 0.009691459022949014 9 0.007231825724873118 4 0.006321247286029289 0 0.005543599152897748 5 0.005203690665783631 3 0.003459471080205378 6 0.001371961395513904 7 0.0010519739069577174 1 0.0010119977678813058 8 8.679785990960824E-4 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 20 0.11766661675050374 19 0.11052965019162614 24 0.0898990615283736 18 0.08053806728754478 21 0.07472669989689641 23 0.07067636281994127 16 0.06252270978775243 12 0.058915664317619756 22 0.05343075912568301 15 0.04723920183804094 14 0.04718065628125606 11 0.038702134278607456 10 0.036520448923480775 17 0.03533164529583899 13 0.029845315434710754 4 0.008950295430712669 3 0.008492169388499796 9 0.008402565751999706 5 0.008138304209217413 8 0.002968325644200113 7 0.0026500594082222717 1 0.002249921890939845 2 0.0021781302277295183 6 0.0015311925655257404 0 4.6503584195036634E-4 __DUMMY__ 2.490058831264145E-4 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 22 0.0834265441276057 19 0.07781187135814119 18 0.0774609103605493 21 0.06938403351713154 17 0.06649922208764042 11 0.06462217471967768 0 0.06078236709370771 10 0.05842493000931835 9 0.05733066477387545 16 0.04742121846223016 20 0.03819204493063591 12 0.03549172452017515 24 0.03419362994981554 23 0.03166675365900764 4 0.024276475035736784 5 0.02370324250910204 6 0.02109538890679351 3 0.020045988098655664 8 0.019362432397744607 7 0.019040722868993748 1 0.01877118128090353 2 0.01868435909969315 14 0.013215165399037831 __DUMMY__ 0.011628541204424038 13 0.005555220968725256 15 0.0019131926606783718 false 1.0
921 19 0.10074068170543492 20 0.09604281474497968 21 0.0855167875570404 18 0.0825802815187885 12 0.07338381766812642 24 0.0722862622950684 22 0.061197292161769355 23 0.056502928317116945 16 0.05428355004641426 11 0.05013792438503022 17 0.04398177766292565 10 0.04291409017078146 13 0.04259620902963117 14 0.04220878680094232 15 0.02611928873284154 9 0.019089292831713886 0 0.018328684066156415 __DUMMY__ 0.008971122768227934 4 0.0076473899118779535 5 0.007626799725531958 3 0.0037399763519723552 6 0.0023593897677961595 8 5.964597976397595E-4 2 4.784853734154733E-4 7 3.855674678417198E-4 1 2.843391409349495E-4 false 0.0
801 0 0.08655130317600453 17 0.07881516926184295 9 0.06515674174678394 22 0.06224907607568826 11 0.05871325028823809 10 0.05621986282718685 18 0.05459261580217276 16 0.05300754069911229 6 0.045025142703404825 8 0.04240013915553861 7 0.04222375284343794 1 0.042047207421740875 2 0.041678534027041136 4 0.04132959055147699 5 0.04083329076375218 19 0.037289954514156676 3 0.03690854651787431 21 0.0325257859389667 12 0.023793210128353608 23 0.020890249035132605 13 0.01176459237594959 15 0.011306985739342452 __DUMMY__ 0.008085212543722674 14 0.003742213953265825 24 0.002820587350540746 20 2.9444559272599984E-5 false 0.0
923 19 0.1004286026595333 20 0.09479607126946382 21 0.09026080998467924 24 0.08144847825126775 18 0.07732238402751226 22 0.07164006259304262 12 0.06470949924651549 11 0.05805872779003699 23 0.05758855718220604 16 0.05037905312116967 14 0.04439838510468026 10 0.03891297233031754 17 0.038711940165879914 13 0.031476314474276935 15 0.028544849031145465 9 0.019811333267690398 __DUMMY__ 0.012189507220309675 0 0.011527825432991062 4 0.008831778203219865 5 0.008207131903811627 3 0.006034217746536908 6 0.0016047274521570484 8 0.001084145104442748 7 0.0010145759749613942 2 5.921844529866799E-4 1 4.2586600916529104E-4 false 0.0
802 0 0.0852773750226995 17 0.07800962062276033 9 0.06658473862643713 22 0.06352937217292623 11 0.05782721326417154 10 0.05612277358617547 18 0.054945691530009534 16 0.05054730605821171 6 0.045633863794054715 8 0.043228067410911133 7 0.043046994953531974 1 0.042915287091458185 2 0.04241167783592085 4 0.04230648702225397 5 0.04179580953326707 3 0.03803580381077643 19 0.03717814230658386 21 0.033109206223554156 12 0.022012812615845066 23 0.02096607144137741 15 0.010545247590131656 13 0.009795362609345501 __DUMMY__ 0.006836786376656888 24 0.0037014685965171793 14 0.0036201460768707713 20 1.6673827551892967E-5 false 0.0
803 20 0.10225852547291626 19 0.09843424106553979 21 0.08256985419916717 18 0.0785261101878583 12 0.07724152584277667 24 0.07552974461297192 23 0.05862952530590868 16 0.05643692846962277 22 0.05346925101348936 13 0.0508091887805178 14 0.04768937674267847 11 0.04698018377487598 10 0.04035593385147531 17 0.04003574951151167 15 0.03304822332147058 0 0.01392772046505263 9 0.01311949743791169 __DUMMY__ 0.011441670273853398 4 0.006445967483989994 5 0.006208013900180095 3 0.003288122602536683 6 0.0018151660925049375 7 6.454180367799387E-4 8 5.364568076848131E-4 1 3.8009958813354757E-4 2 1.7750515859162104E-4 false 0.0
804 17 0.08451769753692699 16 0.07645397637967614 0 0.07363220192510331 19 0.05375176322941006 22 0.05339613458080106 18 0.052816800317050695 9 0.04936635033548093 11 0.04689617642017572 6 0.039425505146902545 10 0.03916545024192438 8 0.03772348599907388 7 0.037425411681996215 1 0.037316631275216186 2 0.0368313966212883 4 0.035693778964801984 5 0.0352291631155927 3 0.03246684560994616 23 0.031481535021356935 21 0.030496411153795765 12 0.027323186465756502 20 0.025384843373371144 15 0.024095795165087204 24 0.022934284758118543 __DUMMY__ 0.008829209181483482 13 0.006778471232870534 14 5.674942667926528E-4 false 0.0
927 20 0.11349023111824288 19 0.10072076317852863 24 0.08221548903819552 18 0.07954172959446744 21 0.07864091062001514 12 0.07622085036446137 23 0.06524802243411096 16 0.05862443534314965 13 0.05067077311355702 14 0.04904058614495245 22 0.045523374663198855 15 0.039974372060993954 11 0.03808942250021032 17 0.03739506508271173 10 0.035786050968564825 __DUMMY__ 0.01726189528787211 9 0.007219985173618929 4 0.006228832653486169 0 0.0054188732239474095 5 0.005212379397817275 3 0.003443723799042112 6 0.001323541563731455 7 9.708241173679482E-4 1 9.36989244731066E-4 8 8.008793130246773E-4 false 0.0
928 10 0.10078367553679884 18 0.09940031922529037 11 0.07702175513388315 19 0.07300722703224921 22 0.07104213396337444 21 0.06802882635255687 14 0.0634842549090266 0 0.06232770673788167 13 0.055791824472230786 17 0.05536467331752295 12 0.05204516240335584 9 0.05183418384901369 20 0.0433067434798042 16 0.037421110346661283 15 0.03601722513181641 23 0.015490226431336981 24 0.01093650354310923 __DUMMY__ 0.010651939531286745 4 0.005444383705115266 5 0.00498903617410755 6 0.003579462147622264 7 7.721862990076316E-4 8 6.571745558652523E-4 1 5.844574516272154E-4 3 1.7808269455466115E-5 false 0.0
1000 17 0.08543503466619615 16 0.08200609770380969 0 0.07013629703150642 19 0.056937567900176414 22 0.0515086491782896 18 0.05143632287227241 9 0.0455013248740663 11 0.04438527793403298 6 0.03839935510457249 8 0.03673212524995754 7 0.03648408811384167 1 0.03645201655169255 2 0.03594169533511944 4 0.034522985083546794 5 0.03421410818576294 23 0.033976131935607855 10 0.03384181516048223 3 0.03149448331654515 21 0.03123536775522909 20 0.030777580522143744 12 0.03029740171043113 24 0.027617075806867567 15 0.02562624647466787 __DUMMY__ 0.007591716025242447 13 0.0074469930447880845 14 2.2424631515045707E-6 false 0.0
810 18 0.09323175288681354 10 0.0886990049975451 19 0.07682037881291903 11 0.07523436356952251 21 0.07473250084839238 22 0.0713618869958073 12 0.05946790619548726 14 0.0590946325837939 13 0.055270162450074885 0 0.05517492160890947 17 0.0525671983283865 20 0.0505627685934054 9 0.04588055954321618 16 0.03929436064550465 15 0.03013232471190595 24 0.022552468186523972 23 0.0219206060192213 __DUMMY__ 0.011618811206650245 4 0.005688600621620286 5 0.00547416134223785 6 0.0032185296714951237 3 6.315517715895712E-4 7 5.146609999704477E-4 8 3.933588897854022E-4 1 3.674903300944209E-4 2 9.503818912727041E-5 false 0.0
811 21 0.10233643287801206 22 0.09181995881782763 11 0.08674500620071308 19 0.0762921755399885 18 0.06708601400573717 12 0.06682032849747331 10 0.052420945749272495 24 0.05117272644059921 17 0.04560335572965437 9 0.04404652769645858 20 0.0436729678356308 0 0.04328819472842418 14 0.03840223204821382 13 0.035929471028825606 23 0.03476725883202083 16 0.03331791448916031 4 0.01457892529378252 __DUMMY__ 0.014383117831307765 5 0.014094038050274321 6 0.009244844654021095 3 0.008744457520674225 7 0.006779787775111533 8 0.006390367012734617 1 0.006307397224606004 2 0.005755553092219536 15 1.0272565866374907E-9 false 0.0
812 22 0.07939671520095697 18 0.068060056405782 21 0.06415866848048644 9 0.0627090847556929 11 0.06088879109699031 0 0.06017432176485632 19 0.05961207997866047 17 0.05949852688701879 10 0.0560653541420137 16 0.03275120270019661 4 0.032039242844484735 5 0.0312895839516465 12 0.031161861090978033 6 0.0295858296748855 24 0.02913121415480587 23 0.028629509585458932 3 0.02825052194229752 8 0.028218364389495338 7 0.028059994060139808 1 0.027760089108493455 2 0.02732167291742244 __DUMMY__ 0.02612581490832467 20 0.02589279185292581 14 0.014233151933152036 13 0.008647706355036979 15 3.378498177977365E-4 false 0.0
813 __DUMMY__ 1.0 false 0.0
814 21 0.10571604628293514 19 0.10558691462404349 20 0.09214297256470626 18 0.08679173186733925 22 0.08214035763141385 24 0.0775270449115359 12 0.06305530450783121 23 0.061799025679730474 11 0.05078480051907392 10 0.04977711196469713 14 0.044152567674782366 9 0.03431681527358016 13 0.028683300750531198 17 0.026764436652828256 16 0.025839440805949018 __DUMMY__ 0.013686559729863478 4 0.011213411692481273 5 0.011151952469967773 0 0.00836142945324684 3 0.008287394544568316 15 0.008263146441865413 7 0.00116899595071106 8 0.0010948744938845422 6 0.001091198175974963 1 5.119687466757032E-4 2 9.119658978303163E-5 false 0.0
815 21 0.10593526180754587 19 0.090730655843263 22 0.08225080576486994 20 0.07217404638612214 18 0.07212042438093548 12 0.07037611522181116 24 0.07001652302688958 11 0.0627345473211323 23 0.053917315406669226 14 0.04231837242659877 10 0.04193548697281662 13 0.03703991504694763 9 0.032667895842618824 17 0.03161667541027171 __DUMMY__ 0.031426474543845874 16 0.028805429076186436 0 0.017903830182838722 4 0.012935308212740564 5 0.01252681834560209 3 0.008242544191912912 6 0.005113639576433238 15 0.00407678162234806 7 0.003662857223795169 8 0.003493127333582468 1 0.003228653694249178 2 0.00275049513797332 false 0.0
816 20 0.11332421976285409 19 0.10057343075840482 24 0.08209522578174869 18 0.0794253774625717 21 0.07852587618901256 12 0.07610935595165409 23 0.06515257886567342 16 0.05853868063215537 13 0.05059665286866638 14 0.04896885050660925 22 0.04545678393503445 15 0.03991589830848439 11 0.03803370601613119 17 0.03734036429148006 10 0.03573370381263107 __DUMMY__ 0.018699425929478614 9 0.007209423916383399 4 0.006219721235339369 0 0.005410946599076497 5 0.0052047548281947955 3 0.003438686385250364 6 0.0013216055122603858 7 9.694040142808333E-4 1 9.356186346532656E-4 8 7.997078019708355E-4 false 0.0
937 16 0.09064614572858967 17 0.07976396984594575 19 0.07437059478247506 0 0.06124322132473186 18 0.053501161891663235 20 0.04886227833567038 22 0.0481487415669158 11 0.044047596414951214 23 0.04314175853381442 24 0.03768186742972968 9 0.03597979059345776 21 0.03443666296127289 12 0.03305157568518908 10 0.033031012834880386 6 0.03167149965972393 8 0.031007794469090775 7 0.030954809014540993 1 0.03071936173022195 2 0.030287190496922536 4 0.029389598789322548 5 0.028884973302575077 3 0.027820821759742455 15 0.02647597666660234 __DUMMY__ 0.009378316614445655 13 0.005503279567524486 false 0.0
938 16 0.09064614572858967 17 0.07976396984594575 19 0.07437059478247506 0 0.06124322132473186 18 0.053501161891663235 20 0.04886227833567038 22 0.0481487415669158 11 0.044047596414951214 23 0.04314175853381442 24 0.03768186742972968 9 0.03597979059345776 21 0.03443666296127289 12 0.03305157568518908 10 0.033031012834880386 6 0.03167149965972393 8 0.031007794469090775 7 0.030954809014540993 1 0.03071936173022195 2 0.030287190496922536 4 0.029389598789322548 5 0.028884973302575077 3 0.027820821759742455 15 0.02647597666660234 __DUMMY__ 0.009378316614445655 13 0.005503279567524486 false 0.0
818 21 0.10706796172465674 22 0.08315995974236914 19 0.07855700477159634 12 0.0774776939823476 11 0.07397041779903808 24 0.06392423747263669 18 0.06005038069750735 20 0.05526343150410674 23 0.047408872078275106 13 0.044771431809229406 14 0.041137767351704095 __DUMMY__ 0.037835138252653305 17 0.036251454276326915 10 0.03564651993517038 16 0.031672308018890566 9 0.03156393297130988 0 0.026599989130545388 4 0.014517243745250605 5 0.01379022870229548 6 0.008645395825080645 3 0.008212208489260301 7 0.005822362772865525 1 0.005576636251871187 8 0.005570230630544473 2 0.005053672878537971 15 4.535191859300003E-4 false 0.0
819 21 0.10706899153971354 22 0.08325794980616154 19 0.07824036072565962 12 0.07772624664290036 11 0.07450677051547575 24 0.06358004865176797 18 0.05986731902692547 20 0.054713030162528035 23 0.04711891140149056 13 0.04506839083672982 14 0.0411528322886535 __DUMMY__ 0.03765914569384801 17 0.03649047098463553 10 0.03570748518438513 16 0.031757502709822 9 0.03158384650246314 0 0.027041201343583638 4 0.01450820650734602 5 0.013759817974442243 6 0.008696422285622932 3 0.008133595422831067 7 0.005812497144547214 1 0.0055686711094282415 8 0.005561523334943651 2 0.00505602945856457 15 3.6273274553037994E-4 false 0.0
940 16 0.09073140090344906 17 0.07973323027875226 19 0.0745259868181574 0 0.061105313153381115 18 0.05352092539326748 20 0.04908226623830759 22 0.04813783959993068 11 0.043968148157088965 23 0.04324580775931375 24 0.03786814608518646 9 0.035909051670162825 21 0.03447551891750998 12 0.03304200767938801 10 0.032944640164836295 6 0.031639124228825095 8 0.030992225491356933 7 0.030940441081539274 1 0.030704574169369593 2 0.030266712016451754 4 0.02937421438033753 5 0.028867651565613262 3 0.027823258050080523 15 0.02653122757376763 __DUMMY__ 0.009136998624037653 13 0.0054332899998890145 false 0.0
1001 21 0.10043168640801801 19 0.09377746822249379 22 0.08359084038820389 20 0.07882671723131762 18 0.07725256695457572 24 0.07417444775237236 11 0.07132862972589114 12 0.06669202442943901 23 0.050234953009823384 10 0.04331542605398056 16 0.04293229555364339 14 0.042043885441983495 17 0.042027512969410825 13 0.031616325305235025 9 0.028794084560621006 0 0.02166680823325961 15 0.01613685253477737 4 0.009460354451967884 5 0.008585070676217183 __DUMMY__ 0.006917593469607536 3 0.004857570789201759 6 0.0024039074600681635 7 0.0011653082087686047 8 9.746798635466535E-4 1 7.799730657123545E-4 2 1.3017239863720978E-5 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.0847743234140805 17 0.07835214336309669 9 0.06135953136987235 22 0.05820131931662473 11 0.058086020545857577 16 0.05539555272010511 10 0.05048885462378912 18 0.04959691519994294 6 0.046980489083268295 8 0.043764895599056094 7 0.04341392986725574 1 0.043335904332805784 2 0.04282547542294627 4 0.04255876920785857 5 0.041984662319282794 3 0.03705035169412255 19 0.03611785084099501 21 0.03340085179402271 12 0.033059233500738854 23 0.024718630215880246 13 0.019202488695117394 15 0.007320471761216326 24 0.0033887499642174168 __DUMMY__ 0.002721241567014027 14 0.0019013435808329152 false 1.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.08479846582233697 17 0.07840190027767406 9 0.06150585791747561 11 0.058124589515145354 22 0.05806588629469817 16 0.055404679728104506 10 0.05052094636159346 18 0.04964961631064914 6 0.047052033049199055 8 0.04379845943492485 7 0.043527870257441786 1 0.043429529769702845 2 0.04279485578320636 4 0.042655633260497344 5 0.04192371745941584 3 0.03700795526986729 19 0.036119617358672314 21 0.0333793591622822 12 0.03298297882100194 23 0.024797534672133113 13 0.019154792717830212 15 0.007148236287679285 24 0.003248017389258946 __DUMMY__ 0.002721241567014027 14 0.0017862255121953376 false 1.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 0 0.0873787422767756 17 0.08686859278441132 16 0.06922819018354363 11 0.058037724423497 9 0.05703022831405502 22 0.05653289513735862 18 0.05209469429367569 10 0.04888488560449696 6 0.04297560008453215 19 0.04292006475752505 8 0.039365131649705794 1 0.03914029582563498 7 0.039113066400101835 2 0.03848760612569482 4 0.03760708936030947 5 0.03705726934810678 12 0.03554072146752107 21 0.0322556055596835 3 0.03176143740497644 23 0.02421009620512842 13 0.019405702267742395 15 0.012264100401008261 20 0.005159618025330402 24 0.004012045776410011 __DUMMY__ 0.002053316517110979 14 6.152798056638351E-4 false 1.0
824 22 0.09260781016619697 21 0.07620855767497983 9 0.06901112283958845 11 0.05671048368877116 24 0.05070899185407566 18 0.04931205872412584 19 0.04520527518558085 4 0.04443704494825904 5 0.04339054241191337 3 0.04215542656059584 0 0.040618991152324965 17 0.040595545369633015 8 0.03850750282573397 7 0.038075020677151995 6 0.03806260173903083 1 0.03790880083188271 2 0.03723566756649621 10 0.03659128895093301 23 0.03317294740657887 14 0.028686100705176625 12 0.018314272942211843 20 0.016943615051052505 15 0.009576044794276662 __DUMMY__ 0.008497246446059472 16 0.007377814844365509 13 8.922464300496089E-5 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 10 0.08483921660946517 18 0.07308754956838817 22 0.06697361833406631 9 0.06475460833108206 11 0.06460180430955242 21 0.0592284054147921 14 0.05684432552479872 0 0.05444643294322438 13 0.05039875050625198 12 0.040125393553695994 17 0.03569526959865025 19 0.033788221553356756 4 0.033039142182154986 5 0.032463405727445896 6 0.030749308804344393 7 0.02798570346913791 8 0.02798483160307916 1 0.027929259546311782 3 0.027594185623021038 2 0.027390426226547925 15 0.02537762059212258 23 0.023024128630220488 20 0.014366484675412058 24 0.0094955241059014 __DUMMY__ 0.006955639567667156 16 8.607429993088252E-4 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.06751276154753819 9 0.06744636280330388 18 0.058605688504167364 0 0.05679056214265684 17 0.05643932263000392 10 0.049223658746597454 4 0.04667533990652356 5 0.04587645873130995 6 0.04512850585701146 7 0.04490237711526448 8 0.044822512282946 1 0.04460801061616966 3 0.044414081499776416 19 0.044156882627757243 21 0.04413243424034572 11 0.04393028952968204 2 0.04374310491971728 23 0.03332505613291985 16 0.02909720654172785 24 0.027767419467680743 20 0.020675618887554426 12 0.014785752367709817 15 0.012263120829821101 14 0.012105795065402354 __DUMMY__ 0.0013312727923773043 13 2.4040421403509704E-4 false 1.0
1019 21 0.1024203982419334 22 0.09186277430359358 11 0.08680372365914843 19 0.0762522784395339 18 0.06703111822796594 12 0.066902462967764 10 0.05235354490667456 24 0.051236364055817794 17 0.04558780961454995 9 0.04404941638077507 20 0.04362523317117073 0 0.043282613450582486 14 0.038438251847359675 13 0.036012104107988954 23 0.03485619789890037 16 0.03327622359931967 4 0.014646385504527255 5 0.014160667570467383 __DUMMY__ 0.013629479254700132 6 0.009315577035754658 3 0.00879162687680481 7 0.0068400062849133135 8 0.0064506936464438355 1 0.0063659127032695126 2 0.0058091342008604096 15 2.049180083194594E-9 false 0.0
1016 22 0.08086049920857066 21 0.07922459748036136 11 0.07101382968114163 9 0.06013965965913789 10 0.050455643652517285 18 0.047959805761641904 12 0.04607215085861907 0 0.04279002044116215 4 0.04104094675513438 5 0.040541253518720184 14 0.03779852289513406 6 0.0367040570362402 24 0.036581300103704535 3 0.036034811973356284 23 0.03561670990028237 7 0.03456417615104474 8 0.03441023501349382 1 0.034224945957681954 19 0.034162828012330976 2 0.03382039231404517 13 0.03325732665536189 17 0.030379571999031844 20 0.012415863124130837 __DUMMY__ 0.00656498163106985 15 0.0027767516323089275 16 5.89118583776251E-4 false 0.0
951 17 0.0805421142250757 16 0.07044957900302035 0 0.07028182510662943 22 0.054269355607974 18 0.05258586753933658 19 0.05214426630183026 9 0.0513289818667261 11 0.044770042692618126 6 0.04088814765154167 8 0.03970777066691889 7 0.03945591601190578 1 0.03939273887617904 10 0.03900171185301844 2 0.03880515358229182 4 0.037971210282325515 5 0.03749044220196062 3 0.03536724323477301 23 0.03227260402970262 21 0.03079908943961114 20 0.02596319109639943 24 0.025528637217858516 15 0.024139175282161925 12 0.023470410083523706 __DUMMY__ 0.008091578375003433 13 0.00375143463166062 14 0.0015315131399533523 false 0.0
1013 20 0.10212510323256947 19 0.09817660549002172 21 0.08311958392105372 18 0.07833451903838305 12 0.07771577621386593 24 0.07571071685103857 23 0.05863293128642223 16 0.05581080676818197 22 0.05361312617063849 13 0.05123653595006918 14 0.04783206088618214 11 0.04720711172814488 10 0.04025241086647833 17 0.03967084199096155 15 0.03258838123050775 0 0.013768215245040655 9 0.013210236434053918 __DUMMY__ 0.011770686570419799 4 0.006448206642255767 5 0.006139120939335141 3 0.003278452580540739 6 0.0017772714625794962 7 6.092160276158566E-4 8 5.117600818189307E-4 1 3.0645707026894225E-4 2 1.5386532155157765E-4 false 0.0
952 10 0.08558599723390149 18 0.07388789943100199 22 0.06695660181709935 11 0.06479563666379581 9 0.06437895334915089 21 0.058904556984863674 14 0.0569014716251594 0 0.05464544974593955 13 0.05031513936345988 12 0.03991237031542311 17 0.03596378378979097 19 0.03431785464528329 4 0.03209691688860252 5 0.03153343135488535 6 0.029834810153291536 7 0.027034797329048007 8 0.02701618122436462 1 0.026927133080532243 3 0.02655289525402481 2 0.026371712152018778 15 0.02544120646797584 23 0.022464492947642366 20 0.01453668634764848 __DUMMY__ 0.013683640705163728 24 0.008709097308148447 16 0.0012312838217838089 false 0.0
953 18 0.12377164870065424 10 0.10151967450113185 19 0.08980276797748979 22 0.0841416777443256 17 0.06927483865591756 21 0.06390362637241728 11 0.06389807599137677 9 0.06262233300515198 0 0.06214592494602622 20 0.05624555074865482 14 0.043069741865779144 16 0.03926489213014713 15 0.028937107202236224 12 0.028890994724507228 13 0.019255276060423484 23 0.019176474563676032 24 0.016975810747360116 4 0.0071621596719519095 5 0.00565542508985991 __DUMMY__ 0.005238242953138538 6 0.0033132365026863255 8 0.0015401618850271054 3 0.0015205007726105222 7 0.001513079500811186 1 0.001160777686639153 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 9 0.06630742863303603 22 0.06031817641454449 0 0.054139257300046775 17 0.05190646946039969 3 0.051060354884874135 4 0.05094967878503921 8 0.05061627994524931 7 0.0503937367648199 1 0.05031017483913689 5 0.050248501229343455 2 0.04975138515590793 6 0.049493385656588826 18 0.048437912649726404 10 0.046543871486415055 11 0.03792389200515066 19 0.037459994294514895 21 0.0355457048790449 23 0.03276196460476824 16 0.02964152461136984 24 0.028738605265849218 15 0.024205597124173448 20 0.018292765757716024 14 0.017580059178032233 12 0.006448231514184072 __DUMMY__ 9.250475600681315E-4 false 1.0
954 14 0.14484142731506547 15 0.11947160646635481 13 0.11634293630794545 10 0.09227897798889295 18 0.08397591795730544 12 0.061377844748179845 20 0.05662425479748014 21 0.05568321717758798 11 0.04713123333950897 19 0.042507373573555836 22 0.03769846719347775 9 0.02936248077123891 23 0.025473209916985658 24 0.02047102533872577 0 0.015781312735049593 17 0.014755324845643271 __DUMMY__ 0.012206186731345128 16 0.007588227049489153 4 0.005893503252530404 5 0.005595518964501502 6 0.0032432542050197335 3 6.1835851980531E-4 8 5.011403831913907E-4 1 2.8448439830612213E-4 7 2.686797176014133E-4 2 2.403630521188033E-5 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.08993153140369747 0 0.08749888468439296 16 0.07635219728033758 11 0.058497748440595396 22 0.05534597553139805 18 0.05366064822307218 9 0.052761426463622474 10 0.04777000701279833 19 0.0476530807652972 6 0.040002501732086686 12 0.03906003594477218 8 0.0359890091589204 7 0.035812907963963546 1 0.035640314873306045 2 0.03519235895551537 4 0.03431737505891659 5 0.033753183836186466 21 0.03302559574403046 3 0.028087092934118756 23 0.02581699725564226 13 0.020749318833514968 15 0.01492635636044696 20 0.010190196069207305 24 0.00607210363143621 __DUMMY__ 0.0012858581005393511 14 6.07293742184763E-4 false 1.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 9 0.06537211907380099 22 0.05951208588066952 0 0.05266497990047552 3 0.051474725867267285 4 0.05106776719162082 17 0.05083359122550428 8 0.050828700601122594 7 0.050602648793835164 1 0.050465922327156576 5 0.050445307925365786 2 0.0499871752315103 6 0.049535727621540626 18 0.047822764110922115 10 0.04579460013516473 19 0.03748019649516004 11 0.03665246481828339 21 0.035078045495700275 23 0.033680115834383156 24 0.029781702770580187 16 0.02973433171065185 15 0.025875584640954876 20 0.019549655783407942 14 0.01844311435496686 12 0.005849744144130778 __DUMMY__ 0.0014669280658240944 false 1.0
836 22 0.08548789247914601 21 0.08370095763359472 11 0.07564168799905642 9 0.06012569101606491 10 0.051115063085163795 18 0.04989454418948607 12 0.047112652938572544 0 0.04418260756457864 19 0.03844045136577182 4 0.03831343414446401 5 0.037821103284853504 24 0.037748945528013965 14 0.037072195973495106 23 0.03426041046072786 6 0.033631677811379795 3 0.03317972925585554 17 0.03273776089953464 7 0.03147065952144261 13 0.031312311582047676 8 0.03130904359875844 1 0.03118299138926374 2 0.03072309578117661 20 0.013012032915379312 __DUMMY__ 0.006619428331353362 16 0.003234435398476658 15 6.691958523422597E-4 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.09649747393743205 23 0.07588449240953961 20 0.07083505474718774 21 0.05780667252235604 19 0.05593239251432078 4 0.0498142043015028 3 0.049740038404897366 5 0.04888360146602371 22 0.046351309956541985 8 0.04572618908890188 7 0.04537256748280245 1 0.04525983725372011 2 0.044867494656587924 6 0.04416906678266122 12 0.03738323214096778 18 0.03415082082224744 9 0.02884496275863497 16 0.028633314918027505 17 0.024600196151267514 15 0.023391054094743655 14 0.019855804257366782 11 0.016457835695966958 13 0.008841838988274925 10 7.005446480270079E-4 __DUMMY__ 0.0 false 1.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.09686923367099465 23 0.07598170331004353 20 0.07090624698867994 21 0.057798154604090504 19 0.0559743106190357 4 0.04983805395234969 3 0.04965025185951616 5 0.04884020737714161 22 0.04627265058619093 8 0.04570056283665864 7 0.04533221248876477 1 0.045186817267173565 2 0.04476986894333781 6 0.044168647586309846 12 0.03738364271512852 18 0.0341288025432865 9 0.028789430276014025 16 0.02868496635903103 17 0.024520094714672497 15 0.02339017329885889 14 0.0198590374046339 11 0.016479521036872665 13 0.008809785668432121 10 6.656238927821697E-4 __DUMMY__ 0.0 false 1.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.09603409428764004 23 0.07585386819198786 20 0.07089772403160718 21 0.05775084418958033 19 0.055948251997299234 4 0.049827650972551506 3 0.04969987957493811 5 0.04889803745977239 22 0.04656985637054477 8 0.045673750828873344 7 0.04537736263614793 1 0.045215188501243134 2 0.044830678889263724 6 0.044202983858398964 12 0.037359807403857685 18 0.034284311585945755 9 0.028853211203579615 16 0.02862495691484907 17 0.024637564634133417 15 0.023393919364796595 14 0.019929523194540798 11 0.016467228869139473 13 0.008863857276081572 10 8.054477632276203E-4 __DUMMY__ 0.0 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.09652586371118867 23 0.07588888895498089 20 0.07083542961048983 21 0.05780824343401673 19 0.05593331664863793 4 0.0498145822169901 3 0.04973826584949119 5 0.048881613291102195 22 0.046341274482810675 8 0.04572705309229104 7 0.04537100705938384 1 0.045258796518653645 2 0.04486533835743928 6 0.044167918330744946 12 0.03738402951626734 18 0.034145594067259255 9 0.028842760303936652 16 0.028635386383056304 17 0.024596167744423286 15 0.02339092774455386 14 0.019853451876440588 11 0.016458274036528366 13 0.008839990790806825 10 6.958259785068584E-4 __DUMMY__ 0.0 false 1.0
1030 21 0.10238778923742571 22 0.0918823194744105 11 0.08680410627944216 19 0.0763550895448801 18 0.06714627518946258 12 0.06686422561138568 10 0.05247324240760025 24 0.05121498922639246 17 0.04564822458085261 9 0.04407708096179711 20 0.04371366760201008 0 0.0433267264683851 14 0.03842922767024473 13 0.035936769592020114 23 0.03476304842047195 16 0.03336036146925393 4 0.014582203605594705 5 0.014094145427666375 __DUMMY__ 0.013726438611910693 6 0.009237421079477897 3 0.008752684159325324 7 0.006771302889922534 8 0.006386862992427066 1 0.006306347349595939 2 0.005759449239679078 15 9.083653974903772E-10 false 0.0
1028 22 0.10558223708835254 21 0.0977848203741871 11 0.09526341950957606 19 0.09290566285437139 18 0.07406494230821904 17 0.0622680070499666 10 0.05656811494212842 0 0.05479852810672373 16 0.05360504557349106 12 0.04940852800547069 9 0.048630585122891055 24 0.048571230626333645 20 0.040539335935235565 23 0.03059595290918845 14 0.026228374659630217 4 0.011228561313290109 5 0.011113926407660726 13 0.009411092801503929 __DUMMY__ 0.008141961768182136 3 0.006128739288014838 6 0.00508978816209718 7 0.002896613697796302 8 0.0027982075291377397 1 0.002683339146382391 2 0.002378459469163382 15 0.0013145253510058106 false 0.0
1026 21 0.10705545532292873 22 0.08335660573110057 19 0.07819823605250746 12 0.07783885400647717 11 0.07484051397757112 24 0.06335210247666456 18 0.05997127516473127 20 0.054522581875325986 23 0.04696062289890687 13 0.045215709035184654 14 0.041204816869876856 __DUMMY__ 0.037175473478711696 17 0.036648974626292116 10 0.035939016427540695 16 0.03178588580483286 9 0.03163815831199725 0 0.02732507733912852 4 0.014460106573880308 5 0.013695457191359797 6 0.008666502460233483 3 0.008046513062784217 7 0.005747831915905676 1 0.005501388056473413 8 0.0055002059389610445 2 0.005001477256574199 15 3.5115814404954385E-4 false 0.0
841 17 0.0854060975421089 16 0.08196726406925708 0 0.0701364152418563 19 0.0569334499335073 22 0.0514242079687865 18 0.05127229262462955 9 0.04549472897697007 11 0.04447663570833005 6 0.03836751539071319 8 0.03672243062825051 7 0.03646386485188165 1 0.036391211492374086 2 0.03588893078396212 4 0.03448368313861181 5 0.03409706703887244 23 0.03398975043786072 10 0.03387110638799201 3 0.03144148197154592 21 0.03123363511480378 20 0.030781069667513584 12 0.030296506630684426 24 0.027609448632612943 15 0.02558279558635771 __DUMMY__ 0.00821859345981306 13 0.0074450053035190695 14 4.811417185366759E-6 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.10289236075597319 22 0.09258698835310661 11 0.08743179395243104 19 0.07681698147441018 18 0.06750436637840453 12 0.0674106958456306 10 0.05276166584014544 24 0.0516647361154737 17 0.04594712252583599 9 0.04432344582170968 20 0.04385420713118349 0 0.043578179281763094 14 0.03876055662771745 13 0.036128378137359474 23 0.0348746284032241 16 0.03361786087010872 4 0.014719132637169084 5 0.014238069824508563 6 0.009292980243120415 3 0.008855080772574278 __DUMMY__ 0.007409972388708422 7 0.006777412844532416 8 0.0063814788594372535 1 0.006332526772959348 2 0.005839377257377532 15 8.851354752270326E-10 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.11233421991839866 24 0.08720977420381629 19 0.08660491373262265 23 0.07274759987260447 12 0.06958785776531294 18 0.06353733585524042 16 0.0624194590147291 21 0.05844791161718308 15 0.05199454030010838 13 0.04949362512566059 14 0.045901919626219014 17 0.033750215315756116 22 0.029772449378145868 11 0.02464386077768468 10 0.02222719029586453 4 0.0183121352563209 5 0.017462728171859995 3 0.01713675299328753 7 0.01521543669945366 6 0.015088719030310435 8 0.01505926407168933 1 0.014803394547316443 2 0.01472904262607683 9 0.0015196538043381767 __DUMMY__ 9.476943297970624E-19 false 1.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.08799759151245642 17 0.07974225599759108 9 0.06590005366368899 22 0.06303013641911273 11 0.059463842408996936 10 0.057477881971400455 18 0.055478562760669786 16 0.05336701604849651 6 0.04525485475816891 8 0.04254746012502451 7 0.04246515188467337 1 0.04215521463146962 2 0.04173533544026328 4 0.04146004305991895 5 0.040760419319263615 19 0.037544717383054454 3 0.036884372435268716 21 0.03274786585160254 12 0.02357382583916839 23 0.020977282493507082 13 0.011526217672083663 15 0.010830453144783325 14 0.0032932277612880852 24 0.002308553022354016 __DUMMY__ 0.001456245080317992 20 2.1419315376919346E-5 false 1.0
843 9 0.07254567785077141 22 0.07163893994523794 0 0.0650060565568787 18 0.0646715396647486 10 0.06193097614164133 17 0.059389663650262006 11 0.05135207667507225 19 0.04367494333625615 21 0.043573918309618626 4 0.043190118932557794 5 0.04230690283947607 6 0.04186087534674707 7 0.04124984218073825 8 0.04115297813974922 1 0.04090234166373372 3 0.04047506558904917 2 0.040123223715643405 16 0.0278943436058344 23 0.024722720502108924 14 0.017034579533604773 24 0.016980198758249535 15 0.013940920233792885 20 0.013413035553849055 12 0.01195091835939018 __DUMMY__ 0.006576926018131875 13 0.0024412168968566328 false 0.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.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 __DUMMY__ 2.1966368364351748E-18 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.09686923367099465 23 0.07598170331004353 20 0.07090624698867994 21 0.057798154604090504 19 0.0559743106190357 4 0.04983805395234969 3 0.04965025185951616 5 0.04884020737714161 22 0.04627265058619093 8 0.04570056283665864 7 0.04533221248876477 1 0.045186817267173565 2 0.04476986894333781 6 0.044168647586309846 12 0.03738364271512852 18 0.0341288025432865 9 0.02878943027601403 16 0.02868496635903103 17 0.024520094714672497 15 0.02339017329885889 14 0.0198590374046339 11 0.016479521036872665 13 0.008809785668432121 10 6.656238927821697E-4 __DUMMY__ 0.0 false 1.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.08790537439473783 17 0.07969221669561641 9 0.0657932984736782 22 0.06294096020016482 11 0.05940676204536139 10 0.05734671957134136 18 0.055384233714883775 16 0.053438896436719695 6 0.04523743457607086 8 0.04253291275144807 7 0.04243370157535663 1 0.042139436490411984 2 0.0417609520185412 4 0.04144367296222479 5 0.04078567331075275 19 0.037530201201794025 3 0.03690489165066925 21 0.032706685993176436 12 0.023662739878584305 23 0.02096540924396873 13 0.01159972028658592 15 0.010920047342424523 14 0.00335157832603921 24 0.002340352675910101 __DUMMY__ 0.0017579555329000794 20 1.8172650637713975E-5 false 1.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.09686923367099465 23 0.07598170331004353 20 0.07090624698867994 21 0.057798154604090504 19 0.0559743106190357 4 0.04983805395234969 3 0.04965025185951616 5 0.04884020737714161 22 0.04627265058619093 8 0.04570056283665864 7 0.04533221248876477 1 0.045186817267173565 2 0.04476986894333781 6 0.044168647586309846 12 0.03738364271512852 18 0.0341288025432865 9 0.02878943027601403 16 0.02868496635903103 17 0.024520094714672497 15 0.02339017329885889 14 0.0198590374046339 11 0.016479521036872665 13 0.008809785668432121 10 6.656238927821697E-4 __DUMMY__ 0.0 false 1.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.08790537439473783 17 0.07969221669561641 9 0.0657932984736782 22 0.06294096020016482 11 0.05940676204536139 10 0.05734671957134136 18 0.055384233714883775 16 0.053438896436719695 6 0.04523743457607086 8 0.04253291275144807 7 0.04243370157535663 1 0.042139436490411984 2 0.0417609520185412 4 0.04144367296222479 5 0.04078567331075275 19 0.037530201201794025 3 0.03690489165066925 21 0.032706685993176436 12 0.023662739878584305 23 0.02096540924396873 13 0.01159972028658592 15 0.010920047342424523 14 0.00335157832603921 24 0.002340352675910101 __DUMMY__ 0.0017579555329000794 20 1.8172650637713975E-5 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.09384328491011183 21 0.07744257067193312 9 0.06941252012610905 11 0.05759447011675306 24 0.05177216406079967 18 0.04948951185721153 19 0.045737917989859996 4 0.04461164001249357 5 0.04351434857586618 3 0.04229607755526868 0 0.040622261625245265 17 0.040563931093824286 8 0.03844371750414992 6 0.03801023814860395 7 0.03791960078379972 1 0.03776068628656126 2 0.03724418434832638 10 0.03668136729324226 23 0.03331218384495669 14 0.029175351103239346 12 0.018557299038444063 20 0.017118146543650768 15 0.009483257245911572 16 0.006980854110860974 __DUMMY__ 0.0023560120753740536 13 5.6403077402512034E-5 false 1.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.09685298929762087 23 0.07598058971652304 20 0.07090837701743717 21 0.05779622683954702 19 0.055974836488840225 4 0.049838506259216854 3 0.04964891125843519 5 0.04884073097661428 22 0.04628025875009318 8 0.045698761842869355 7 0.045332400703109635 1 0.04518531201313243 2 0.044768648378946264 6 0.044169821832388774 12 0.03738283165853676 18 0.034133435360789256 9 0.02878974638558953 16 0.028684648595434716 17 0.024521432329621534 15 0.02339027296339012 14 0.019861587351192374 11 0.016479834227259113 13 0.008810565475354332 10 6.69274278058073E-4 __DUMMY__ 0.0 false 1.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.10192463102426362 22 0.08969476841404732 11 0.08746206204996117 12 0.06912491999214641 19 0.0562837342063896 24 0.05279769754152247 18 0.0475225901579211 23 0.04378753929445605 13 0.04269012896949468 9 0.04201262718895184 14 0.03921375099984402 0 0.03916298221176931 17 0.03812463789727916 10 0.03463634175299565 4 0.026720360482355283 5 0.02599093155468147 20 0.025473352037548854 6 0.022397690627985203 16 0.021689667727834063 3 0.018878848288958618 7 0.01872717636529315 8 0.018527603201253892 1 0.018176213521934253 2 0.01731684725669381 __DUMMY__ 0.0016628972344189857 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.09685298929762087 23 0.07598058971652304 20 0.07090837701743717 21 0.05779622683954702 19 0.055974836488840225 4 0.049838506259216854 3 0.04964891125843519 5 0.04884073097661428 22 0.04628025875009318 8 0.045698761842869355 7 0.045332400703109635 1 0.04518531201313243 2 0.044768648378946264 6 0.044169821832388774 12 0.03738283165853676 18 0.034133435360789256 9 0.02878974638558953 16 0.028684648595434716 17 0.024521432329621534 15 0.02339027296339012 14 0.019861587351192374 11 0.016479834227259113 13 0.008810565475354332 10 6.69274278058073E-4 __DUMMY__ 0.0 false 1.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.10044027583322633 19 0.09379292260284568 22 0.0839007056242529 20 0.07989041420891937 18 0.07841545305304413 24 0.07423520316426184 11 0.07125483306968292 12 0.06677801530708352 23 0.050528842513039136 10 0.0436763032662969 16 0.0431343867703129 14 0.042458314327590264 17 0.04228042390175507 13 0.031597480082664484 9 0.028921777673572645 0 0.02184533265396201 15 0.01627119198606294 4 0.009512792161008046 5 0.008556173980425156 3 0.0048411020996412864 6 0.0025582753013095147 7 0.001515377237228933 __DUMMY__ 0.0013363023911354397 8 0.0011634467297004143 1 0.001085780140049248 2 8.873920928973701E-6 false 1.0
849 18 0.0703306460124492 22 0.06989199428824484 19 0.06300446848697927 9 0.05875447053522176 17 0.05835184072422142 21 0.05281119027720239 0 0.04880987199831514 10 0.048127306012831036 11 0.043972616954024143 20 0.04169405696734969 24 0.03950457062239005 16 0.03798380907007308 23 0.03774372644489695 4 0.03658642444833827 5 0.03601598677171062 3 0.03393693288940137 6 0.03385693970424339 8 0.03337642994870852 7 0.03326326248741963 1 0.032648651649424404 2 0.03231530586583458 12 0.022947874305166444 15 0.013709490805675878 14 0.013563658615778833 __DUMMY__ 0.0061429909039074455 13 6.554832101916464E-4 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.11241128486800686 24 0.08729839940886956 19 0.08670946001839222 23 0.0728670255795457 12 0.06946468532421742 18 0.06381299269047667 16 0.06231380665565929 21 0.058503380546772475 15 0.05200528390504257 13 0.04948895737642435 14 0.04590985012767672 17 0.033774035741299106 22 0.02991820625132713 11 0.024553049646128887 10 0.022265359548326383 4 0.018263718332568984 5 0.01736435417543778 3 0.017048365633082128 7 0.015197889979981291 6 0.015019611669655967 8 0.014922307131908468 1 0.01481600706343453 2 0.014633710224155216 9 0.0014382581016102712 __DUMMY__ 1.5028405125608264E-18 false 1.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.08177442835564366 9 0.071102485905724 21 0.059042443001299745 0 0.05381818505571666 11 0.05351520222000503 18 0.051825157370049446 17 0.050114343346527625 4 0.0467236593062789 5 0.04572779302648173 10 0.044911434175921604 3 0.0446125547040292 8 0.043149583499380924 6 0.04303767884607368 7 0.042691626806601525 1 0.04251444627069695 2 0.04208027230285097 19 0.04131688079917864 24 0.036117273772888016 23 0.029236417077124054 14 0.019851640055580048 16 0.017484140825976293 12 0.014549086891715432 20 0.012713382046773214 15 0.009726122077847617 __DUMMY__ 0.0023353331614454466 13 2.842909818937582E-5 false 1.0
1044 22 0.08674408845225849 9 0.07081974183954522 11 0.06864024835813576 21 0.06418644364004829 0 0.06347145537712397 18 0.05781249095408647 17 0.05733398456765235 10 0.054686767020555326 19 0.046799962279758224 4 0.03997571071698999 5 0.039270527871115804 6 0.03726277799122445 3 0.036155743892285264 8 0.03604856826513192 7 0.03597335398890415 1 0.035678729681224305 2 0.03484753539111571 24 0.026673776639625724 16 0.025102668716815737 23 0.0239833500760331 12 0.023419029587300275 14 0.015635482240624932 20 0.009095036722664323 __DUMMY__ 0.0071389844352041845 13 0.003209244475907021 15 3.4296818669354575E-5 false 0.0
1042 19 0.10088315805151218 20 0.0969963970162296 21 0.09023498228333658 18 0.08166705897767447 12 0.0763249290265867 24 0.07538570886568746 22 0.06263358327718183 23 0.06007007360685044 16 0.050303356972327185 11 0.050218325185117596 13 0.04337831892705314 14 0.04175150439399636 17 0.04082031289305043 10 0.04040921606896191 15 0.022575863642881038 9 0.018588545148154976 0 0.014989900431019955 __DUMMY__ 0.009245712035440402 4 0.008015942757613758 5 0.0077806152512133915 3 0.003897001795992279 6 0.0022218276861848307 8 4.898182591868278E-4 7 4.4204544970943545E-4 1 3.837674171818976E-4 2 2.920345798554957E-4 false 0.0
970 0 0.08696592494116115 17 0.0862126980203916 16 0.0681835302369201 11 0.058047984262818285 9 0.05737301066454684 22 0.057371932632415384 18 0.05269778117066541 10 0.049441047497624555 19 0.04318423226314268 6 0.042398869492276475 8 0.03887788865566476 7 0.038584821366720944 1 0.038584123897952044 2 0.03806199873226877 4 0.03725976458983078 5 0.036786588891769265 12 0.03444323499128293 21 0.03252004449435811 3 0.031574637753809726 23 0.023563764256031874 13 0.01837250716958957 15 0.01206152915820208 __DUMMY__ 0.007297126546788222 20 0.0052012257513553975 24 0.0040562266021457825 14 8.77505960267363E-4 false 0.0
850 22 0.08147946027465972 18 0.06769860244911399 21 0.06535502057706453 9 0.06286207206972028 11 0.062319427450097345 19 0.06152674493051587 17 0.05978497277645163 0 0.058767145549321234 10 0.05490343751876621 16 0.03449957803215143 4 0.03262561355594838 5 0.03195922377164351 24 0.031937592594435175 12 0.0308336352366069 6 0.029698124584519037 23 0.029527307443130573 3 0.02877208796074737 8 0.028225435722324013 7 0.028107803762101716 1 0.027805775406078814 2 0.027480491165711596 20 0.02716140494575973 14 0.015146055603036676 __DUMMY__ 0.012859316476416121 13 0.006541445047176591 15 0.0021222250965014814 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.11237092358039563 24 0.0872086502551169 19 0.08665129781527374 23 0.07272486070679132 12 0.06957487958733113 18 0.06359589632972193 16 0.06241896288241169 21 0.05847076604733687 15 0.05201131495686338 13 0.04948490839527265 14 0.04592898836983327 17 0.03376058322085816 22 0.029798233743403957 11 0.024643097243803584 10 0.022270056476495107 4 0.01828219380606662 5 0.01743189022667007 3 0.017108845175523482 7 0.015183099584531729 6 0.015053209551066309 8 0.015025463107886163 1 0.014771310189997475 2 0.014695534695129091 9 0.0015350340522197689 __DUMMY__ 1.5028400075624042E-18 false 1.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.09843049103281007 22 0.0946637196279865 11 0.08640357641788937 19 0.06024425002035521 12 0.056553856852506086 18 0.05455061560097976 24 0.05094180376550982 9 0.04972567349300611 10 0.04349860494586846 0 0.04248257165126395 17 0.04144753520275452 23 0.038181055568017916 14 0.03569184023229818 13 0.028912895663725235 4 0.02685025093425932 20 0.026727025750630636 5 0.02628737376374407 16 0.022225941052177314 6 0.021667587328324342 3 0.020440407209584982 7 0.019152103645550506 8 0.01876463326857401 1 0.018558343918258093 2 0.017554515715358654 __DUMMY__ 4.332733218117974E-5 15 6.385778140048288E-12 false 1.0
852 21 0.10691406409854882 22 0.08959630498083962 11 0.08527181972054002 19 0.08435515594316925 12 0.07462527801466583 18 0.07265244592435294 24 0.05480977884994366 20 0.054330773773633434 10 0.05338798863058023 17 0.045809920694976095 13 0.042098657024625556 0 0.040652904068891674 14 0.040506749248067866 9 0.039243905984480056 23 0.03801830802121749 16 0.03719575328133932 4 0.009880850117596802 5 0.00935447660051878 __DUMMY__ 0.007284202032803764 6 0.004522510502881175 3 0.0036597132189426502 7 0.0019258697043605865 8 0.0014510522787203235 1 0.0014140698829154255 2 6.928897519571743E-4 15 3.445576494315597E-4 false 0.0
853 22 0.09307087615614994 21 0.07690592920163407 9 0.06895164318836985 11 0.05686813215889285 24 0.0512977118288217 18 0.0492243248426751 19 0.04537413367153621 4 0.044361738605782 5 0.043314621771266104 3 0.042074377483300736 17 0.04023765709309322 0 0.04013086104279458 8 0.038334562436767666 7 0.03789877793101999 6 0.03787793664159455 1 0.03773230533268706 2 0.03705995344367984 10 0.036286238241772344 23 0.03332613203245619 14 0.029037988239810637 12 0.018466628418842685 20 0.017107346241094043 15 0.009567821472202346 __DUMMY__ 0.008412032650405611 16 0.006987724622989828 13 9.254525036078045E-5 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.07964478680372451 9 0.07135032216710434 21 0.055881095506298196 0 0.05576756787028149 18 0.052599940297665536 11 0.05243449089567305 17 0.051762340479232165 4 0.047026751075208685 10 0.04610889214104498 5 0.046108015674715626 3 0.04497158829623319 8 0.0440186092439768 6 0.04391860966316722 7 0.04367057964324578 1 0.043499849626127386 2 0.042884273970006125 19 0.04051134652360673 24 0.033236416663809935 23 0.02884531296902144 16 0.01937020939265627 14 0.018316539673998503 12 0.013906013602443798 20 0.012105668369587182 15 0.009976219842952268 __DUMMY__ 0.0020486861226005878 13 3.587348561833729E-5 false 1.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.1123709235803956 24 0.08720865025511687 19 0.08665129781527371 23 0.0727248607067913 12 0.06957487958733112 18 0.06359589632972193 16 0.062418962882411694 21 0.058470766047336864 15 0.052011314956863376 13 0.04948490839527265 14 0.04592898836983326 17 0.03376058322085816 22 0.029798233743403957 11 0.024643097243803584 10 0.022270056476495104 4 0.018282193806066615 5 0.01743189022667007 3 0.017108845175523482 7 0.015183099584531727 6 0.015053209551066305 8 0.015025463107886161 1 0.014771310189997474 2 0.01469553469512909 9 0.0015350340522197689 __DUMMY__ 1.5028400075624042E-18 false 1.0
976 10 0.10211278161796081 18 0.08979646986114817 11 0.0681265604393098 14 0.06599008480686629 0 0.0657660308569347 22 0.06452805309346235 9 0.06145146696601762 19 0.0528636271547672 17 0.052241457951409734 13 0.04977085140460913 21 0.04937711130983309 15 0.04691026190874344 12 0.032961277289939826 16 0.028037283315047356 20 0.02651512611956822 4 0.01758068995028602 5 0.017192718003914902 6 0.016544425775736133 1 0.014902961914040096 7 0.014892276768046837 8 0.014779326018557746 2 0.014141881412903063 3 0.013888665312210747 23 0.01086021816563178 __DUMMY__ 0.008768392583055167 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.10192463102426362 22 0.08969476841404732 11 0.08746206204996117 12 0.06912491999214641 19 0.0562837342063896 24 0.05279769754152247 18 0.0475225901579211 23 0.04378753929445605 13 0.04269012896949468 9 0.04201262718895184 14 0.03921375099984402 0 0.03916298221176931 17 0.03812463789727916 10 0.03463634175299565 4 0.026720360482355283 5 0.02599093155468147 20 0.025473352037548854 6 0.022397690627985203 16 0.021689667727834063 3 0.018878848288958618 7 0.01872717636529315 8 0.018527603201253892 1 0.018176213521934253 2 0.01731684725669381 __DUMMY__ 0.0016628972344189857 false 1.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.11241128486800686 24 0.08729839940886956 19 0.08670946001839222 23 0.0728670255795457 12 0.06946468532421742 18 0.06381299269047667 16 0.06231380665565929 21 0.058503380546772475 15 0.05200528390504257 13 0.04948895737642435 14 0.045909850127676725 17 0.033774035741299106 22 0.02991820625132713 11 0.024553049646128887 10 0.022265359548326386 4 0.018263718332568984 5 0.01736435417543778 3 0.017048365633082128 7 0.015197889979981291 6 0.015019611669655967 8 0.014922307131908468 1 0.01481600706343453 2 0.014633710224155216 9 0.0014382581016102712 __DUMMY__ 1.5028405125608264E-18 false 1.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 22 0.10348918703306512 19 0.0966539890917678 21 0.09538593494647231 11 0.09319026193910403 18 0.07612489296329146 17 0.06459026866903844 16 0.0584095688273681 10 0.05671574866348394 0 0.054770798950118736 24 0.049137646685258 12 0.04866591744451668 9 0.04709967677934239 20 0.044235249665796596 23 0.031862758225479744 14 0.025449710131583956 4 0.010357239103488361 5 0.010316963093676168 13 0.00828859719655967 3 0.005289514854661681 6 0.004399789525121095 15 0.003937963317038813 __DUMMY__ 0.003506429693497287 7 0.0022444043503848246 8 0.002167826738900062 1 0.0020922915407445967 2 0.001617370570240089 false 1.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.11316897623924584 19 0.08766576059292525 24 0.08725957849361535 23 0.0723689132527646 12 0.06921323685706411 18 0.06499567192621795 16 0.06232152244908491 21 0.058973891082822465 15 0.05235577305844752 13 0.04930667320938763 14 0.046477038284951665 17 0.03398771324769569 22 0.03043475786381516 11 0.02455260128316493 10 0.023159164841966114 4 0.017643142083290778 5 0.016733523764419993 3 0.016477365034702592 7 0.014521696153205348 6 0.01428563679156589 8 0.014235864968772508 1 0.014139944935420352 2 0.013946277538993197 9 0.001775276046460019 __DUMMY__ 9.476936296444222E-19 false 1.0
978 10 0.10109146047349007 18 0.08780305206982078 11 0.06694279923092 14 0.06649360519692618 0 0.06508223035790221 22 0.0642063185099428 9 0.06279130778268212 17 0.05023602098796354 19 0.0498585525937148 13 0.048956528724714635 21 0.048775066231025364 15 0.04728700777166592 12 0.03078549039574264 16 0.025037856311449 20 0.02464551393703763 4 0.01961579693112675 5 0.019268737546966137 6 0.018510825931174636 7 0.016998969089506273 1 0.0168627895909194 8 0.01683700805088431 2 0.016269813835243004 3 0.016224861380420733 23 0.011016987290793938 __DUMMY__ 0.00840139977796725 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.08692522469315943 17 0.07948300778717195 9 0.06579795648595275 22 0.06272016329312494 11 0.05895935180259882 10 0.056374279093732 18 0.05537498987062173 16 0.05322581688256812 6 0.04537720252320875 8 0.04270703819870928 7 0.04261284564807782 1 0.0424780195366939 2 0.04170074417527434 4 0.04164675181837161 5 0.041021566252850944 19 0.03758271863432444 3 0.036905677999958746 21 0.032824830243529356 12 0.02381871364124563 23 0.02119164325797041 13 0.011824406480719446 15 0.011334670394953474 14 0.0036569460071961004 24 0.002679306408772092 __DUMMY__ 0.0017579562115606735 20 1.8172657653284988E-5 false 1.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.11742543203354974 19 0.09309641933548048 24 0.08864574513106127 18 0.07689412961682061 23 0.06749661062387563 15 0.05463290281851396 16 0.05237910250889569 21 0.04534602925860333 14 0.03962032087129506 12 0.03777896346602334 17 0.03570733433798406 10 0.03306889273872156 22 0.032065354196930795 3 0.027713303236356113 4 0.023340650928943406 5 0.023227962128524515 8 0.021602443242481305 1 0.021447868730659313 7 0.02131875273703154 2 0.02124368846718014 9 0.02069853114265109 13 0.020367274855327647 6 0.017445770885564135 11 0.004808810789202856 __DUMMY__ 0.002627705918322262 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.10372658949154255 22 0.09145540156959726 11 0.08733177922787277 19 0.07217471548290788 12 0.06914799194787864 18 0.062469807704414924 24 0.05301640435805625 10 0.04757970956530514 17 0.04358530581061262 9 0.04297421187410058 0 0.04182894640814554 20 0.040060509787199716 14 0.03917507235146555 13 0.03909606618540264 23 0.038257618912533056 16 0.03032479773989807 4 0.01759336058947872 5 0.017071788959677404 6 0.012554388969106796 3 0.010911469567630816 7 0.00962375098829881 8 0.009265038454542957 1 0.009099105841207279 2 0.0083257733197741 __DUMMY__ 0.0033503943995534763 15 4.937962768569178E-10 false 1.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.10340734285198507 22 0.09272435266302778 11 0.08771894778450796 19 0.0771155572487148 18 0.06770969690484717 12 0.06751923503063988 10 0.05309600494846807 24 0.05189967980679006 17 0.04610764822986147 9 0.04463520350281727 20 0.04407481632547504 0 0.04375225686016207 14 0.038775970510314325 13 0.036218038182038836 23 0.03493737740188097 16 0.033653888459145465 4 0.014623375037826306 5 0.014071070474399561 6 0.009206766364285766 3 0.008773939371332667 7 0.006682389610512083 8 0.006387462155734145 1 0.006186652406914362 2 0.0057440959239233895 __DUMMY__ 0.0049782307698428355 15 1.1745528684327639E-9 false 1.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.11098185726647633 16 0.08489146571821368 18 0.08138065438892177 20 0.08068692296821867 21 0.07109048349729835 17 0.06662698178658853 22 0.06570243866877033 11 0.060743917907034616 12 0.05561623989651297 24 0.0549604031030975 10 0.052446709364078706 23 0.04669981180425723 0 0.043741695071642536 15 0.029404049910107564 14 0.029061280211982846 9 0.025716361130303126 13 0.02351215214251721 4 0.004507419549109444 5 0.004215530967071021 __DUMMY__ 0.0034152292409951445 3 0.002014776722064445 6 0.0013780473796058685 7 5.116325023603331E-4 1 3.408211132636903E-4 8 3.351637758982842E-4 2 1.795391360986936E-5 false 1.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.10270852129260148 22 0.0922981511207597 11 0.08737652123014415 19 0.07673816786962567 18 0.0673830944130388 12 0.0673562106825768 10 0.053036493032016956 24 0.05162609117884686 17 0.045921993769966606 9 0.0441944707451069 20 0.04408811985150163 0 0.04358162008917183 14 0.03870570753500027 13 0.0362464816840884 23 0.0348981505546954 16 0.03354602952772773 4 0.014752707662738751 5 0.014207946895217365 6 0.009352038788743326 3 0.008894451082719258 __DUMMY__ 0.007409966667461888 7 0.006820259213007993 8 0.006532805713537849 1 0.006435211306598148 2 0.005888787207971425 15 8.851347918131136E-10 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.09334703886549045 21 0.07709414764334736 9 0.06938976722470569 11 0.057062264219382756 24 0.0514032910348589 18 0.049637868188206695 19 0.045573183381012336 4 0.04463439035599422 5 0.043521883461880996 3 0.04227579493989704 17 0.04067064861583211 0 0.04037322405281543 8 0.03862539003432025 7 0.038228973632657946 6 0.03816028137984107 1 0.03808702545345435 2 0.03726407225877407 10 0.036494701318838106 23 0.03357850546418044 14 0.029092010521781692 12 0.018539788239356536 20 0.01721121246107207 15 0.009641261233430214 16 0.007110840669175009 __DUMMY__ 0.0029460143589323516 13 3.642099076179529E-5 false 1.0
1055 19 0.10999479353320438 16 0.08221148029597176 18 0.08145865317687033 20 0.08112531078537481 21 0.07167481637015223 22 0.0654909991652114 17 0.06515246456673475 11 0.05974711659793461 12 0.05598768446946722 24 0.05537967093273852 10 0.05194282056743898 23 0.046958032256910004 0 0.042329732691576374 14 0.02942020833969647 15 0.028713995123112294 9 0.02581721507101738 13 0.024197366174858917 __DUMMY__ 0.008348207088898699 4 0.004669111364302958 5 0.004312967866421191 3 0.0021588952679777434 6 0.0013726632586620457 7 5.923950956154857E-4 8 4.452398809446124E-4 1 4.450757333384426E-4 2 5.308432556857828E-5 false 0.0
980 20 0.11675545838631902 19 0.09246068992346154 24 0.08816422906658922 18 0.07652641363279097 23 0.0670584533762557 15 0.054285752185029054 16 0.05201604777478489 21 0.04517764951292043 14 0.039445035138887655 12 0.03751398326289895 17 0.03548168783043725 10 0.0328907159549776 22 0.03202661371792952 3 0.027679071408996826 4 0.02322550127429492 5 0.023187098274847193 8 0.021560955284838156 1 0.021441230217272393 7 0.021326179988426414 2 0.021248807576176705 9 0.0206557232992074 13 0.02023692261958329 6 0.017412068998035282 __DUMMY__ 0.007423752203507066 11 0.004799959091532409 false 0.0
981 0 0.08659816042435829 17 0.0789034900054485 9 0.06505658783483259 22 0.06211195358927735 11 0.058727701422372096 10 0.056190051970532735 18 0.05455377558640493 16 0.05316151852444354 6 0.04498091373576194 8 0.04233888241852161 7 0.04217492890352687 1 0.04199346887312338 2 0.04157438954938058 4 0.04125257832446186 5 0.040722371472602166 19 0.03730827294137385 3 0.03677740836485925 21 0.03247015776691268 12 0.0238692390739254 23 0.020916518087715472 13 0.011873174353890424 15 0.01136359243374689 __DUMMY__ 0.00853437365033753 14 0.0037017668244277153 24 0.0027854462298531326 20 5.927763790934618E-5 false 0.0
983 20 0.11794498705957321 19 0.11787770601688334 18 0.10441626055618008 24 0.08324940854029268 21 0.072056715171771 23 0.06599625550635094 22 0.06396418070478085 16 0.06059168112428131 17 0.055733700427361164 12 0.04556653323058544 10 0.03761078771195424 15 0.02897977968639995 9 0.027039378744177413 11 0.02499950932757594 14 0.02009667660522966 4 0.01159269001255994 5 0.011315641418313161 0 0.009790100580079621 3 0.00857561938146844 __DUMMY__ 0.006139001720358292 8 0.005135648834975279 7 0.005096883826796862 6 0.005025457196343271 1 0.004225959926454611 2 0.003613181281684433 13 0.003366255407568737 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 23 0.08252619300450985 12 0.0690453565733919 24 0.06621132506837922 21 0.0641865374790207 13 0.04886970361297018 4 0.047938043469592684 5 0.04730333327220513 6 0.04720147520770842 20 0.04608061785634505 7 0.044281966211104896 8 0.043936331705168225 1 0.043817524798443794 2 0.04327543428295732 19 0.04249747085753393 3 0.0420516985430786 22 0.03973980984023847 11 0.028411130839534462 16 0.027934930799447595 17 0.02591454697580909 18 0.02528136387577884 14 0.024004532837505324 9 0.02168101106874789 0 0.014306934967168526 15 0.0110192978114898 __DUMMY__ 0.0024834290418699746 false 1.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.10712284001060944 22 0.09094846731628162 11 0.08650647937132908 19 0.08364130901896892 12 0.07386760606313238 18 0.07216532774815027 24 0.054589812880650915 10 0.05383712881958429 20 0.05269764046118631 17 0.046115461821114825 0 0.04148197523685844 13 0.04119545110937521 9 0.04062003410063068 14 0.040434226247818346 23 0.03751728590224011 16 0.03674453471442914 4 0.010637150367693865 5 0.010094683752007732 6 0.005224111069309925 3 0.004418741743530994 7 0.002592832926595273 8 0.0021894724920974076 1 0.002021825214301415 __DUMMY__ 0.0017949492121775107 2 0.0014043885552570644 15 1.3626384466881083E-4 false 1.0
984 18 0.08136529431172876 19 0.07968392835381008 22 0.06683412413089938 20 0.0656070547041599 17 0.05825455649068995 21 0.05661314828532766 24 0.05280219280955434 9 0.048996802309647786 23 0.04637377657287643 16 0.045481741265412656 10 0.04415207863060038 0 0.03669600641047116 11 0.035807324369480184 4 0.029609138665191416 5 0.02925027482642161 12 0.02853175072313211 3 0.026968474233420636 6 0.02575850733238272 8 0.025513870127033475 7 0.025337644333428402 1 0.02480994249198907 2 0.024379324271641606 15 0.01935024111923446 14 0.014778346617756354 __DUMMY__ 0.006681729801867475 13 3.627268118420266E-4 false 0.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.09469514085884152 10 0.0893270866776964 19 0.0771565990551944 11 0.0755287228661211 21 0.07520614469026769 22 0.07195514712429181 12 0.05972943989396517 14 0.05953956365084305 0 0.0555809084345571 13 0.05550940800547619 17 0.05294491950851042 20 0.051270166551512064 9 0.046321109423479154 16 0.039538995310109654 15 0.0304565013266875 24 0.022655291714174054 23 0.02218236905475857 4 0.005709512048305451 5 0.005494827675854281 __DUMMY__ 0.003606013407429075 6 0.0032895096958273314 7 6.931244419328898E-4 3 5.861292210135974E-4 1 5.268447758396676E-4 8 4.4313825526446E-4 2 5.338633204746211E-5 false 1.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.08715064486672697 17 0.07933704985890541 9 0.0656095382407712 22 0.06261976584348705 11 0.059171270990585625 10 0.05665993500339696 18 0.054724472710602164 16 0.05333466269116321 6 0.045276425717927185 8 0.04265258853338329 7 0.042466901953570925 1 0.04227687061418276 2 0.041945098302357674 4 0.04158573969690918 5 0.041026955129170546 19 0.03753444776179817 3 0.0371515781818196 21 0.0327109325531806 12 0.024003622831644967 23 0.021044935731319235 13 0.0119452358505602 15 0.011417280913819914 14 0.0037264337591330927 24 0.0028514840800463533 __DUMMY__ 0.0017579555329000794 20 1.8172650637713975E-5 false 1.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.08180972665788407 22 0.06911473402163551 12 0.06171138612149454 11 0.06091808053495851 18 0.05472049622141401 10 0.050786349137429215 9 0.05069304124738323 13 0.04966176180534705 23 0.044184983524637254 14 0.043594528681053596 24 0.041967044404245146 19 0.041836447216646325 4 0.036564797847404525 5 0.035822186542443395 0 0.033739511909903326 6 0.03212969495129478 3 0.0305774711101867 20 0.030429069610896853 7 0.029300574889700774 8 0.029283130679220188 1 0.029174293075038677 2 0.028748153999758906 17 0.025112188837072624 15 0.004595683915915021 __DUMMY__ 0.0035158712172551616 16 8.791839780644847E-6 false 1.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.10781645766712877 22 0.08995537060732357 11 0.08558467399321426 19 0.08493332934287053 12 0.07485839751126437 18 0.07334239832575984 24 0.055114925925783494 20 0.054880374842851826 10 0.0536579269253278 17 0.04597903454215291 13 0.04222765582615975 0 0.0407159992700149 14 0.04051367725393526 9 0.03927907482746624 23 0.038806600457584786 16 0.03719272581269831 4 0.010047034712619628 5 0.009452899986096101 6 0.004718920861263463 3 0.0036430119282687473 7 0.0020455360722378196 __DUMMY__ 0.0014758353674550863 1 0.0014726799092664219 8 0.0014642393785141354 2 6.646846063085002E-4 15 1.565340464335208E-4 false 1.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.10790941551030396 22 0.09018873563934081 11 0.08584365450360598 19 0.08498120382405168 12 0.07515080827247958 18 0.07327441326639315 24 0.05514487695430343 20 0.05482603433640662 10 0.05381703985348643 17 0.0459757974398031 13 0.04228805183166332 0 0.04085418436049025 14 0.0407333627297199 9 0.039393864381756204 23 0.03857577421758731 16 0.03743832010244422 4 0.009808739405219202 5 0.009266223499175602 6 0.0044298336553049685 3 0.003526561402442445 7 0.0018119399880557583 __DUMMY__ 0.0015995049214183761 8 0.0012834145867631006 1 0.0012195253087198812 2 5.31064935349152E-4 15 1.2765507371569662E-4 false 1.0
745 6 0.07024190278166735 8 0.06967767604914088 7 0.06962577103456427 1 0.06928069880802772 2 0.06885007942783708 4 0.06876549347815682 5 0.06798211223964047 3 0.06687961128187578 9 0.05855654607412969 23 0.04792563012567475 0 0.045020871717335625 17 0.044113495166219756 22 0.03882879571914877 __DUMMY__ 0.038796987564287184 24 0.029082187426442353 18 0.02357160504556603 16 0.022546961609666114 10 0.01905779118535407 21 0.018757895545578482 11 0.016650936435360288 15 0.012353393469217256 19 0.011427754042602229 12 0.011390267087630282 20 0.007291693344030659 13 0.0033238433408460354 false 0.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 10 0.1012007444023769 18 0.09989295398347303 11 0.07751171793273719 19 0.07346243593966935 22 0.07148243533613616 21 0.06845368372362687 14 0.06392373473407381 0 0.06271040846638186 13 0.05613160542789836 17 0.055717717706062125 12 0.05242630561172116 9 0.052194426372711274 20 0.04360030179795883 16 0.0378059089411964 15 0.036286542095010615 23 0.015580119516748108 24 0.01098018664579374 4 0.005532814497106679 5 0.005025044954158969 __DUMMY__ 0.004141504458654629 6 0.003645994294885526 7 8.702737871357432E-4 8 7.263970349503735E-4 1 6.788168899235048E-4 3 1.7925449608854774E-5 false 1.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.10651659028821123 22 0.08914905540300082 11 0.08691316658513994 12 0.07561851150579985 19 0.07112825288458495 18 0.05917798491848106 24 0.05629971005902374 13 0.04552424150519293 23 0.04301012838341986 10 0.04214804935666091 17 0.04097623773675217 14 0.040892961125848136 20 0.04074040701154444 9 0.03876800577466904 0 0.03830908560825497 16 0.028834453133165076 4 0.01810893785615773 5 0.017386629019893043 6 0.013267368689947759 3 0.010375355637583922 7 0.009659413991320963 8 0.009340743008806668 1 0.009102096509963124 2 0.008270523601083704 __DUMMY__ 4.8209033444117025E-4 15 7.105265346894147E-11 false 1.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.08675799759879364 17 0.07920035726158361 9 0.06548597666882043 22 0.06259889492801542 11 0.058953515518587116 10 0.05629856961802046 18 0.05480397804082709 16 0.05329565097447236 6 0.045500317679979856 8 0.04275024290970864 7 0.04261049644207228 1 0.04235136208992831 2 0.041908793337939836 4 0.04180538652538923 5 0.04120220633591999 19 0.037552577657336425 3 0.037125312387715124 21 0.03285954946786699 12 0.023966166641266093 23 0.021253781068300164 13 0.011840997533775842 15 0.011274823775570071 14 0.0038905038937246247 24 0.0029364141465240638 __DUMMY__ 0.0017579548542400087 20 1.8172643622148373E-5 false 1.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.08178168520036008 9 0.07111654080172361 21 0.059048917958762284 0 0.05367221847172137 11 0.053301235739231866 18 0.05195353664809835 17 0.04993244382991704 4 0.04665635047382536 5 0.04567443932240575 10 0.045001377295270276 3 0.04464986491045475 8 0.04320738329759111 6 0.04301984945343204 7 0.04280366480774073 1 0.042576696812324434 2 0.042106198952029945 19 0.04123738106560549 24 0.036059497440409975 23 0.029369261881282045 14 0.01989734564689216 16 0.017415277657559784 12 0.014446553038143002 20 0.01283833153817615 15 0.009848182257747773 __DUMMY__ 0.0023647871393675324 13 2.0978359926899986E-5 false 1.0
746 9 0.07406811423911414 22 0.06118422590968608 0 0.05837941370612971 4 0.05676487830929413 6 0.05636584470415 7 0.05627605969740554 8 0.05621086816659403 5 0.05613695219044898 1 0.05603342486629017 2 0.05506460301323269 3 0.05491862483594675 17 0.05301584639503004 18 0.04705817294056778 10 0.04564446814683785 11 0.03520383824095949 21 0.03364672522841564 23 0.0316132432865258 19 0.026459660163168586 16 0.021372715078199406 24 0.020315918982795722 15 0.014544706222791302 14 0.011368101978758358 12 0.006792359938297033 20 0.0057919290518286615 __DUMMY__ 0.005769304707532215 false 0.0
747 22 0.07858416694931043 18 0.0687928553421753 21 0.06567754028474379 19 0.061980866118463575 11 0.06107378459395027 9 0.0603663392085536 17 0.0590066990544621 0 0.058872563819840525 10 0.05618625763051203 __DUMMY__ 0.03464502325926598 16 0.033864096920280515 12 0.03349730954672161 24 0.030182713114664222 4 0.029888063937496812 23 0.02921564326663337 5 0.029140970708538574 20 0.0285327561538447 6 0.027337465905388516 3 0.025965951781560113 8 0.025875481843607478 7 0.025679129303962513 1 0.025370630219830246 2 0.024993721411242186 14 0.014873341313745191 13 0.010196418538510095 15 2.002097726958144E-4 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.10674040946658687 18 0.07989358602057277 20 0.07868297917812067 16 0.07812552621714723 21 0.07556941779784206 22 0.06656029652254743 17 0.06306034030925452 11 0.06273039274491264 12 0.060513230799286714 24 0.05522575394436565 10 0.052220213669783 23 0.046527911155113205 0 0.042671823806490324 14 0.03186839132956334 13 0.029310742903468193 9 0.02663541505370754 15 0.026487872985444184 4 0.0049596087041675115 5 0.004517996556621197 __DUMMY__ 0.0020100266922533023 3 0.0020060667965109756 6 0.001647715732302124 8 7.198761959946295E-4 7 6.813939256392411E-4 1 6.138962156583539E-4 2 1.911527664610981E-5 false 1.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.10330531542635 22 0.09257838801650578 11 0.0873703106933975 19 0.07709484873434716 18 0.0678065655934951 12 0.06715621061738658 10 0.05301060718626922 24 0.051282100419402794 17 0.0459258365448998 9 0.04447974486536715 20 0.044174578101454656 0 0.043617505943613265 14 0.03861960337277757 13 0.03619628115039013 23 0.03516875835189649 16 0.03353945372194594 4 0.014524160181961059 5 0.014085563460909986 6 0.009234675883134058 3 0.00857827244239786 __DUMMY__ 0.007409963806841935 7 0.006783967850591938 8 0.006302717204802567 1 0.006188908722379434 2 0.0055656608223476 15 8.851344501065499E-10 false 1.0
748 6 0.07024190278166735 8 0.06967767604914088 7 0.06962577103456427 1 0.06928069880802772 2 0.06885007942783708 4 0.06876549347815682 5 0.06798211223964047 3 0.06687961128187578 9 0.05855654607412969 23 0.04792563012567475 0 0.045020871717335625 17 0.044113495166219756 22 0.03882879571914877 __DUMMY__ 0.038796987564287184 24 0.029082187426442353 18 0.02357160504556603 16 0.022546961609666114 10 0.01905779118535407 21 0.018757895545578482 11 0.016650936435360288 15 0.012353393469217256 19 0.011427754042602229 12 0.011390267087630282 20 0.007291693344030659 13 0.0033238433408460354 false 0.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 19 0.10132383392327263 20 0.09742009481314952 21 0.09062914499839249 18 0.08202379545484464 12 0.07665833011439435 24 0.07571500727004256 22 0.06290717809167068 23 0.06033247054767476 16 0.05052309112929061 11 0.05043768790786267 13 0.043567803265944685 14 0.041933882512916264 17 0.04099862339915586 10 0.04058573082982272 15 0.022674479096478274 9 0.01866974327375032 0 0.015055379025937343 4 0.008050957844680021 5 0.007814602385189811 __DUMMY__ 0.004917918199661945 3 0.0039140246043268875 6 0.00223153303117424 8 4.919578738910098E-4 7 4.4397638414557766E-4 1 3.8544378263661043E-4 2 2.9331023969354623E-4 false 1.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.10371389257869133 22 0.09117866271429717 11 0.08746909992871203 12 0.06947768571621561 19 0.06863900396023476 18 0.05880663612710062 24 0.05366234194426801 10 0.044261867789305805 9 0.04269982172028216 17 0.04208770136887395 0 0.04087563752335515 23 0.04009778357706591 13 0.040088276823074816 14 0.03927737812991924 20 0.036667201094847175 16 0.02792272967771766 4 0.01997398310272596 5 0.01931237851789797 6 0.015052967553983457 3 0.01282676745367081 7 0.011849255765332863 8 0.011521550707892243 1 0.011296261207648458 2 0.010461859934124282 __DUMMY__ 7.792549679126649E-4 15 1.1485012090779935E-10 false 1.0
749 22 0.07866273684867843 18 0.0686449641159439 21 0.06531148313827688 19 0.06149975298441275 11 0.0609643663984731 9 0.060769015811444956 0 0.05911096645705648 17 0.059086218763353356 10 0.05614496484007638 __DUMMY__ 0.033802881775592916 16 0.03364512799998585 12 0.033014518311933486 4 0.030262527076701136 24 0.029926291891933642 5 0.02951528091658203 23 0.02907907062500706 20 0.028019447346045053 6 0.027738737525196105 3 0.026370951920524174 8 0.026298327683548565 7 0.02610788962596791 1 0.025801222303778126 2 0.02541236886883653 14 0.014708744613983344 13 0.00989079462235388 15 2.1134753431380072E-4 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.10715372763795931 18 0.08011152121368052 20 0.07910227712717854 16 0.07891853610934485 21 0.07469858982914165 22 0.06659109261930554 17 0.0634090599531078 11 0.062332080114264186 12 0.059775265239054305 24 0.0551339594624857 10 0.05237804124678128 23 0.04631990815286016 0 0.04297664891693599 14 0.03159270980491624 13 0.02863233085825066 15 0.027029285680533886 9 0.026318509892719198 4 0.004904520535186964 5 0.004445857884412263 __DUMMY__ 0.0031069530657506983 3 0.002024712255355775 6 0.0015688180804876535 8 5.51101288538173E-4 7 5.367288635871374E-4 1 3.6558658672230523E-4 2 2.2177581439265727E-5 false 1.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.10132112822523068 19 0.0942779178169724 22 0.08385208759876267 20 0.0790957378193783 18 0.07777631958494305 24 0.07462449580235044 11 0.07169789989041012 12 0.06701607708573458 23 0.05085845176341741 10 0.043719771939262415 16 0.0429268523650243 17 0.04228091708560008 14 0.04202373642370287 13 0.03178841736925687 9 0.029065672308263294 0 0.021745269889041435 15 0.015936186912293208 4 0.009538231067202528 5 0.008572709378221442 3 0.004867828103035198 6 0.0024116756926344887 __DUMMY__ 0.0015609073550581604 7 0.00116528499601019 8 9.95490727718978E-4 1 8.72959451393654E-4 2 7.973349081254882E-6 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.11736770985958705 19 0.09287238313037438 24 0.08838634911425121 18 0.07708595906652588 23 0.06744933046318813 15 0.05461647252327181 16 0.05236386868983636 21 0.04525678161478929 14 0.03973481343286202 12 0.03762858541472548 17 0.03564324657366613 10 0.03308240561187369 22 0.032347630257468556 3 0.027800519172866717 5 0.023322065420175953 4 0.02328673931610802 8 0.021629129331492872 1 0.021513206372520268 7 0.021439520983621268 2 0.021336591473143415 9 0.02073210780606606 13 0.020226768795157665 6 0.017476647995489213 11 0.004773459300632843 __DUMMY__ 0.0026277082803055013 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.1021897601218871 22 0.08993204295870727 11 0.08780351675817463 12 0.06931233190309662 19 0.0567279837999166 24 0.05318108776869325 18 0.047517105194383305 23 0.04339214817536096 13 0.04283386519639494 9 0.04208931604894694 14 0.03932826035767929 0 0.03912483038559646 17 0.03817622572415873 10 0.03481720900801999 4 0.026616876401339938 5 0.025836903998804308 20 0.025462014358034028 6 0.02225122612867515 16 0.021487502289179283 3 0.018612385401546534 7 0.018458994268450497 8 0.01823810348550739 1 0.017903905258178858 2 0.017043507203092664 __DUMMY__ 0.0016628978061753636 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.07619221139790278 16 0.06607230366413758 0 0.06505876516455783 22 0.054636772724224125 19 0.052500984427824596 18 0.05227551744845255 9 0.051844271124312925 6 0.041990804638607215 11 0.041561015469702214 8 0.04148511695897785 7 0.04122067654070728 1 0.04118981775670945 2 0.0406783576383194 4 0.04007819945546458 5 0.03963106167148317 3 0.03841188373700702 10 0.03747958618826935 23 0.034609426777436406 21 0.03146225736888871 24 0.031314668363499554 20 0.02994487162522962 15 0.02586214907801014 12 0.020081512849609403 14 0.002964691006685738 __DUMMY__ 9.92795145009264E-4 13 4.602817789712997E-4 false 1.0
1066 22 0.08116744332775319 9 0.07073957268293139 21 0.05849746717251049 0 0.05365567664440271 11 0.05307581652805411 18 0.05170014871767404 17 0.050015854627334044 4 0.04644552596525465 5 0.0454652573659977 10 0.0447423394958227 3 0.04435551536609126 8 0.04299232824876881 6 0.04286556505067205 7 0.04258438359072389 1 0.04239892366196254 2 0.041885152590006906 19 0.04101466461777964 24 0.03559783204412267 23 0.02912782788255988 14 0.019613988279102716 16 0.017600633716727095 12 0.014450148941829843 20 0.012601872155405675 15 0.009733958091777135 __DUMMY__ 0.007629696939656625 13 4.24062950781979E-5 false 0.0
1062 22 0.07881657931610779 18 0.06918662849134198 21 0.06586090402829838 19 0.06267491803862163 11 0.061233482806526 9 0.06022924004016496 17 0.0593252309492199 0 0.05893939765700769 10 0.05627539202128827 16 0.03441912043813633 __DUMMY__ 0.03386469643846055 12 0.033603717567429275 24 0.03033904484778604 4 0.02964530114652283 23 0.029284400916021747 20 0.028925938717421943 5 0.028919890724134478 6 0.02706001648290662 3 0.025699077479411265 8 0.02557314147502024 7 0.02536464420947 1 0.025063255891502205 2 0.024710566880413714 14 0.014788639150829497 13 0.009977580746557276 15 2.191935393990767E-4 false 0.0
992 10 0.10109146047349007 18 0.08780305206982078 11 0.06694279923092 14 0.06649360519692618 0 0.06508223035790221 22 0.0642063185099428 9 0.06279130778268212 17 0.05023602098796354 19 0.0498585525937148 13 0.048956528724714635 21 0.048775066231025364 15 0.04728700777166592 12 0.03078549039574264 16 0.025037856311449 20 0.02464551393703763 4 0.01961579693112675 5 0.019268737546966137 6 0.018510825931174636 7 0.016998969089506273 1 0.0168627895909194 8 0.01683700805088431 2 0.016269813835243004 3 0.016224861380420733 23 0.011016987290793938 __DUMMY__ 0.00840139977796725 false 0.0
750 22 0.07886385848277244 18 0.06899931362011616 21 0.06549275633057698 19 0.06213481682100633 11 0.06111129551107798 9 0.06062872923202602 17 0.05936244110517256 0 0.059158119327085854 10 0.05622634265911968 16 0.034143962805280356 __DUMMY__ 0.03314499435597242 12 0.033133856535903936 24 0.030077430843534463 4 0.030030505436979 5 0.029302266290480713 23 0.02914709337630446 20 0.028391761558164186 6 0.02747484201959774 3 0.02611610759505194 8 0.026011443538314236 7 0.025810041273873145 1 0.025509506977909966 2 0.02514251264117717 14 0.014643411934009176 13 0.009715178468696954 15 2.2741125979602124E-4 false 0.0
993 10 0.10198862755864034 18 0.08971990476457305 11 0.06809079507677386 14 0.06605012372610412 0 0.06574102151327747 22 0.06445046893391114 9 0.061446920443079985 19 0.052829803144182806 17 0.05223849308708662 13 0.04987011199899702 21 0.049364184616865356 15 0.04699374419453089 12 0.033000497472772436 16 0.028089077202601342 20 0.02648806826900349 4 0.017583805321858537 5 0.01719993660672672 6 0.01655542997682181 1 0.014947477081719698 7 0.014923031012434584 8 0.014808844389476508 2 0.014159269663042618 3 0.013905678426409671 23 0.010838698259889633 __DUMMY__ 0.008715987259220162 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.10771996444307771 22 0.08993120596719481 11 0.08562979141138324 19 0.08463496566670717 12 0.07509373227037512 18 0.07312450280303447 24 0.0553274513947701 20 0.054764488526908434 10 0.05368260180033677 17 0.04591425163030492 13 0.04218902840632547 0 0.040867593782671414 14 0.040730268247678086 9 0.039286245172968894 23 0.0386386953524374 16 0.037463763621454635 4 0.00997549760413885 5 0.009341522562192929 6 0.004564271708454624 3 0.0037754952911389934 7 0.0019505040172611576 __DUMMY__ 0.0015995049214183761 8 0.0014828367627907223 1 0.0014003805924966552 2 7.837809687634656E-4 15 1.2765507371569662E-4 false 1.0
751 9 0.0744983607364064 22 0.059428586959077837 4 0.059411681927201386 7 0.058934749785808836 8 0.058876296911343495 6 0.058797106940000704 1 0.05863014235332153 5 0.05850130302850188 3 0.05757940326065913 2 0.05751189360843997 0 0.055262492561046345 17 0.04986775621922839 18 0.04490046387409278 10 0.04379152579605875 23 0.03378180997752083 21 0.032437488408555225 11 0.03135900277571078 19 0.02322398277101283 24 0.02132121735005609 16 0.01736614870531608 15 0.014954151372662162 14 0.012019252101889838 __DUMMY__ 0.007340829874512866 20 0.005145726223359075 12 0.005058626478216667 false 0.0
1059 21 0.10563466057045649 19 0.1049675813621483 20 0.09135250867371268 18 0.08619486020576723 22 0.08207498453406353 24 0.07719356589998544 12 0.06326338053401617 23 0.061465570908317155 11 0.0511684418228748 10 0.04945523270123908 14 0.044049845032142695 9 0.03422900529543157 13 0.028957350699439673 17 0.02691503170939602 16 0.025923494544376688 __DUMMY__ 0.015152024337795356 4 0.011265405079534347 5 0.01119161190079884 0 0.008694949974734101 3 0.00827880038409817 15 0.00810675856453515 7 0.001257017513044616 6 0.001233841715585352 8 0.001179546258038722 1 6.084975157053679E-4 2 1.8603226276224576E-4 false 0.0
752 21 0.08157512596979072 22 0.06879374668217315 12 0.061447106251047746 11 0.060568411788367915 18 0.05449517712480601 10 0.05060346710495652 9 0.050391323014033686 13 0.049527259081323174 23 0.043960854902128844 14 0.04322844086511184 19 0.04181131021178956 24 0.04155341718830286 4 0.03611020973727484 5 0.035522704350404825 0 0.033509378874258006 6 0.03173406270647039 20 0.030358233249015657 3 0.030257953110693733 7 0.0289992739195966 8 0.02893022559750469 1 0.028923988116497046 2 0.028431262955629713 17 0.024869222730364304 __DUMMY__ 0.009874839560332499 15 0.0045032137153225805 16 1.9791192803061366E-5 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.10554390143696014 18 0.07927999211785677 20 0.07811986463208913 21 0.07716004053549538 16 0.07544026270456357 22 0.06696203977361052 11 0.06339118248204356 12 0.06231746577167709 17 0.06125151159067121 24 0.05521278151451248 10 0.05216515710110147 23 0.046451067821072015 0 0.041758948338027 14 0.0328626702767956 13 0.03136728147741461 9 0.026614809585624066 15 0.025206433179833596 4 0.005448667255379309 5 0.005146500832952646 __DUMMY__ 0.002634802647283074 3 0.002019811239169971 6 0.0020195820966580225 7 6.436897840277094E-4 8 5.180802681517794E-4 1 4.440296906222301E-4 2 1.94258464072148E-5 false 1.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.10630277231531558 22 0.0889086415481433 11 0.08657366556417591 12 0.07539208913771821 19 0.07068322307900542 18 0.059086192484960075 24 0.056401331507219016 13 0.04537814358660308 23 0.04293148698203354 10 0.042011467279409895 17 0.04093594281696376 14 0.04086134325266071 20 0.04072670304643937 9 0.03868964309137034 0 0.03832533084907519 16 0.02884285836851613 4 0.018287802527298606 5 0.01757109159847543 6 0.013445392289463929 3 0.010693890979064648 7 0.009885580323680393 8 0.009610574507002125 1 0.009377246145498844 2 0.008595496179473078 __DUMMY__ 4.820904693808973E-4 15 7.105267335696864E-11 false 1.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.11084347015517555 16 0.08486775018502705 18 0.08149141987921693 20 0.08068357489294525 21 0.0710756961648408 17 0.06667803993450797 22 0.0657013226436792 11 0.06065100881819761 12 0.05553030596449556 24 0.054565888233381196 10 0.05242857395634776 23 0.0469896993216796 0 0.04387785013276103 15 0.029442831782024514 14 0.028938517451957975 9 0.025911665521251785 13 0.02356990644098346 4 0.004460546495281765 5 0.004065704598586118 __DUMMY__ 0.0034152292409951445 3 0.0020114286467910396 6 0.0013334063759604597 7 5.886382336486631E-4 1 4.3512523346461626E-4 8 4.244457831891017E-4 2 1.795391360986936E-5 false 1.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.08780489946679212 17 0.07943540084249365 9 0.06561062040638056 22 0.06270887097712424 11 0.05942560971599331 10 0.05703086387694554 18 0.05502012398554829 16 0.05331220999473256 6 0.0452149912574562 8 0.04259154316217534 7 0.04241164755435159 1 0.042179150884188554 2 0.04178985743771392 4 0.04143242950076892 5 0.04080724490066096 19 0.03747109201539789 3 0.03697086353828188 21 0.032696610801861245 12 0.02375304828174225 23 0.02105186026642026 13 0.012012394796619905 15 0.011203009684268678 14 0.0035357205149513077 24 0.002753810010618253 __DUMMY__ 0.0017579534969214402 20 1.8172629591033426E-5 false 1.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.08771680315794304 0 0.08581202129380627 16 0.07061466580229005 22 0.05852776269346171 9 0.057497334833447836 11 0.05617822292014936 18 0.05351650231948554 10 0.04796074780826614 19 0.04574069224718511 6 0.04218211234084012 8 0.038893200040614674 7 0.038656092939701604 1 0.03856968257750191 2 0.038155588984300035 4 0.03728072176185085 5 0.03682481418009151 21 0.03238867172503511 3 0.03204241986473629 12 0.0317875137547285 23 0.02410149717880718 13 0.014340574180341728 15 0.01392771291409381 20 0.008137838601412553 24 0.00694659621447353 __DUMMY__ 0.0020061360481232263 14 1.9407361731265538E-4 false 1.0
1057 19 0.10725363486338464 20 0.08616914696164059 18 0.08233534798215625 21 0.074518107238389 16 0.0735644156380658 22 0.06341732047898585 12 0.06033230487264556 24 0.05997592137990552 17 0.058778783444600004 11 0.05601077664026354 10 0.05008484106466614 23 0.049192138294806294 0 0.03508487783746853 14 0.03410094258349928 13 0.030036957997251066 15 0.029319628878939775 9 0.02396050805210332 __DUMMY__ 0.008939186640017471 4 0.005482271516546556 5 0.005236631631602911 3 0.002730472233729922 6 0.001572581550475044 7 5.848802789890016E-4 8 5.752146213462784E-4 1 4.999989030564372E-4 2 2.4310841546508146E-4 false 0.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.10293054004484284 22 0.09205381671550239 11 0.08693607121429839 19 0.07640889632291974 18 0.06751283343175336 12 0.06705473115798123 10 0.0527396405866224 24 0.051657381208654186 17 0.04580156370742417 9 0.044253939600564667 20 0.044068448290565956 0 0.043638772404369836 14 0.03861615873551798 13 0.03600637219677521 23 0.03530081481483597 16 0.03359738720950888 4 0.014852314415771272 5 0.01422879911321945 6 0.009497583479600698 3 0.009072037797670659 __DUMMY__ 0.007409969528084051 7 0.0070545945670918726 8 0.00669610764415288 1 0.006544466113941066 2 0.006066758813195847 15 8.851351335199412E-10 false 1.0
754 9 0.07429853846364494 4 0.059285445796490525 22 0.059151248042163186 7 0.058802390546653774 8 0.05873219341784821 6 0.05866567114539699 1 0.05848749291610339 5 0.05828697724677933 3 0.057374281282322165 2 0.05730015652224236 0 0.055111527051120934 17 0.04970478363028849 18 0.0447564206365513 10 0.04364761808051015 23 0.033740203830504 21 0.03232348770298163 11 0.031279220351294594 19 0.023113460747694027 24 0.021298707368222217 16 0.01726024303500127 15 0.014790863040846099 14 0.011991897895782568 __DUMMY__ 0.010426517335566172 20 0.005176069049620534 12 0.004994584864371171 false 0.0
755 6 0.07024190278166735 8 0.06967767604914088 7 0.06962577103456427 1 0.06928069880802772 2 0.06885007942783708 4 0.06876549347815682 5 0.06798211223964047 3 0.06687961128187578 9 0.05855654607412969 23 0.04792563012567475 0 0.045020871717335625 17 0.044113495166219756 22 0.03882879571914877 __DUMMY__ 0.038796987564287184 24 0.029082187426442353 18 0.02357160504556603 16 0.022546961609666114 10 0.01905779118535407 21 0.018757895545578482 11 0.016650936435360288 15 0.012353393469217256 19 0.011427754042602229 12 0.011390267087630282 20 0.007291693344030659 13 0.0033238433408460354 false 0.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.0853568749304859 17 0.07841377883527682 9 0.06714606586540925 22 0.06389529352731771 11 0.057988075501327715 10 0.056209394114499794 18 0.055067599425649365 16 0.050406022757433125 6 0.045992822938756873 8 0.04365676900799664 7 0.04343623040939265 1 0.04332575593774326 4 0.042716419349966145 2 0.04269447054321869 5 0.04214848954464053 3 0.03836488123548221 19 0.03734400169766004 21 0.03331363514363955 12 0.02187694068045142 23 0.020997590389566997 15 0.010466043928608943 13 0.00959323604748837 24 0.003917680944419029 14 0.0036597977807111526 __DUMMY__ 0.001999455598849427 20 1.2673864008103307E-5 false 1.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.10595168912846858 22 0.08677849597949308 19 0.08616881717220551 11 0.08316633091347105 12 0.07697150614959158 18 0.0735850779990363 20 0.05815138097215564 24 0.05600631211319855 10 0.0533345106743614 17 0.045813430143659496 13 0.04488267562393982 14 0.04167425397364401 0 0.039649779637890695 23 0.03944104182390168 16 0.03923393245309965 9 0.03738239885028056 4 0.00920812873016479 5 0.008721309340192055 6 0.003996095423964408 3 0.003094136614420775 15 0.002352491637599954 7 0.0013870174381800872 __DUMMY__ 9.762270548137646E-4 8 9.176761445745208E-4 1 8.981909768936817E-4 2 2.570930307986064E-4 false 1.0
997 21 0.10772222782782657 22 0.08321643357986008 19 0.07901198991441728 12 0.07752078850798999 11 0.07312902277296483 24 0.06514286409562851 18 0.05980071269070241 20 0.05614777185379702 23 0.048243841644812206 13 0.04449994079483484 14 0.04113267758816074 17 0.035849430303289506 10 0.0348057752495147 __DUMMY__ 0.034664095332653744 16 0.03176256974945129 9 0.03149788185500317 0 0.025675593009138287 4 0.014814923105875484 5 0.014147394562208806 6 0.008859486929400792 3 0.00861725926848641 7 0.006148209478046977 1 0.00591427684289967 8 0.00587983479335577 2 0.005335196833330355 15 4.5980141635060343E-4 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.09953681562538019 19 0.08622959959972841 10 0.0807795743276064 20 0.0798925708672362 14 0.06503804542627009 21 0.06181694881132125 12 0.05531208834506372 22 0.05511052678565795 11 0.053978368447169016 13 0.053964159205982624 15 0.05298501816644479 16 0.04949638418510218 17 0.04926253822418718 24 0.03847716900221508 0 0.037153066363695385 23 0.03483500796614513 9 0.03244914847728554 4 0.004775555257982014 5 0.004337005452098232 6 0.0019127536017869023 3 0.0014471232895894508 7 5.119431119535449E-4 8 3.494237509512894E-4 1 3.1546193389010203E-4 2 2.1074561601009307E-5 __DUMMY__ 1.2629213656153344E-5 false 1.0
756 17 0.0886967687574665 0 0.08228502393438981 16 0.07373610536179018 9 0.05737486009298927 22 0.05526765693379755 18 0.05299906452269703 11 0.04826763401742483 19 0.046077936223114443 10 0.043875892151243476 6 0.043058234191267065 8 0.040339201981863644 1 0.04010394428581219 7 0.04008603501954814 2 0.03923375231987965 4 0.0381060396797396 5 0.03773369595688491 3 0.033349258941098484 21 0.028449545800989604 12 0.026346009251796046 23 0.02506843852397714 15 0.02022467564916785 20 0.012202799218523581 24 0.010299979773500664 13 0.00969807139503989 __DUMMY__ 0.007106994071547489 14 1.2381944450792425E-5 false 0.0
877 10 0.08716690136581962 18 0.08258692807022834 22 0.0760675012469415 0 0.07529864660564502 9 0.07455701652188772 11 0.06443037186054906 17 0.06400320432008101 19 0.04995315193904016 21 0.046011094047782045 14 0.03316358214163526 4 0.030733602555005547 5 0.030341644917822447 6 0.029813626917069378 16 0.02914586105451693 8 0.028171026467795506 7 0.027972226056125257 1 0.02760811681149038 2 0.02750856353760033 3 0.027090163171779168 15 0.022063176257256494 12 0.017436603416064733 13 0.01664368868790157 20 0.012153230425286982 23 0.011061748041005303 __DUMMY__ 0.007344375808235716 24 0.001673947755434556 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 22 0.0973341762552396 21 0.08862043488871646 24 0.06386190107492884 9 0.06374516563272747 11 0.05877790360758474 19 0.04870320233739848 18 0.04638123245637861 4 0.041735340982154215 5 0.04070474637249696 3 0.03976016151290821 14 0.03891775001272072 23 0.037889730720143726 8 0.03431312023895333 7 0.03383293934427762 1 0.033600125207190856 6 0.033547173736705384 2 0.033184408719815206 17 0.031826860983642194 10 0.030186092055291172 0 0.028966105362643244 12 0.024926772144836157 20 0.024210255431930422 15 0.013569327778864838 13 0.0056398229702672225 __DUMMY__ 0.0035530602415894254 16 0.0022121899305948887 false 1.0
878 9 0.07434395900209112 4 0.059336625810598446 22 0.05919983530317955 7 0.05884286212548288 8 0.05878214896896807 6 0.05871311292734863 1 0.058537431922402926 5 0.058349598561374005 3 0.057442271996583145 2 0.05736729474844533 0 0.055144534055255996 17 0.04972583535426467 18 0.04477425547923123 10 0.04371231432055236 23 0.03374693505660872 21 0.032326481514635505 11 0.031298256319207116 19 0.0231134570495416 24 0.021324805308684632 16 0.017263543552667886 15 0.014852926138403864 14 0.01203462336512367 __DUMMY__ 0.009566860884678816 20 0.005183099302972831 12 0.0050169309316971345 false 0.0
999 21 0.1024203982419334 22 0.09186277430359358 11 0.08680372365914843 19 0.0762522784395339 18 0.06703111822796594 12 0.066902462967764 10 0.05235354490667456 24 0.051236364055817794 17 0.04558780961454995 9 0.04404941638077507 20 0.04362523317117073 0 0.043282613450582486 14 0.038438251847359675 13 0.036012104107988954 23 0.03485619789890037 16 0.03327622359931967 4 0.014646385504527255 5 0.014160667570467383 __DUMMY__ 0.013629479254700132 6 0.009315577035754658 3 0.00879162687680481 7 0.0068400062849133135 8 0.0064506936464438355 1 0.0063659127032695126 2 0.0058091342008604096 15 2.049180083194594E-9 false 0.0
757 11 0.12288319493282683 22 0.09376178410248458 21 0.0830689735505253 0 0.08115858098894874 10 0.07619112518649561 18 0.07534964665064 17 0.07068742780195945 12 0.0656574278858501 19 0.06338201802392643 16 0.048041662119462474 9 0.0478972776349723 13 0.045259516132293065 14 0.03544563341609414 20 0.015258791394646323 24 0.013626498057445204 23 0.01004817803791905 4 0.009317998862307162 6 0.008993352500541412 5 0.008459026006016139 __DUMMY__ 0.008388340643575869 15 0.00500514553477561 8 0.0033134489898931697 7 0.003196625711690105 1 0.0028372019353351766 2 0.002771123899375946 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.08467437613271543 0 0.07578599153606844 16 0.07303227521248576 22 0.0552043129722958 18 0.05346301707890628 9 0.05274600043854402 19 0.051421205045266885 11 0.04806682593914989 10 0.041501023499276944 6 0.04109082257668568 8 0.03936934910924915 7 0.03911387582649775 1 0.03901634268646151 2 0.038379666301390045 4 0.03743345906851955 5 0.0368627180070154 3 0.034030330616953326 21 0.030532705337636915 23 0.030208856238603393 12 0.02549242434653179 15 0.022327273306353368 20 0.0216951556449959 24 0.020386549659433775 13 0.005891269783928365 __DUMMY__ 0.001941861009399924 14 3.323126256346497E-4 false 1.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 20 0.1173516209507672 19 0.11051726979793715 24 0.09009547151754685 18 0.08010023076070412 21 0.07466830371553833 23 0.07040127357596879 16 0.06274523311743899 12 0.05899392162265832 22 0.053458584443954356 15 0.04745850862363462 14 0.04710057738784799 11 0.038772779511890364 10 0.036401083739612886 17 0.03523134062439861 13 0.02988693629736661 4 0.00893416264578157 3 0.008700942692150087 9 0.008394643670240294 5 0.008263800989162412 8 0.002959527065602008 7 0.0026861248890846534 2 0.0023719526100145745 1 0.0022200113229190552 6 0.001571657121457209 0 4.6503556922737464E-4 __DUMMY__ 2.490057370954567E-4 false 1.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.10297180770793309 22 0.09258228426105891 11 0.08724912457756433 19 0.07674009812193748 18 0.06767572066351 12 0.06722611167676044 10 0.052611065422492845 24 0.05134697669455836 17 0.04595133360510619 9 0.04424581545660119 20 0.043943736978577834 0 0.043588182947032 14 0.038720763503032433 13 0.03615962033005671 23 0.035166841676500096 16 0.03360277894569509 4 0.014744600603029125 5 0.014312952620980118 6 0.009321926852679005 3 0.008901786041504154 __DUMMY__ 0.0074099666674618874 7 0.006790919377868398 8 0.006447488561355608 1 0.006389657352039304 2 0.005898438469530501 15 8.851347918131135E-10 false 1.0
758 18 0.09338997903662391 10 0.08866487155180093 19 0.07688432041414105 11 0.07523502132135516 21 0.07483745887512148 22 0.0715021538533663 12 0.05946824953687723 14 0.05906301992325992 13 0.05530282105596081 0 0.055216007139257256 17 0.052685151631090464 20 0.05046762644958224 9 0.04603922309129776 16 0.03928379321648743 15 0.030224779035291437 24 0.022497439033374016 23 0.021908820480506262 __DUMMY__ 0.011079567835105875 4 0.005644907701826566 5 0.00546469670155083 6 0.0031662678985719386 3 6.219223043632518E-4 7 4.906620698405862E-4 1 3.945092962110605E-4 8 3.8023029628126456E-4 2 8.650025085493475E-5 false 0.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.1161152855776441 19 0.09165845552714354 24 0.08823006264817601 18 0.07622730825248754 23 0.06782295967994761 15 0.05383014666959331 16 0.05117921106848324 21 0.04563562945228686 14 0.03940325866634673 12 0.037879754079399135 17 0.0350662990769199 22 0.03261888715429374 10 0.032557287611943674 3 0.028321498904625986 5 0.023962628051426616 4 0.023935681337211002 8 0.022246675481723585 1 0.022158680938467224 7 0.022092972343384053 2 0.02190422228782596 9 0.020949730347042606 13 0.02050631253258498 6 0.01815353394357271 11 0.005130384314766757 __DUMMY__ 0.002413134052702877 false 1.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.09970714200419567 19 0.0860968247412761 10 0.08097847718222247 20 0.08010685743820377 14 0.0652251974372683 21 0.06142712955198448 12 0.0549463313377788 22 0.05482798107742147 13 0.05391195501213814 11 0.05360793490571508 15 0.05351569878091844 16 0.04976188588243922 17 0.04917577646344097 24 0.03855181890873055 0 0.03728844460245025 23 0.03480623036985976 9 0.03232017379280784 4 0.004729675428696863 5 0.004417903452760481 6 0.0019436298951351263 3 0.0014295101928781288 7 5.727729281964946E-4 8 3.6419148053144665E-4 1 2.785695406927544E-4 2 4.932015705661924E-6 __DUMMY__ 2.9555765515580286E-6 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.09370884022205966 21 0.07720731995328242 9 0.06936588567194261 11 0.057289691999541585 24 0.051501773591290025 18 0.049478853723157024 19 0.045521873856615075 4 0.04461589439605486 5 0.04359449455209172 3 0.04237967515545307 0 0.040711049379586736 17 0.04047186402956054 8 0.03855515867286953 6 0.038108580081472956 7 0.03806261540000535 1 0.037859671138150065 2 0.03734439952657023 10 0.036722885319687315 23 0.03339670162240255 14 0.02909705163976064 12 0.018413564052751456 20 0.017052945060296264 15 0.00952738379105982 16 0.007029389511903056 __DUMMY__ 0.002946016633552762 13 3.6421018882475935E-5 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.085853283953538 16 0.08248929655529517 0 0.07073772016644701 19 0.05726726834392011 22 0.05161685904580893 18 0.05136985765014329 9 0.04578747375021624 11 0.044916287617330054 6 0.03855595094674668 8 0.03694439862478567 7 0.03660986730670544 1 0.03646412094008608 2 0.0360257571788578 4 0.03464750711322684 10 0.03421056279782093 23 0.03420468954335514 5 0.034153953626884316 3 0.031548534497075606 21 0.03135185063087814 20 0.03101751067226614 12 0.030485687249055603 24 0.027844320563050053 15 0.025773947820629462 13 0.007542441358456451 __DUMMY__ 0.0025716943348059514 14 9.157712614971922E-6 false 1.0
1075 20 0.10241423897965916 19 0.09814149665816603 21 0.08317163086756117 18 0.07820100496036879 12 0.07802443104194678 24 0.07590797699110281 23 0.058795041090586975 16 0.05586736320166356 22 0.05337590335963729 13 0.05170501766999347 14 0.04814370487657303 11 0.04719447838875436 10 0.040201063148405485 17 0.0394892168918152 15 0.03284938997831052 0 0.013598607695576923 9 0.012999929539475276 __DUMMY__ 0.010914427827686972 4 0.006397151522921861 5 0.006062712474044824 3 0.003255986384194079 6 0.0017424491993462481 7 6.130199622095202E-4 8 5.004860015543148E-4 1 2.997437665430671E-4 2 1.335275219023125E-4 false 0.0
1071 21 0.10563466057045649 19 0.1049675813621483 20 0.09135250867371268 18 0.08619486020576723 22 0.08207498453406353 24 0.07719356589998544 12 0.06326338053401617 23 0.061465570908317155 11 0.0511684418228748 10 0.04945523270123908 14 0.044049845032142695 9 0.03422900529543157 13 0.028957350699439673 17 0.02691503170939602 16 0.025923494544376688 __DUMMY__ 0.015152024337795356 4 0.011265405079534347 5 0.01119161190079884 0 0.008694949974734101 3 0.00827880038409817 15 0.00810675856453515 7 0.001257017513044616 6 0.001233841715585352 8 0.001179546258038722 1 6.084975157053679E-4 2 1.8603226276224576E-4 false 0.0
880 9 0.07435014181226138 4 0.05934776831995007 22 0.059179237465169184 7 0.05885294441972229 8 0.05878922020398041 6 0.05872293412366555 1 0.058544643302938376 5 0.05834093750995576 3 0.05743464657377877 2 0.05735827171996894 0 0.05514857819804462 17 0.04972429485405866 18 0.04477349551208458 10 0.04370839248361873 23 0.03376080058847284 21 0.03232434908259716 11 0.03130177691756785 19 0.023105942848143938 24 0.021333212089430103 16 0.017252844343232175 15 0.014825421671300246 14 0.012034811805032236 __DUMMY__ 0.009586995939288846 20 0.005192639740306315 12 0.00500569847543101 false 0.0
762 12 0.09439954118277195 21 0.09428094318567153 11 0.08506922539491256 13 0.07678360003760784 22 0.07124184668344066 18 0.06048900206341829 19 0.058998193715287306 10 0.05520799741780594 14 0.04834332272954596 0 0.04721672793417606 17 0.039582771673481 20 0.03760695047854337 23 0.03628527755360062 24 0.03589737072301264 9 0.0346161676718304 16 0.028297409268649446 4 0.015623100496802916 5 0.015090596553935897 6 0.013934340153222313 __DUMMY__ 0.010794213254132769 7 0.00857523126546538 8 0.008419101911236059 1 0.008326198817714616 2 0.008156130475116019 3 0.00676473935861815 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.0855406609782813 0 0.07875993776132363 16 0.07391350389592959 22 0.054692873011373364 18 0.053538788605981935 9 0.052313721177397784 19 0.05050240138894954 11 0.050384596636566505 10 0.04323163872413825 6 0.041011557472090926 8 0.0390327303605321 7 0.038725817111031346 1 0.03865302455623044 2 0.03810015028787844 4 0.036962079343554756 5 0.03645980615583244 3 0.03335693321931423 21 0.029612035933560897 23 0.02959473569337512 12 0.026404570532068346 15 0.022522648545383734 20 0.01996211423305476 24 0.01846314112535973 13 0.007568460425705346 __DUMMY__ 6.127538200423944E-4 14 7.931900504330408E-5 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.10654714900865365 21 0.09853894062877985 11 0.0961635348518577 19 0.0929259550680122 18 0.07423770123413242 17 0.062323041657407804 10 0.056957130524117605 0 0.05516468728460197 16 0.0533260062466405 12 0.049730434873234655 9 0.049076631292168674 24 0.04879578014303621 20 0.04033666393026349 23 0.030486732578786886 14 0.02650321693771978 4 0.0113048546389078 5 0.011182464656004447 13 0.009568575360522583 3 0.006165834706334153 6 0.005124527977914005 __DUMMY__ 0.003895067948252484 7 0.0028713955224560174 8 0.002806690051785792 1 0.002592531669959018 2 0.0023814891593302305 15 9.929620491198434E-4 false 1.0
884 17 0.08612401644817114 0 0.08153120660527614 16 0.06842229857711861 9 0.059990091077445074 22 0.058114734089676996 18 0.053847547728607344 11 0.04899758004832212 10 0.04524540291267148 19 0.045016591713511085 6 0.04386762730502366 8 0.041314064373329365 7 0.04110824211677331 1 0.04103720620813546 2 0.04033808435680302 4 0.039506532584663405 5 0.03925706306931343 3 0.035060600938550866 21 0.029950403122437633 23 0.02458085585181991 12 0.024071848230916366 15 0.01750334250158682 20 0.010523483396574626 24 0.010289985647710187 13 0.0074239345775612645 __DUMMY__ 0.006860701483963721 14 1.6555034037186843E-5 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 20 0.10303464896845296 19 0.0991289830073217 21 0.08404409227357774 12 0.07892729844615197 18 0.07840638561204781 24 0.07673746133687626 23 0.059167034914466066 16 0.05637023046020463 22 0.053790669231768264 13 0.05231045722092739 14 0.048541969426591114 11 0.04753350487347234 10 0.039760808057365954 17 0.039680565089057394 15 0.03322913540758458 0 0.013446342942436306 9 0.01302233570271024 4 0.006344649961525943 5 0.0060862871730733 __DUMMY__ 0.004322830903359073 3 0.003357464994913718 6 0.0015701316133451115 7 4.1868043505056545E-4 8 3.7203615745208605E-4 1 2.0559328353879743E-4 2 1.904025067287375E-4 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.09334703886549045 21 0.07709414764334736 9 0.06938976722470569 11 0.057062264219382756 24 0.0514032910348589 18 0.049637868188206695 19 0.045573183381012336 4 0.04463439035599422 5 0.043521883461880996 3 0.04227579493989704 17 0.04067064861583211 0 0.04037322405281543 8 0.03862539003432025 7 0.038228973632657946 6 0.03816028137984107 1 0.03808702545345435 2 0.03726407225877407 10 0.036494701318838106 23 0.03357850546418044 14 0.029092010521781692 12 0.018539788239356536 20 0.01721121246107207 15 0.009641261233430214 16 0.007110840669175009 __DUMMY__ 0.0029460143589323516 13 3.642099076179529E-5 false 1.0
764 10 0.10078367553679884 18 0.09940031922529037 11 0.07702175513388315 19 0.07300722703224923 22 0.07104213396337446 21 0.06802882635255687 14 0.0634842549090266 0 0.06232770673788167 13 0.055791824472230786 17 0.05536467331752295 12 0.05204516240335584 9 0.05183418384901369 20 0.0433067434798042 16 0.037421110346661283 15 0.03601722513181641 23 0.015490226431336981 24 0.01093650354310923 __DUMMY__ 0.010651939531286745 4 0.005444383705115266 5 0.00498903617410755 6 0.003579462147622264 7 7.721862990076315E-4 8 6.571745558652523E-4 1 5.844574516272154E-4 3 1.7808269455466115E-5 false 0.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.1092851385542966 22 0.08397555642517449 19 0.07948866011972217 12 0.07852851100742235 11 0.07342059735916263 24 0.06657676969191545 18 0.05942454983199929 20 0.05663924720642627 23 0.04913910994522783 13 0.04496274076859228 14 0.04139401391310277 17 0.03595953967898194 10 0.033926386098984 16 0.032246102306274685 9 0.03162580378247363 0 0.02538316601605949 __DUMMY__ 0.024177217549815107 4 0.015308726309139948 5 0.014679748496185042 6 0.009319136279051487 3 0.009089770700330237 7 0.006630404706689268 1 0.006415787779026925 8 0.0063395464182950684 2 0.005773672324692232 15 2.900967309587134E-4 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.11797531843391922 20 0.11795920619931978 18 0.10529828243263448 24 0.08276670881058 21 0.07254061194339535 23 0.06625953755878648 22 0.06451559233027111 16 0.060429909524550546 17 0.05594683728755012 12 0.04538377505626993 10 0.03856897283435471 15 0.029300932332613182 9 0.02766929377960478 11 0.024967077372241343 14 0.02011395729648263 4 0.011537248322881031 5 0.011171013189989672 0 0.010114603267751567 3 0.008568108340149217 7 0.005302791226119365 8 0.005189443056497672 6 0.004987098782380234 1 0.004494807994496288 13 0.0037183092696688683 2 0.003624495407291683 __DUMMY__ 0.0015960679502010962 false 1.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.14591444924123176 15 0.12038485902282438 13 0.11721884492783526 10 0.09296967992567498 18 0.08453298295918518 12 0.06180127661328347 20 0.05700397741773529 21 0.056096127461012876 11 0.047407889922086145 19 0.04278607148153997 22 0.038002649322761727 9 0.02954248559295416 23 0.02557091360039884 24 0.020564738212739034 0 0.015846207728816574 17 0.014803700902796167 16 0.007615839723855419 4 0.005894714225950617 5 0.005641862785695993 __DUMMY__ 0.005620894045024949 6 0.0032338171813312846 3 6.151417075304292E-4 8 4.5332005518504783E-4 1 2.308587915474259E-4 7 2.302651996620653E-4 2 1.6431951340859753E-5 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.08757182640895708 17 0.0793741107462144 9 0.06547326226972884 22 0.06260239355256099 11 0.05953184254002918 10 0.05677922473442272 18 0.05473721239061463 16 0.05333582084389162 6 0.045228169354243626 8 0.042613597391526974 7 0.04234529591708837 1 0.04214985986496764 2 0.04181345494222892 4 0.04148768276590419 5 0.040899172278136484 19 0.03752634069269934 3 0.03700951144713521 21 0.03268043453133258 12 0.023949575704319385 23 0.02090904581118634 13 0.012063753479767021 15 0.011342773088292499 14 0.0037237314027668148 24 0.0030757796584475333 __DUMMY__ 0.0017579555329000796 20 1.8172650637713975E-5 false 1.0
888 21 0.08157512596979072 22 0.06879374668217315 12 0.061447106251047746 11 0.060568411788367915 18 0.05449517712480601 10 0.05060346710495652 9 0.050391323014033686 13 0.049527259081323174 23 0.043960854902128844 14 0.04322844086511184 19 0.04181131021178957 24 0.04155341718830286 4 0.03611020973727484 5 0.035522704350404825 0 0.033509378874258006 6 0.03173406270647039 20 0.030358233249015657 3 0.030257953110693733 7 0.0289992739195966 8 0.02893022559750469 1 0.028923988116497046 2 0.028431262955629713 17 0.024869222730364304 __DUMMY__ 0.009874839560332499 15 0.0045032137153225805 16 1.9791192803061366E-5 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.09411957595436397 10 0.08945528996545697 19 0.07744423654703819 11 0.07593603541905572 21 0.07548837672057783 22 0.07193857472633021 12 0.059797793910769406 14 0.05939945026419049 13 0.055832553796657275 0 0.055789011171144355 17 0.05304454100566967 20 0.050633202835584354 9 0.046441575096527965 16 0.03950542417097134 15 0.030297074181931043 24 0.022484280039413912 23 0.022340658368948916 4 0.005715691062248435 5 0.005565477059021715 __DUMMY__ 0.0036060147995327554 6 0.003237394133205818 3 5.89217852180326E-4 7 4.96238897700979E-4 8 4.02603112141455E-4 1 3.863225566795109E-4 2 5.338635265728823E-5 false 1.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.0858104291209325 16 0.08232330648776166 0 0.07040882694735935 19 0.05717681760270967 22 0.0517631762053872 18 0.05162924471991242 9 0.04562323752342337 11 0.04459440563491732 6 0.038547320735620325 8 0.036824545434651516 7 0.03658260062257815 1 0.0365771939039664 2 0.03614848611773458 4 0.034681323483379205 5 0.034379113252390514 23 0.03403754243537163 10 0.03399902358484506 3 0.03168215823517645 21 0.03141107029144176 20 0.03089308224310082 12 0.03046443642401271 24 0.02787817007508223 15 0.025720421271815338 13 0.007440842975560633 __DUMMY__ 0.003401343731513127 14 1.8809393558566925E-6 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.10290189284892207 22 0.09238188840702174 11 0.08719774620333981 19 0.0766802306978327 18 0.06746491106619966 12 0.06727086756044502 10 0.05240141979183736 24 0.05141104122405439 17 0.045915413186439935 9 0.04424193787235699 20 0.04388156591363857 0 0.043614803591419955 14 0.0387269253598828 13 0.03621017896166994 23 0.034917439597919854 16 0.03363326394808468 4 0.01482296312447706 5 0.014304067938253728 6 0.00944314305233127 3 0.008955829648832807 __DUMMY__ 0.007409963806841934 7 0.007036058705195233 8 0.0066134877070317425 1 0.006613178016727093 2 0.005949780884109129 15 8.851344501065497E-10 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.08933623572012639 19 0.08684651610745232 21 0.07606386937807941 20 0.07322518841579423 10 0.07010954163562463 12 0.06588771949654124 22 0.06329237646858446 11 0.06253540064453234 14 0.05642831689645927 13 0.05375075567703228 17 0.048708925335593775 16 0.0480939532724462 24 0.04396468561966624 0 0.03842444274642515 23 0.0364941515428592 15 0.03532601444138095 9 0.032327276085302316 4 0.006183420843113877 5 0.006174720251943029 6 0.002804455887985534 3 0.0019819006719291486 __DUMMY__ 5.265671365716032E-4 2 4.661550301819474E-4 8 4.509855132082211E-4 7 3.7251267037506934E-4 1 2.2391251079143266E-4 false 1.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.09334703886549045 21 0.07709414764334736 9 0.06938976722470569 11 0.057062264219382756 24 0.0514032910348589 18 0.049637868188206695 19 0.045573183381012336 4 0.04463439035599422 5 0.043521883461880996 3 0.04227579493989704 17 0.04067064861583211 0 0.04037322405281543 8 0.03862539003432025 7 0.038228973632657946 6 0.03816028137984107 1 0.03808702545345435 2 0.03726407225877407 10 0.036494701318838106 23 0.03357850546418044 14 0.029092010521781692 12 0.018539788239356536 20 0.01721121246107207 15 0.009641261233430214 16 0.007110840669175009 __DUMMY__ 0.0029460143589323516 13 3.642099076179529E-5 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.08583198457293681 16 0.08243536894321442 0 0.07048793996415438 19 0.05723635465081547 22 0.05155623629211656 18 0.05152794134555585 9 0.04583037187562471 11 0.04466596485830477 6 0.038622757445697015 8 0.036985574316811494 7 0.036720992536747356 1 0.03662383632097867 2 0.03606101178657128 4 0.034720869882307485 5 0.034288712824952904 23 0.034175899509928616 10 0.03401350939103886 3 0.03159031566753798 21 0.03133883036023483 20 0.030991540944513223 12 0.030497669887746548 24 0.027717222109773437 15 0.025801362463573042 13 0.00752368074425578 __DUMMY__ 0.002751116827996445 14 2.9344766120586925E-6 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.1084111406554962 22 0.08470632379609741 12 0.0792904052927159 19 0.07881880272596165 11 0.07693824478493405 24 0.06341588786596064 18 0.060753991045709665 20 0.054338883387094104 23 0.046993240206932844 13 0.04635759173247414 14 0.04184517273724919 17 0.037644089881420595 10 0.03688357769977639 16 0.0323305981927714 9 0.03216424423488447 0 0.028626548924183128 __DUMMY__ 0.02371661101315825 4 0.01454993691555719 5 0.013724872837379696 6 0.008773651094033335 3 0.007914528753833024 7 0.005694421877903894 8 0.005450839039205413 1 0.00544189580105025 2 0.004968848372747113 15 2.4565113147008525E-4 false 1.0
1084 0 0.08434486942451877 17 0.0779109112806361 9 0.061233933468994584 22 0.05794319812375872 11 0.05777164809409984 16 0.05499716686043351 10 0.05028919307705234 18 0.04946702613560369 6 0.04682329593203362 8 0.04358623708912036 7 0.04329434583118884 1 0.04321825485759515 2 0.042655859620507504 4 0.042458425221269504 5 0.04183936836089589 3 0.03692484861386907 19 0.03593023622849665 21 0.0332604803289334 12 0.0327223521795413 23 0.024649888444584933 13 0.01894866128822999 __DUMMY__ 0.007458541065021892 15 0.007147018423253131 24 0.0033044659489731973 14 0.0018197741013879344 false 0.0
891 10 0.10211278161796081 18 0.08979646986114817 11 0.0681265604393098 14 0.06599008480686629 0 0.0657660308569347 22 0.06452805309346235 9 0.06145146696601762 19 0.0528636271547672 17 0.052241457951409734 13 0.04977085140460913 21 0.04937711130983309 15 0.04691026190874344 12 0.032961277289939826 16 0.028037283315047356 20 0.02651512611956822 4 0.01758068995028602 5 0.017192718003914902 6 0.016544425775736133 1 0.014902961914040096 7 0.014892276768046837 8 0.014779326018557746 2 0.014141881412903063 3 0.013888665312210747 23 0.01086021816563178 __DUMMY__ 0.008768392583055167 false 0.0
771 19 0.10702391392656016 18 0.0797067319570149 20 0.07888307178752851 16 0.07865143328687178 21 0.0741064564826825 22 0.06589975840345923 17 0.06316391855744558 11 0.06163860178104178 12 0.0590286193213317 24 0.05495114481478169 10 0.05193293640680198 23 0.04625969036530101 0 0.04227501759356502 14 0.031104956548660818 13 0.027879635925671553 15 0.026929959141716746 9 0.026201457846655403 __DUMMY__ 0.009404088758912335 4 0.004962869999778089 5 0.00449316573616975 3 0.002042488649323545 6 0.0016376272833480373 7 6.646593139675468E-4 8 6.086245342979778E-4 1 5.147760858799516E-4 2 3.4395491232200233E-5 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.10662360368558739 22 0.08917320214781091 11 0.08724436793697135 12 0.07578343942453644 19 0.07110452063297909 18 0.058839628695280734 24 0.05697824860057885 13 0.045660313872580974 23 0.04236022360905909 10 0.04219818785823553 17 0.04100566223714844 14 0.040978086778213955 20 0.04067886198166365 9 0.03877783502613798 0 0.038299041174085606 16 0.02880536715962433 4 0.018049892972988642 5 0.017318066738507887 6 0.013187326818405155 3 0.010394118027670093 7 0.009510792208886173 8 0.00925593944416951 1 0.009004696991234861 2 0.008286485167330014 __DUMMY__ 4.8209073926057774E-4 15 7.105271313305632E-11 false 1.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.07972588186653054 9 0.07139581981378926 0 0.0560804182919246 21 0.055911822060175004 11 0.05280588124397998 18 0.05225349901285318 17 0.05178100129556462 4 0.04709369404177314 10 0.04629140107428801 5 0.046130905922457936 3 0.04501198029821027 8 0.04396757590454118 6 0.04391555254113456 7 0.043527818678144134 1 0.043350752345984025 2 0.042915917498676175 19 0.04057045023515663 24 0.033411092096522196 23 0.028564973512839768 16 0.019322819204961934 14 0.018260098340684705 12 0.013892121128817336 20 0.011952676931357027 15 0.009781288938378915 __DUMMY__ 0.0020486842681095435 13 3.587345314530148E-5 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.1697325098671047 14 0.09801375739324743 16 0.09556487288585028 18 0.09386883364627568 20 0.08130323988692857 17 0.08068643355894337 19 0.07586658202266866 10 0.06571953027998642 24 0.03564993155501624 0 0.03413385126211602 22 0.030761052417416467 13 0.030354287359255428 23 0.02932704240685609 9 0.024280783249307207 11 0.014751364810319596 21 0.006260754990125078 8 0.005249022215596982 7 0.0044521684588482565 1 0.004257776410183757 2 0.004079377610053324 6 0.003990258328103372 __DUMMY__ 0.0036046008628060336 3 0.0029055912648762085 4 0.0026894265958632875 5 0.002496950662251533 false 1.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.10290926753303029 22 0.09254406526528497 11 0.0874973550248638 19 0.07684587594862496 12 0.06749982145457586 18 0.06746918366614578 10 0.05269097786820201 24 0.05145893132864365 17 0.04596137091712763 9 0.044370895806406824 20 0.043842591757438716 0 0.04357853168547293 14 0.03872346585626898 13 0.036192820669819936 23 0.03503712872114611 16 0.033696203157586965 4 0.014705223455868093 5 0.014194049078572295 6 0.009273670544883624 3 0.008794850063429584 __DUMMY__ 0.007409966667461888 7 0.00677354710706206 8 0.006424711584076189 1 0.006325959025749398 2 0.005779534927122677 15 8.851347918131136E-10 false 1.0
773 21 0.09682797965223879 12 0.09488719710340533 11 0.08442914993159888 13 0.07438721509472078 22 0.07219443463382945 19 0.06484394859519303 18 0.06409172553741666 10 0.05511318167080976 14 0.04804957729635169 0 0.04507974395513244 20 0.04365839533895814 17 0.040312903074093895 24 0.03963029860430476 23 0.03714344069912684 9 0.033006553465217636 16 0.0307099582776929 __DUMMY__ 0.014643289133218008 4 0.012929106831444407 5 0.012246684653233583 6 0.010665895262504348 7 0.005480651877067434 8 0.0053217182783482486 1 0.0052699456839973265 2 0.004945308023666728 3 0.004088524488679756 15 4.317283774907913E-5 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 14 0.10460359915056988 13 0.10280288446186171 10 0.09909173874088818 18 0.08860573425697947 12 0.07186205433066774 11 0.0699516793956457 21 0.06669249664862958 15 0.06428418716282956 22 0.05321394158816522 19 0.05098894359957246 0 0.04365792730950409 20 0.04198996903673375 9 0.04046552564492208 17 0.03139991748987227 23 0.01933474623632173 16 0.01588404534304304 24 0.00876173822593218 5 0.007209049480432773 4 0.007163711808304025 6 0.006007022706445461 8 0.0015954907348696686 1 0.0015842542122104755 7 0.0015652297621153986 2 0.0012841126734833104 __DUMMY__ 2.1576155850221855E-18 false 1.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.08715636833677846 17 0.07955201879322094 9 0.06594805396976261 22 0.06252513509489674 11 0.059140727306074475 10 0.05650508496102121 18 0.05528420384429708 16 0.05333539361262772 6 0.04538873148786035 8 0.04268691410568195 7 0.0426865319627095 1 0.0424509467978998 2 0.04169876562642399 4 0.041605010119078606 5 0.04091265247123448 19 0.03759695898045164 3 0.036882858271507585 21 0.03286841594647998 12 0.023795523018874852 23 0.021225205118021527 13 0.011712438108955942 15 0.011113064216741663 14 0.003483218996768234 24 0.0026696520404435077 __DUMMY__ 0.0017579541755804624 20 1.8172636606588193E-5 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.10610990243383651 22 0.08804750885748874 19 0.08592543669683111 11 0.08424775468118025 12 0.07677926217202496 18 0.07331370286740262 20 0.05675518077347897 24 0.05589894030338798 10 0.0532346004633205 17 0.046099066329127095 13 0.04438255637490491 14 0.041459630538677336 0 0.04019644287622448 16 0.03886051552828155 23 0.03822826679000022 9 0.038151918684781745 4 0.00935092457080481 5 0.008878490009389698 6 0.003970796126708677 3 0.0031909895688882963 15 0.001867645509158212 __DUMMY__ 0.001695024142942902 7 0.0012885294379072283 1 8.995800623670956E-4 8 8.677092950212318E-4 2 2.9962490586285013E-4 false 1.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.10242231973105956 18 0.09011747548787283 11 0.06835772112213441 14 0.06630138039581608 0 0.06600630751382154 22 0.06474442263515079 9 0.06168997817316792 19 0.05303279588375533 17 0.05239023220270947 13 0.05006492063189535 21 0.04961909114362694 15 0.04721534942694741 12 0.033124735639769115 16 0.028199978283565814 20 0.026648749279243083 4 0.017635573771012623 5 0.017279602870742577 6 0.01660827172367396 1 0.014968874734404539 7 0.014958665872663118 8 0.014845780238114906 2 0.014232834244031 3 0.013978357794519614 23 0.010930943685690959 __DUMMY__ 0.004625637514611088 false 1.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.07162229583379028 0 0.06488594689211542 22 0.05765509227317262 16 0.05691150845401407 9 0.056847052980340186 18 0.052759157771564945 19 0.0485466446815592 6 0.04373931785308192 8 0.043343147749447745 7 0.04322027071773209 1 0.043117145276707264 11 0.04284387382234774 4 0.04249975031581279 2 0.04248535365826402 5 0.041927049199781394 3 0.040834020497583855 10 0.040805951027344044 21 0.03347447733041671 23 0.03298449143078097 24 0.028967501134724745 20 0.02527815584784261 15 0.022561959528766492 12 0.01753023221565585 14 0.004967644594847788 __DUMMY__ 1.311533292097965E-4 13 6.0805583095523944E-5 false 1.0
1078 20 0.11349023111824288 19 0.10072076317852863 24 0.08221548903819552 18 0.07954172959446744 21 0.07864091062001514 12 0.07622085036446137 23 0.06524802243411096 16 0.05862443534314965 13 0.05067077311355702 14 0.04904058614495245 22 0.045523374663198855 15 0.039974372060993954 11 0.03808942250021032 17 0.03739506508271173 10 0.035786050968564825 __DUMMY__ 0.01726189528787211 9 0.007219985173618929 4 0.006228832653486169 0 0.0054188732239474095 5 0.005212379397817275 3 0.003443723799042112 6 0.001323541563731455 7 9.708241173679482E-4 1 9.36989244731066E-4 8 8.008793130246773E-4 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.10132601419769728 18 0.08795133996271119 11 0.06711508020083891 14 0.06671775968973472 0 0.06520463136979955 22 0.06445501216476902 9 0.06302268457678897 17 0.05052094826143718 19 0.050100166108010484 13 0.04912243612444875 21 0.04897141530403818 15 0.04744422051403423 12 0.030980024454714504 16 0.025146874289613562 20 0.024729657555197047 4 0.019826073536477303 5 0.019446475814153288 6 0.018700203678280434 7 0.01722121671123047 1 0.017093136637020997 8 0.017021926071547455 2 0.016468413070372948 3 0.016423042419165007 23 0.011122440223865937 __DUMMY__ 0.0038688070640525004 false 1.0
778 12 0.1393119405235125 13 0.12675178403990472 21 0.1031970675794173 23 0.07425238747739052 11 0.06662316491673377 14 0.062337783319806044 24 0.059428830120862725 20 0.050312059296826264 22 0.04248110169732867 19 0.04220694044459058 18 0.03742648113909899 4 0.024993649501347824 6 0.024335530229243906 5 0.024220772649515217 10 0.017316804218230494 8 0.01495815762068101 7 0.014669114279512322 1 0.01447531630953215 2 0.014313597634407552 3 0.00982118961670293 0 0.009499736381494255 17 0.009147196101844366 __DUMMY__ 0.00786075316412152 16 0.00693836275584584 9 0.003120278982048812 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.15991875494091848 14 0.11614886663031143 18 0.07702349613163258 20 0.06767786457576785 10 0.06619370095206585 19 0.048780788072604955 13 0.046249420527828135 16 0.04465995541114353 17 0.03983289865858644 24 0.03670702502118811 23 0.03429961646793927 9 0.03317839173454205 22 0.028625376335111048 3 0.02194565202741364 5 0.02029083781776332 4 0.020270678918795308 8 0.020266301122614346 7 0.019993590069982334 1 0.019773025690601857 2 0.019687037898388614 6 0.018290179965701866 21 0.013887661482223212 0 0.013474137700113449 11 0.011161844667479211 __DUMMY__ 0.0016628971792830639 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.09811305988702772 19 0.08876253396586643 20 0.08684570726995933 10 0.07521900098919046 14 0.0637971288844367 21 0.06239906606532907 12 0.057066266809646736 15 0.053997050596860094 13 0.053508469512504306 22 0.05225897146767256 16 0.05159571527749279 11 0.0500550840319425 17 0.04749222936012381 24 0.04494053403104317 23 0.03943426184254515 0 0.031851928020992515 9 0.028481248140788798 4 0.004791028871998156 5 0.00430080196520526 6 0.00176793095227647 3 0.0017504999923202826 7 6.800517268963684E-4 8 4.566694486179268E-4 1 4.242495449556432E-4 2 6.57261601797509E-6 __DUMMY__ 3.938728289697273E-6 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.08166123189515075 22 0.0692243570526248 12 0.06184384179762264 11 0.060825565083278646 18 0.05448973464678194 9 0.050717260607342315 10 0.0506418992880795 13 0.0497856402571265 23 0.04407635429863523 14 0.043616313309239554 19 0.04193808006561583 24 0.0418008681647809 4 0.03662747028338077 5 0.036075578865828344 0 0.03361722545132826 6 0.0321532687312692 3 0.030797175304707804 20 0.03034782691635931 1 0.029378596186167154 8 0.02935369694921628 7 0.029319656423838512 2 0.028968854967924507 17 0.025075983626182186 15 0.004745316618661009 __DUMMY__ 0.0029060343604274306 16 1.2168848430579382E-5 false 1.0
779 12 0.13926922077016549 13 0.12671291583571392 21 0.10316542238621589 23 0.07422961811773232 11 0.06660273504430685 14 0.062318667551856666 24 0.059410606378124474 20 0.0502966311952905 22 0.04246807494470716 19 0.042193997763018916 18 0.03741500437668436 4 0.024985985244156895 6 0.024328067783131565 5 0.024213345393606117 10 0.01731149405169214 8 0.014953570728834693 7 0.014664616022281212 1 0.014470877480096284 2 0.01430920839570947 3 0.009818177966758039 0 0.009496823304599668 17 0.009144391130785752 __DUMMY__ 0.008164990860842937 16 0.006936235119517982 9 0.0031193221541704107 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.11744071292122057 19 0.09303739316153635 24 0.08882342290339065 18 0.07686177008998829 23 0.06710619892514862 15 0.05455799650640211 16 0.05230509507252918 21 0.04553359466413145 14 0.03960563923412114 12 0.03763873884974994 17 0.03574179124155552 10 0.03310934214726197 22 0.032034792421589166 3 0.027812179568343778 4 0.02325316035639675 5 0.023200096980418906 8 0.021634802769313632 1 0.021537157054696658 7 0.021381973664453956 2 0.021351553556621227 9 0.02079351234640894 13 0.020372668109799704 6 0.017420003114197658 11 0.004818698422401623 __DUMMY__ 0.002627705918322263 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.081686200077321 22 0.06890738105715599 12 0.0616339131778315 11 0.060702127713264345 18 0.054335482020756366 10 0.050870041149768404 9 0.05081188131494985 13 0.0496146521517424 23 0.04404328118018055 14 0.04352132531280522 24 0.04186726335701321 19 0.0417438698492258 4 0.03651460510906099 5 0.03603834346216805 0 0.03358737921759622 6 0.03214154198673036 3 0.03100198526610848 20 0.030273827846058893 1 0.029551604679104664 8 0.029526264987870993 7 0.0295197396620703 2 0.02918244309773838 17 0.025026019987749407 15 0.0048196736059676745 __DUMMY__ 0.0030714721608607214 16 7.680568900382079E-6 false 1.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.12427281117922523 10 0.10220330233143854 19 0.09003521492049633 22 0.08430222920909004 17 0.06948370745646187 11 0.06439619182793385 21 0.06422427490127887 9 0.0628758752631676 0 0.06273686151709315 20 0.05653002437156207 14 0.04311915050434276 16 0.039454283297770676 15 0.02903667080148503 12 0.028946216160579425 13 0.019633415780018315 23 0.019447992431024047 24 0.017061997632631512 4 0.0071088752104838055 5 0.005492513207553798 6 0.0032888727072103003 3 0.001516927320792878 8 0.0015132604831731942 7 0.0015019132993530308 1 0.001118160402233782 __DUMMY__ 6.992577835999791E-4 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.10001684646793255 19 0.08597891952995854 10 0.08110385650127479 20 0.08026048450030362 14 0.06495227367730742 21 0.061496358966444675 12 0.054707654709959426 22 0.05466910515137064 13 0.05381593067570583 11 0.05358182438770521 15 0.05321805384186124 16 0.04946423961790831 17 0.049148251977892285 24 0.038232276446534666 0 0.037265859328370114 23 0.03504352628682486 9 0.03262173314755353 4 0.004768871269256889 5 0.0043042066081864575 6 0.0020089541989464564 3 0.0014213893830291905 7 8.001699395200596E-4 1 5.596377446852707E-4 8 5.51688046425717E-4 2 4.932017447159804E-6 __DUMMY__ 2.955577595173987E-6 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.16276319592125246 16 0.10792360326223692 18 0.09266778977710914 17 0.09020797937236565 14 0.08402646064851656 20 0.08253168688592594 19 0.08083028763280198 10 0.059420528821300264 0 0.039255730341394644 24 0.03748849317083641 23 0.03131752884236084 22 0.031120949073973905 9 0.022381096614162044 13 0.021595463078097465 11 0.014697441216898238 8 0.006023162406053565 7 0.005338809982481444 6 0.00498004345267581 1 0.004939555691655659 2 0.004589305674222701 __DUMMY__ 0.004158255362176574 21 0.004116080320168361 4 0.0026719979979553696 5 0.002477312184010798 3 0.002477242269367412 false 1.0
780 21 0.10154926180558597 22 0.08939322310440855 11 0.08717720197893838 12 0.06879119827176167 19 0.056140591861578465 24 0.05266193328824576 18 0.04721572909523896 23 0.04322045555619 13 0.04254812177644746 9 0.04185453516845335 14 0.039072641135895606 0 0.03894552327040146 17 0.03789640398374618 10 0.034615175435137785 4 0.02653604338265504 5 0.025863312111006377 20 0.02534769042726253 6 0.022252768761330272 16 0.021445570516945848 3 0.018681552477721176 7 0.018546887054396784 8 0.01827954232615351 1 0.017949830498660325 2 0.017123763323573623 __DUMMY__ 0.006891043388265127 false 0.0
781 23 0.082883526651022 12 0.06853117272861317 24 0.06512247981612361 21 0.06404783831671294 13 0.04856585854713083 4 0.047451648157511586 6 0.046886228738565856 5 0.0467327476310227 20 0.04613849430379727 7 0.044146781314752734 8 0.04362605549823185 1 0.04337397437854944 2 0.04275916240978895 19 0.042266728931006865 3 0.041536734189250586 22 0.039904632309461396 11 0.028143268479586186 16 0.027632627443215676 18 0.02551192867510065 17 0.025443053681482693 14 0.023885590424482683 9 0.02151908686004071 0 0.014058406873788875 15 0.01070653934937849 __DUMMY__ 0.00912543429138233 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.0996794368100441 19 0.08632100715772043 10 0.08095661280162737 20 0.07991353173260961 14 0.06536721108978559 21 0.061865906903179196 12 0.05509390393380178 22 0.054912786158951885 11 0.05374420568144298 13 0.05368090719276148 15 0.05321512818524755 16 0.04910858583675249 17 0.04890307707658267 24 0.03856247980799567 0 0.03672508330194689 23 0.03515796059418784 9 0.03243159851430121 4 0.005024083578638822 5 0.00470091313159914 6 0.0020649976575961852 3 0.0014524000155915868 7 5.035336397749137E-4 8 3.2351681501503277E-4 1 2.8307915535762096E-4 2 5.035585405162929E-6 __DUMMY__ 3.017642082887475E-6 false 1.0
782 23 0.08271600928869305 12 0.06853051736833711 24 0.06517481803582993 21 0.06397277590335175 13 0.04854234941936625 4 0.047493190276645274 6 0.046901170064149664 5 0.046834833265721534 20 0.04604940683047781 7 0.044140821640267704 8 0.04363527764412343 1 0.04343206035135485 2 0.04289309300369212 19 0.04222917393459953 3 0.041671253765804744 22 0.03984670910138544 11 0.02814234469728962 16 0.027635568439522834 17 0.02546544189423045 18 0.025424772707429058 14 0.023898121973801582 9 0.02151473166054765 0 0.014063534643668517 15 0.01075465212418966 __DUMMY__ 0.00903737196552029 false 0.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.07175166608014207 0 0.06491510075044823 22 0.057782944089402904 16 0.056848645446983995 9 0.0568172917499588 18 0.053101411920950976 19 0.0485682063892845 6 0.043711682424870626 8 0.04335225833017675 7 0.0431862578830105 1 0.04314538807696716 11 0.04278495873363356 4 0.04241319979888731 2 0.042390603618682444 5 0.0419237086535141 10 0.04078560406371596 3 0.04073957414402658 21 0.03340705903302213 23 0.03302002269562407 24 0.028904334441670364 20 0.025310042880394103 15 0.022583824922516094 12 0.017431534257758376 14 0.004932720702053296 __DUMMY__ 1.311533292097965E-4 13 6.080558309552396E-5 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.08663410874985815 17 0.079091135429574 9 0.06562806868442568 22 0.062495843501547674 11 0.05878908059021183 10 0.0561302731556062 18 0.05500204331450998 16 0.05318487493828943 6 0.0453532498489114 8 0.04270856591525621 7 0.04259121034641976 1 0.04251236166895852 2 0.041921935247789546 4 0.04168225242427629 5 0.04119681752933666 19 0.03747499592174002 3 0.03715736894546162 21 0.03294680965886582 12 0.024060758366246295 23 0.02124336589878603 13 0.012003915588799405 15 0.011486770077524236 14 0.00392602207932829 24 0.0030020439347390555 __DUMMY__ 0.0017579555329000792 20 1.8172650637713972E-5 false 1.0
784 19 0.10038563162413171 20 0.09512797678308106 21 0.0901860729310237 24 0.08158104681451119 18 0.07734533851608717 22 0.07123375799447085 12 0.06506059637484635 11 0.0577508081997917 23 0.05766714135711243 16 0.050508603396437826 14 0.044522163650466254 10 0.038756734072348656 17 0.03871815845404304 13 0.0319163615971142 15 0.02876857611899183 9 0.019609424613706645 __DUMMY__ 0.011892181958320447 0 0.011358230176266106 4 0.008790624334871804 5 0.008182440689347951 3 0.005956880235330324 6 0.0016189624480735453 8 0.001071064141979287 7 0.0010109750351800487 2 5.602286257686867E-4 1 4.200198566972199E-4 false 0.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.08594918971013367 16 0.08254113379284177 0 0.07049816974500672 19 0.05731305158946745 22 0.05181482303211082 18 0.051536662686253266 9 0.04575920183157177 11 0.044763099576122976 6 0.038566960589985995 8 0.03688611201042515 7 0.036650339948677405 1 0.036578770803906153 2 0.03611979527992906 4 0.03465401026921932 5 0.03428865730765224 23 0.03418361892030023 10 0.03404916803897051 3 0.03163736944546004 21 0.03143799805007753 20 0.030904779886550007 12 0.030528680237751397 24 0.027701353812629417 15 0.025689393739616297 13 0.00736205746687339 __DUMMY__ 0.0025816500019895747 14 3.952226477483282E-6 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.12161168541275845 10 0.1004863695306844 19 0.087801930904492 22 0.08076785589533295 17 0.06602498574714714 11 0.06352499447062733 21 0.06334844452617328 0 0.05972899925306373 9 0.05922834361952171 20 0.05768510627849911 14 0.04843554096253172 16 0.0397773877015881 15 0.03352131859368365 12 0.03229407433244676 13 0.025736374049562513 23 0.020499763140190676 24 0.017645960103433233 4 0.006881086230578162 5 0.005852018341120433 6 0.003285852461529052 7 0.001454229122395556 3 0.0014339829717451434 8 0.0014159454817988327 1 0.0011593866183179152 __DUMMY__ 3.983642507778876E-4 false 1.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.10199358764426979 12 0.09677283951494163 11 0.08534405853186103 22 0.07548317763781318 19 0.07320659608106157 13 0.07296325946027463 18 0.0685100276672306 10 0.05557107317707219 20 0.05043536597318026 14 0.04838481385898347 24 0.044103717543204024 0 0.043605733817910206 17 0.04211778100774486 23 0.038993657439994424 16 0.034320303429747685 9 0.032117595352255716 4 0.009639268285331013 5 0.009101417028132861 6 0.006864177425287702 7 0.0021003451882805964 __DUMMY__ 0.0019425050586989116 8 0.0018424136684238085 1 0.0017012019607582217 2 0.001497782387656936 3 0.0012820954961869496 15 1.052053636973668E-4 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.159974730600807 14 0.11597749429399165 18 0.07693320081206377 20 0.06748612284024896 10 0.06613295653992997 19 0.048725858863687375 13 0.04616010379782473 16 0.04461533406864079 17 0.03983674928627032 24 0.03654720638930372 23 0.03426632376022922 9 0.03340434619551882 22 0.02848686137453553 3 0.022059154214037924 5 0.02062267028432551 4 0.020359766175698023 8 0.020307595766714124 7 0.020046918354490958 1 0.019957697302513462 2 0.01980534984579425 6 0.01840539502645361 21 0.013805509582773266 0 0.01343324489286727 11 0.010986509693213055 __DUMMY__ 0.0016629000380668237 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.07159886718234185 0 0.06500228848693558 22 0.05774424519515619 9 0.05691400100909811 16 0.05656414389184967 18 0.05273638426657867 19 0.04846933220578556 6 0.04375914215243432 8 0.04336641306330562 7 0.04321771512564311 1 0.04313157026332439 11 0.04292656497518388 2 0.04259026304015499 4 0.04251566528408045 5 0.041933497321365656 10 0.04107283041899854 3 0.04095492852470648 21 0.033458174750453026 23 0.03285955154457165 24 0.02892205896677161 20 0.02523940891514511 15 0.022443099359467217 12 0.017412986650123027 14 0.00500815318217871 __DUMMY__ 1.0843934603517641E-4 13 5.027487831146624E-5 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.15892884923657435 14 0.11567702516805249 18 0.07659695975312514 20 0.0676893506443426 10 0.0662220317175567 19 0.04865229560966377 13 0.04603634021722745 16 0.04466451735776474 17 0.0393392383530986 24 0.03601668647124001 23 0.034276994328218 9 0.033679423129683056 22 0.028637813334191867 3 0.022083230025437 4 0.020826696775180172 5 0.02073992402255858 7 0.020596024649201437 8 0.02053281258522436 1 0.019995869495610035 2 0.019837676845724315 6 0.018975130665407708 21 0.014035193979200607 0 0.01335554352238999 11 0.01094147150350201 __DUMMY__ 0.0016629006098247542 false 1.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.12464404147467549 10 0.10211139222057934 19 0.09019222142673683 22 0.08490917490653885 17 0.0696327942445385 21 0.06426584289714614 11 0.0641422691137997 9 0.06305637522951325 0 0.06245649176917179 20 0.05659131524330025 14 0.04330280568264044 16 0.03939806317730886 15 0.029009886624389022 12 0.028970526270834813 23 0.019175210389816146 13 0.01915227638524336 24 0.0169820154599054 4 0.007046656610675697 5 0.005659601564919142 6 0.0032165011652087994 3 0.001532871045687398 8 0.0014129849792150473 7 0.0013945418888898437 1 0.0010569810148067064 __DUMMY__ 6.871592144592069E-4 false 1.0
786 0 0.08655130317600453 17 0.07881516926184295 9 0.06515674174678394 22 0.06224907607568826 11 0.05871325028823809 10 0.05621986282718685 18 0.05459261580217276 16 0.05300754069911229 6 0.045025142703404825 8 0.04240013915553861 7 0.04222375284343794 1 0.042047207421740875 2 0.041678534027041136 4 0.04132959055147699 5 0.04083329076375218 19 0.037289954514156676 3 0.03690854651787431 21 0.0325257859389667 12 0.023793210128353608 23 0.020890249035132605 13 0.01176459237594959 15 0.011306985739342452 __DUMMY__ 0.008085212543722674 14 0.003742213953265825 24 0.002820587350540746 20 2.9444559272599984E-5 false 0.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.10697073943473971 18 0.0796219676297779 20 0.0786904287321066 16 0.07795648208117888 21 0.07577405607659289 22 0.06634475618221934 17 0.06309615416563896 11 0.06272223562841577 12 0.060527789818281344 24 0.05534822655146314 10 0.052263221851927374 23 0.04632652211474708 0 0.042330180093805216 14 0.03179605105690234 13 0.029348664191412088 9 0.026674427710078507 15 0.026439270242068914 4 0.005116016033245753 5 0.004491443239016701 __DUMMY__ 0.002082354696358679 3 0.0020186293040532093 6 0.0017529059654500941 7 8.233998834736341E-4 8 7.489433899216549E-4 1 7.09113029134958E-4 2 2.6020897989298235E-5 false 1.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.08594927076079364 16 0.08230973335821595 0 0.07050461565416001 19 0.057287984562243544 22 0.051562282343109875 18 0.051388956799860774 9 0.04578093792423062 11 0.04486983149306258 6 0.03861173809806595 8 0.03700440665342301 7 0.03676237587867345 1 0.036638050756989 2 0.036043248458083675 4 0.034685447150958754 23 0.034266972174779406 5 0.034142885257961865 10 0.03408459936665213 3 0.031575442438556485 21 0.031498522203499565 20 0.03101553309793255 12 0.03044735922984453 24 0.027783600326177358 15 0.025639553987736142 13 0.007565802490508894 __DUMMY__ 0.0025716918307818917 14 9.157703698230767E-6 false 1.0
787 15 0.15891630147025745 14 0.11538138437003578 18 0.07647097833107967 20 0.06724877009119101 10 0.06584769202185259 19 0.048423198058568796 13 0.0458985164497723 16 0.04443626297527618 17 0.03952851694489547 24 0.03626714695869437 23 0.03413871621028221 9 0.033131306674856066 22 0.028480775864015366 3 0.02193261273172037 5 0.020403026497189957 4 0.02033331023817127 8 0.020229629514395792 7 0.020041733436018953 1 0.01977697046952409 2 0.01969136444919671 6 0.018396151963959172 21 0.013791899948400587 0 0.013420079939887237 11 0.010922609351052631 __DUMMY__ 0.006891045039705872 false 0.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.10683292035748997 18 0.07943020780575762 20 0.07855603148724839 16 0.07798438892945944 21 0.07588033522099594 22 0.06644695589930304 17 0.06298628532372999 11 0.0629097232999716 12 0.06070151061899707 24 0.05554438532387037 10 0.052238979997708435 23 0.04642702097472383 0 0.042357628840390904 14 0.031978745707090334 13 0.0293000186089441 9 0.02661844626602987 15 0.02641515557478812 4 0.005144669594948258 5 0.004588842647356625 3 0.002022602957653888 __DUMMY__ 0.0017559628014553073 6 0.0017244062562010516 8 8.01998141780763E-4 7 7.241023152950394E-4 1 5.982363435650662E-4 2 3.0438705245060903E-5 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.097712254965037 12 0.0956154599621739 11 0.08512893719902674 13 0.07502298294827552 22 0.07292254782654119 19 0.065423405217422 18 0.06465138931769275 10 0.055462574487707916 14 0.048384980619576905 0 0.0454712504913789 20 0.04390508582868504 17 0.04084083830623054 24 0.040044932806604344 23 0.03739334110001906 9 0.033393847149619627 16 0.030875204116460407 4 0.012950270967520505 5 0.012172165034124794 6 0.010672300236181074 __DUMMY__ 0.006634359895241806 7 0.005556300035755563 1 0.005399689234392992 8 0.005357653718291567 2 0.004920018113526771 3 0.004057529328328202 15 3.068109418494741E-5 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.0996731450272181 19 0.08621742488538667 10 0.0811219121689336 20 0.07980067262342297 14 0.06518078707871419 21 0.061587339705103834 12 0.05490405220620543 22 0.054835711297034434 13 0.054134709187358854 11 0.05408901307660912 15 0.0534382198325095 16 0.049550358450842734 17 0.04921969529562974 24 0.03830181587684075 0 0.037376605805712844 23 0.03442453208505346 9 0.03257425506656261 4 0.004634517490396865 5 0.004330258100294389 6 0.00187863894237903 3 0.0014231728537214788 7 5.884594608637068E-4 8 3.816239774277678E-4 1 3.2502628659656285E-4 2 5.035580210986725E-6 __DUMMY__ 3.0176389702077296E-6 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.10695741635634677 18 0.07939960352373923 20 0.07854668065233815 16 0.07795490377185593 21 0.0758273605561039 22 0.06647787865107804 17 0.06309662892388015 11 0.06305176017952321 12 0.06071901248913769 24 0.05583631538312756 10 0.052136050669956524 23 0.04612796852050673 0 0.0423922891919027 14 0.032012664204941414 13 0.029305227748933772 9 0.026556168424644224 15 0.02639612977507369 4 0.005128261758608285 5 0.004686157859564367 3 0.00202744940657441 __DUMMY__ 0.0017559621467239008 6 0.0016871194357601063 8 7.281712113442907E-4 7 6.118706511029014E-4 1 5.505098133366176E-4 2 3.0438693895631244E-5 false 1.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.10239660941570616 18 0.09006275888643352 11 0.068385796917247 14 0.06634395404417978 0 0.06601827159547194 22 0.06468840086725966 9 0.061710961184329324 19 0.053062795027147724 17 0.05251785873307608 13 0.050086862763669075 21 0.04951666225805751 15 0.047159960771110246 12 0.033148600078936455 16 0.028209984778734817 20 0.0265459833874394 4 0.017677149446853162 5 0.017262214991807613 6 0.016639214006705774 1 0.015049435371429241 7 0.015010550350326266 8 0.014894120399431277 2 0.014202556243180077 3 0.013947757425718191 23 0.010835900560341206 __DUMMY__ 0.004625640495408573 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.09540781965924457 12 0.09539061021764282 11 0.08572458804165378 13 0.07712104763355275 22 0.07194799832400513 18 0.06116493328273476 19 0.06020118817007339 10 0.055461358626870676 14 0.048694962454125086 0 0.047280697531493956 17 0.039980448915652174 20 0.03853496200486605 24 0.036734183674944014 23 0.03655228980448555 9 0.03469003243973711 16 0.02878757806076841 4 0.01542306351289284 5 0.014970789628670744 6 0.013613500068569031 7 0.008206033171586672 8 0.008097893957391338 1 0.008043508376671662 2 0.007934099094007652 3 0.0066024985992479465 __DUMMY__ 0.0034339147491118625 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.10251658340255665 12 0.09678023540436835 11 0.08505053605450914 22 0.07598265428194814 19 0.07481220236168244 13 0.07220564064956358 18 0.06946249957910412 10 0.055598912584102225 20 0.05205470618690945 14 0.048379000155794695 24 0.04517048812879846 0 0.04296887810872634 17 0.04226843336231112 23 0.03948499854254701 16 0.03484510415592755 9 0.03164946956114179 4 0.009115376380911465 5 0.008655193002833872 6 0.006101249752748332 7 0.0012916622535419486 __DUMMY__ 0.0012535573733052348 8 0.001138137483491076 1 9.953107169343044E-4 2 9.279533149170298E-4 3 8.68616630107689E-4 15 4.22600571217908E-4 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.1600809195529389 14 0.11606066165827657 18 0.07672928223636988 20 0.06750294738353563 10 0.06619104133740816 19 0.04863300758510554 13 0.04610232422202121 16 0.044568901465933695 17 0.0397016097803915 24 0.0365124668342039 23 0.03427972140978751 9 0.03327574170121725 22 0.028613725430813673 3 0.022176393196281008 5 0.02052329586859328 4 0.020412709237828064 8 0.020369134636142466 7 0.02016725251277404 1 0.01993877970383394 2 0.019923277266115275 6 0.018458338760558156 21 0.013791063909877582 0 0.013389573664142342 11 0.010934931179541309 __DUMMY__ 0.001662899466309285 false 1.0
791 14 0.14484142731506547 15 0.11947160646635481 13 0.11634293630794545 10 0.09227897798889295 18 0.08397591795730544 12 0.061377844748179845 20 0.05662425479748014 21 0.05568321717758798 11 0.04713123333950897 19 0.042507373573555836 22 0.03769846719347775 9 0.02936248077123891 23 0.025473209916985658 24 0.02047102533872577 0 0.015781312735049593 17 0.014755324845643271 __DUMMY__ 0.012206186731345128 16 0.007588227049489153 4 0.005893503252530404 5 0.005595518964501502 6 0.0032432542050197335 3 6.1835851980531E-4 8 5.011403831913907E-4 1 2.8448439830612213E-4 7 2.686797176014133E-4 2 2.403630521188033E-5 false 0.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.1028405108491029 22 0.09227649667148316 11 0.08740659942285035 19 0.07665590952809302 12 0.06736660803815042 18 0.06724679263916926 10 0.05273728356443288 24 0.05198973064373333 17 0.0458833710104337 9 0.044143495042458306 20 0.04399776705795036 0 0.04359357082418691 14 0.03872267880643619 13 0.03615960637062396 23 0.03461825060509052 16 0.033600835721765115 4 0.014771618432804416 5 0.0143063842401337 6 0.009355509631205775 3 0.008998295183298909 __DUMMY__ 0.007409963806841935 7 0.006879322277983996 8 0.006544384700946001 1 0.006508558381815159 2 0.005986455663875306 15 8.851344501065499E-10 false 1.0
792 10 0.08558599723390149 18 0.07388789943100199 22 0.06695660181709935 11 0.06479563666379581 9 0.06437895334915089 21 0.058904556984863674 14 0.0569014716251594 0 0.05464544974593955 13 0.05031513936345988 12 0.03991237031542311 17 0.03596378378979097 19 0.03431785464528329 4 0.03209691688860252 5 0.03153343135488535 6 0.029834810153291536 7 0.027034797329048007 8 0.02701618122436462 1 0.026927133080532243 3 0.02655289525402481 2 0.026371712152018778 15 0.02544120646797584 23 0.022464492947642366 20 0.01453668634764848 __DUMMY__ 0.013683640705163728 24 0.008709097308148447 16 0.0012312838217838089 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.12170727562705626 10 0.09580604417348272 19 0.09180523460336254 22 0.08518573863785762 21 0.06889175275963066 17 0.06494499995606556 11 0.06246044539165251 20 0.06064257123683327 9 0.059679841839481634 0 0.0553766732197869 14 0.0432161081457158 16 0.036528079736744754 12 0.03157044676953203 24 0.027155787650131123 15 0.02657164566456218 23 0.025188886630196413 13 0.01814711582849389 4 0.008224705328365037 5 0.0066170558560218785 6 0.0032991943278694548 3 0.0023636203206347907 8 0.0015860792135355957 7 0.0014895037660103115 1 0.00118664962635821 __DUMMY__ 3.5454369061887293E-4 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.10741894283551857 22 0.08999485201961901 11 0.08612830523489481 19 0.08500509054515974 12 0.07552241999244173 18 0.07272995675836197 24 0.05574410715379131 20 0.0550016762297533 10 0.053814478508390884 17 0.04600425390078358 13 0.04255348439903958 14 0.04093388763769817 0 0.040784178000813257 9 0.0391277024943605 23 0.03771514530024008 16 0.037523629348026444 4 0.009845169056642117 5 0.009404662722722206 6 0.004402211271287641 3 0.003647531211924442 7 0.0017491937541007853 1 0.001382073682341501 8 0.0013489839334137924 __DUMMY__ 0.0012911417786594854 2 6.561263944444236E-4 15 2.7079583557047674E-4 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.08014666396590163 18 0.0682467289236858 9 0.06515345050405952 21 0.06249039823547172 0 0.06213269074787302 17 0.0606163111539887 11 0.060462438469701466 19 0.05780601997226725 10 0.056494670944064164 4 0.03398061355587845 5 0.03322271304918188 16 0.032082069203464396 6 0.03171075364464256 8 0.03046708396882652 3 0.03034062007910208 7 0.030321522058473296 1 0.030028274698148893 2 0.02952220058617303 12 0.028843628351146233 23 0.02811540013338169 24 0.027704624587316488 20 0.02363750420261845 __DUMMY__ 0.01589524469237665 14 0.01318160245996697 13 0.007158636779345707 15 2.3813503294332816E-4 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 14 0.10460156256670593 13 0.1028626668985122 10 0.0989337706844549 18 0.0885435642647156 12 0.0719282671318656 11 0.06993936883964504 21 0.06662978804750658 15 0.06419558404646356 22 0.05323450297348625 19 0.05099001483396637 0 0.0435913395488861 20 0.041945380794632496 9 0.04047217481589096 17 0.03142411704265992 23 0.019402116746475243 16 0.015906587113671 24 0.00878651360457812 4 0.0072767594797820785 5 0.007187045333044477 6 0.0060537985114545384 8 0.0016275119892872891 1 0.001607921757602861 7 0.0015769236603432044 2 0.0012827193143697573 __DUMMY__ 2.157613782610882E-18 false 1.0
793 15 0.16262471276684004 16 0.1066614398076875 18 0.0923835425427969 17 0.08922965241792212 14 0.08469926944464175 20 0.08208943909857354 19 0.08018748623422231 10 0.059505635006806404 0 0.038823360629344966 24 0.037350142434510285 23 0.031012368478961588 22 0.030941672937152952 9 0.022340628291234562 13 0.022145578573113462 11 0.014822593920362788 __DUMMY__ 0.00827380748000962 8 0.00590907294465424 7 0.005151078711424584 6 0.004814272616644119 1 0.004811493167337694 2 0.00451371592804735 21 0.0042639300980959974 4 0.0025977918984992146 3 0.0024751624771214326 5 0.002372152093994839 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.08894782224404664 0 0.0798712440982425 16 0.07966468984294574 18 0.05486069265327675 22 0.05463237071907327 19 0.054090269137756795 11 0.05152296492500727 9 0.05002790746192304 10 0.042750892118611716 6 0.038373842000646106 8 0.03592232039075685 7 0.03562584335979243 1 0.03551665705484261 2 0.03500562362957003 4 0.033856773435973896 5 0.03334199052562002 21 0.031636883798551424 12 0.03150058599254599 3 0.02958322143107525 23 0.0294400304577372 15 0.022154389055357857 20 0.02172437974292208 24 0.017593054209432992 13 0.010943057329109315 __DUMMY__ 0.001253533068123919 14 1.58961317058558E-4 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.09338650125972511 19 0.08637717794102681 20 0.07560158866018767 10 0.07537690316631372 21 0.06964700142290432 12 0.06121539766878673 14 0.060482619893205705 22 0.059364780514178726 11 0.05905270673094734 13 0.05421726170069066 17 0.048838039876507554 16 0.04824374382032561 15 0.04315401108426486 24 0.04128920561680719 0 0.03802984729969246 23 0.035197892873729854 9 0.03278602287544384 4 0.005708681073860761 5 0.005486809910162019 6 0.0025080202944851894 3 0.0018954002390522344 8 5.775520670346731E-4 7 4.897518746142485E-4 1 4.1614695563640556E-4 2 4.107735950028625E-4 __DUMMY__ 2.461615854134107E-4 false 1.0
794 20 0.10222713549485088 19 0.0980468931282686 21 0.08305170170968065 18 0.07822495915869679 12 0.07777418099785863 24 0.07571350873044759 23 0.058735859503400184 16 0.05577868218867903 22 0.0533899223491376 13 0.051515129130899444 14 0.047967484115148916 11 0.04710537448006291 10 0.04020674554819771 17 0.03951627713426569 15 0.03275996522643411 0 0.013656367531972333 9 0.013059434595866629 __DUMMY__ 0.012241002728324199 4 0.006381261658051331 5 0.006070231450275152 3 0.0032388413540183018 6 0.0017452645959777505 7 6.320874877261593E-4 8 5.077217573180368E-4 1 3.3311641861654453E-4 2 1.2085152582478786E-4 false 0.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.08379816960900653 19 0.0831665106776078 20 0.0701177290013879 22 0.06682687175311992 17 0.05850480212177645 21 0.05820108303124334 24 0.05549080431054652 23 0.04806706098496562 9 0.04736812786244756 16 0.04686717810479207 10 0.0439074352648897 11 0.035031277141471515 0 0.03485002267843054 12 0.029874801997779366 4 0.028349310030434612 5 0.027877386163069316 3 0.025654219408993397 6 0.02422790842223675 8 0.02397807153054321 7 0.02389835107589099 1 0.023380160800552614 2 0.02286635967423007 15 0.020003426883699518 14 0.01518609184469009 __DUMMY__ 0.0019248121469370692 13 5.820274792576392E-4 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.08231403324892962 22 0.06927489024851607 12 0.061601200230813634 11 0.0609607418874005 18 0.055005443815652456 10 0.05115721716534305 9 0.05082641323668693 13 0.04986566941155035 23 0.044452654476949925 14 0.04344588201032671 19 0.04189151623274097 24 0.041654898567172416 4 0.03636034602217734 5 0.03572885198881274 0 0.033865765704125764 6 0.03203874421280191 20 0.03047094264734585 3 0.030432194070893235 7 0.02932395053055493 8 0.02922596794260655 1 0.029116125935666395 2 0.02859843606729272 17 0.024938155410313315 15 0.00453175346017266 __DUMMY__ 0.002906036617273199 16 1.2168857880988662E-5 false 1.0
795 18 0.09333999013987264 10 0.0885137309230962 19 0.0769453567119393 11 0.07516442310334004 21 0.07483330966702656 22 0.07139281740863278 12 0.05952662007422037 14 0.059069704985117856 13 0.055308027513583664 0 0.05510780834596738 17 0.05262324059911881 20 0.05063694850945401 9 0.04589368981806481 16 0.03939540627326973 15 0.030262335462913962 24 0.02269441926607344 23 0.022098450482059342 __DUMMY__ 0.010617624796360187 4 0.0057114236331955665 5 0.005534969953932181 6 0.0032215486821301994 3 6.691402425654839E-4 7 5.023255781747834E-4 8 4.1513969759716593E-4 1 3.961670171137064E-4 2 1.2538111517990358E-4 false 0.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.1598612661422361 14 0.11607995613839805 18 0.07708483058851756 20 0.06765769485487583 10 0.06623198006740999 19 0.04859864113741094 13 0.04615253950058667 16 0.04484226298578251 17 0.039972562804862714 24 0.03650697808126495 23 0.034469528290578866 9 0.03299071666927411 22 0.02878977709575048 3 0.021975946944419286 5 0.02037545529731807 4 0.020331915808594267 8 0.020204790090615064 7 0.01993242240084217 1 0.019740051841072977 2 0.01972179874448297 6 0.018335941024540534 21 0.013803102760924793 0 0.01380114480399099 11 0.010875795888183298 __DUMMY__ 0.001662900038066823 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 20 0.11750798034903283 19 0.11046426032558544 24 0.09001312725882127 18 0.08009998450788205 21 0.07467333238290803 23 0.07024795656754018 16 0.06274292408997913 12 0.05901653478361975 22 0.05341873677363068 15 0.04746909266752927 14 0.04725015134068047 11 0.038607128374584215 10 0.036643311496893545 17 0.035218166021589004 13 0.029811007747146807 4 0.008945603781131276 3 0.008612686137121869 9 0.008426903684203192 5 0.008357052370949938 8 0.0029580626607408123 7 0.0026946300792455202 2 0.0022816397466190372 1 0.0021974340612479926 6 0.0016282510662408414 0 4.6503584195036634E-4 __DUMMY__ 2.490058831264145E-4 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.10953907483856869 20 0.08336496469807167 18 0.08274074669907125 16 0.07730032117556969 21 0.07412150291178494 22 0.0659935724486706 17 0.06267722506979649 11 0.05845782086154333 12 0.05778863837877778 24 0.05763750102439254 10 0.05158609023714101 23 0.04792825698371796 0 0.039556026099150786 14 0.03083362055031995 15 0.027511627507009435 9 0.026214411734332557 13 0.026076177253507565 4 0.005166499963213145 5 0.0047755135141116 __DUMMY__ 0.00475028782476388 3 0.002527677336135287 6 0.0014324428919450492 7 6.987868944759293E-4 8 6.028501700119239E-4 1 5.834694323913088E-4 2 1.3489350152564442E-4 false 1.0
796 9 0.06503219824874383 22 0.05904634341434393 0 0.05203576851487068 3 0.0512063548897664 4 0.05081916898402625 8 0.050559974609580005 17 0.0505594384214345 7 0.050336054279014886 1 0.05026848378925872 5 0.05019371459855928 2 0.049732688150746426 6 0.04925872322562023 18 0.047464405998672854 10 0.0453379762900171 19 0.037385313116024034 11 0.0363897162646094 21 0.035048153606253046 23 0.033484381506147735 24 0.029787621541335338 16 0.029608966741453174 15 0.025788457180991698 20 0.019438242727798653 14 0.01845648485772085 __DUMMY__ 0.006719636132465838 12 0.006041732910545176 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.12702603876965585 12 0.10721131232323261 14 0.09647803341354007 21 0.075678742793086 18 0.06749881716968613 10 0.06608586908383651 11 0.06033680626445874 20 0.0533453719438489 15 0.04999228697935879 19 0.048537021188709825 23 0.04088018122256567 22 0.037915874837021135 0 0.028265331614463873 24 0.027217355015170714 17 0.024241641313227993 16 0.022048262354010785 9 0.01886964853527319 6 0.010750706978808632 4 0.010218029774267957 5 0.009959769859613362 1 0.0040512526212635284 8 0.0040389302761633175 7 0.0039640367471206065 2 0.003898338862067589 __DUMMY__ 0.001490340059548219 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.09415555135884036 10 0.08955573227051089 19 0.07742653800003857 11 0.07587316775116344 21 0.0754714487652742 22 0.07179115882281767 12 0.05974417900433875 14 0.05930529970470377 13 0.05578472659229955 0 0.05575623991863654 17 0.05301794444870295 20 0.05063478613321024 9 0.04638486147046072 16 0.03949773365499183 15 0.03027779502888371 24 0.02253641427234568 23 0.022484286556534155 4 0.00579174750450919 5 0.005558532439766243 __DUMMY__ 0.003606017583743342 6 0.0033134486619690057 3 5.884462052975647E-4 7 5.603237318197004E-4 8 4.153431030045097E-4 1 4.1489062226052637E-4 2 5.3386393876988235E-5 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.08766376771685076 16 0.0785873541295338 0 0.07856839554253282 18 0.05433897255246278 22 0.05429814076605272 19 0.0536374557818685 9 0.05041345868994005 11 0.05002964521765777 10 0.0424466405370407 6 0.03928893222609373 8 0.037142627757270605 7 0.03679676538233687 1 0.03666447809325845 2 0.03627844379246438 4 0.03501266585720828 5 0.03459134300901518 3 0.031245972079758128 21 0.02998101755470608 23 0.029762971913085568 12 0.028642986697241454 15 0.023569637236423916 20 0.022204226746985786 24 0.018641063882718183 13 0.008559288383769903 __DUMMY__ 0.0014924325773255814 14 1.4131587639815233E-4 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 20 0.10298098793346866 19 0.09889001767886631 21 0.08391051876203402 12 0.0785601643147124 18 0.07854227542725994 24 0.07656103620746733 23 0.05936700913117029 16 0.05609960898161459 22 0.05355556440942685 13 0.05219309783506239 14 0.0485041364666741 11 0.04768599486497459 10 0.040450294449322945 17 0.03974619369299507 15 0.03292029491846611 0 0.013645159007306324 9 0.013056694207124672 4 0.006497526003639588 5 0.006055789174772851 __DUMMY__ 0.004322830903359074 3 0.0032192588760332026 6 0.0017685616276037297 7 5.835240461175498E-4 8 5.114004281667963E-4 1 2.974733290515427E-4 2 7.458732330931076E-5 false 1.0
797 9 0.06503219824874383 22 0.05904634341434393 0 0.05203576851487068 3 0.0512063548897664 4 0.05081916898402625 8 0.050559974609580005 17 0.0505594384214345 7 0.050336054279014886 1 0.05026848378925872 5 0.05019371459855928 2 0.049732688150746426 6 0.04925872322562023 18 0.047464405998672854 10 0.0453379762900171 19 0.037385313116024034 11 0.0363897162646094 21 0.035048153606253046 23 0.033484381506147735 24 0.029787621541335338 16 0.029608966741453174 15 0.025788457180991698 20 0.019438242727798653 14 0.01845648485772085 __DUMMY__ 0.006719636132465838 12 0.006041732910545176 false 0.0
798 18 0.0933496359287328 10 0.088604535397081 19 0.07688920501005864 11 0.07527186923948939 21 0.07487460321084455 22 0.07147318334057791 12 0.0595184181059097 14 0.05905905935910985 13 0.0553176560959808 0 0.055220127269693484 17 0.0526497490051871 20 0.05048209677078531 9 0.04598220433764127 16 0.039339431824443376 15 0.03017590588765434 24 0.02257706829479978 23 0.022021213214735956 __DUMMY__ 0.010636787110112806 4 0.005709210126230432 5 0.005530901860255045 6 0.0032247447291406067 3 6.568503628310963E-4 7 5.04846692357537E-4 8 4.1361079232504755E-4 1 3.9804821040209377E-4 2 1.1903782361998246E-4 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.11069770416945737 13 0.1012741429329561 21 0.08559660487913365 19 0.0680342154871399 18 0.065270066793082 20 0.06322462904028235 11 0.06228674438758936 14 0.06177757865888725 23 0.049246700323503124 10 0.048449705292072154 22 0.04686486439225954 24 0.04296892911619487 16 0.041850440882600926 17 0.038083571204817306 0 0.03251267785840122 15 0.02056320967013608 9 0.016818985215199662 6 0.010137830211850276 4 0.010059848996646088 5 0.009822815491405585 8 0.0036959302315352563 1 0.0036816122856120495 7 0.003652524227752867 2 0.0034286682514851497 __DUMMY__ 0.0 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 20 0.10303948695716204 19 0.09911072723186674 21 0.08404344029252343 12 0.07880488290807904 18 0.0784758184469671 24 0.07667986753205282 23 0.059404530265422195 16 0.05633317091096797 22 0.053647825451148164 13 0.0524093810204746 14 0.048533306998595205 11 0.0475973816291784 10 0.04012974296501858 17 0.039664135624317705 15 0.03314421494720928 0 0.013525729543867214 9 0.012939199756373327 4 0.006343997459036821 5 0.006002160420300119 __DUMMY__ 0.004147037921679719 3 0.003248689179251436 6 0.0016109825134953991 7 4.7527074084749486E-4 8 4.1565483690465317E-4 1 1.8644301082286355E-4 2 8.692143643768482E-5 false 1.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.08468440110681147 22 0.0705522697620602 12 0.06405103126240198 11 0.06254945580345116 18 0.056476031028972924 10 0.05107938650483705 13 0.0503464134396365 9 0.050132214722423636 19 0.044662735078798685 23 0.044337794160155604 14 0.04366838664531384 24 0.042784836872977086 4 0.03492790218287955 5 0.034485913917307216 0 0.03314729911175568 20 0.03202957159660438 6 0.03018330599427446 3 0.028818258875471684 1 0.02736589763374282 7 0.027246508471961105 8 0.027107531431173733 2 0.026866702620922483 17 0.025451204858359704 __DUMMY__ 0.004029825261583479 15 0.0028824043678647546 16 1.32717288258866E-4 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.10144965301021826 12 0.09718362551397468 11 0.08612140265710386 22 0.07523089448757915 13 0.07374815995046821 19 0.07189397341040692 18 0.06728434968222229 10 0.05573126187568936 20 0.04906661124020207 14 0.04867885838834332 0 0.04412252440705035 24 0.04373221310355559 17 0.04191862520064678 23 0.03838690828253472 16 0.03366211715776185 9 0.0319909101365967 4 0.010204520660729494 5 0.009568520036104445 6 0.007388342200397615 8 0.002386722079538124 7 0.0023166165520226364 __DUMMY__ 0.0022848772945697577 2 0.001966856702643658 1 0.0019653456060401663 3 0.0016280818044171383 15 8.802855918296684E-5 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.10751296242664411 22 0.090110469779974 11 0.08567652568126506 19 0.08551326133582364 12 0.07558010714457086 18 0.0734229221448359 24 0.05533966379181133 20 0.05504914530481774 10 0.05358397780449393 17 0.046414934705864976 13 0.042793477676993465 14 0.04093958029222783 0 0.040747957545130116 9 0.03928103718302017 23 0.03817105612529333 16 0.037566383694495976 4 0.00957540360571327 5 0.008983976025232248 6 0.004125698557308109 3 0.003314681277389328 7 0.0015497094460930865 __DUMMY__ 0.0015319857931235146 8 0.0011765831018347881 1 0.0011555214661627302 15 5.465005740697499E-4 2 3.3647751581093147E-4 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 14 0.10454737984494478 13 0.10276114444952257 10 0.09905779450768779 18 0.08858487461062743 12 0.0718481514616747 11 0.06990547491419033 21 0.06667608622181902 15 0.06430202634904474 22 0.05324235908022741 19 0.05102376499664975 0 0.04367770995531448 20 0.04196937486745858 9 0.040475282928524155 17 0.031418304434394015 23 0.01943471789523645 16 0.01593918436900517 24 0.008748374701358242 4 0.007209937763125448 5 0.007168396679626855 6 0.006027073325666215 8 0.001597997297461135 7 0.0015585472157922796 1 0.0015430429299565156 2 0.0012829992006920272 __DUMMY__ 2.1576161858266235E-18 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.0976189770877213 12 0.09583966540718167 11 0.08538893672639511 13 0.07523501521107755 22 0.07299785217260339 19 0.0654545671205536 18 0.06452926654060505 10 0.05554453710921837 14 0.048517830505809004 0 0.04565390007012527 20 0.043758300746468165 17 0.040732643797689996 24 0.04000065317070962 23 0.03741585164943149 9 0.03335452835292489 16 0.030957412030013714 4 0.013162985108116915 5 0.012506747100113255 6 0.01082719849806444 7 0.005510099504048387 8 0.0054243053071833846 1 0.005337559371263289 2 0.005111342789541128 __DUMMY__ 0.004837968073120396 3 0.004245791877778109 15 3.606467224251483E-5 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.11822360350099333 10 0.10208369219398827 19 0.0839036853150552 22 0.07952845095795087 11 0.06330725724460191 21 0.06320518443462146 17 0.0614355092194503 9 0.059187497619614095 14 0.05870425658664694 0 0.05622497924994098 20 0.0560395357791396 15 0.042300803871056766 16 0.035314830200891094 12 0.03099919695491021 13 0.030187718114940615 24 0.018719029627632753 23 0.01857053086392788 4 0.00711636686965006 5 0.005812729214443843 6 0.0030856277360847314 3 0.001857519178202138 7 0.0014219203305523853 8 0.0013854948315566086 1 0.0010145818586594088 __DUMMY__ 3.699982454885904E-4 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.13211580083738572 13 0.1123699362407161 21 0.10505723084215822 11 0.06933530533613613 20 0.06782430578586279 19 0.06540025854172529 23 0.06413861378387746 14 0.05995497768523776 18 0.05979279469794284 24 0.05899192600832686 22 0.05017753760781552 10 0.03766383495416803 16 0.02127754026425876 17 0.020159934307600994 0 0.017140121010680624 4 0.013027444599812208 5 0.012380760788310859 6 0.011008742531398922 9 0.008960757157450618 8 0.003281042710802456 7 0.0031739965547638855 1 0.0029862608620817165 2 0.0029811931110091364 3 5.587854761942385E-4 15 2.408983042827993E-4 __DUMMY__ 1.2947988056576806E-18 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.10121766968758901 19 0.09469157990118329 22 0.0844943942524629 20 0.07880625863026557 18 0.077130974017933 24 0.07487517485074237 11 0.07210742822916225 12 0.06764600000548789 23 0.0498427900808927 16 0.04333465165232076 10 0.04294616539707742 14 0.0423813359560939 17 0.042237608814956085 13 0.031902580460331245 9 0.028943622009110992 0 0.021764531947165072 15 0.016354291873666073 4 0.009505570324718155 5 0.008897633387053634 3 0.004926281184595423 6 0.0022978681924508927 __DUMMY__ 0.0015609078917477623 7 8.785296664156141E-4 8 6.881054310921755E-4 1 5.418497176874116E-4 2 2.6196437798286933E-5 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.10826483620258964 22 0.09060737027806005 11 0.08569137750806473 19 0.08489083095790559 12 0.07484607693024763 18 0.07355302849901438 20 0.05468799992880048 24 0.054596033604001636 10 0.05369693277684664 17 0.046098866821176844 13 0.042286974535365104 0 0.04096183577143773 14 0.04060320456509579 9 0.0396737994641727 23 0.03842633718236957 16 0.037313931256209174 4 0.009791138920683857 5 0.00931593950608373 6 0.004440653811190621 3 0.0035156333816054076 7 0.0019417620132994582 8 0.0013881026897685912 __DUMMY__ 0.0013756840832075908 1 0.0013669918577505112 2 5.245771316018859E-4 15 1.4008032345066404E-4 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 22 0.08150319015550492 21 0.07975478476015183 11 0.0716271904619817 9 0.06041883372743639 10 0.050716383478641526 18 0.048355647261164654 12 0.04636225645477468 0 0.04314463489589797 4 0.04109077775066798 5 0.04058793245251559 14 0.03792092982815861 24 0.03680037128010935 6 0.03671170745498443 3 0.036069061334879894 23 0.03570188994947928 7 0.03453593880256281 19 0.03450272991170424 8 0.0343863716663519 1 0.034189230514963184 2 0.033830710367453144 13 0.03341062533030621 17 0.030618010928717382 20 0.012497183966560584 15 0.0026516706174091833 __DUMMY__ 0.0019178201544925266 16 6.941164931302245E-4 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.1034821264698543 22 0.09283395332392903 11 0.08766293683090025 19 0.07722494768993875 18 0.06791620388248029 12 0.06737201274253701 10 0.05301910029316243 24 0.05141992038126094 17 0.04608874977712429 9 0.044714463455870664 20 0.044054902504322924 0 0.04361518964173328 14 0.03861960337277756 13 0.03622986752764967 23 0.034813592063634574 16 0.0334294293826474 4 0.014384796018849587 5 0.013933845687772011 6 0.009019259808296938 3 0.008486392467825753 __DUMMY__ 0.007409963806841934 7 0.006583993788287945 8 0.006150227331037939 1 0.006077340181827592 2 0.0054571806843023846 15 8.851344501065497E-10 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.1061552504996923 19 0.10613884572328351 20 0.09282058269735638 18 0.08729368545176892 22 0.08239306222516307 24 0.07791758380932748 12 0.06319813510393486 23 0.06233396924697861 11 0.05101168506737853 10 0.05018700336971204 14 0.04446546371905103 9 0.0345523581826555 13 0.028903014378215377 17 0.02693339296008269 16 0.02607031554817354 4 0.011372068093006732 5 0.011163819969911039 0 0.008530145180717067 15 0.008397660370013353 3 0.008302196680002425 __DUMMY__ 0.007462240116135486 7 0.00133396186993157 8 0.0011966338720644078 6 0.0011903470472351637 1 6.106059168728389E-4 2 6.597290133605858E-5 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 22 0.08566984154812024 21 0.08382760943643346 11 0.0757281777589896 9 0.060593300368140236 10 0.051329207969437365 18 0.04988240884175764 12 0.047330905628401476 0 0.044314708588280925 4 0.038828561375831856 5 0.03837555731866509 19 0.03805220903410578 24 0.03783866832765971 14 0.0373258449653147 23 0.034404517796695074 6 0.03412563183706137 3 0.033666025134764486 17 0.032496747450433176 7 0.03192179354862818 8 0.031759983311971156 13 0.031666271909563025 1 0.03164463367443915 2 0.03120654239305018 20 0.012697890866144382 16 0.0026887051949433297 __DUMMY__ 0.001955335289274406 15 6.689204318939554E-4 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.12330627461436025 22 0.09412623907695075 21 0.08339183315614239 0 0.08151901810714851 10 0.07645139464231693 18 0.07565905398899375 17 0.07105448162822413 12 0.06594395566156291 19 0.06361793085310871 16 0.048281759151628 9 0.048105529544082155 13 0.04544130722481621 14 0.035567841911830204 20 0.0152728575303618 24 0.013651606051375055 23 0.01004313840496913 4 0.009352327865765243 6 0.009039784771239661 5 0.008509813761372208 15 0.00505486517963056 __DUMMY__ 0.004378769901095163 8 0.0033323859610424815 7 0.0032179842535406036 1 0.0028845442343019127 2 0.0027953025241415717 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.10616816383625217 21 0.09858212008136966 11 0.09580874635961509 19 0.09285236226160763 18 0.07409794953874316 17 0.062238346862845274 10 0.05669270933048529 0 0.05497260200474013 16 0.05320452874077387 12 0.04975313544006387 9 0.04904057487993529 24 0.04867776005796686 20 0.04021247396503303 23 0.03068620307537849 14 0.026403471383080062 4 0.011479395118207562 5 0.011352808226914493 13 0.009625848866268655 3 0.006361114268633207 6 0.005277097775013101 __DUMMY__ 0.003895066986643012 7 0.0031130891014807586 8 0.002974566903081706 1 0.002948036417652695 2 0.002588866714236387 15 9.929618039786227E-4 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.11079254543987473 13 0.10128441854109634 21 0.08571536210631192 19 0.06813541139056346 18 0.0653964692804459 20 0.06332773643236958 11 0.062052888960013264 14 0.06168061380869807 23 0.04917589310330118 10 0.048495047419761024 22 0.04722610759082364 24 0.04286078400715361 16 0.041944919122644565 17 0.03813433129819545 0 0.032592790953655984 15 0.02065161155773023 9 0.01674273271887193 6 0.009980523826547403 4 0.009848296749464823 5 0.009693269997145504 1 0.003672041844792875 7 0.0036049816998917888 8 0.0035647853621205137 2 0.003426436788526352 __DUMMY__ 0.0 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.14574027107230914 15 0.12022822281767363 13 0.11716080742180802 10 0.09289982824421883 18 0.08442834745838317 12 0.061850436641865486 20 0.05698708368303843 21 0.05601605304032825 11 0.04750203745823547 19 0.04282118535443833 22 0.037863536940115045 9 0.02950420387047958 23 0.025772269386486246 24 0.020607184131911337 0 0.01597927452895035 17 0.01474594980973313 16 0.007744436596988679 4 0.006014695041298666 5 0.005654947395309113 __DUMMY__ 0.005620895838612391 6 0.003306252303926182 3 6.3747840755996E-4 8 4.721466815618095E-4 7 2.0824786230648782E-4 1 1.9448227340414836E-4 2 3.97257390581591E-5 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.08632967312753678 0 0.08444252588552051 16 0.06494186702325562 9 0.06333771982948215 22 0.058893446511946404 18 0.05554793637133005 10 0.04851501666676317 11 0.0478058708966572 6 0.04615935821248876 8 0.04374579742914733 7 0.04351419942066711 1 0.04348373825863647 2 0.04294039892713753 4 0.0416414446572807 5 0.04152978604545359 19 0.041040448008311456 3 0.03760688354226146 21 0.02720586564506307 23 0.023400840346112055 12 0.019213143420652924 15 0.01909859853679559 24 0.006784164624688893 20 0.006444801550924627 13 0.005401420764942287 __DUMMY__ 7.709215854307638E-4 14 2.0413271151355832E-4 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.09376993691857448 21 0.07727105245362753 9 0.06941890823821087 11 0.057297557172240166 24 0.05152443517520316 18 0.04953229695278583 19 0.045553444914457036 4 0.044639733389847405 5 0.04361300010816226 3 0.04239518101847484 0 0.04071504893288382 17 0.04049647053690312 8 0.03857734530729428 6 0.038131198705330965 7 0.03809588878889559 1 0.03789360516052862 2 0.037355300279072245 10 0.03672493919071174 23 0.03343900192609654 14 0.029114513017059394 12 0.018422439089103515 20 0.017068547525390828 15 0.009534072637233033 16 0.00702333263824358 __DUMMY__ 0.0023635300705466015 13 2.9219853122440197E-5 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.10313589339522726 10 0.0851473011173995 21 0.08146040841566397 18 0.07920101947934084 22 0.07799940595476698 12 0.07233734224458685 13 0.0660343042446877 19 0.06544842149630109 0 0.06379126361867872 14 0.060479831996253106 17 0.05080671826406727 9 0.041795641378203165 16 0.0362217019517536 20 0.03346622375908927 15 0.022379163880466287 24 0.020777611870193537 23 0.01826469167248591 5 0.0067883953718326385 4 0.006785468974284694 6 0.005026263813717551 2 7.794081851145588E-4 7 7.215448255697373E-4 1 6.327882080838946E-4 8 5.19185882231865E-4 __DUMMY__ 2.1576179202380632E-18 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.1275388192487565 12 0.10759451740423263 14 0.09684216446743034 21 0.07645163345076818 18 0.06766688447642638 10 0.06624842109140343 11 0.060251331103807676 20 0.05340416203612683 15 0.049957992429163184 19 0.04857100638114745 23 0.04122757679289041 22 0.0378894572532759 0 0.02785386236944546 24 0.026829137473559028 17 0.02393652737033552 16 0.021749237467096855 9 0.01869930227343055 6 0.010549591708427918 4 0.0099823169041555 5 0.009914169573884569 1 0.003970052794590555 2 0.00393682574371364 7 0.00382499226395984 8 0.0038080542633937503 __DUMMY__ 0.0013019636585779074 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.08583425956240302 16 0.08238416598066475 0 0.07047390209731132 19 0.05718031540079731 22 0.05191287231595207 18 0.05185712802046364 9 0.045674324160074324 11 0.04450411791204333 6 0.03855455687198268 8 0.03688996304178337 1 0.03665488534742754 7 0.03664897689631094 2 0.03610845599170394 4 0.034640175024719944 5 0.03444367599577511 23 0.03418086801285824 10 0.03397698477311846 3 0.031642859390615626 21 0.031384532710176216 20 0.03087017084601073 12 0.030345566602397733 24 0.027634547752560152 15 0.025708367994782756 13 0.007478575910519402 __DUMMY__ 0.0030138086631994973 14 1.942724347765018E-6 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.1628786587316515 16 0.10803532684999836 18 0.09270751431270037 17 0.09034488994736378 14 0.08412548850084825 20 0.08250552813643783 19 0.08091943378103185 10 0.05918895140436316 0 0.03944866974310663 24 0.03780497350817947 23 0.03124103689623721 22 0.031068459297699063 9 0.022208600564451685 13 0.021656164051429564 11 0.01509205668894348 8 0.0059478589366097605 7 0.005115258710412044 6 0.004816262228300306 1 0.004810365715431923 2 0.004544358447984702 __DUMMY__ 0.004158253405181146 21 0.004148787096249559 4 0.0025331611950801794 3 0.002430413521258406 5 0.002269528329049932 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.10330531542635 22 0.09257838801650578 11 0.0873703106933975 19 0.07709484873434716 18 0.0678065655934951 12 0.06715621061738658 10 0.05301060718626922 24 0.051282100419402794 17 0.0459258365448998 9 0.04447974486536715 20 0.044174578101454656 0 0.043617505943613265 14 0.03861960337277757 13 0.03619628115039013 23 0.03516875835189649 16 0.03353945372194594 4 0.014524160181961059 5 0.014085563460909986 6 0.009234675883134058 3 0.00857827244239786 __DUMMY__ 0.007409963806841935 7 0.006783967850591938 8 0.006302717204802567 1 0.006188908722379434 2 0.0055656608223476 15 8.851344501065499E-10 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.08733850114602114 17 0.07944049067930199 9 0.06532416661223556 22 0.06221047731038868 11 0.05956730716604834 10 0.05668765393716224 18 0.05462146542230326 16 0.05363466839492223 6 0.045251912379610126 8 0.04259160700947072 7 0.04236015510655908 1 0.0421898406645007 2 0.04180576062702557 4 0.04144969288872108 5 0.04089020183680899 19 0.03756455379187816 3 0.036937262973334745 21 0.03270594942880185 12 0.024290414184752435 23 0.020938041228495595 13 0.012294367479125904 15 0.011491762984186948 14 0.0037098847087928526 24 0.002920499041424146 __DUMMY__ 0.001765093900205582 20 1.8269097922222696E-5 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.07588954679670734 16 0.06575450483148523 0 0.06481584621245387 22 0.05467442281229415 18 0.052492162348874605 19 0.05234239966023425 9 0.05197604575783573 6 0.04204607743022976 8 0.04158883616728636 11 0.041506189008043794 1 0.0414081636880178 7 0.041400753854388586 2 0.04069367335759694 4 0.04011957385488639 5 0.03971658585628733 3 0.038458468259839645 10 0.03734452967728645 23 0.034789766604027085 21 0.03160486527703105 24 0.03125360262617412 20 0.029895653404593117 15 0.02585627078395604 12 0.019962620629021967 14 0.003079153164183638 __DUMMY__ 9.08901231438456E-4 13 4.213867058261991E-4 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.08842875334374997 17 0.08092638737318378 9 0.06341912870137753 22 0.06093021250197891 11 0.059973010812009675 16 0.05678797636875668 10 0.056185478779131014 18 0.05436723916877504 6 0.044607432139821726 8 0.04167828161796148 7 0.041427106510875396 1 0.04131999094519688 2 0.041117242154119604 4 0.04035472325350446 5 0.03998732495331668 19 0.03783941346392161 3 0.03572902563137331 21 0.031925485875706976 12 0.026854103796153966 23 0.02107524683585256 13 0.014903702340642592 15 0.012744739089475661 14 0.003963583754115059 __DUMMY__ 0.001744265633613258 24 0.001694037042076255 20 1.610791330996908E-5 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 22 0.08109743057896875 21 0.07948736901473248 11 0.07120503491915757 9 0.06041782841402951 10 0.05067508464488059 18 0.04809752485018876 12 0.04625614235001871 0 0.04289541470933561 4 0.041293242149434486 5 0.04078473281760621 14 0.03800174206157484 6 0.03694646913122185 24 0.036727222261920475 3 0.03625190556457443 23 0.035826679289774864 7 0.03481434962377067 8 0.03465360558239757 1 0.034474984587111596 19 0.03423190776226059 2 0.03403426875200998 13 0.033405140307903085 17 0.03047081232801524 20 0.01246528368337054 15 0.0028680829583112837 __DUMMY__ 0.0020770828251887533 16 5.406588322414749E-4 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.08648834981477897 0 0.08432848753930446 16 0.06493896114517037 9 0.0632718979719665 22 0.05861341705134848 18 0.054879887441905036 10 0.048557881505739336 11 0.04790724407080339 6 0.046231598642394844 8 0.04381705745253445 1 0.043600532107364885 7 0.04359794444698401 2 0.043141895455875004 4 0.04175554473577278 5 0.04155330777438362 19 0.04108526763726539 3 0.03779809559914231 21 0.027104774003796014 23 0.023179546996472872 12 0.019369828797190278 15 0.019136308042877873 24 0.0069976389548037496 20 0.006379441450335276 13 0.0052900365874472095 __DUMMY__ 7.709219628835352E-4 14 2.0413281145946607E-4 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 22 0.08108971561769134 21 0.07951804429853802 11 0.07118307516771644 9 0.06040701102258332 10 0.05066736026476058 18 0.04808391721940646 12 0.046229840435542 0 0.04291679058105076 4 0.041301614208744626 5 0.04080703684416039 14 0.03799122733281687 6 0.036957316666924346 24 0.03671794554965029 3 0.036277613818230046 23 0.03580997183219812 7 0.03481621801901377 8 0.03466259479159917 1 0.03447994890499299 19 0.03422232067466346 2 0.03405997631907909 13 0.03341227151395238 17 0.030466487323073856 20 0.01245538025399562 15 0.0028485788717258088 __DUMMY__ 0.002077083468259351 16 5.406589996309473E-4 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.09407844275338911 10 0.09004995298915987 19 0.07741214761139062 11 0.07593359909810009 21 0.07532455813341642 22 0.07193974539006996 12 0.0599192952595545 14 0.05966649337894286 0 0.05574294099917773 13 0.05572361851008312 17 0.05290150991152535 20 0.051339162127022865 9 0.0461684198745931 16 0.039599785313775504 15 0.030327713052486414 24 0.022770847737270183 23 0.021996545806681082 4 0.005734190461019995 5 0.0055184010585534815 6 0.0032546041310299763 __DUMMY__ 0.002726604572130499 3 6.059984483487391E-4 7 4.951564474416873E-4 8 3.68833201167395E-4 1 3.3261644292369787E-4 2 6.881729074587055E-5 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.1029284998704611 10 0.08531581542643164 21 0.08133570474691046 18 0.07918992528087963 22 0.07791034294004362 12 0.07226832502867585 13 0.06597586490990559 19 0.06539332332724897 0 0.06375315044448343 14 0.0604464507582283 17 0.05075161194082607 9 0.041743314613235945 16 0.0362632123167203 20 0.03365280903456269 15 0.02250336846373392 24 0.020901258646196106 23 0.01825551274132585 5 0.006820700241892545 4 0.006820279961727654 6 0.005083907350215542 2 7.757886694937625E-4 7 7.304558727879902E-4 1 6.130180660589759E-4 8 5.673593479539815E-4 __DUMMY__ 2.1576191218485724E-18 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.09334053702217492 21 0.07715335652571934 9 0.06937485391353401 11 0.056980382600738524 24 0.051397008730611406 18 0.049430196709513166 19 0.04557485637172243 4 0.04473673185660468 5 0.04373922061934773 3 0.042438802156005796 17 0.04054087165806372 0 0.040176185946849144 8 0.03876551766658891 7 0.03836042723311647 6 0.03826794114432699 1 0.03821269075309238 2 0.037422690317688766 10 0.03638400569731559 23 0.03354691417081012 14 0.029135151635442672 12 0.018585683497978362 20 0.01719672648850303 15 0.009684462985678549 16 0.007162035307172286 __DUMMY__ 0.0023635291496634657 13 2.9219841737744775E-5 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 19 0.06945180854343501 17 0.06867311506749837 22 0.0664624421430351 18 0.06645066273191545 0 0.06084092891500627 16 0.05971254038573921 9 0.05484395469735122 10 0.053261888937501584 11 0.05006360887061587 21 0.0442378514510645 20 0.03731297981919734 23 0.0341891614774352 4 0.03204967638437512 5 0.03166100433421405 6 0.03089837757678592 24 0.03088983263590613 8 0.03086493784201349 3 0.03083360509151846 7 0.030813662728481152 1 0.0307473946848885 2 0.03024916232261846 15 0.022388446397831076 12 0.020224286281761664 14 0.012878670679810507 __DUMMY__ 2.157616363426555E-18 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.09402357778299594 10 0.08940178078079422 19 0.07757121349454597 11 0.07607225010855101 21 0.07539218239924984 22 0.0720690395838647 12 0.06009664946617424 14 0.05976516526368093 13 0.0558367509296535 0 0.05573230825297751 17 0.053145637764282494 20 0.0508041223382276 9 0.04639553533342989 16 0.03962870638344011 15 0.03036599093880722 24 0.02261858681168298 23 0.022004626693793255 4 0.005713350278467556 5 0.005421855723055449 6 0.003237591737109618 __DUMMY__ 0.002726604572130499 3 6.068490680447568E-4 7 5.666085019071922E-4 8 3.837190458477086E-4 1 3.5047945654007403E-4 2 6.881729074587054E-5 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.09943436040244549 22 0.09371604397193656 11 0.08664174455246736 19 0.06046555544210619 12 0.05931380671568196 18 0.05419360019205915 24 0.0513304797445007 9 0.048157204973970094 10 0.04251340140162155 0 0.04207370389226809 17 0.041192974812541 23 0.03892174019852343 14 0.036459007436422435 13 0.03177786419939932 20 0.027457651347488527 4 0.02615772591706816 5 0.025582308112894372 16 0.02273589354123252 6 0.021124615529435762 3 0.01950437653658488 7 0.018402708570691425 8 0.018040578199055766 1 0.017849321621015823 2 0.01684783027863493 __DUMMY__ 1.0550239440521959E-4 15 1.5549419961939525E-11 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.10299222862224086 22 0.09221434257103735 11 0.08723596518435932 19 0.0766894959053526 18 0.06744252014802665 12 0.06730290973645128 10 0.05258981234474151 24 0.0517507654997832 17 0.045991851148478924 9 0.04425467753269682 20 0.043846049284812394 0 0.04360360813233345 14 0.038559765574211716 13 0.03614030385495755 23 0.03491280699415992 16 0.03352478381003947 4 0.014819488671657112 5 0.014315263397340247 6 0.00940144961849183 3 0.009023774503978569 __DUMMY__ 0.007409963806841936 7 0.006881252529550639 1 0.006551796016907915 8 0.006528942688412875 2 0.006016181538001576 15 8.851344501065501E-10 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 23 0.08295310228080016 12 0.06888728338877693 24 0.06528639976874505 21 0.06412398839693831 13 0.04869350490168784 4 0.047905462336268786 5 0.04757990198535457 6 0.047290121496917914 20 0.046069659093737864 7 0.04452771092300833 1 0.04395153423376488 8 0.04394728908190815 2 0.043865868255700435 3 0.042633864544911707 19 0.04227408382291619 22 0.04011363109454327 11 0.02822754173350283 16 0.02770700502066663 17 0.02547660513047355 18 0.025367781745176402 14 0.02417255571975346 9 0.021597081375316407 0 0.014030713426970353 15 0.010917352324074566 __DUMMY__ 0.0023999579180852466 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.08691372334559137 17 0.083692042155 9 0.06504135021196171 22 0.06107139247198647 16 0.05921139220593191 18 0.0551398401472054 11 0.053731624022595285 10 0.05306365845291327 6 0.04593768370715403 8 0.043419690306145536 7 0.04316992468204396 1 0.043064149926079064 2 0.04271123920803161 4 0.041764671452680514 5 0.04134307029663371 19 0.03902288314755669 3 0.03755492557206167 21 0.02947624936288567 23 0.021542803611297977 12 0.020858561033866067 15 0.014974391062581905 13 0.0077466080925247816 24 0.004216261695547192 20 0.0022645213893638413 __DUMMY__ 0.001814660440238062 14 0.001252682000122247 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 22 0.08510672228533145 21 0.0834192220356231 11 0.07514177350452127 9 0.06057898004891979 10 0.05126686689648128 18 0.04986979384984769 12 0.04713126869866033 0 0.04402753867618847 4 0.03907510685891543 5 0.03850914444517897 19 0.03773637356876598 24 0.03761096602535504 14 0.037381286636394874 23 0.034938244377007155 6 0.0344261571772497 3 0.03387277260932461 17 0.03237238209309748 7 0.03230226061894592 8 0.032115249309072925 1 0.031991002415189644 13 0.03179644445805834 2 0.031445162282188896 20 0.012864645701292123 16 0.0023916249806653004 __DUMMY__ 0.0017457851116863402 15 8.8322533603788E-4 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 9 0.06548706767124418 22 0.0594914612437928 0 0.0527823459438004 3 0.051495257589219925 4 0.051108436235545965 17 0.05085046453839833 8 0.05081682300998735 7 0.05055817573869167 5 0.050479977589635946 1 0.05043771815923952 2 0.05000820605871749 6 0.0495543145302133 18 0.04777285080484809 10 0.04588524236372664 19 0.037519536677454605 11 0.0367452477882341 21 0.03506872092026458 23 0.03359863554478786 24 0.02990064407321823 16 0.029787679285521663 15 0.025880124394693293 20 0.019457737489484064 14 0.01848429453428483 12 0.005913892107035474 __DUMMY__ 9.151457079600184E-4 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 20 0.10036386234714863 19 0.09976686440107448 21 0.08960719044058256 24 0.08373410678748856 18 0.07908334316262225 12 0.06987282722946549 22 0.0669248117898868 23 0.058886340022331465 11 0.05439455224972624 16 0.0521812157440346 14 0.04646246299974884 17 0.03925919296564487 13 0.038159211307620504 10 0.037624693513048604 15 0.03170804667590275 9 0.01691738299699349 0 0.010406298611207582 4 0.008077565076890905 5 0.007525583416638768 3 0.004904388625226911 6 0.0016789170529810978 7 9.472289700164057E-4 8 7.465580095746882E-4 1 3.673347629554679E-4 __DUMMY__ 2.768861743255336E-4 2 1.2313466686257317E-4 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 17 0.07068408946031388 0 0.06535358022592494 22 0.058710875335919475 9 0.058284893648745416 16 0.05426316895307622 18 0.053102266367337794 19 0.04747351310452669 6 0.044145211265470725 8 0.04381671871377542 7 0.04365518391210899 1 0.043547796299672155 11 0.04342028544779407 4 0.04300820079827328 2 0.042861894356475014 5 0.04238605731667763 10 0.04215806947437098 3 0.041351517082397836 21 0.0339121860589901 23 0.03234090236121319 24 0.028086277348912995 20 0.023885705189823064 15 0.02141031865900647 12 0.016690020196275263 14 0.0053318426433836205 __DUMMY__ 8.15960477759574E-5 13 3.7829731759006505E-5 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 9 0.06535491487536957 22 0.059280540950105896 0 0.05216716817203809 3 0.051487980201389144 4 0.0510911727201864 17 0.05085270217660834 8 0.050832975425244946 7 0.0506213694106603 1 0.05059044802182349 5 0.05045895308584209 2 0.05001019075752089 6 0.049514234937134 18 0.047672432028612176 10 0.045502544771344834 19 0.0375992613175487 11 0.03653922741935917 21 0.03526231213817948 23 0.033590305062606844 24 0.030037809578669698 16 0.029762040237201654 15 0.025972790225175478 20 0.019540277964076362 14 0.018611770514349684 12 0.006179650515853094 __DUMMY__ 0.0014669274930995196 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.10219013908952763 22 0.08999877720562041 11 0.0877265286751262 12 0.06910227464289492 19 0.05644262309802098 24 0.052959678520104664 18 0.04737958890249687 23 0.04313635240358399 13 0.042823221145223266 9 0.04212990264636415 14 0.0393179589327444 0 0.03915097503760431 17 0.03802701594705276 10 0.034948564640703755 4 0.02666055216301364 5 0.02608928525797108 20 0.0254984692595669 6 0.022401488177370272 16 0.021462753803902862 3 0.018764709188539837 7 0.018654640781079854 8 0.01829277897667581 1 0.01798264884464869 2 0.017196174282230522 __DUMMY__ 0.001662898377932134 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.08678992445374627 9 0.07148245496749898 11 0.0680978414785887 0 0.06412697590066367 21 0.06375216382362063 18 0.058579256640481525 17 0.05792676118426991 10 0.05487274591266557 19 0.04673577798016433 4 0.04061325855900479 5 0.03990587834732852 6 0.037980886705822316 7 0.036774200504232316 8 0.03675844995285681 3 0.03672819708975977 1 0.03646184749915549 2 0.035474799383769934 24 0.02610396889734884 16 0.02529144150332389 23 0.024394168317180248 12 0.022567936243734273 14 0.0152004912673058 20 0.008964114483403226 13 0.0026203268318300992 __DUMMY__ 0.0017686144935993556 15 2.751757864480977E-5 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 9 0.06601589461952083 22 0.057883566356688405 3 0.05400734529768101 4 0.053035060424804104 5 0.05225408113428949 8 0.05224589364569838 7 0.05207006756141356 1 0.05203012378081324 2 0.0513318044248069 6 0.05033670239190127 18 0.0499494136902103 10 0.0488032094278267 0 0.04601704790561405 17 0.04317628045028098 23 0.0359139618137959 19 0.035728260291772306 11 0.0342278540018675 21 0.03375003933108728 24 0.03284861985602842 15 0.02932316410970837 14 0.023722602181259468 20 0.022735355551504074 16 0.0203292516870201 12 0.0022571823939697365 13 7.217670437728773E-6 __DUMMY__ 9.982674531840644E-20 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 9 0.06531687075629918 22 0.05926837497810444 0 0.05216385093364603 3 0.05145707926605023 4 0.051069790870019165 17 0.05085126941900759 8 0.05082743599812174 7 0.050594340090331064 1 0.0505550955964793 5 0.0504131977218683 2 0.049980514456425325 6 0.049485323406806364 18 0.04773252404805062 10 0.04549960139974632 19 0.03760220601667047 11 0.03653996673568116 21 0.035241057179415926 23 0.03366423447908551 24 0.03004773238722139 16 0.029779132287588446 15 0.025965098278023714 20 0.019566909959190165 14 0.01861548311203493 12 0.006203169666278183 __DUMMY__ 0.0015597409578543067 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 19 0.09918752078200227 21 0.09702320386644944 20 0.08694337046580607 22 0.08163087569622993 24 0.07985387215371423 18 0.07794837173317744 11 0.06769249197793005 12 0.0631861975419812 23 0.05389269197621713 16 0.045179243242143 14 0.042518112482551496 10 0.04187345830179883 17 0.03968278638369315 13 0.02720650432865866 9 0.025432074483869558 15 0.0211161176667109 0 0.01602684246885864 4 0.009576712128214792 5 0.008944981609394588 3 0.006275131864109816 __DUMMY__ 0.004629753329850919 6 0.0016628888613174563 8 0.0010098079886015322 7 8.241512839576636E-4 2 3.9550784036339705E-4 1 2.87329542397678E-4 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.09830535531777411 22 0.0944850886211769 11 0.08633360756207276 19 0.0602384023161361 12 0.05652952252616854 18 0.0543781236436247 24 0.05089085973922455 9 0.04970385596307824 10 0.04341572888265643 0 0.042408097089382514 17 0.04151673546579599 23 0.038027038996438625 14 0.035704463330329485 13 0.029014016773346446 4 0.02697461661675835 20 0.026724800169334324 5 0.026395775197100173 16 0.022234635641236615 6 0.021778786864112196 3 0.020496992600060934 7 0.019250978735661044 8 0.018832700549999543 1 0.01869894895901366 2 0.017617541076681637 __DUMMY__ 4.332735645046624E-5 15 6.385781716965476E-12 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 23 0.08311207256667132 12 0.06887989082409877 24 0.06529675665152887 21 0.06431127954750064 13 0.048785949425226766 4 0.047776102244376305 5 0.04724355022023174 6 0.04714036194590161 20 0.0461820262314618 7 0.04443710934511091 1 0.04388228727394373 8 0.04387604137156823 2 0.04341667952678686 19 0.04245928997735953 3 0.04218842790914764 22 0.040005022860544664 11 0.028280209713243645 16 0.02773485078025471 17 0.025709231714690188 18 0.02565389766219104 14 0.024065311697945766 9 0.021741289363113418 0 0.014127762098457796 15 0.01085664898326026 __DUMMY__ 0.002837950065383953 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.10686347719722221 18 0.07952832045625471 20 0.07884119917756945 16 0.07797915271461305 21 0.07557244785549336 22 0.06652472847501247 11 0.0629137183511138 17 0.06280549821676593 12 0.06077492639147513 24 0.05536082901848284 10 0.05258923773498874 23 0.04611943368399694 0 0.04238186685036302 14 0.031995377375089395 13 0.029193746937354135 15 0.02641218661429104 9 0.02626439985091745 4 0.005285817641478952 5 0.005021403065533639 3 0.00218982533864984 __DUMMY__ 0.0020100251403092355 6 0.0018704656628754897 7 4.999496121770562E-4 8 4.4732390853028753E-4 1 3.602604899797907E-4 2 1.9438223946191375E-4 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.08480177933999983 17 0.07825299307120262 9 0.06146381020128684 22 0.05816604033874791 11 0.058025421357069784 16 0.055334362315189865 10 0.050500381593599986 18 0.04977832164862194 6 0.04705384112759743 8 0.04372783735083157 7 0.04347049682862999 1 0.04343427884721967 2 0.04287114832926395 4 0.04265096021852879 5 0.042102761771685676 3 0.03708895342255626 19 0.03606635926467094 21 0.033413541350182444 12 0.0329718199983638 23 0.024832592539673133 13 0.019143916101186615 15 0.0071417653642232215 24 0.0031994409790676373 __DUMMY__ 0.0027212439705768155 14 0.0017859326700232696 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 9 0.06530994607944629 22 0.059409301268556224 0 0.052229581958064486 3 0.05153701074293443 4 0.05111814670340628 17 0.05085283973737633 8 0.05083618441657747 7 0.05059761150077084 1 0.050543168512814506 5 0.05053485530348983 2 0.050058450613485635 6 0.049546264849471444 18 0.04769337961507515 10 0.04552858432780824 19 0.037629990733557245 11 0.03658430705346342 21 0.03530695503831193 23 0.03357975795528762 24 0.030066294606842254 16 0.029798909264913628 15 0.026001374400211746 20 0.019513351376949074 14 0.018624838527224637 12 0.006183748646122573 __DUMMY__ 9.15146767838926E-4 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.10219013908952763 22 0.08999877720562041 11 0.0877265286751262 12 0.06910227464289492 19 0.05644262309802098 24 0.052959678520104664 18 0.04737958890249687 23 0.04313635240358399 13 0.042823221145223266 9 0.04212990264636415 14 0.0393179589327444 0 0.03915097503760431 17 0.03802701594705276 10 0.034948564640703755 4 0.026660552163013634 5 0.02608928525797108 20 0.0254984692595669 6 0.022401488177370275 16 0.021462753803902865 3 0.018764709188539837 7 0.018654640781079854 8 0.01829277897667581 1 0.01798264884464869 2 0.017196174282230522 __DUMMY__ 0.0016628983779321343 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.10412363064662979 19 0.09461016945034266 12 0.08038079328533962 18 0.07851598164276088 22 0.07581817014006653 20 0.07563413503720252 24 0.06694432279201651 11 0.06496053214932226 23 0.05537381139652866 13 0.04492108664299784 10 0.04407242778715754 17 0.04105520094885322 14 0.03965597810825736 16 0.0386237398845014 9 0.02706601687779723 0 0.02371494871372501 5 0.010848431349694092 4 0.00934274960037996 3 0.007765259015743301 15 0.006944931289017584 2 0.004587368755396729 6 0.00303149789844177 1 0.0013874170387054336 __DUMMY__ 3.8859614360255075E-4 7 1.6321324619961286E-4 8 6.9590159319915E-5 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 19 0.09846505018272123 21 0.09678245807982547 20 0.08551709095308414 22 0.08071634850592013 24 0.07790530737417213 18 0.07766943839138883 11 0.06720795525261637 12 0.06426359636471815 23 0.053789846289572125 16 0.046330018213614134 14 0.04276075836807676 10 0.042330508435809176 17 0.040732308320762294 13 0.0293037043718885 9 0.025728443134088612 15 0.021211043262867525 0 0.017563478745418498 4 0.009264900992736134 5 0.008441672190093038 3 0.005683562405100322 __DUMMY__ 0.003909651367098764 6 0.0017881094770383057 7 0.0010157724566343279 8 9.571657832422596E-4 1 4.6635803206042386E-4 2 1.9545304945242206E-4 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.10421337884440343 19 0.09458828021296574 12 0.0803637177607724 18 0.0784529971766627 22 0.07579788956871548 20 0.07549711325737747 24 0.0669816138441673 11 0.06491198032980369 23 0.05534114851072126 13 0.04483901945340827 10 0.04390437165062325 17 0.04113884626568704 14 0.03958921561508883 16 0.03852127031491667 9 0.027097927011332745 0 0.02359965798293653 5 0.010954092875432607 4 0.009389968061750168 3 0.008006609473939864 15 0.006896687869190858 2 0.0048269712071468745 6 0.0030211491625963607 1 0.0014624749988218313 __DUMMY__ 3.885960303311294E-4 7 1.2167604543666121E-4 8 9.334647577082458E-5 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.08687377928923506 17 0.07921885711558438 9 0.06561450624151466 22 0.06252783744917652 11 0.05911331771266522 10 0.05643366559791257 18 0.054596647705397086 16 0.053390212799446245 6 0.04532271683331129 8 0.04276566843040716 7 0.042583456449466206 1 0.04239728576291546 2 0.04200220140698288 4 0.0416057822203014 5 0.04109872886592836 19 0.03754793055280409 3 0.037212931544252946 21 0.03270009787991042 12 0.02405572113095716 23 0.021059203355120352 13 0.011845239519276886 15 0.011529226775828802 14 0.003835297154363291 24 0.0028935613950543996 __DUMMY__ 0.0017579541755804624 20 1.8172636606588193E-5 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.09461647032238556 10 0.08908820459173086 19 0.07762743714682065 21 0.07573252114482229 11 0.07571330992137568 22 0.07251807144194544 12 0.05984559486653496 14 0.05930934021706789 13 0.05578373943207276 0 0.05573025290416302 17 0.05349240548194185 20 0.05040421715674666 9 0.046968115805750034 16 0.03948966880018063 15 0.03078752993651134 24 0.022418453228753965 23 0.02199995269188217 4 0.00550494991847299 5 0.005461197285584086 6 0.0029761930803896366 __DUMMY__ 0.0026597410354502913 3 5.871437102842495E-4 1 5.056196730386574E-4 7 3.972883926252069E-4 8 3.298572099573333E-4 2 5.272460351154126E-5 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.08551585428821008 0 0.07860297906778219 16 0.073929741002158 22 0.054716326609258854 18 0.05383083100272927 9 0.052383856455689985 19 0.05046135759264991 11 0.05018749620818257 10 0.043065433900661185 6 0.04104809096110488 8 0.03907422518756029 7 0.03880880676508774 1 0.03877096909175079 2 0.03808639385065714 4 0.03697538475004749 5 0.036545727509624516 3 0.033346559512557175 23 0.029714484351809747 21 0.02960053464998243 12 0.0263416517454332 15 0.022593009339040238 20 0.019925355228676517 24 0.0183088886161897 13 0.007473969488070489 __DUMMY__ 6.127538200423941E-4 14 7.931900504330406E-5 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 9 0.06535259784395427 22 0.05939964359675232 0 0.05227533615273465 3 0.05152470021567494 4 0.051116570266237685 8 0.05082557720434713 17 0.05082500188437173 7 0.05057180525067734 5 0.05052222157096196 1 0.05051238285419184 2 0.050043005948871996 6 0.049534556347749836 18 0.04764629219310762 10 0.0455435571193357 19 0.037637928032321695 11 0.036567742680748555 21 0.0352646684530351 23 0.03353370661053263 24 0.02998589483477708 16 0.029785867757447248 15 0.025929072810734942 20 0.019466104919663905 14 0.01856219385703197 12 0.006106643528913856 __DUMMY__ 0.0014669280658240946 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 22 0.0865102290257142 21 0.08467587813949877 11 0.07670080125991877 9 0.060153369390845236 10 0.051410271359029716 18 0.050439495883719626 12 0.04745018303549086 0 0.044658855752919994 19 0.039553537166889106 24 0.03817450211850734 4 0.037881479937637186 5 0.03740636187369916 14 0.037092563049615404 23 0.034082526238447035 17 0.033474678923138344 6 0.03314326404826974 3 0.03275768252259382 13 0.031093123564009784 7 0.030963396926512413 8 0.03081676787334689 1 0.030681249518750543 2 0.030258346059361656 20 0.01344861478150308 16 0.0041729743635098605 __DUMMY__ 0.0024629464085437133 15 5.369007785279651E-4 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 9 0.06604901496603975 22 0.05798639172168949 3 0.0540059590876442 4 0.05301012750530439 5 0.05224430170976088 8 0.05220557373168093 7 0.05202345300209478 1 0.051997264088267894 2 0.05133088385799784 6 0.050291019962448925 18 0.05010166150600591 10 0.04879296293179836 0 0.04595504512459714 17 0.04320263460082451 23 0.035892755038682306 19 0.03581522741410704 11 0.03415442493123874 21 0.033796673897947334 24 0.032767030791599754 15 0.02933925715693549 14 0.023703957032354374 20 0.02275564346576597 16 0.020310838880504327 12 0.002260679922589215 13 7.217672120409493E-6 __DUMMY__ 9.982676859136425E-20 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.09448250000410506 10 0.08901599873436666 19 0.07758054236287751 21 0.0756528634868676 11 0.07564266615629067 22 0.0724478034512831 12 0.059829473158108736 14 0.059285974271826046 13 0.05573451845770709 0 0.055647738130215965 17 0.05342790988866524 20 0.05043054573334336 9 0.046878216435383306 16 0.039457955178537084 15 0.030750695521648604 24 0.02244375338964183 23 0.02193994630424738 4 0.005494872233827513 5 0.005443873218041899 __DUMMY__ 0.00360601619163751 6 0.002966773799940596 3 5.892180796483259E-4 1 4.874680050531315E-4 7 3.912332824365465E-4 8 3.1805815103181707E-4 2 5.338637326713026E-5 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.1002356792246644 19 0.09434678675782167 22 0.08408857118798956 20 0.07977321755302791 18 0.0780358520231325 24 0.07457796576686068 11 0.07141760239875455 12 0.06659925843165038 23 0.05070134043068549 10 0.04402280063602722 16 0.0434619903850752 14 0.04234134656189179 17 0.04226578260167457 13 0.03176657650655091 9 0.028640675541549653 0 0.02187018945453993 15 0.016742293688627154 4 0.009450845506064476 5 0.008459475583689485 3 0.004919558212604652 6 0.002401062165281792 7 0.0011994306816306133 __DUMMY__ 0.001086008282745877 8 9.520839207127433E-4 1 6.219536021504522E-4 2 2.1652894596421425E-5 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 23 0.08430722232134809 12 0.06632314991160752 24 0.06580406721655499 21 0.06102782909658291 4 0.049122746045199464 6 0.04875251245849052 5 0.04826066183820549 20 0.0478253873642558 7 0.04627397006618043 13 0.0461609063835175 8 0.045731205351940064 1 0.04527190126433374 2 0.044541059467747134 3 0.043368267488640214 19 0.04255096086894718 22 0.03818110025496225 16 0.029050359339965533 17 0.026021479363604442 18 0.025794849536071852 11 0.02456238884970797 9 0.022415544700102062 14 0.021952702901185797 0 0.014014010016885587 15 0.011085034478957784 __DUMMY__ 0.0016006834150057 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.10060634957223419 20 0.09996921632067193 21 0.08993521081940123 24 0.08384247448349065 18 0.07821231095854139 12 0.06991430235033863 22 0.06671868893289541 23 0.05907766414772177 11 0.05435736473203297 16 0.052498850146004625 14 0.04639564525332311 17 0.039086613112090794 13 0.037626556939856046 10 0.03710599531033707 15 0.03176604456234683 9 0.017246975702659314 0 0.009335418420507455 4 0.008345148480079808 5 0.00793703722044472 3 0.005040299197860148 6 0.0018080908637818104 7 9.738144633099385E-4 8 9.165100771410027E-4 __DUMMY__ 7.657112994869875E-4 1 3.505053288495804E-4 2 1.6720130459244834E-4 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.0976346652197816 12 0.09549604566373983 11 0.08489959973586417 13 0.07486263409716075 22 0.0726345007864452 19 0.06534460680395994 18 0.06472592865976838 10 0.055517832534941663 14 0.04844707603396707 0 0.04537531467733568 20 0.04426568259817366 17 0.040609607529246666 24 0.03991615128046682 23 0.037625808481021324 9 0.03337667960879377 16 0.030969816809085133 4 0.013098245261489515 5 0.012389845551619781 6 0.010873741348611084 __DUMMY__ 0.005805475335749869 7 0.005796143009941608 1 0.005591591361277315 8 0.005547492494150064 2 0.005014831886853006 3 0.004154037765037525 15 2.6645465518578387E-5 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.08683826263298644 17 0.07941265452250623 9 0.06573572613349368 22 0.06253092585406772 11 0.058926469216748545 10 0.056318236465104546 18 0.05519270984939575 16 0.05317402445706332 6 0.04537560576707283 8 0.04278111045486309 7 0.04260430318248171 1 0.04252468246467683 2 0.041831567036744934 4 0.04166523401445671 5 0.04113849207890237 19 0.03760390789145682 3 0.0370419111234036 21 0.032837145846956746 12 0.023892035671724376 23 0.02115494390674708 13 0.011810108913639662 15 0.011358978456202247 14 0.0037071283513791264 24 0.002767708895738623 __DUMMY__ 0.0017579541755804627 20 1.8172636606588193E-5 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 9 0.06488032396550515 22 0.05897475611574953 3 0.051774443612481985 0 0.05142298193445451 4 0.05121913730832654 8 0.05092045279024995 7 0.05069000180007268 5 0.050641600330282525 1 0.0506282391900377 17 0.050269454555812776 2 0.050200798877564054 6 0.04956751233798763 18 0.047369236760329815 10 0.045189979735521565 19 0.03763727810765315 11 0.03592573391059195 21 0.03503272712419703 23 0.03411531848199702 24 0.03060546640533193 16 0.029856104309650435 15 0.02694388090851416 20 0.020180809596664292 14 0.019089260917860097 12 0.005935435089842844 __DUMMY__ 9.290658333209391E-4 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.07844421716082024 18 0.06847976140265288 9 0.06246982354137991 19 0.06150528630132882 21 0.060748422812027414 17 0.05866200420231526 11 0.05523078385547223 0 0.053669283585085305 10 0.05135740621203262 24 0.036609481325526855 4 0.03531997692370194 5 0.0347784138867121 16 0.03461436227426045 23 0.03315657406477246 20 0.0328085245505689 6 0.03219376391582227 3 0.03215537412001542 8 0.03126709399508066 7 0.03103802382240242 1 0.030542393672887528 2 0.030465734760016534 12 0.026221261617033018 14 0.014558774369156806 15 0.007306518046270469 __DUMMY__ 0.004271177692999848 13 0.00212556188965788 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 23 0.08337502088483202 12 0.0690373824013409 24 0.06550529643566033 21 0.06449591750153262 13 0.04895178210628634 4 0.047659139662023065 6 0.047202528531823766 5 0.046837657962963686 20 0.04662084820903623 7 0.044474739883599165 8 0.04388556063985597 1 0.04346579081339187 2 0.042785676765937114 19 0.04269232368306416 3 0.04155590389948417 22 0.04040115401081297 11 0.02830168734295896 16 0.02788246734542917 18 0.02586041861242561 17 0.025594290434604844 14 0.024207110442226572 9 0.021762458158165722 0 0.014096877317548237 15 0.010791320530957564 __DUMMY__ 0.0025566464240385687 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.09778862385157756 12 0.09548091597480415 11 0.0850863824643733 13 0.07496758194038416 22 0.07298227590335164 19 0.06542138033406193 18 0.06510575204652229 10 0.055756368671138236 14 0.04837947984921242 0 0.04557602572847287 20 0.044241327260275104 17 0.040720372571707554 24 0.039843156980141854 23 0.03758215576155708 9 0.03339055164456304 16 0.030928871579864303 4 0.012931461477355305 5 0.012200285354747908 6 0.010690745175116752 __DUMMY__ 0.005805470853340455 7 0.005557173483040081 1 0.005334863684752688 8 0.0053127697110389085 2 0.004875849955754041 3 0.00401351229790081 15 2.6645444945605706E-5 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.09949692472917149 22 0.09365020839078449 11 0.08756291951878953 19 0.06036786416001184 12 0.06022878152362866 18 0.05372203799671115 24 0.05086486709132291 9 0.0479530302342433 10 0.04290737843465577 0 0.042739420979353994 17 0.04145182800452784 23 0.038034060570764944 14 0.03685136153761046 13 0.03289093511595891 20 0.02708482379682907 4 0.025774260958228334 5 0.025273949742069222 16 0.023274178584989463 6 0.020895151521910627 3 0.019116626536566688 7 0.018062037347755477 8 0.017654633575674452 1 0.01744525876146132 2 0.016585365597302906 __DUMMY__ 1.1209527315607292E-4 15 1.6521108244780006E-11 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.10180340952437135 18 0.08823695618234945 11 0.06738792605535031 14 0.06694369875960539 0 0.0655333178740557 22 0.06454884604762358 9 0.06309545787049818 17 0.05045906035765673 19 0.05007944105542916 13 0.04922264697299904 21 0.04900589296481469 15 0.04759006111329397 12 0.030921002151759223 16 0.025125183995881904 20 0.02467861058055906 4 0.019628561351173884 5 0.01931118662529041 6 0.018515454850144025 7 0.01694361137417449 8 0.016834943057510342 1 0.01682957134716208 2 0.016292279038674248 3 0.016246908372988852 23 0.010897164178072419 __DUMMY__ 0.0038688082985614066 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 20 0.10389291282686117 19 0.10376573603773634 21 0.08593845902948279 24 0.08535852214913778 18 0.07818844164023783 12 0.06585763753359658 22 0.06508500665433849 23 0.061814928006566586 16 0.05490030101448136 11 0.0511518086775772 14 0.04646336007129615 17 0.03774440248190784 10 0.036817993246558926 15 0.03529219894145063 13 0.03371101322927881 9 0.015186793764867272 4 0.008584962917549297 5 0.008062171058352339 0 0.006874521940755129 3 0.006444346534267133 __DUMMY__ 0.0036809988661311247 6 0.0014704162853223404 8 0.0012256676487042426 7 0.0010768428387363726 2 9.66702274754353E-4 1 4.438543300519741E-4 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.08705872873388326 17 0.07917578955684465 9 0.06543130004173639 22 0.062602752318457 11 0.059003402529579904 10 0.05633047175926683 18 0.054959475936277605 16 0.0535616923330318 6 0.04530203947537396 8 0.04271282492792351 7 0.042519022883359445 1 0.04238831538981835 2 0.04195770847380176 4 0.041596778470035206 5 0.04119949393126304 19 0.03745333138150982 3 0.037176816873958025 21 0.032744176970118735 12 0.023980329252143072 23 0.02115921456012422 13 0.011903462286054652 15 0.01147787823884914 14 0.003926087763577939 24 0.002923401874432976 __DUMMY__ 0.001433196034986064 20 2.2308003592503465E-5 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.09382549990444855 21 0.0775038665491843 9 0.06948252655909927 11 0.05707316175639687 24 0.051335425478141024 18 0.04945920333707315 19 0.04571647858738146 4 0.04464951526021247 5 0.04370262242438857 3 0.04239051729815685 0 0.040458989666086985 17 0.04035608004981834 8 0.03855634659364748 7 0.0381464178032226 6 0.038125209687864224 1 0.03794965019684068 2 0.03734751676632137 10 0.036465803867034394 23 0.03335233157059685 14 0.029051906166667776 12 0.018467239325592483 20 0.01700856238945126 15 0.009510404913708274 16 0.007082283893484741 __DUMMY__ 0.0029460189081766857 13 3.642104700320001E-5 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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.08670539427732454 17 0.0793330668434003 9 0.06563066969367307 22 0.06271540962367154 11 0.058856162562559 10 0.056229015359380075 18 0.055113526920837604 16 0.05319483011828543 6 0.04533310519807307 8 0.04273590953688149 7 0.04261392154550573 1 0.04248179804656343 2 0.041905270348411496 4 0.041640880674963736 5 0.041132669561146924 19 0.037556008618603275 3 0.03712218098849306 21 0.03285680905935559 12 0.023954557375427822 23 0.021251054101020347 13 0.011805853241600557 15 0.011427686641700274 14 0.0038426291490811903 24 0.002785465073201946 __DUMMY__ 0.001757952818262942 20 1.817262257548408E-5 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.07956517648866938 18 0.06971637224814276 21 0.06735856844751789 19 0.06285359395218293 11 0.062207469351603074 9 0.061045698534749664 0 0.05945922311460898 17 0.05943303938119188 10 0.05722205615417411 12 0.034907091962554204 16 0.03392545837612517 24 0.030991739137696043 4 0.030211683368534234 23 0.02993632101453293 5 0.029409264317127856 20 0.029364532116824545 6 0.02762301691196141 3 0.026196989166884323 8 0.02613652431441904 7 0.025947524692618282 1 0.025615948310527315 2 0.025209311682766217 __DUMMY__ 0.01846042093222339 14 0.015650036382433678 13 0.01140604868720248 15 1.4689095272827537E-4 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 22 0.09732556112268272 21 0.0886101383832578 24 0.06387344695337911 9 0.06372691246271464 11 0.05877466142524883 19 0.04869155704276819 18 0.046323544031161984 4 0.04177287451797037 5 0.040758075522142626 3 0.039776521828625365 14 0.03892089111310496 23 0.03788928685900044 8 0.034319509590512984 7 0.03382767789136721 1 0.03360382584410457 6 0.03358011327082869 2 0.033199087902141856 17 0.03183504247985614 10 0.03013109045056212 0 0.02899568359010118 12 0.024939545952459202 20 0.02417384954825344 15 0.013543899295106705 13 0.005641952104604109 __DUMMY__ 0.003553060639626147 16 0.002212190178418671 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 0 0.08589730798482294 17 0.08538011518410325 16 0.06641675784747693 22 0.058356603413272444 9 0.058352522239139885 11 0.057282797795199764 18 0.052448256132051195 10 0.04868510561654865 6 0.04338695349573045 19 0.04294168401259774 8 0.04006453328843236 1 0.039797372831186756 7 0.03977252661374985 2 0.039228566506449014 4 0.03847588818047406 5 0.03810573712123825 12 0.03359263376749548 21 0.033235094457667265 3 0.03303722668413541 23 0.02429590767869291 13 0.017102587203153267 15 0.011045233937912532 24 0.005329027360855127 20 0.005284013392795049 __DUMMY__ 0.001982659625285924 14 5.028876295334406E-4 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.07418603146526744 22 0.0599791494936241 0 0.058369950223872674 4 0.05818095606875053 6 0.05799414742779783 7 0.05786815925021368 8 0.057768774376880126 1 0.0575790110697399 5 0.057290615594206416 2 0.056474212975136294 3 0.056060377803905714 17 0.0535681934297111 18 0.04621157051946755 10 0.04457897028441902 11 0.03323591876927477 23 0.032871013843917773 21 0.03204446529470106 19 0.024978725060987146 16 0.02179833943632454 24 0.01984904217663875 15 0.01511602590926261 14 0.01094714367078289 12 0.006125258295071703 20 0.00505471825528063 __DUMMY__ 0.0018692293047656238 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 23 0.08337502088483201 12 0.0690373824013409 24 0.06550529643566033 21 0.06449591750153262 13 0.04895178210628634 4 0.04765913966202306 6 0.047202528531823766 5 0.04683765796296368 20 0.04662084820903623 7 0.04447473988359916 8 0.04388556063985597 1 0.04346579081339187 2 0.042785676765937114 19 0.04269232368306416 3 0.04155590389948417 22 0.04040115401081296 11 0.028301687342958955 16 0.02788246734542917 18 0.025860418612425606 17 0.025594290434604844 14 0.024207110442226572 9 0.021762458158165722 0 0.014096877317548237 15 0.010791320530957564 __DUMMY__ 0.0025566464240385682 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.10093111897582563 19 0.09408218053855466 22 0.08390495113188497 20 0.07924969267201265 18 0.07779205560068199 24 0.07438270539703074 11 0.07164040610101312 12 0.06699709723546339 23 0.0506741057060723 10 0.0439157107052272 16 0.04301379741474164 14 0.04228362956798217 17 0.042197322457958375 13 0.03173165240892816 9 0.028921233165245256 0 0.02176862798990826 15 0.016070264696023476 4 0.0096038930141282 5 0.00870748242001067 3 0.004861290286478054 6 0.0025622713310401 __DUMMY__ 0.0015609057449915672 7 0.0012993780158373686 8 9.965211948901875E-4 1 8.437328872130196E-4 2 7.973340856793037E-6 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 20 0.10073851831887395 19 0.10036196679204096 21 0.0897994841168025 24 0.0841488849272189 18 0.07833403184966493 12 0.07003506502003679 22 0.06676744602422373 23 0.05914617270604624 11 0.05455582964821645 16 0.05236693523926454 14 0.04652663849940091 17 0.03911351328377664 13 0.03779707781010786 10 0.03702328927073945 15 0.03195091062029345 9 0.016724327336755593 0 0.009377325917392303 4 0.008235899712307902 5 0.00777364217166016 3 0.005222896975017109 6 0.0015964278543587301 8 7.048406773996642E-4 7 6.65304707793921E-4 __DUMMY__ 4.36845800261653E-4 2 3.6759053982329446E-4 1 2.2913418052231566E-4 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 9 0.06599234814221958 22 0.05802740968832084 3 0.054047444249124735 4 0.05302946522227707 5 0.052275529410643104 8 0.052205561560816016 7 0.0520129498689501 1 0.051942698741328355 2 0.051370970842496116 6 0.05031012517989787 18 0.05003474052874753 10 0.04882116070260092 0 0.045996765296453565 17 0.04312382542659005 23 0.03589018220305601 19 0.03579143945364004 11 0.034199877989232345 21 0.03375936466863232 24 0.03278240995945853 15 0.029371888998381272 14 0.023708847308380514 20 0.022713907275150453 16 0.02033881015800378 12 0.0022450594551611668 13 7.2176704377287725E-6 __DUMMY__ 9.982674531840643E-20 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.10153122327162747 18 0.08842490190669432 11 0.0672433769668474 14 0.06673118288114416 0 0.06540121340906628 22 0.06449555753155298 9 0.06311683709550855 17 0.05041694009345722 19 0.05007976014833976 13 0.04919584316850843 21 0.04901674212377517 15 0.047475187665477085 12 0.030877605515917294 16 0.025184854370164572 20 0.024866237211993315 4 0.019661747013876543 5 0.019312782089843425 6 0.018570657923678256 7 0.01706518577311403 1 0.0168968999512992 8 0.016885040644474932 2 0.016271857092395692 3 0.016227124612531497 23 0.011182433240151024 __DUMMY__ 0.0038688082985614074 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.09422265146760729 10 0.08877159433267098 19 0.07735660305825083 11 0.07571482841872462 21 0.07545942292472298 22 0.07183704341553253 12 0.05977270062102854 14 0.05928981189055343 0 0.055636135129030706 13 0.055568495178461 17 0.05300284753963869 20 0.05067219394733556 9 0.04644427745080776 16 0.03983511139310531 15 0.030310199902718583 23 0.023330106085962216 24 0.022378502171890843 4 0.0056979327341241245 5 0.0053859635247216035 __DUMMY__ 0.003606014799532756 6 0.0032640316253922863 7 7.251669102600458E-4 3 5.880597003461318E-4 1 5.476917122439123E-4 8 5.292277126800282E-4 2 5.338635265728824E-5 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.08654942995073997 17 0.07911996707044315 9 0.06538668589564967 22 0.06272042827774481 11 0.05882720878905939 10 0.05626221568632629 18 0.05462517327447746 16 0.05315082038256602 6 0.04542884567577846 8 0.042766021461321094 7 0.042631293809605494 1 0.04246519788309031 2 0.04214346339173498 4 0.04171229998292945 5 0.04135117403849067 19 0.037462970493091184 3 0.03736462058526316 21 0.032712812292484184 12 0.024125577664232206 23 0.02111246203853553 13 0.011785392574994164 15 0.01158056256577823 14 0.003953425589006376 24 0.002985825185819266 __DUMMY__ 0.001757952818262942 20 1.817262257548408E-5 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 19 0.06952780808394692 17 0.06859345711841332 22 0.06652507655905557 18 0.06638938359243005 0 0.06083979814365535 16 0.05967799503633959 9 0.05495031016599532 10 0.053213979427431064 11 0.05002377551675896 21 0.04410724259546855 20 0.037244190442558604 23 0.033975575104200434 4 0.03212624325465978 5 0.031896013593512025 6 0.03099081684148031 24 0.030917391320514482 3 0.03089402176916972 8 0.030885813555102608 7 0.030792491383091636 1 0.03069141617851757 2 0.0303101360778831 15 0.022388997078472663 12 0.02011401150571108 14 0.012924055655631159 __DUMMY__ 2.1576157626222363E-18 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 9 0.06553863912153486 22 0.056951031842192266 3 0.054530778619252415 4 0.05337178221884694 5 0.052603140794250366 8 0.052543442226613744 7 0.05237029154330868 1 0.05234027538835698 2 0.05159575677761034 6 0.05048022206528269 18 0.049593852615951166 10 0.04843993451368836 0 0.044219677350654005 17 0.04165415757358662 23 0.0368604354136998 19 0.03560764142137329 24 0.03407869060894468 21 0.033171179428330456 11 0.032996772152907916 15 0.031026221328839112 14 0.02491726590196601 20 0.02400696565599664 16 0.01955565650219169 12 0.0014884236618133181 13 5.776527280749218E-5 __DUMMY__ 7.989446493232205E-19 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 9 0.0743666502506465 22 0.06265181470939725 0 0.05895515826988719 4 0.05631385201678049 6 0.05578237764654262 7 0.055752830355648354 5 0.055734718917678644 8 0.055733208883120174 1 0.055437810825349806 3 0.054620223934279455 2 0.0546170293461433 17 0.053195547634077446 18 0.04828851087758084 10 0.04680847927590208 11 0.03669398936486336 21 0.03488905020333706 23 0.03131160812875728 19 0.027651952582310665 16 0.021279104894906534 24 0.020677383519422998 15 0.01403352131483988 14 0.011612513639126161 12 0.007066576644231767 20 0.006395233315088363 __DUMMY__ 1.3085345008170807E-4 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.08439177538965255 9 0.07063902102156618 21 0.06338764276862349 11 0.054091592164691296 18 0.05134184215470195 0 0.050258042054135164 17 0.04773925833823303 4 0.04619424151106208 5 0.045152101659805474 3 0.044006495518027676 10 0.04269440234293018 19 0.042290200610086114 8 0.04209320867411268 6 0.04186978092200561 7 0.041720932408356115 1 0.04155837847661248 2 0.04086551188578993 24 0.03978916365505216 23 0.030473000471417225 14 0.022147651872262936 12 0.015525056911860506 16 0.014903372571884175 20 0.013926763130913311 15 0.009801356216701067 __DUMMY__ 0.00311296735869663 13 2.6239910819848543E-5 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 20 0.10033769672847923 19 0.10002118145082466 21 0.0899460671116424 24 0.08336874540484876 18 0.07916949824848493 12 0.06979847858129512 22 0.0666791102487229 23 0.05941252423191495 11 0.054212988383593445 16 0.05210590981713242 14 0.04626749723137074 17 0.03930482325186103 13 0.037964245539242394 10 0.037679577493672234 15 0.0314179912201651 9 0.01711649697320943 0 0.010004879729669678 4 0.008209988634790931 5 0.007598336600256131 3 0.004899921324478477 6 0.0017513511436878582 7 0.0010254067331140104 8 8.225021222980755E-4 1 4.8476095405717613E-4 __DUMMY__ 2.7688617432553367E-4 2 1.2313466686257317E-4 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.08720967698850052 17 0.07937716850986204 9 0.06570370929770476 22 0.06273015218656272 11 0.05933184526381167 10 0.05690428326114017 18 0.05491631881211316 16 0.05342497797921749 6 0.045277952441970325 8 0.042617827498880045 7 0.042446038818127724 1 0.04227144958251864 2 0.04189450945980381 4 0.04156101639403501 5 0.0410477860317467 19 0.03756917784003506 3 0.03707242343353577 21 0.032694705793162 12 0.02393064997130623 23 0.02072991018639228 13 0.01162480910793324 15 0.011316903308457292 14 0.0036005797726392755 24 0.0029700005626817545 __DUMMY__ 0.0017579548542400087 20 1.8172643622148373E-5 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.10147221098986371 19 0.0944035082972178 22 0.08390089332479884 20 0.07905351669284266 18 0.07750845409288241 24 0.07457280977663815 11 0.07171435904210384 12 0.06704587995455778 23 0.050890632150685094 10 0.04341763442372014 16 0.04309570557260841 17 0.042258892467201235 14 0.04210754573009686 13 0.031856317325853895 9 0.02906427584014279 0 0.021744708658920246 15 0.015996428747256108 4 0.009568369950800515 5 0.00855954888431113 3 0.004880636351841181 6 0.002445676558712273 __DUMMY__ 0.0013363053806775002 7 0.0011950917657585097 8 0.0010713523024716825 1 8.303717772556156E-4 2 8.87394078148615E-6 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.08454071782060249 17 0.07749606093828167 9 0.06759632326319785 22 0.06458401964484027 11 0.057270166031275334 10 0.05604153713800575 18 0.05547901048612258 16 0.04913331661957791 6 0.046160706527012346 8 0.043896797995237866 7 0.04373003151725876 1 0.04368025890158658 2 0.0431255853501229 4 0.04307161888687331 5 0.04269191072692693 3 0.039007781843790765 19 0.037203923706635514 21 0.03368769116144811 23 0.02128060936082152 12 0.020996867437032468 15 0.010240307986211597 13 0.008613904625733642 24 0.004392445052508492 14 0.003677948106997862 __DUMMY__ 0.002388561246710544 20 1.1897625186748792E-5 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.08011373459133239 9 0.07155317208867522 0 0.06284106828196895 17 0.058219755420341815 11 0.056496348215062185 21 0.05468149333815796 18 0.053253460413855994 10 0.04770842123376252 4 0.045536098093094945 5 0.044480265788760354 6 0.043409284967604295 8 0.04277993251930712 3 0.04245531084798318 7 0.04238961021149007 1 0.042255992030163905 2 0.04158054096119997 19 0.04084181095693831 24 0.028097611143555315 23 0.026621266383527013 16 0.02503692489353443 12 0.015954285607737158 14 0.014833329764722463 15 0.008119370742557754 20 0.00776967448590049 __DUMMY__ 0.002130263643771141 13 8.409733749953911E-4 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 22 0.09737454235266477 21 0.09655168933872857 11 0.08570327363721424 19 0.06142644988382438 18 0.057361761194498366 9 0.053764752303676576 24 0.050216731981209135 12 0.04957791841812877 10 0.047374977310817044 0 0.04366297227198777 17 0.0424425073212893 23 0.036111093968690805 14 0.03364879705355058 4 0.027451022530077217 5 0.026970779090855355 20 0.026821791080842258 3 0.02188679261085666 16 0.021859501105950956 6 0.021827599120604665 13 0.021230657432155634 7 0.019914185480768277 8 0.01938972170548797 1 0.01914305424096003 2 0.01827393600142071 __DUMMY__ 1.3492561751287963E-5 15 1.9885947633316098E-12 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 22 0.09750150437793526 21 0.09670267479191161 11 0.08531869646590688 19 0.061659995906380695 18 0.0576438975781423 9 0.053856384338991 24 0.05012711620362086 12 0.04926896747076455 10 0.04719493124989362 0 0.043254523082507206 17 0.04229775332629105 23 0.036658658738379604 14 0.03353863883070967 4 0.027542718828748546 20 0.027127416558009907 5 0.027014660818156056 3 0.021926574420314444 6 0.021866274244434967 16 0.021634869755576255 13 0.020895822066276083 7 0.020024533408825648 8 0.01945718633345811 1 0.01920649596092989 2 0.01826623280652928 __DUMMY__ 1.3472435320998411E-5 15 1.985628439025137E-12 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 9 0.06241605517151741 4 0.058116230643874535 3 0.05787865264636352 5 0.05779372647533242 8 0.057270448673543264 7 0.057175137345504355 1 0.05683161155653595 6 0.056787243081225826 2 0.05676756307323847 22 0.05558572103114331 17 0.04582197302007051 0 0.0454467327656515 23 0.04334116586896912 24 0.038149726234653805 18 0.03789170635818081 21 0.036850387262077726 19 0.032501741057530384 10 0.030764942582341786 11 0.029139352070113856 16 0.025755091724712714 20 0.020406483623596042 15 0.01485617174779672 12 0.013166880336341587 14 0.0092852556496843 __DUMMY__ 0.0 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.09428059545639851 10 0.08888744383114243 19 0.07715665862792187 11 0.07581793320152738 21 0.07533746001559367 22 0.07173747005208599 12 0.059773109747085496 14 0.059223434048635885 0 0.055691361866144935 13 0.05563646156455706 17 0.05304803594039896 20 0.05055022146907767 9 0.046583659705172774 16 0.039937044172234724 15 0.0304368362534164 23 0.022900826646965675 24 0.022369631643638657 4 0.005723028233243548 5 0.005427273035343273 __DUMMY__ 0.003606016191637511 6 0.0032864238295793042 7 7.456278805142438E-4 1 6.18725263600427E-4 3 5.884459781274596E-4 8 5.82888972689007E-4 2 5.338637326713027E-5 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.08795370545389951 9 0.07054741491496838 11 0.07003969200526168 21 0.06595292522398048 0 0.0631060477475516 18 0.05808619798235112 17 0.057176995203636345 10 0.05507949108333836 19 0.047677872082057184 4 0.039412415866975234 5 0.03876780257265214 6 0.03658613235049841 3 0.035586179366121615 8 0.03539800133319049 7 0.03524841513907949 1 0.034911201894465047 2 0.034183910115729285 24 0.02749162368464659 16 0.02518025953645414 12 0.02481401337382018 23 0.024290712868719273 14 0.016447480163659624 20 0.00966179215543976 13 0.0040827182289343645 __DUMMY__ 0.002294893406665346 15 2.2106245904275324E-5 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.08744065619690276 0 0.08419860162859827 16 0.0706815707959275 22 0.05887128705929269 9 0.05790473257681684 11 0.05408805808882862 18 0.05370305586741582 10 0.046724052959182916 19 0.046485016930435365 6 0.0423458113154888 8 0.03933840366920619 7 0.039027999887532874 1 0.03891694428149431 2 0.03850561139656162 4 0.03770023530665911 5 0.03725887186202122 3 0.03271717734613918 21 0.03218616928699466 12 0.029846460403072934 23 0.024523928032592828 15 0.01490148537907588 13 0.012031942555325387 20 0.0097955532130907 24 0.008817313757969146 __DUMMY__ 0.0019114541508846864 14 7.760605248989052E-5 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.10725714921153072 22 0.09101409356614844 11 0.08644275561053925 19 0.08382581058047801 12 0.07370409517129992 18 0.07237785131460708 24 0.054266150113267256 10 0.053872254317253336 20 0.05284486776488231 17 0.04609083818673585 0 0.04145704220253222 13 0.04123765609179896 9 0.04058185796362677 14 0.040377879649028676 23 0.03773503433833451 16 0.036707281302752255 4 0.010566627836111434 5 0.010135955237360111 6 0.005227808353698995 3 0.004288162569904786 7 0.0026501166954316785 8 0.0020998530354206344 1 0.002026753404307745 __DUMMY__ 0.00179494976497333 2 0.0012808918313411653 15 1.3626388663439022E-4 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 9 0.06348562315923842 4 0.05723144539112708 5 0.05695150473022043 3 0.05687634137966763 22 0.056841926797640586 8 0.05638068271672398 7 0.05627090087858039 6 0.055996607727578696 1 0.05593518510253413 2 0.05589445475331989 0 0.047441664968849176 17 0.047265216617126474 23 0.041528598415860395 18 0.03949001207758153 21 0.03702214262688946 24 0.03623333786527133 10 0.03296080487743563 19 0.03287783736487713 11 0.03100708216466077 16 0.02607882844813799 20 0.019183263371692457 15 0.014591302937210471 12 0.012977612628412816 14 0.00947762299936335 __DUMMY__ 0.0 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 20 0.10337394754829624 19 0.09826457775330107 21 0.08329357772948326 12 0.07878211300238339 18 0.07864261822619258 24 0.07636991167217418 23 0.058796789679598685 16 0.056323882642967525 22 0.05361615365686742 13 0.05194793564229227 14 0.04875041793661742 11 0.047516500302796826 10 0.04092280459940047 17 0.03956396253072324 15 0.03309632122040859 0 0.013699586854779571 9 0.012938557725098733 4 0.006577821991438187 5 0.006154615755297585 __DUMMY__ 0.0043228292345282035 3 0.003358621850149893 6 0.0019287718867303703 7 7.259764414597953E-4 8 5.920847773743064E-4 2 2.3402613547078886E-4 1 2.0559320416941524E-4 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.10338617874015273 22 0.09256487238871136 11 0.08740921581049896 19 0.07688345701332054 18 0.06756609605356399 12 0.06728436502017276 10 0.052761277623599084 24 0.05138750904447875 17 0.045823327373173184 9 0.044428892236355225 20 0.043985845534050834 0 0.04354396688000098 14 0.03866284246023828 13 0.03636441822617853 23 0.0353515761613358 16 0.03338375681836081 4 0.014682452573202769 5 0.014240566505159542 6 0.00940749325981128 3 0.00869240261130383 7 0.006931304936029135 __DUMMY__ 0.006770538881737714 8 0.006453740213330511 1 0.006333244707032231 2 0.005700658011139992 15 9.170610381399395E-10 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.08604606955498795 9 0.07255422115102737 11 0.06727084846258044 0 0.06521427220355427 21 0.06192881565176906 17 0.05851474615868055 18 0.058288410198762755 10 0.05528712740765308 19 0.04586242104360936 4 0.04140122601914553 5 0.04057154172325894 6 0.038879078313952355 8 0.03770861102508501 7 0.037690913991959896 3 0.037616973169250785 1 0.03739461178151215 2 0.036456799846365504 24 0.025489370962783073 16 0.02528053409191748 23 0.023757735559784023 12 0.021172496209223506 14 0.01413253097928994 20 0.00808942257854509 __DUMMY__ 0.001673819367543503 13 0.0016561135667917599 15 6.128898096645656E-5 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.09779552487343177 12 0.09575005717970411 11 0.08516934969784802 13 0.07493160869822343 22 0.07279074954854789 19 0.06539420277050499 18 0.06483963383356227 10 0.05579057970208483 14 0.04849061111252338 0 0.04544484541407056 20 0.044284556421237034 17 0.04065214730809675 24 0.03994530136922765 23 0.03750969595119711 9 0.033366895879210295 16 0.031023211041898723 4 0.013052920642288 5 0.01234889985848942 6 0.010789104627597424 7 0.005577021449201423 8 0.005405563179021812 1 0.00533092716761686 __DUMMY__ 0.005197061480832637 2 0.0049797719438000945 3 0.0041173729128491775 15 2.2385936934330813E-5 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 20 0.1142601886108316 19 0.10165241657960818 24 0.08300641423555512 18 0.0799526507403819 21 0.07949235453842313 12 0.07680167067232176 23 0.0658162739115615 16 0.05905318684430639 13 0.05115476417977711 14 0.049283868354614326 22 0.045774515306938955 15 0.04025216580784904 11 0.038347087265083395 17 0.037593472306989326 10 0.036113243309453036 __DUMMY__ 0.009918529071027101 9 0.007317713420281853 4 0.0062309453211878 0 0.005376382841322375 5 0.005300169974407823 3 0.0034802376607961888 6 0.0012952074876180447 7 9.044073263884281E-4 1 8.762002501169192E-4 8 7.4593398315881E-4 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.10330531542635 22 0.09257838801650578 11 0.0873703106933975 19 0.07709484873434716 18 0.0678065655934951 12 0.06715621061738658 10 0.05301060718626922 24 0.051282100419402794 17 0.0459258365448998 9 0.04447974486536715 20 0.044174578101454656 0 0.043617505943613265 14 0.03861960337277757 13 0.03619628115039013 23 0.03516875835189649 16 0.03353945372194594 4 0.014524160181961059 5 0.014085563460909986 6 0.009234675883134058 3 0.00857827244239786 __DUMMY__ 0.007409963806841935 7 0.006783967850591938 8 0.006302717204802567 1 0.006188908722379434 2 0.0055656608223476 15 8.851344501065499E-10 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.08635064951815924 17 0.07902160274591778 9 0.0654247802621066 22 0.06252150245292246 11 0.05875337156296326 10 0.055979735070651425 18 0.05485703983215338 16 0.053070361376156394 6 0.045364894104667826 8 0.04279326207106452 7 0.04259235522617233 1 0.04253798066028547 2 0.042176825475405764 4 0.041699844421572235 5 0.04139727439318514 19 0.037516322514432196 3 0.037428057646589186 21 0.03288903731603163 12 0.02412305628531009 23 0.021198179106058018 13 0.012004285223766335 15 0.011621087912652992 14 0.004052575308485862 24 0.0031550260651491816 __DUMMY__ 0.0014585103865865031 20 1.2383061554450567E-5 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 9 0.06339457476392747 4 0.05725606127261352 5 0.05689456832772754 3 0.05684956798965604 22 0.05683914175063974 8 0.05643423483021156 7 0.05631333204980192 6 0.05601568058387038 1 0.055978909439251594 2 0.055862964287770475 0 0.04745995080402609 17 0.04724114311069376 23 0.04150085301218955 18 0.039481401168109595 21 0.03711016594570778 24 0.0362994611645759 10 0.032919966022519336 19 0.03290315300712503 11 0.030983623875035737 16 0.026104998689413194 20 0.019234697579688133 15 0.014498815604057741 12 0.01298577225490299 14 0.009436962466485153 __DUMMY__ 0.0 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.10289236075597319 22 0.09258698835310661 11 0.08743179395243104 19 0.07681698147441018 18 0.06750436637840453 12 0.0674106958456306 10 0.05276166584014544 24 0.0516647361154737 17 0.04594712252583599 9 0.04432344582170968 20 0.04385420713118349 0 0.043578179281763094 14 0.03876055662771745 13 0.036128378137359474 23 0.0348746284032241 16 0.03361786087010872 4 0.014719132637169084 5 0.014238069824508563 6 0.009292980243120415 3 0.008855080772574278 __DUMMY__ 0.007409972388708422 7 0.006777412844532416 8 0.0063814788594372535 1 0.006332526772959348 2 0.005839377257377532 15 8.851354752270326E-10 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 0 0.08725546967034395 17 0.08599834930433291 16 0.06736458132928912 9 0.058255125955523054 11 0.058189430262684236 22 0.0580410812838944 18 0.052688526544203716 10 0.04951089190940216 6 0.043105208633206805 19 0.04281334178033937 8 0.03965277461879436 1 0.039306071108137955 7 0.0393002303811402 2 0.03882352702974217 4 0.03804335231693211 5 0.037589129400937664 12 0.03399804641150928 21 0.032750913312252855 3 0.03241504175824412 23 0.023726209559567724 13 0.017902755676280392 15 0.011516688995459401 20 0.004660431586957346 24 0.004201864534610452 __DUMMY__ 0.00232698524009262 14 5.639713961216699E-4 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 20 0.10348282601652849 19 0.0984363643028155 21 0.08352814882365175 18 0.07945477044359037 12 0.07805150972758755 24 0.0760686123228992 23 0.059311510431991246 16 0.05612431178795028 22 0.053693503910553046 13 0.05153688700852834 14 0.04838873672557816 11 0.04716041496052232 10 0.04058987389606903 17 0.0398486422188458 15 0.0328501303715934 0 0.013804707633109037 9 0.013282292140847965 4 0.006504577889793458 5 0.006067137074505512 __DUMMY__ 0.004186476165759082 3 0.003220974712582678 6 0.0019210042067233102 7 9.916377805553674E-4 8 6.973899064737694E-4 1 6.964777529487028E-4 2 1.0108178799677747E-4 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 9 0.07444947027282277 22 0.06248068925112334 0 0.058756827331582155 4 0.05636269107724464 5 0.056011949643334995 6 0.05583477836966494 8 0.05576383941033357 7 0.05573698686963888 1 0.055544660418605625 2 0.05479435209613014 3 0.05479216662648531 17 0.05310272043482703 18 0.04788137573944768 10 0.046618327761433924 11 0.036522043001368305 21 0.03475280025052813 23 0.031078018706297103 19 0.027511127761427372 16 0.02130727985128751 24 0.020701633361343803 15 0.014494109303090528 14 0.011717196520538374 12 0.0073164932196513426 20 0.0062004750217955025 __DUMMY__ 2.679876999970949E-4 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.09772739278615908 12 0.09572118698971449 11 0.08514056096148456 13 0.07491442270061244 22 0.07274689763893981 19 0.06536975055605838 18 0.06476458371079966 10 0.05574603139976063 14 0.048471434637935455 0 0.045419745549134964 20 0.04422942800429379 17 0.04063357403113326 24 0.03992390311499659 23 0.03747720798919848 9 0.03333848635369596 16 0.03101153420305458 4 0.013053087435693915 5 0.012347775584951152 6 0.01078418596782281 __DUMMY__ 0.005805479818166205 7 0.005557182064444276 8 0.005397709082329364 1 0.005308620471155958 2 0.004972756225925112 3 0.004110417236447447 15 2.6645486091582838E-5 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.07426666179583767 22 0.05970211052009608 4 0.05952203449159272 7 0.05897721560825819 8 0.058921151592028355 6 0.05890210016981129 1 0.05852575709035746 5 0.05849928729752239 3 0.05774296323962873 2 0.057665944740866976 0 0.05573492984594618 17 0.04978404155867341 18 0.04526185484389251 10 0.04487246526114027 23 0.03393062007180571 21 0.03236946568353094 11 0.03170990749692159 19 0.02317794138004417 24 0.02158808622705644 16 0.017415144141174198 15 0.01502672215013277 14 0.01237466251497475 20 0.005720114837025507 12 0.005105854551073034 __DUMMY__ 0.003202962890608539 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.10071836732197408 20 0.10023395954858753 21 0.09060656052467839 24 0.08412018236716373 18 0.07857276943364462 12 0.07052566882031722 22 0.06694074507509974 23 0.05886111290023004 11 0.0542400939733652 16 0.052346489168333094 14 0.04632842919422249 17 0.03917142991590362 13 0.03779670970051399 10 0.036606137261646646 15 0.031973840867808655 9 0.017313690867285746 0 0.009112373951020651 4 0.008146167453286154 5 0.00795922814241425 3 0.004989584840216621 6 0.0015385156813865653 7 6.75042501871224E-4 8 5.694612624792668E-4 __DUMMY__ 2.768860859731466E-4 1 2.5341851300633597E-4 2 1.2313462757118648E-4 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 10 0.0882224519733085 18 0.08339251176014785 22 0.07627748447571381 0 0.07593385489604253 9 0.07491488454659652 11 0.06492390481873038 17 0.06437863643050604 19 0.050045316962695985 21 0.0461873914983155 14 0.03377877988062424 4 0.030579505976755635 5 0.03019698846528562 6 0.02969487594615569 16 0.02917439212292806 8 0.028018391618368707 7 0.027847631362798147 1 0.027516036639040262 2 0.027411521456235727 3 0.026938847019013404 15 0.02241476107952332 12 0.017670972110894283 13 0.017287357614725423 20 0.012029658960120423 23 0.010759290190486208 __DUMMY__ 0.003260655904486087 24 0.0011438962905016103 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.08176333743703487 22 0.06890466920655992 12 0.06156077879375465 11 0.060693738181419245 18 0.05487950676216186 9 0.050876376076861664 10 0.050778202865532446 13 0.049786417760798105 23 0.044389556154423034 14 0.04343968878627009 19 0.041894322484041194 24 0.041719939705538986 4 0.0365238482666798 5 0.03573220912636942 0 0.03376805359380985 6 0.03218255905727133 20 0.030489269988712705 3 0.030367822100229827 7 0.029558047925095973 1 0.02941246368481803 8 0.029357615808923977 2 0.02853927850314419 17 0.025144983737229253 15 0.0047126536576792295 __DUMMY__ 0.0035158685026477426 16 8.79183299245722E-6 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.09108622774556455 17 0.08008113521278887 19 0.07477880941822643 0 0.06134736874744424 18 0.0536793853657051 20 0.0493242570189459 22 0.048319183344498355 11 0.04415484802062323 23 0.04325419717356665 24 0.037983139066884844 9 0.03610209464421231 21 0.03456580448044279 12 0.03316151340366823 10 0.03309957520897037 6 0.03190503116629492 8 0.031223189117685644 7 0.031189920117042996 1 0.030911692880440347 2 0.03045558010531671 4 0.02961502255659898 5 0.029090342177768777 3 0.027997989855201518 15 0.026653555581262162 13 0.005498486687222538 __DUMMY__ 0.004521650903623184 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.08308605084717754 18 0.07592783315442998 19 0.0741031248643602 21 0.06925748864145458 17 0.06480404671779945 11 0.06422133296957785 0 0.06044477305755553 9 0.058527483949300595 10 0.05811216566869579 16 0.0434379295712009 12 0.0355394647295484 20 0.03534969724320077 24 0.03303734303930221 23 0.0305931635540063 4 0.026042652097057462 5 0.025653731860574982 6 0.022890406503210406 3 0.021685872183523594 8 0.02099950210955224 7 0.02059782847137481 2 0.02043297874054895 1 0.02040630445876883 __DUMMY__ 0.014161007639076588 14 0.013565662017169588 13 0.006601819611073595 15 5.203363004588498E-4 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.0870295990247132 17 0.07930728993238764 9 0.06568605016423927 22 0.06261756292192057 11 0.05916339042843061 10 0.05660099904438106 18 0.05455121799274508 16 0.05327238578207766 6 0.04540816841571084 8 0.04272432756322469 7 0.04247872378677683 1 0.04226782897247906 2 0.042045478351426996 4 0.041726590706265984 5 0.041161713267355717 19 0.03760867881197907 3 0.03724758826521948 21 0.03263383925983215 12 0.024045887798376953 23 0.020749926460417404 13 0.011825491294403469 15 0.011539540742733558 14 0.003835915093628584 24 0.003004753384804299 __DUMMY__ 0.0014344427134724222 20 3.2609820997576434E-5 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 1 0.07330294287971911 8 0.07319709439621683 7 0.07312488180447545 2 0.07246754263950365 6 0.07227861075371021 4 0.07202751014778809 3 0.07197261288640643 5 0.07171447504218025 9 0.05917106704656596 23 0.05374760898969665 17 0.03996555794600399 22 0.039734900044900746 24 0.03844785098237707 0 0.03793525631528017 18 0.02378990470370635 21 0.021342311024993992 16 0.019800495993906004 15 0.0169027967377361 10 0.01651714421580421 19 0.014457285500768682 20 0.014441329805058906 11 0.012329450102965907 12 0.008389312006841605 14 0.0029420580333934243 __DUMMY__ 0.0 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 10 0.08811284840174868 18 0.08312385567429156 22 0.07635875052193189 0 0.07593178033155318 9 0.07493736611454697 11 0.06500219863417729 17 0.06432652451639392 19 0.050080829773939434 21 0.04604208610680701 14 0.033852620601406105 4 0.030624141423667456 5 0.03026655186470916 6 0.02976109102057661 16 0.029332319409098324 8 0.028062283904423606 7 0.02782920418690196 1 0.027422454099067278 2 0.027370212945180855 3 0.026898840882860257 15 0.02252618377209088 12 0.017759887127873304 13 0.017336834746363612 20 0.012025189801980474 23 0.010611393582166243 __DUMMY__ 0.003260654691336661 24 0.0011438958649071386 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.10264270334594983 20 0.09549711656906591 18 0.08258454258498073 21 0.07688797975204598 12 0.06849313184760113 24 0.06755430465219789 16 0.06431199777788271 22 0.05725077767225547 23 0.05357090180130188 11 0.05008227837351648 17 0.048820668592234766 10 0.046712740675194805 14 0.04385203715746175 13 0.04166714325979155 15 0.034891610420285074 0 0.023118946836198827 9 0.01803424034033107 5 0.0066199522458462124 4 0.00646152438911319 __DUMMY__ 0.003999433489107713 3 0.0033460468754702415 6 0.001992668948566363 2 5.511292176229299E-4 8 5.072950159312327E-4 7 2.748300040619629E-4 1 2.7399815598450663E-4 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 9 0.06366997808410908 4 0.057275048956392904 5 0.05692339092213032 3 0.056841157925916014 22 0.05665089099572589 8 0.05642863463132757 7 0.056375172066267513 1 0.05610573083666807 6 0.05602869655913685 2 0.05585595888285577 0 0.0473640758578142 17 0.04724783347972182 23 0.04164769065070865 18 0.0394508561691815 21 0.03707294633836701 24 0.03627945258827099 19 0.03287506445697801 10 0.032840594782229685 11 0.03095131963453798 16 0.02601052124761688 20 0.019211170495934144 15 0.01454799588477764 12 0.012932737863410721 14 0.009413080689920755 __DUMMY__ 0.0 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.11111802031254593 13 0.10133228249295971 21 0.08576514061624986 19 0.06805244720733353 18 0.06536647453727813 20 0.06333794740876708 11 0.062314864323212364 14 0.061902702545344315 23 0.049098034408270014 10 0.048581521626127576 22 0.047099108571879364 24 0.04309404099923466 16 0.0417955835928307 17 0.03806955541667362 0 0.032419204354897986 15 0.020666608929314097 9 0.016599779049306516 6 0.009931702595646715 4 0.009849892214526933 5 0.009691674532083387 1 0.0035469573839231423 7 0.0034671335185251445 8 0.003459803761033416 2 0.0034395196020356854 __DUMMY__ 0.0 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.09107413100797697 17 0.08010102236842176 19 0.07475984726552165 0 0.06137070710015551 18 0.053734361485374436 20 0.049238952899346405 22 0.048328089735049186 11 0.04413521926396853 23 0.043530264088587005 24 0.03806116268784593 9 0.036145392581621805 21 0.03464245512555333 12 0.033215472138348544 10 0.03300912477463984 6 0.03181423772195183 8 0.03118637768084323 7 0.031127665175319737 1 0.030919923578564365 2 0.03043802375787767 4 0.0295438290800132 5 0.029013647758687054 3 0.027981810523580942 15 0.02662809372484181 13 0.0054785406816576475 __DUMMY__ 0.004521647794251556 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.1011850330805909 20 0.09735746256780638 21 0.08637025021367524 18 0.08350399319158813 12 0.07391174548466586 24 0.07364086258264806 22 0.061914893470769485 23 0.056288755667278416 16 0.05379434201070189 11 0.04982814383978138 17 0.04424553586605472 10 0.04244556791291707 13 0.042321605910018205 14 0.04181011385305851 15 0.025192665417915237 9 0.019370240870194254 0 0.01798117992262736 5 0.008045947205590567 4 0.00797180375450765 __DUMMY__ 0.004364649488293324 3 0.00392358243557322 6 0.002590832835978253 8 7.276995033978595E-4 2 5.960658648511865E-4 7 3.9763147387413304E-4 1 2.1939557564291877E-4 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.09112645140505847 17 0.08005644301256253 19 0.07482238321660796 0 0.061445227951588854 18 0.05374107177663788 20 0.049205380989890725 22 0.04836761769347474 11 0.04418835197283665 23 0.04353885622662328 24 0.03803818666612881 9 0.03605332871589646 21 0.03464521542927929 12 0.033218934162871465 10 0.03310965456474912 6 0.031795026086979525 8 0.031148827428285942 7 0.031084920841802307 1 0.030859093682770577 2 0.030472320899270083 4 0.02951639525753586 5 0.02903745881656936 3 0.028008638320128364 15 0.026636263252977712 13 0.005474948673052721 __DUMMY__ 0.004409002956421508 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 20 0.10281325396922278 19 0.10129810424236699 21 0.0807734013628885 18 0.07949543137024259 24 0.07556790618761472 12 0.07554852239738671 16 0.06044855077486396 23 0.05854359459454391 22 0.05359820452248668 13 0.04817316553937793 14 0.046835260077561364 11 0.046686709446813975 17 0.04255953376701281 10 0.04045971814858037 15 0.03503777839360278 0 0.014885744821503538 9 0.012938214781152762 5 0.006743258010761136 4 0.006673316686940223 __DUMMY__ 0.003781761654892651 3 0.003563075858417999 6 0.001925383691240282 8 5.063791309584694E-4 2 4.4900436107262533E-4 7 3.89052690334467E-4 1 3.056735181598177E-4 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.07426666179583767 22 0.05970211052009608 4 0.05952203449159272 7 0.05897721560825819 8 0.058921151592028355 6 0.05890210016981129 1 0.05852575709035746 5 0.05849928729752239 3 0.05774296323962873 2 0.057665944740866976 0 0.05573492984594618 17 0.04978404155867341 18 0.04526185484389251 10 0.04487246526114027 23 0.03393062007180571 21 0.03236946568353094 11 0.03170990749692159 19 0.02317794138004417 24 0.02158808622705644 16 0.017415144141174198 15 0.01502672215013277 14 0.01237466251497475 20 0.005720114837025507 12 0.005105854551073034 __DUMMY__ 0.003202962890608539 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.07499828532826118 4 0.05979772069159541 22 0.05944311655593573 7 0.059334744148817245 8 0.05922038642447488 6 0.05916736252063005 1 0.059031528774351055 5 0.058693129946648576 3 0.05776231036108014 2 0.057683747599810556 0 0.05549253300141823 17 0.05011338129565717 18 0.04502678487753565 10 0.04385834455958088 23 0.03403140551816215 21 0.03259841877698153 11 0.03149026909750291 19 0.023274471965876273 24 0.02149313440818408 16 0.017332156673940335 15 0.014767307641276674 14 0.012034561349528834 20 0.005188141305657895 12 0.004963791813471676 __DUMMY__ 0.003202965363621059 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.07475658869239205 4 0.0597478970777784 22 0.05943421444382207 7 0.05936135873478944 8 0.05925124761132033 6 0.05912719041544816 1 0.05904077119986682 5 0.058609720356067874 3 0.05779201395898254 2 0.05771460937987636 0 0.05542263641782887 17 0.050012216689169366 18 0.04517925748642005 10 0.04385832762804014 23 0.034266883253270077 21 0.03267098370728487 11 0.031450493727691264 19 0.023334300825518836 24 0.021385804040777733 16 0.017308214844943968 15 0.014817874570441678 14 0.012018342577900345 20 0.005262261020161203 12 0.00497382721309316 __DUMMY__ 0.0032029641271143212 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 0 0.088553629773795 17 0.08736838053712148 16 0.06955430063638283 11 0.05967316763042036 22 0.05729579767166222 9 0.05711941831324411 18 0.05371214899263777 10 0.051153949350004384 19 0.043756997358750646 6 0.041752138323358855 8 0.03800239895527218 7 0.03773769889378775 1 0.037734634704782784 2 0.03720083089987243 4 0.036405691199689 12 0.03609849126143011 5 0.03590405006966244 21 0.032751453567051454 3 0.03042321069457242 23 0.023058442679157857 13 0.020375001557465435 15 0.012532813177762942 20 0.005013075444837041 24 0.0026873966228669805 __DUMMY__ 0.0024094904903728407 14 0.001725391194038449 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.08768448557317106 17 0.07932116052760486 9 0.06547668617324555 22 0.06260543362206754 11 0.05923067709853023 10 0.05670428707650263 18 0.0548371572362981 16 0.053623001318119284 6 0.045269827899549746 8 0.04260893188217953 7 0.04241706863595363 1 0.042210051216387386 2 0.04183426939102472 4 0.041516218478457045 5 0.04100530461797002 19 0.03747651118969544 3 0.03702685514955907 21 0.0326630370212162 12 0.023895510127226956 23 0.020989714245068694 13 0.011961054702696313 15 0.01131921524322824 14 0.003691686326923202 24 0.0028557284351373867 __DUMMY__ 0.0017579541755804624 20 1.8172636606588193E-5 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.0908561739997461 19 0.08689559377753177 20 0.07445128351812405 21 0.07278347971686686 10 0.07180605786784586 12 0.06413335638061153 22 0.06122711421995941 11 0.060596179917669545 14 0.05871111083989254 13 0.054003247891366346 17 0.048510345824615754 16 0.048237703008593175 24 0.04331717925433144 15 0.03935848067289525 0 0.0375262610805221 23 0.035764883382408415 9 0.03189391851825493 5 0.006542757654582094 4 0.006373993730644298 6 0.0028816026095780586 3 0.0022466382733498983 2 7.075313736586992E-4 8 5.004869717847714E-4 __DUMMY__ 2.763592892930713E-4 1 2.0451513715114613E-4 7 1.93745088723039E-4 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.09292954950405984 19 0.08396926298767152 10 0.07874616213119492 21 0.07064985630961756 20 0.06879998736767366 11 0.06338582294886418 22 0.06269619778024464 12 0.06091336093912813 14 0.060733685986634235 13 0.05461541219563043 17 0.04997191966153753 16 0.046118405495828706 0 0.042619718495763646 15 0.040414867310251096 24 0.03634172861573319 9 0.03607069205951211 23 0.031134250996011522 5 0.006043544037600627 4 0.0060083169114951525 6 0.0028785522837268874 3 0.0020856314766004814 __DUMMY__ 0.0010247931425146936 2 8.548444820833323E-4 8 5.938360247273192E-4 7 2.165288480952774E-4 1 1.8307200779933775E-4 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 19 0.06956376783421986 17 0.06865030066762337 22 0.06642069201142396 18 0.06639471125990612 0 0.06108905156980585 16 0.05976240092185801 9 0.054835616241350194 10 0.053387488142017436 11 0.050282490477380995 21 0.04412063312380801 20 0.03736311257557902 23 0.034020982612973844 4 0.03213377950119725 5 0.03178938209970513 6 0.0309827588306107 24 0.030913231675020806 8 0.03087580628262122 3 0.0308213615433856 7 0.030716768067267645 1 0.030586733216985938 2 0.030234690951018668 15 0.022218871959418275 12 0.020011271856596066 14 0.012824096578226092 __DUMMY__ 2.1576169642312098E-18 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.09332182811365712 10 0.08896050574474211 19 0.07729068517932576 11 0.07593054963932026 21 0.07507206292578684 22 0.07214393243896632 12 0.06015408667381017 14 0.059853986430711534 13 0.05574243285312048 0 0.05568502872576942 17 0.05297515594300611 20 0.0503572764842217 9 0.04606820023604654 16 0.039635669099674246 15 0.030487984783410596 24 0.022708717565325363 23 0.021354486993946684 4 0.006022145860340191 5 0.005986350807551815 __DUMMY__ 0.004210466284354936 6 0.0034190889413541854 3 0.0010544522493327849 2 5.175453415663685E-4 8 4.713010297925353E-4 7 3.431610121961677E-4 1 2.3289864266959622E-4 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 9 0.06352481997219922 4 0.057153051765205354 5 0.056859357836593155 22 0.05685499240196084 3 0.056836800735014105 8 0.05636521029055519 7 0.05623583004593117 1 0.055926245478525496 6 0.055898271863483916 2 0.055855945603744295 0 0.04740762563127788 17 0.047259027646658944 23 0.041497309731830224 18 0.0395852534564425 21 0.03705343131091958 24 0.03617282348736685 10 0.033005502997478675 19 0.03290224941505448 11 0.03115802427772927 16 0.02609877068631104 20 0.019216271214185784 15 0.014618121809236304 12 0.012957326558547108 14 0.009557735783748229 __DUMMY__ 0.0 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 16 0.08997677780599793 17 0.08098243602641926 19 0.07236113282712159 0 0.06413230351045765 18 0.053628298224821486 22 0.04875345251658986 11 0.04578815312085195 20 0.04552719130214758 23 0.04173840002561413 9 0.037501395562578144 24 0.034825731624412506 10 0.034794181036658434 21 0.03407183938759784 12 0.03350230077224909 6 0.0325000203025665 8 0.031543318928559154 7 0.031469346728035294 1 0.03123902511140431 2 0.030900358539570703 4 0.02990790746511297 5 0.029432006691740606 3 0.028020935699106228 15 0.02576178198507919 13 0.006747249850345736 __DUMMY__ 0.004894454954962077 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.07472912400163882 22 0.05996876619473646 4 0.05953160818846824 7 0.05905374467962501 8 0.05904716013292476 6 0.05892785669533714 5 0.05889665150876851 1 0.05879826840547852 3 0.057964500851262535 2 0.057914334868233275 0 0.05544004515427795 17 0.0500862570400758 18 0.04508742894283127 10 0.044075652490305435 23 0.03372147908544137 21 0.032581272932432646 11 0.031443787411431307 19 0.023404111732726857 24 0.021315147284957744 16 0.017572764418566533 15 0.015450394329433407 14 0.012111687028414368 12 0.005253915491798538 20 0.0050449681296266275 __DUMMY__ 0.0025790730012069207 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 18 0.09052674088475698 10 0.08260788097526288 19 0.0795658413203251 21 0.07790584156689527 11 0.0741943371206793 22 0.07142454836649592 12 0.06354987603548444 14 0.05770312465141342 13 0.05543630961581303 20 0.054876706484712476 17 0.05153633835861519 0 0.051533753949023375 9 0.042691887467201 16 0.041081221715398984 24 0.02902023369448753 15 0.028489199262761403 23 0.025383064083818185 4 0.006266565865403648 5 0.00626285530382747 __DUMMY__ 0.0036068462730594066 6 0.0033596097134169917 3 0.0013941031116503797 2 5.735532716040139E-4 8 4.740252053049162E-4 7 3.2020739923083506E-4 1 2.1532830335783506E-4 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.08128999136301526 19 0.07869801291660579 22 0.06765444252814813 20 0.06399343602622842 17 0.058708756712564696 21 0.05629759838067211 24 0.05178199331231145 9 0.050041650230666194 23 0.04593428537363714 16 0.045102378145632484 10 0.04466935235425145 0 0.037991650844878766 11 0.03651275841650163 4 0.030295526021839846 5 0.02988318009261032 12 0.02791264867059887 3 0.02759707198857907 6 0.026530062489959927 8 0.02636174012084672 7 0.026084173784116985 1 0.02554263704517944 2 0.025081788373625465 15 0.018938638084560658 14 0.014591153701776608 __DUMMY__ 0.0022495095483544697 13 2.555634728379779E-4 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 16 0.09456768787126808 17 0.08163370351232098 19 0.07981344475329655 0 0.06160597435581236 18 0.05676388768871163 20 0.052451324307632684 22 0.04976815216858714 11 0.044996017858005326 23 0.0438580330410665 24 0.039057735798072125 21 0.03571361804306062 9 0.03478934418713848 10 0.0345671985053253 12 0.033094314827628576 6 0.028943991281398327 8 0.028408227200054623 7 0.028352595842900917 1 0.028132062740599713 2 0.027786374306875163 15 0.027564575980058247 4 0.02690166422796575 5 0.02652328530286577 3 0.025570198526267233 __DUMMY__ 0.005092522261800717 13 0.004044065411287158 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.09341766381494981 10 0.08894563448337837 19 0.07734650602302262 11 0.07595759560634158 21 0.07514743600928608 22 0.07226125724445395 12 0.06018148175230347 14 0.05986498107971149 13 0.05578039389600822 0 0.05572990239847466 17 0.053063030464986075 20 0.0502861045099747 9 0.04617169006994235 16 0.039642055479726754 15 0.030559178952290916 24 0.022680376238457922 23 0.02132031014158624 4 0.006009856987915852 5 0.006003253817227535 __DUMMY__ 0.0036060120153264697 6 0.003395672262076329 3 0.0010675337354584561 2 5.313165993379265E-4 8 4.6668715330381607E-4 7 3.205856219902977E-4 1 2.4348364246819994E-4 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.09054856797355647 19 0.08682038662156333 20 0.07455247707609436 21 0.07277599759066769 10 0.07191387266687559 12 0.06410991403795778 22 0.06127923063912408 11 0.06055617836115314 14 0.0587138555294842 13 0.054051446468583494 17 0.04851729890310105 16 0.04829492925135954 24 0.04332081778929402 15 0.039450019889704764 0 0.037574750775239224 23 0.03564840325028867 9 0.03196618681556467 5 0.0063615367811445155 4 0.006248464766137264 6 0.0027979158097649966 3 0.00240829697550754 2 8.691891491573395E-4 8 5.727363678694377E-4 __DUMMY__ 2.763594556823085E-4 7 2.121085169554672E-4 1 1.5905853816896613E-4 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 20 0.11653824085389151 19 0.10994726694770747 24 0.08978760852256573 18 0.07943667925524596 21 0.07445192333689005 23 0.07003182692339771 16 0.06255670590383358 12 0.058927962618436476 22 0.05325597956262641 15 0.047440049174988966 14 0.0471888528309259 11 0.03856870418420874 10 0.0361726697914167 17 0.03526741800079571 13 0.02984618636726678 4 0.009342045431408898 3 0.009132576878432004 5 0.00878956123938842 9 0.0087699779882387 8 0.003366821643273108 7 0.0030385857481827904 2 0.002847569142387476 1 0.0025683668531596747 6 0.002012379285631373 0 4.6503570558883056E-4 __DUMMY__ 2.4900581011091423E-4 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 23 0.08402117932907884 12 0.0689745760401357 24 0.06584439290815233 21 0.06464917567900332 13 0.04887578577986654 4 0.04791969667014237 6 0.04721869931195793 5 0.04714014348873634 20 0.04643380478021081 7 0.04436853246458607 8 0.043996167234461765 1 0.0437656373712136 2 0.04304019756595178 19 0.042373083065774336 3 0.041805516155803656 22 0.03991949587426665 11 0.028431203643705143 16 0.027755132495714926 17 0.025521728907756103 18 0.025431663694989986 14 0.02367901681812366 9 0.021380924833753524 0 0.01427702999058855 15 0.010620573334806026 __DUMMY__ 0.002556642561219776 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.09143289504079098 18 0.08828398881082786 20 0.07668077414580916 21 0.07346221213602576 12 0.06520843152500272 10 0.06395984885575476 22 0.061949656072901794 11 0.059948678389057264 16 0.05811141727693234 17 0.05539915231831294 14 0.04916045739568921 24 0.047736846625876794 13 0.047403733806012135 0 0.03929430069524434 23 0.03875154909262447 15 0.03592541889404115 9 0.029320350992543452 5 0.0058259468654451784 4 0.005738652721566049 6 0.0028326696913015706 3 0.0015807377457647195 __DUMMY__ 6.51203753107014E-4 2 5.554872362202066E-4 8 4.31353651043499E-4 7 1.8619473579512138E-4 1 1.6804152630963036E-4 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.12409537207804198 10 0.10163646661668445 19 0.090412331499641 22 0.08436746259234267 17 0.06965797901619482 21 0.0640970707205255 11 0.06403200032180942 9 0.06279348756911514 0 0.062096627622093475 20 0.056386606964815275 14 0.043377884088553594 16 0.03948076875026942 15 0.02916157826696335 12 0.029152423488569973 13 0.019244183307248832 23 0.019169187557769172 24 0.017116208169569855 4 0.007429161775202533 5 0.005891713250497731 6 0.0034797699945670977 8 0.0017153604078765082 7 0.0016635321490745005 3 0.0015325545540160524 1 0.001323109368643516 __DUMMY__ 6.87159869913894E-4 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 12 0.09499653035036118 21 0.09473610227679827 11 0.08561612622142874 13 0.07733910209192943 22 0.0716569375128213 18 0.060687896742078924 19 0.05916424101725405 10 0.0555472387069145 14 0.048748766651578984 0 0.047614264718740244 17 0.039748147813980735 20 0.03769467224947292 23 0.036467007652781394 24 0.03604287230733197 9 0.03478026867163245 16 0.028483474964946253 4 0.015902927308227077 5 0.015342319910233633 6 0.01421615544621529 7 0.008745069383625051 8 0.00858436681525125 1 0.008446013865577912 2 0.008332781711685446 3 0.006917367577113893 __DUMMY__ 0.00418934803201924 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.08192825315556054 18 0.06579897024551659 21 0.06549196461453616 9 0.06446646741148589 11 0.06318337484336731 0 0.05938339910254111 17 0.05879194439500904 19 0.058280220970281925 10 0.054940940006400485 4 0.03423588147302015 5 0.033527204832277786 16 0.031828499699816847 6 0.031377730379213674 24 0.030925947059747955 12 0.03065071252058865 3 0.030343670299236965 8 0.029874294180252205 7 0.02981718858093353 1 0.02953482976458111 2 0.02911900391492263 23 0.028681448327571548 20 0.024055118052004186 14 0.015736217805790813 __DUMMY__ 0.009167537020310337 13 0.007440316307844571 15 0.0014188650371880357 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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 9 0.065476273678733 22 0.05932529629272592 0 0.05227719888516361 3 0.0514351484475437 4 0.051088211869321824 8 0.050816029272252795 17 0.05076545874126386 7 0.05061505924612482 1 0.050541742945011875 5 0.05045009740391079 2 0.0499516238834962 6 0.0495203675798185 18 0.047697381153682904 10 0.04554296943871622 19 0.037591034220045505 11 0.036607033956038065 21 0.03531722628576661 23 0.03383492527630834 24 0.029869041327626796 16 0.029762832334432835 15 0.02587854667908993 20 0.01957992066818159 14 0.018535676162439296 12 0.006028487884481358 __DUMMY__ 0.0014924163678238262 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.07499828532826118 4 0.05979772069159541 22 0.05944311655593573 7 0.059334744148817245 8 0.05922038642447488 6 0.05916736252063005 1 0.059031528774351055 5 0.058693129946648576 3 0.05776231036108014 2 0.057683747599810556 0 0.05549253300141823 17 0.05011338129565717 18 0.04502678487753565 10 0.04385834455958088 23 0.03403140551816215 21 0.03259841877698153 11 0.03149026909750291 19 0.023274471965876273 24 0.02149313440818408 16 0.017332156673940335 15 0.014767307641276674 14 0.012034561349528834 20 0.005188141305657895 12 0.004963791813471676 __DUMMY__ 0.003202965363621059 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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 1 0.0736602803184132 7 0.0732586530158125 8 0.07299945361614565 2 0.07259536056185986 6 0.0721972120873571 3 0.07210050570925561 4 0.071960129279593 5 0.07178445619619933 9 0.05916725575993991 23 0.05378400158767952 17 0.03991937632885288 22 0.03963024281381755 24 0.03834505602160293 0 0.037834946552152283 18 0.023815036649851386 21 0.021437837516428374 16 0.019766818206666845 15 0.016856153627624985 10 0.01644864670384413 19 0.014498790491543338 20 0.014420892882918757 11 0.012243828793932356 12 0.008363402679684757 14 0.002911662598823653 __DUMMY__ 0.0 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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.139925754462785 13 0.12734862974917088 21 0.10369730108094921 23 0.0746953340756925 11 0.06691977609558239 14 0.06262973501371728 24 0.06004310894574042 20 0.050626527693028306 22 0.04262132014599529 19 0.04234593831476575 18 0.03754463372414702 4 0.025162665902845372 6 0.0245446340339758 5 0.024430380256279072 10 0.01736543521779899 8 0.015064889093037987 7 0.014776567455764297 1 0.01453907080055888 2 0.014386356605715678 3 0.00987237681032389 0 0.009493858183735918 17 0.009062047935054421 16 0.006835512072490966 __DUMMY__ 0.0030965730160828113 9 0.0029715733147619504 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.07510367718585942 4 0.05983053500623222 7 0.059294208818971746 22 0.059292942810127196 8 0.059230809795006556 6 0.0592005628860273 1 0.059126883312178045 5 0.05897880750936915 3 0.05793217269567074 2 0.05785554018820333 0 0.0552995076212016 17 0.050027291976080544 18 0.04461293846235123 10 0.043684235666625486 23 0.03375383502141066 21 0.03248839431025806 11 0.03135746763591387 19 0.023163289346871497 24 0.021529037128904364 16 0.01737385015606712 15 0.015260294462349893 14 0.012155395237544428 12 0.0052544880360778905 20 0.004990869367076517 __DUMMY__ 0.003202965363621058 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.13969959945992186 13 0.1271964115585867 21 0.10355458306166547 23 0.07448358172807958 11 0.06681274070334418 14 0.06254485204608466 24 0.05935496637954405 20 0.05061299227238818 22 0.042748749149359354 19 0.042489477354046325 18 0.03779317654097379 4 0.025104260071084662 6 0.02443329566515321 5 0.024420016827468395 10 0.01739103354618239 8 0.015084159171678574 7 0.014803317240099999 1 0.014676576605497151 2 0.01443094252579044 3 0.00992760810750123 0 0.009653804308323988 17 0.009367846827516627 16 0.007085789790439015 9 0.0032336469340027243 __DUMMY__ 0.0030965721252675044 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 19 0.10660258521191922 21 0.10657267184445704 20 0.09296037420385847 18 0.08762293490820101 22 0.08289558618366663 24 0.07822590639352872 12 0.06355500803171167 23 0.062166833294094885 11 0.05096564594847066 10 0.050121432503388706 14 0.04441579727562315 9 0.03453310546020312 13 0.028664727059746743 17 0.026836571297894622 16 0.02587248684935122 5 0.011252270883206779 4 0.011161404245882819 3 0.008375301220328873 15 0.008306140182123759 0 0.008122489709660063 __DUMMY__ 0.007462240116135488 7 9.73182592671675E-4 8 9.630899779680955E-4 6 9.325279813510626E-4 1 3.7036542366265373E-4 2 6.932120089299497E-5 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.09415555135884036 10 0.08955573227051089 19 0.07742653800003857 11 0.07587316775116344 21 0.0754714487652742 22 0.07179115882281767 12 0.05974417900433875 14 0.05930529970470377 13 0.05578472659229955 0 0.05575623991863654 17 0.05301794444870295 20 0.05063478613321024 9 0.04638486147046072 16 0.03949773365499183 15 0.03027779502888371 24 0.02253641427234568 23 0.022484286556534155 4 0.00579174750450919 5 0.005558532439766243 __DUMMY__ 0.003606017583743342 6 0.0033134486619690057 3 5.884462052975647E-4 7 5.603237318197004E-4 8 4.153431030045097E-4 1 4.1489062226052637E-4 2 5.3386393876988235E-5 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 9 0.07218785015369097 22 0.06774644090115177 0 0.06252700910575687 17 0.0577507081809367 18 0.0557978492391498 10 0.05231106531895737 4 0.04912913964302656 5 0.04826218335821681 6 0.04822598618047577 7 0.04788023578344256 8 0.0476353954636132 1 0.04753947963415149 3 0.04679143797813242 2 0.04665286118507581 11 0.04584736978484323 21 0.040658950683642274 19 0.03789574228794146 23 0.02881347639798201 16 0.02734921708216808 24 0.02082352101575243 15 0.012013017362658121 14 0.011958652698452902 20 0.011746506489216685 12 0.011243201678563878 __DUMMY__ 9.042869953279521E-4 13 3.084153976727973E-4 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 10 0.08508925397755725 18 0.07337356291241874 22 0.0669725908629615 9 0.06460218941655838 11 0.06456807065844618 21 0.058946269363457586 14 0.056662684674235096 0 0.05439052745234781 13 0.050304572599096396 12 0.03999561732010485 17 0.03559953559107811 19 0.0337809654660858 4 0.03311249420762978 5 0.032515323821192134 6 0.030836045982457143 7 0.028017894385663773 8 0.0279859646928111 1 0.02783509213990771 3 0.02747499966877452 2 0.02726826739222456 15 0.025222821461067683 23 0.023578721720650918 20 0.01453950622351171 24 0.009368296295815481 __DUMMY__ 0.0071522673812242565 16 8.06464332721634E-4 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.12726737577552202 12 0.10699346399921343 14 0.0964167290238032 21 0.07573536571438981 18 0.06758709202687668 10 0.06612463093602727 11 0.06023529804151499 20 0.05354995104441625 15 0.049909147518457535 19 0.04856690490009585 23 0.0408013956254357 22 0.037938675025895346 0 0.028453797188723342 24 0.027024144254467877 17 0.024141228561002745 16 0.02211687931408753 9 0.01890437632601155 6 0.010748327108474601 4 0.010166137827650837 5 0.009907458059436464 1 0.004084521402122133 8 0.004071667636438785 7 0.00405728523624705 2 0.0038961837951112226 __DUMMY__ 0.0013019636585779077 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 9 0.07313605614610962 22 0.06819885726339024 0 0.060930721481761624 17 0.05637408589451658 18 0.055304312516969226 10 0.050885216037513024 4 0.05031587556807185 5 0.04928963479809117 6 0.049224282214193005 7 0.04887561647578208 8 0.0486521735258932 1 0.04846013513510892 3 0.04775591656828213 2 0.0474760751349527 11 0.04424785050666588 21 0.04195848551505042 19 0.03671697930738194 23 0.030190646391066278 16 0.024747209168236892 24 0.021892994571715788 14 0.011712383001094366 12 0.0112463105839127 20 0.011231884315313787 15 0.010762430482898006 __DUMMY__ 3.077691391416555E-4 13 1.0609825688708939E-4 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.1273278322708093 12 0.10707997233737193 14 0.09656443425968568 21 0.0757906390387416 18 0.06750610001538342 10 0.06628193176944643 11 0.060244493582212705 20 0.05369161815424607 15 0.04995634567339286 19 0.048564007256014285 23 0.040745031944938434 22 0.037891524373609736 0 0.028250253816922245 24 0.026996899101509316 17 0.024104188578569375 16 0.02202315204077959 9 0.018809796121227778 6 0.010693563187687712 4 0.010118420827173966 5 0.009867110022927334 8 0.004063248346218393 1 0.0040361935194419 7 0.003998392190897418 2 0.0039045126619377565 __DUMMY__ 0.0014903389088548366 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.1457663901779568 15 0.12019116968789359 13 0.11697601530035198 10 0.09281300535656292 18 0.0846459418134941 12 0.06170937788435419 20 0.05701418838761633 21 0.05605113537497459 11 0.04742639730499552 19 0.04276501135616035 22 0.037983184661426014 9 0.029628002465707792 23 0.0255859109624116 24 0.02065057417830145 0 0.01583408220208285 17 0.015011430321313388 16 0.007556169368613146 4 0.005888970555392539 __DUMMY__ 0.00562089404502495 5 0.005601657091789435 6 0.003254558213902129 3 6.148226147216471E-4 8 5.879772204911426E-4 1 4.3380181793291453E-4 7 3.7289968518771537E-4 2 1.643195134085976E-5 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 9 0.07233772086540009 22 0.06714031384300184 0 0.060981720361035864 18 0.056010759927243844 17 0.05600689547460084 10 0.05102375802766508 4 0.05010001050946109 7 0.04923375764075321 6 0.04922898036743314 5 0.04906071483820504 8 0.04876325152358774 1 0.048577240964004044 3 0.04772110063954019 2 0.04742739612936126 11 0.0437228004848962 21 0.04031017849061284 19 0.03616472280461794 23 0.03085960294428236 16 0.025499222410709524 24 0.021773768711091157 15 0.013365949912761434 14 0.012620550814817923 20 0.012125522855889742 12 0.009414438692607002 __DUMMY__ 3.926801296487747E-4 13 1.3694063677193846E-4 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 10 0.10150235438886777 18 0.10010035318686122 11 0.07756231449352548 19 0.0734958381312827 22 0.0715907914751709 21 0.06848914546106055 14 0.06409260005317137 0 0.06279812867165656 13 0.056191126910374714 17 0.055749388536819273 12 0.0524648508129475 9 0.052137042372236486 20 0.043650875039107896 16 0.03767080908372859 15 0.03630891610795852 23 0.01537417504673508 24 0.01106821510978164 4 0.005399067773384059 5 0.004959032724711706 __DUMMY__ 0.0041415073066156044 6 0.0035256557096786582 7 6.797916278691608E-4 8 5.520748662990493E-4 1 4.7836347991249385E-4 3 1.7581630242891143E-5 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 9 0.07270022103880783 22 0.0668248397102483 0 0.06063016524578704 17 0.0562853468195333 18 0.05561515175866728 10 0.050699410952856135 4 0.05025676264173132 7 0.04934504095162123 6 0.04930946697855605 5 0.04913506674218325 1 0.04893436196285717 8 0.04891581493891057 3 0.04775621899524977 2 0.047457865243365135 11 0.04359802306837754 21 0.040293949373461264 19 0.03627969644217359 23 0.030641130120733488 16 0.025363342952413045 24 0.021956133225970193 15 0.013360168747730007 14 0.012607429650586865 20 0.011936155060690514 12 0.009567732431129197 __DUMMY__ 3.9461906257880474E-4 13 1.3588588378093234E-4 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.10684108210358595 18 0.07976336312997605 20 0.078752111856671 16 0.07792582567185538 21 0.07539416775138387 22 0.06656899849801502 17 0.06277741013769406 11 0.06272983219170634 12 0.0605140740619226 24 0.055100894421909324 10 0.05231894413626773 23 0.0465937451532519 0 0.042501112364528235 14 0.03198156721255024 13 0.02933805608840372 9 0.026529648515723155 15 0.026497319415663346 4 0.005190210495613104 5 0.004719139399431578 __DUMMY__ 0.0020823579832176483 3 0.0020138971890232152 6 0.0018413010232789064 7 7.503986214065903E-4 8 6.865964382609354E-4 1 5.619251995987971E-4 2 2.60209390615623E-5 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 12 0.09959961799089666 21 0.09742339919824841 11 0.0835800179931754 13 0.08016031319805055 22 0.07015698004853639 19 0.06590917567821335 18 0.06504461954888006 10 0.05516598377085737 14 0.05073298000689374 20 0.0461541231327928 0 0.04410076907385137 17 0.0402356670772764 24 0.04008191536391203 23 0.03882432143601753 16 0.03197338976288257 9 0.030859838999790848 4 0.011963239976969143 5 0.011321504175569987 6 0.010040681357430473 __DUMMY__ 0.005581642397695153 7 0.0044526304197927274 8 0.004302622144327541 1 0.00419223464939323 2 0.0038738600135461957 3 0.0025540991079908097 15 0.0017143734770091051 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.12656924281941204 12 0.1068244068326264 14 0.09630346404638056 21 0.07577403886245147 18 0.06792612308058453 10 0.0662657176437677 11 0.06020202801495891 20 0.05383677318413175 15 0.04973243631878197 19 0.04865858965580681 23 0.04112799415144533 22 0.03800926981008615 0 0.028194662528880914 24 0.027204980381052884 17 0.02418603130818577 16 0.02207102231659295 9 0.018872722370885664 6 0.010712479667646215 4 0.01014776067364022 5 0.009774071825580393 7 0.004114979475539639 1 0.004101050022156778 8 0.004013833867959437 2 0.003885982232590648 __DUMMY__ 0.0014903389088548363 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.07499828532826118 4 0.05979772069159541 22 0.05944311655593573 7 0.059334744148817245 8 0.05922038642447488 6 0.05916736252063005 1 0.059031528774351055 5 0.058693129946648576 3 0.05776231036108014 2 0.057683747599810556 0 0.05549253300141823 17 0.05011338129565717 18 0.04502678487753565 10 0.04385834455958088 23 0.03403140551816215 21 0.03259841877698153 11 0.03149026909750291 19 0.023274471965876273 24 0.02149313440818408 16 0.017332156673940335 15 0.014767307641276674 14 0.012034561349528834 20 0.005188141305657895 12 0.004963791813471676 __DUMMY__ 0.003202965363621059 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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 1 0.07324429593994798 2 0.07321580294495997 7 0.07288728710443303 8 0.07276066868965972 3 0.07271797330622218 6 0.07214582509852982 5 0.07205219852676173 4 0.07196143467650919 9 0.058893619924219945 23 0.05367948934845704 17 0.03974219355937841 22 0.03968805141364479 24 0.03830300331461831 0 0.037792043749587695 18 0.023676941462468147 21 0.021326937440938536 16 0.01977575033391746 15 0.016947947702417993 10 0.016543415181321585 19 0.014434630802167853 20 0.014409000707523621 11 0.01232754706003052 12 0.00844669435742978 14 0.0030272473548545236 __DUMMY__ 0.0 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 1 0.07252555863765141 2 0.07244295792490232 3 0.07230626599736156 7 0.07216444300799059 8 0.07203001957822872 5 0.07142791687684975 4 0.07134745593470036 6 0.07122084023715933 9 0.0586275514646469 23 0.05380077042168434 22 0.04015605456209019 24 0.03955668050789091 17 0.038694454641715274 0 0.03658665575995509 18 0.024221384692745603 21 0.022310294019533404 16 0.019199420498681487 15 0.01775601541408738 10 0.016984938173350055 20 0.015896280496559764 19 0.015493885205566035 11 0.012551869916212531 12 0.008352374029866246 14 0.004345912000570586 __DUMMY__ 0.0 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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.08604850230018268 9 0.07252977593904902 11 0.0673985507842108 0 0.0650145724784683 21 0.06212043464844444 17 0.05849926696448277 18 0.058117255607353556 10 0.0553871675718258 19 0.04594186598186951 4 0.04136020290735149 5 0.040476106883909 6 0.03879323756938266 8 0.037700938853804856 7 0.0376060814358934 3 0.03759427897966622 1 0.0373599934083653 2 0.03642806467336264 24 0.025565361800494017 16 0.025188189932161504 23 0.02383531706279865 12 0.021283719715489233 14 0.014223653503169585 20 0.008118716968798312 13 0.0017229349778197648 __DUMMY__ 0.0016110539337052222 15 7.47551179413903E-5 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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.07499828532826118 4 0.05979772069159541 22 0.05944311655593573 7 0.059334744148817245 8 0.05922038642447488 6 0.05916736252063005 1 0.059031528774351055 5 0.058693129946648576 3 0.05776231036108014 2 0.057683747599810556 0 0.05549253300141823 17 0.05011338129565717 18 0.04502678487753565 10 0.04385834455958088 23 0.03403140551816215 21 0.03259841877698153 11 0.03149026909750291 19 0.023274471965876273 24 0.02149313440818408 16 0.017332156673940335 15 0.014767307641276674 14 0.012034561349528834 20 0.005188141305657895 12 0.004963791813471676 __DUMMY__ 0.003202965363621059 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 1 0.07366017920425395 7 0.07325947067330243 8 0.0730005816511818 2 0.07259513213289259 6 0.07219848952241176 3 0.07209995442600532 4 0.07196092479101342 5 0.07178452440543866 9 0.059167767401540665 23 0.0537839213474456 17 0.03992050217187253 22 0.03963009503224052 24 0.03834412812349823 0 0.03783629310062812 18 0.02381459652044841 21 0.021436786273492284 16 0.01976749073475269 15 0.016855456328142056 10 0.016448443691396485 19 0.014497802559638286 20 0.014419678804328463 11 0.01224379287848556 12 0.008363478678641345 14 0.0029105095469486777 __DUMMY__ 0.0 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.09987301405299982 19 0.0857866927073594 10 0.08191074574870055 20 0.08073150732939774 14 0.06566049952360663 21 0.06116517791358093 12 0.05501413498110952 22 0.054814794126549764 13 0.05363999122133742 11 0.05354925311171667 15 0.05336847712016453 16 0.049570007968274 17 0.048762449914293314 24 0.03827606800802738 0 0.03706306985581101 23 0.03452978009173639 9 0.03212214999092611 4 0.004834976147687377 5 0.004467451412297264 6 0.002128262689041759 3 0.0014162976878644925 7 7.816934791198569E-4 8 2.678160808075162E-4 1 2.576356101023356E-4 2 5.035585405162928E-6 __DUMMY__ 3.0176420828874742E-6 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.09394623922984624 10 0.08998765375857494 19 0.07748129740573241 11 0.07596769156919038 21 0.07539225011833971 22 0.07187757872972933 12 0.059819798795619106 14 0.05948476744930946 13 0.05577426015433618 0 0.05572647097209786 17 0.052988949717628346 20 0.051088356506422704 9 0.04631108998987542 16 0.039480330881230465 15 0.030299390485599435 24 0.022658774915765855 23 0.021955379858773626 4 0.005679788355388415 5 0.005468192304949397 __DUMMY__ 0.003606014799532756 6 0.003175626035382124 3 5.903760040145204E-4 7 4.306102937633039E-4 8 3.956542011362893E-4 1 3.600711151044409E-4 2 5.338635265728824E-5 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.08963634595709687 0 0.0826534746766261 16 0.07540386923309766 9 0.05673046777735248 22 0.05488283021132764 18 0.053024509074147776 11 0.048555731161890395 19 0.046768633841411736 10 0.043651230089528155 6 0.04297918515684384 8 0.04020968342814287 1 0.04000053602156223 7 0.03996528941787882 2 0.03902314343028888 4 0.03787932618901221 5 0.03747161043024072 3 0.03298256998555279 21 0.02847421882432008 12 0.0272513272204747 23 0.025467066929448123 15 0.020629421136934084 20 0.012939847509629558 24 0.010495762260576275 13 0.010399149558337015 __DUMMY__ 0.0025159806171210575 14 8.789861157903637E-6 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.09776711827141335 12 0.0957705645147507 11 0.08524360360616226 13 0.07502326005226802 22 0.07300668161642641 19 0.06531953874054447 18 0.06463638990540836 10 0.05556109163611145 14 0.048453657597384174 0 0.04553013848967429 20 0.04389779345430512 17 0.040637032800019755 24 0.04021883036945753 23 0.03737759246335872 9 0.03323076536277286 16 0.030908060667178154 4 0.012962746553474378 5 0.012384059575556262 6 0.010666822418716205 __DUMMY__ 0.005805477576957172 7 0.005474179037640156 1 0.005347223482899589 8 0.005290384928571805 2 0.00516269120699739 3 0.004297650196146433 15 2.6645475805076643E-5 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.09394623922984624 10 0.08998765375857494 19 0.07748129740573241 11 0.07596769156919038 21 0.07539225011833971 22 0.07187757872972933 12 0.059819798795619106 14 0.05948476744930946 13 0.05577426015433618 0 0.05572647097209786 17 0.052988949717628346 20 0.051088356506422704 9 0.04631108998987542 16 0.039480330881230465 15 0.030299390485599435 24 0.022658774915765855 23 0.021955379858773626 4 0.005679788355388415 5 0.005468192304949397 __DUMMY__ 0.003606014799532756 6 0.003175626035382124 3 5.903760040145204E-4 7 4.306102937633039E-4 8 3.956542011362893E-4 1 3.600711151044409E-4 2 5.338635265728824E-5 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.13403105368625487 13 0.11569095501588117 21 0.10385357186679078 11 0.06795532544705425 20 0.0663680051606415 23 0.06494421877716289 19 0.06215519183660263 14 0.06063734167671201 24 0.05820237778296683 18 0.057711721720242574 22 0.047997607844654656 10 0.03629589963974292 16 0.018944053962187846 17 0.01849653631162835 0 0.015857941796791487 4 0.014441659005916093 5 0.014297697306325284 6 0.012688113298567567 9 0.007857009441900448 2 0.005045307319774779 1 0.004766906218844198 8 0.004669868691713932 7 0.004641562567988029 3 0.002243211583512708 15 2.068620401421744E-4 __DUMMY__ 1.3316619271141164E-18 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 10 0.10157387138093671 18 0.10011341879118152 11 0.07757056645414882 19 0.07352403233007912 22 0.07150139523508478 21 0.06853178059094779 14 0.06385776300709894 0 0.06277749877009825 13 0.056197659712534855 17 0.055703315090005666 12 0.05233728925497846 9 0.0521088481734401 20 0.04355013235316469 16 0.03760926321074622 15 0.036175853242907244 23 0.015701158986434764 24 0.010967128592145778 4 0.005481587379617418 5 0.005067339707892989 __DUMMY__ 0.004141507306615605 6 0.0036019863454445156 7 7.44431986085291E-4 8 6.0296195680962E-4 1 5.412846796654292E-4 3 1.7925461935530136E-5 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.08219462596346748 22 0.06943370595368824 12 0.06178548844776432 11 0.06086054413208979 18 0.054813718271449784 9 0.05080006814741719 10 0.05077830810404059 13 0.05015910995488269 23 0.04416896280492358 14 0.04343638844533534 19 0.041879672549401385 24 0.04151667705126073 4 0.03632384507449476 5 0.03588259576859005 0 0.03404861847269746 6 0.031965641154660836 3 0.030476846143448012 20 0.03022541896115365 7 0.02918251436796801 1 0.029061425258116086 8 0.02903208603435033 2 0.028640173449680815 17 0.0246732428496931 15 0.004620421829278247 __DUMMY__ 0.004029823772973285 16 1.0077037174266775E-5 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.09423384693533784 10 0.0896529478784928 19 0.07724696468461378 11 0.07569012117959514 21 0.07518918749674432 22 0.07185209938937705 12 0.05979007289854146 14 0.05946237651384838 0 0.05564462824248147 13 0.05560130948042984 17 0.05293953523936939 20 0.05100072301763534 9 0.0463338669759479 16 0.0395540665480075 15 0.030417521972687253 24 0.02264796549864671 23 0.02226769480339468 4 0.005790198830248267 5 0.005518378884431147 __DUMMY__ 0.003606014799532756 6 0.003348962759899866 7 6.452544337006414E-4 3 5.869015485119376E-4 8 4.744085258614996E-4 1 4.51565110005788E-4 2 5.338635265728824E-5 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.08966683252784625 0 0.08270180793606964 16 0.07546331840482716 9 0.05699416571428549 22 0.054977091016823146 18 0.053005811425309066 11 0.048471187872966184 19 0.0467780255550341 10 0.04360297075260718 6 0.042920097906987115 8 0.040116063548899426 1 0.039888772608677237 7 0.03984913644938915 2 0.03902023991276536 4 0.03782784448164574 5 0.03745700057804713 3 0.03297527339767896 21 0.028509937040601004 12 0.02741580441365746 23 0.02528740353624704 15 0.02084247197490459 20 0.012745837637018293 24 0.010554002900791427 13 0.010404130450967086 __DUMMY__ 0.0025159820896523796 14 8.789866302357368E-6 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.13194656234736823 13 0.11217762322025873 21 0.10501405772466996 11 0.06925762965888757 20 0.06786374937508506 19 0.06542828017126795 23 0.0636500082537244 14 0.0599283558317096 18 0.05969249693751805 24 0.05921051660648812 22 0.05023018567710015 10 0.03757875511468682 16 0.021285611587402734 17 0.020260715754459042 0 0.017079217359334452 4 0.012995427199559104 5 0.01239420265573114 6 0.011008747461966038 9 0.008964568128772544 8 0.0033759941916314405 7 0.003351357431440013 2 0.0031778126300449137 1 0.003128239339134696 3 7.58986929583601E-4 15 2.4089841217570838E-4 __DUMMY__ 7.125905840059208E-19 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 10 0.10151057144693952 18 0.1001109775480062 11 0.07746979713163411 19 0.07346830633513948 22 0.07146389300903583 21 0.06843135820782749 14 0.06373396168399298 0 0.06266538809195146 13 0.056115464643718936 17 0.05574558722110065 12 0.052322142670491456 9 0.05226080381266589 20 0.04356558980010295 16 0.037583462911412624 15 0.03624563861411367 23 0.015713187692985204 24 0.011018355725889089 4 0.005507372862956007 5 0.005036049292309489 __DUMMY__ 0.004141505882634627 6 0.003638431253856271 7 8.145733713075041E-4 8 7.645625894690962E-4 1 6.54748913112869E-4 3 1.8269287346609134E-5 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.10680286725123271 18 0.07940362610877315 20 0.07859567098872028 16 0.07810809361882001 21 0.07554735456575248 22 0.0664977049322146 11 0.06305655707733109 17 0.06294524853809204 12 0.0607235816601592 24 0.055453095114607 10 0.05234834215347635 23 0.04624760248698111 0 0.04262353453309824 14 0.03198109350246767 13 0.02939217695161276 15 0.02658899779431137 9 0.026453950701113914 4 0.005192007342909216 5 0.004600993949721121 3 0.0020118560067953206 __DUMMY__ 0.0020100251403092355 6 0.001739594505611538 8 6.685309088613927E-4 7 5.613316593893523E-4 1 4.2704724575166013E-4 2 1.9115261887181343E-5 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 9 0.07455690758884825 22 0.06220954225495339 0 0.05881671650431322 4 0.056429974925016106 5 0.0561355801727483 6 0.05594960464837777 7 0.05581307468536413 8 0.055757520032966607 1 0.0555975051094706 2 0.054829235978615644 3 0.05482634617313663 17 0.052918555516509126 18 0.04767009208235768 10 0.046512693919217404 11 0.03646289171782641 21 0.03469400051144864 23 0.03108472083407919 19 0.027299836930597423 16 0.021396737908213687 24 0.02071643168814185 15 0.014731123156656128 14 0.011785521148212972 12 0.0073538255547022525 20 0.006183573163853016 __DUMMY__ 2.6798779437366187E-4 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.12711865126962593 12 0.10721945829701872 14 0.0965629268986441 21 0.07573576681528654 18 0.06750247754155075 10 0.06619102503679303 11 0.06031026577358661 20 0.05356413976916767 15 0.0499237077477443 19 0.048568041595010124 23 0.04075182018570414 22 0.037862998175067226 0 0.028107046088951544 24 0.027213195391520294 17 0.024218047145229578 16 0.021983402945726673 9 0.018876045858722577 6 0.010760262701807818 4 0.010188140479333627 5 0.009986508508747268 1 0.004080421442504261 8 0.004064584775605753 7 0.0040062046478198205 2 0.003902896764800885 __DUMMY__ 0.0013019641440307499 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.09420489313948296 10 0.0894522015605658 19 0.07729290470737016 11 0.07583450410825804 21 0.07528647225081662 22 0.0719227466512629 12 0.05979393340465544 14 0.05948090694319549 0 0.05570176373296838 13 0.055668482286813106 17 0.053028326879990956 20 0.050908842972122594 9 0.046319969153937574 16 0.039585722698142145 15 0.03043914080692554 24 0.02270008233118545 23 0.02206347402996509 4 0.00574734721238308 5 0.005548876882731597 __DUMMY__ 0.003606014799532756 6 0.0033076553444802703 3 5.880597003461318E-4 7 5.734490199805969E-4 8 4.651433111879455E-4 1 4.2569971904211603E-4 2 5.338635265728824E-5 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.07469978157672384 4 0.05974978119795628 22 0.059560407007086175 7 0.05932000551832105 8 0.059258150769034824 6 0.05914142862490054 1 0.05888051473441919 5 0.05854752100302022 3 0.05770781036942681 2 0.05762924769914478 0 0.05553802266966169 17 0.05016505399878347 18 0.04511320799990792 10 0.04403664900975551 23 0.03412015767672334 21 0.03252001280948656 11 0.03157168924313039 19 0.023254756444544947 24 0.021392350384111608 16 0.017301638625933865 15 0.014814388676731485 14 0.01210944117247596 20 0.005401235069964315 12 0.00496378606465152 __DUMMY__ 0.003202961654103712 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.1316188515968931 13 0.11222771009400768 21 0.10491142331615834 11 0.06928423181863232 20 0.06785116322404662 19 0.06546921697118217 23 0.06363921644198732 14 0.05993772099023259 18 0.059736348792042884 24 0.059185619648274124 22 0.050145279219137154 10 0.03784387311841124 16 0.021286716980172937 17 0.020281304490099468 0 0.017290827820203202 4 0.01305341855490395 5 0.01232119036001619 6 0.011079504649657379 9 0.00905727266821532 8 0.0033820382645843535 7 0.0033665830017200935 1 0.003149063523196693 2 0.002916922077974418 3 5.063837290718816E-4 15 4.581186491786124E-4 __DUMMY__ 7.125901052764028E-19 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 6 0.07120512886592839 8 0.07063316490128425 7 0.07058054811407674 1 0.07023074391764197 2 0.06979421946080962 4 0.06970847358536042 5 0.06891434985250695 3 0.06779673031682244 9 0.0593595310496101 23 0.048582833521562035 0 0.04563824220784041 17 0.044718422816658006 22 0.03936125437097914 24 0.029480990995354617 __DUMMY__ 0.0256160260985055 18 0.023894842086828436 16 0.022856147731955084 10 0.019319130369675308 21 0.019015122265809935 11 0.01687927045916605 15 0.01252279535537737 19 0.011584462650177518 12 0.011546461637194347 20 0.007391684217700954 13 0.0033694231511745194 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 1 0.0736602803184132 7 0.0732586530158125 8 0.07299945361614565 2 0.07259536056185986 6 0.0721972120873571 3 0.07210050570925561 4 0.071960129279593 5 0.07178445619619933 9 0.05916725575993991 23 0.05378400158767952 17 0.03991937632885288 22 0.03963024281381755 24 0.03834505602160293 0 0.037834946552152283 18 0.023815036649851386 21 0.021437837516428374 16 0.019766818206666845 15 0.016856153627624985 10 0.01644864670384413 19 0.014498790491543338 20 0.014420892882918758 11 0.012243828793932356 12 0.008363402679684757 14 0.002911662598823653 __DUMMY__ 0.0 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 9 0.07471873366179396 22 0.062266035815542305 0 0.058934184551059074 4 0.05648817456507321 7 0.05596325520684195 6 0.0559412277793064 8 0.05585183073550873 1 0.055713563653221165 5 0.055668359446632294 3 0.0545339222387736 2 0.05452969615626884 17 0.05334614581189247 18 0.04810799936307653 10 0.04661455833460602 11 0.036679204612246816 21 0.034908304764884185 23 0.03134152146544657 19 0.027617225605234597 16 0.021210338603666796 24 0.020767811192403254 15 0.013808311711029739 14 0.011557844437590569 12 0.006962051881547368 20 0.0063388449562717785 __DUMMY__ 1.3085345008170807E-4 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.08765720881776863 9 0.0704996549451839 11 0.06992877968829216 21 0.06567388089193825 0 0.06318259051217444 18 0.05775847701319183 17 0.05716000072868123 10 0.054617668285298945 19 0.047562156915817624 4 0.03967064201010876 5 0.03902058268149165 6 0.03682854926501919 3 0.03579265588821672 8 0.03550230568317016 7 0.03542501305924267 1 0.03515957619564455 2 0.03439773605136892 24 0.027669344022028718 16 0.025245992133903602 12 0.02483627963318174 23 0.023998744223642232 14 0.016609800473725456 20 0.00960776097720493 13 0.004049719920191861 __DUMMY__ 0.002121594526774025 15 2.3285456738034293E-5 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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 9 0.07471873366179396 22 0.062266035815542305 0 0.058934184551059074 4 0.05648817456507321 7 0.05596325520684195 6 0.0559412277793064 8 0.05585183073550873 1 0.055713563653221165 5 0.055668359446632294 3 0.0545339222387736 2 0.05452969615626884 17 0.05334614581189247 18 0.04810799936307653 10 0.04661455833460602 11 0.036679204612246816 21 0.034908304764884185 23 0.03134152146544657 19 0.027617225605234597 16 0.021210338603666796 24 0.020767811192403254 15 0.013808311711029739 14 0.011557844437590569 12 0.006962051881547368 20 0.0063388449562717785 __DUMMY__ 1.3085345008170807E-4 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.07487739362729608 4 0.059775669645365265 22 0.059665049675709236 7 0.05923625546850383 8 0.05922844776006938 6 0.059129869942605516 1 0.059077037150611945 5 0.05885406767243407 3 0.05783677350198296 2 0.05775898290229649 0 0.055480136540786575 17 0.05019904580571372 18 0.04520356122407569 10 0.04372049068144887 23 0.03397231352174093 21 0.03251693696015364 11 0.031370955190966825 19 0.023220406930904113 24 0.02142054032639087 16 0.01730936631448672 15 0.014885041630445527 14 0.012070840801095016 12 0.004998532522536103 20 0.004989321311772214 __DUMMY__ 0.0032029628906085398 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 9 0.07470901765269412 22 0.06223487640017324 0 0.05892269818086221 4 0.05649792336200799 7 0.05597575637242419 6 0.05595381095364936 8 0.05586315061945665 1 0.05572602663384815 5 0.055672812429201836 3 0.05453825392514574 2 0.05453762205552466 17 0.05334465944428648 18 0.04808598500363392 10 0.04658980220136664 11 0.036645653761659826 21 0.03488028485231026 23 0.03135270928472269 19 0.027591774097913857 16 0.021211490316246785 24 0.020758332314070104 15 0.013811608865925381 14 0.011549564834217107 12 0.006950943449900352 20 0.006327255288761163 __DUMMY__ 2.679876999970948E-4 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 19 0.06947040716313645 17 0.06863992128354457 18 0.06653804280694764 22 0.06645458981833133 0 0.06088403896866901 16 0.059691884664815044 9 0.05490795405674712 10 0.05318248411910622 11 0.05002597531603316 21 0.044280140002629434 20 0.0373316052867713 23 0.03425317809126374 4 0.03207220465069011 5 0.03171750471342316 6 0.030962953854203463 8 0.03093034951920683 7 0.030887985081480985 3 0.030858918946509137 1 0.030813363374834885 24 0.030744452131042543 2 0.030273919751275368 15 0.022238617678299818 12 0.020083370003081524 14 0.012756138717957 __DUMMY__ 2.157614561014601E-18 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.07532215283809025 4 0.05978727424014101 22 0.05938093945944914 7 0.05928723701740101 8 0.059195656323279 6 0.05915382790763463 1 0.05895699821719343 5 0.05881702953438865 3 0.05790782914240197 2 0.05783081061390719 0 0.05532419351192236 17 0.049880959481294014 18 0.04463994478229692 10 0.043903495549573714 23 0.03378818049513644 21 0.03250652614682928 11 0.03149295929494505 19 0.023181424783405194 24 0.021463014163057348 16 0.017430206838145768 15 0.01516493407008856 14 0.012174307024905172 12 0.005164536215123816 20 0.0050425982222756915 __DUMMY__ 0.0032029641271143212 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 20 0.10276485667890668 19 0.09895007352980847 21 0.08358180106580188 18 0.07871772925509063 12 0.07832148601425558 24 0.07619330961971123 23 0.05908133647608643 16 0.056225971147539404 22 0.05402458851602386 13 0.05204381114553046 14 0.048202216709734916 11 0.04760739876589581 10 0.040918963434869025 17 0.039948700926420624 15 0.03323002116828947 0 0.013944042015447421 9 0.013209267044522863 4 0.006380343077831306 5 0.006239807671954404 __DUMMY__ 0.004186479489258744 3 0.0032753570672846397 6 0.0017205546527004107 7 4.87930806783509E-4 8 4.266822701932902E-4 1 1.8522882109349136E-4 2 1.3204262896548293E-4 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.07460445595040537 22 0.05987892163185837 4 0.05959615618036643 7 0.0590922586460424 8 0.05908059043298431 6 0.058983170766907546 5 0.05876025741007983 1 0.05871646601876482 3 0.057851443419552756 2 0.05777442492079102 0 0.05552221604118413 17 0.04995197350980135 18 0.04523483131152709 10 0.04408028971237125 23 0.03399238814578381 21 0.03258140738736827 11 0.03151765436666479 19 0.02332232425296796 24 0.02139042839032655 16 0.017416688343023647 15 0.015015912737186606 14 0.012094775929761525 20 0.005253765878490918 12 0.005084235725180704 __DUMMY__ 0.0032029628906085393 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.08170546141011158 22 0.06901819468700064 12 0.061416805681279454 11 0.06078988821451211 18 0.05469113525006674 10 0.05143450850786546 9 0.050688389069966894 13 0.049770222855196396 23 0.04436370790007467 14 0.04342233327867558 19 0.041784700283732955 24 0.041643131739879 4 0.036399940120474976 5 0.035801712030862264 0 0.033836783638816446 6 0.03208412857546142 20 0.030732493644294822 3 0.03056587778739334 7 0.02933839653811294 8 0.029321338384978093 1 0.02919512854530049 2 0.028742738192956897 17 0.024987098744403784 15 0.004741223222245515 __DUMMY__ 0.003515869859950928 16 8.791836386549723E-6 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.11124494833651886 13 0.10145921676204979 21 0.08590101941871187 19 0.06836032833771531 18 0.06517976352819663 20 0.06341959474644826 11 0.06227557613928198 14 0.06195020786843842 23 0.04883315604332137 10 0.048484805501038196 22 0.04678381481882885 24 0.043307486586312796 16 0.04185012178979214 17 0.03801879536463451 0 0.03220539148354395 15 0.020590013466073784 9 0.016603278476462882 6 0.009939354484787735 4 0.00982372031814725 5 0.009718472142933797 1 0.0036292810649717656 7 0.0035118042990799096 8 0.0034623542955066746 2 0.0034474947272033 __DUMMY__ 0.0 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.14031736479107862 13 0.1275362691062375 21 0.10382595283056657 23 0.0746479101744511 11 0.06709673659682285 14 0.06273678728137987 24 0.05974453367973979 20 0.05042144237422216 22 0.0426852091947336 19 0.04239342955641632 18 0.03748079079937871 4 0.025074075542045535 6 0.024379233279197218 5 0.024160839982964994 10 0.01744340595968391 8 0.014940908522712824 7 0.014638778173324046 1 0.014418829742304235 2 0.014329692307851668 3 0.009805065827597088 0 0.009488397763203359 17 0.009143466036091747 16 0.006993738930867659 9 0.0032005667494137582 __DUMMY__ 0.0030965747977149635 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.08834825056279158 17 0.08083413191349383 9 0.0633009573687622 22 0.06048742473003602 11 0.060054373089537164 16 0.05669452254972144 10 0.05617551535663706 18 0.053853019508754534 6 0.04474546388769145 8 0.0417668832189168 7 0.04156333076501375 1 0.04145440677931155 2 0.04137312576278183 4 0.04048009711701304 5 0.04008014678599598 19 0.03773812872947505 3 0.03599124044717331 21 0.03196405656901766 12 0.02686705627697585 23 0.02112919264414842 13 0.014976337349624584 15 0.012590715393096565 14 0.003948210714827818 24 0.001823039462871186 __DUMMY__ 0.001744265107876389 20 1.610790845490357E-5 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 10 0.10513753359930877 18 0.09624863581857938 11 0.08139914375593045 22 0.08090256134837577 21 0.07503933009130594 9 0.06613104328729126 14 0.06544273231661311 0 0.06250056535938368 13 0.059305247868864895 19 0.0516459718493339 12 0.051070211251861904 17 0.04325786984789657 15 0.022056046330193837 20 0.019974211453926864 4 0.017098220302527823 5 0.016771787316457173 23 0.014764208213562996 6 0.014026319058164195 1 0.010192085917413229 8 0.010123567014568659 7 0.010091833182262791 3 0.009709334282858532 2 0.009506457456557786 16 0.0038422471026244662 24 0.002400295581371513 __DUMMY__ 0.0013625403927646378 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.08683782265597029 17 0.07868198381960598 9 0.0638595673091897 22 0.06182444774583884 11 0.061019193672776695 10 0.06073119296452996 18 0.057760817987318865 16 0.05399814326338621 6 0.04224932174489304 19 0.03951525012280644 8 0.039416225430690455 7 0.03924958505103938 1 0.039076051566521615 2 0.038707296116097016 4 0.0385350978413473 5 0.03801671884651419 3 0.03386356768265119 21 0.033778751104296144 12 0.026716030498986222 23 0.019927988693624603 13 0.016760418134378702 15 0.01465413707508726 14 0.0087121461294087 20 0.0024346540767844153 __DUMMY__ 0.001978021656687571 24 0.0016955688095690498 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.07476704092276165 4 0.05978652521954283 22 0.059681309875123004 8 0.05919220471896323 7 0.059123960433620684 6 0.05911485961721111 1 0.05889177839907421 5 0.058879978514698235 3 0.05794491237076503 2 0.05786750776177676 0 0.055486356189251275 17 0.05003424088976833 18 0.04492525352754169 10 0.04382553024494404 23 0.03378201672692228 21 0.03236563016844029 11 0.03150841348324326 19 0.023261346240021533 24 0.021529809230425228 16 0.017366129140858454 15 0.01508734372167581 14 0.012188595602941684 20 0.005107070645966916 12 0.005079220990841207 __DUMMY__ 0.0032029653636210576 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.07487739362729608 4 0.059775669645365265 22 0.059665049675709236 7 0.05923625546850383 8 0.05922844776006938 6 0.059129869942605516 1 0.059077037150611945 5 0.05885406767243407 3 0.05783677350198296 2 0.05775898290229649 0 0.055480136540786575 17 0.05019904580571372 18 0.04520356122407569 10 0.04372049068144887 23 0.03397231352174093 21 0.03251693696015364 11 0.031370955190966825 19 0.023220406930904113 24 0.02142054032639087 16 0.01730936631448672 15 0.014885041630445527 14 0.012070840801095016 12 0.004998532522536103 20 0.004989321311772214 __DUMMY__ 0.0032029628906085398 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.10049071732038439 19 0.09448218360784828 22 0.08422450404333198 20 0.07944144300693914 18 0.07741744776015869 24 0.07478097953690668 11 0.07188850734092633 12 0.06684916672258966 23 0.05025702181560489 10 0.043632904753606316 16 0.04349178958885387 14 0.04238311952825528 17 0.0422837467724953 13 0.03185500746791443 9 0.02878917367088377 0 0.021840642653613775 15 0.01672024714984696 4 0.009342518890474775 5 0.008497512629267465 3 0.004927075414890974 6 0.00222625880427862 __DUMMY__ 0.0016874484109271183 7 9.762802291405004E-4 8 9.650240199368355E-4 1 5.3064089177684E-4 2 1.863796914716064E-5 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.10275550659476931 12 0.09715443382769531 11 0.08547420909389193 22 0.07581483926207731 19 0.07408696819334594 13 0.07281225716164744 18 0.06898326590304348 10 0.05569404838318755 20 0.05107018558409371 14 0.04843297013334449 24 0.044506489055156646 0 0.04314398114689755 17 0.041975961568439184 23 0.03917701810936932 16 0.03452184207740433 9 0.031855830851359526 4 0.009269002689368696 5 0.008939609445917897 6 0.006400620395897346 __DUMMY__ 0.0018329521271060799 7 0.0015160888877080393 8 0.0012307140493285783 2 0.0011379580220174394 1 0.001117443238156102 3 9.809635839429964E-4 15 1.1484061483359984E-4 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.0974967719052308 18 0.08517573335783922 22 0.07171499188149869 11 0.07154440469274806 9 0.06635950854454989 14 0.062433597014454945 21 0.06164715444614145 0 0.06073285278433935 13 0.053732323476034384 19 0.04177271550912336 12 0.04151017194962591 17 0.0415036686615472 15 0.02853272384116317 4 0.025445692295034985 5 0.02501718582486992 6 0.023182986808998524 1 0.020071206273125048 7 0.020066384232869793 8 0.020037746015103816 2 0.019437867696172336 3 0.019412151568998018 23 0.016293790135922484 20 0.016211205861304496 16 0.004913149713003728 __DUMMY__ 0.003042767891811974 24 0.0027112476184885255 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.11075489246440882 13 0.10113604029031971 21 0.08558995855242975 19 0.06838366575422838 18 0.0653182914924023 20 0.0633631557567485 11 0.06221498821032403 14 0.06189695887112071 23 0.04911526543094085 10 0.0485789688820282 22 0.04697115227389783 24 0.043121802091315435 16 0.04198097663304834 17 0.037974784791984045 0 0.03243196807539489 15 0.02084657738832055 9 0.01663424109464818 6 0.01003859875480835 4 0.00986425140008596 5 0.009711777391866024 7 0.00358455974709673 8 0.0035421297582384956 1 0.003521110849916897 2 0.003423884044426969 __DUMMY__ 0.0 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 14 0.1046859351226662 13 0.10275379010187698 10 0.09892820153884695 18 0.08842438454870569 12 0.07191016740863979 11 0.06995412707550608 21 0.06661029603787878 15 0.06427188134129233 22 0.053272930078181034 19 0.051061021440467584 0 0.04362280522157096 20 0.04193006564421066 9 0.04039281449097781 17 0.03149150370451599 23 0.019213322710366087 16 0.015936103585393078 24 0.008870329245977611 4 0.007306554408784555 5 0.007225472437739258 6 0.006076075093886295 8 0.0016419917678679322 1 0.0015697731101884744 7 0.0015682914846508976 2 0.0012821623998089634 __DUMMY__ 2.1576137826108818E-18 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.10275239055736085 22 0.09215599319035048 11 0.08708778725464908 19 0.07663041082897085 18 0.06729111348048035 12 0.06707482498873471 10 0.05260091121179793 24 0.0515197975143896 17 0.045738045112867755 9 0.04419720504468707 20 0.04387053415037201 0 0.043374615174846975 14 0.038546580386375776 13 0.0360103724109074 23 0.03491929236108718 16 0.033432006557125436 4 0.014606444900319414 5 0.014103270439624985 __DUMMY__ 0.010912402371344837 6 0.009233513991558872 3 0.008763931312364923 7 0.006745276902743578 8 0.006389862687101787 1 0.006265619964318929 2 0.00575175481911179 15 2.6042386507330833E-5 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 12 0.09485354454910216 21 0.09483379035444764 11 0.0855884319714227 13 0.07735203251635513 22 0.07173584771487439 18 0.06108283227865941 19 0.059295926761629814 10 0.05550909433437002 14 0.04852064584493291 0 0.047615356206501896 17 0.03999789299880013 20 0.037767295790310476 23 0.0367073725041038 24 0.03596268514291182 9 0.03493832328995194 16 0.028409531201175148 4 0.015721309561752946 5 0.015103050917422598 6 0.014044607443564961 7 0.008744036615494744 8 0.00854756268564057 1 0.00848804513598345 2 0.008202208170508075 3 0.006789223613268295 __DUMMY__ 0.004189352396814813 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.09368951557326655 10 0.08930048367028635 19 0.07743188292747348 11 0.07608080439833002 21 0.07525983475863017 22 0.0721088230459568 14 0.06007658303658274 12 0.06005915017468594 0 0.055777043602191025 13 0.05575765997804607 17 0.0529993730841361 20 0.050643626202092104 9 0.04617983278200007 16 0.03971118914684653 15 0.03043798265509136 24 0.02305988150100847 23 0.02142726262238104 4 0.005838069106061631 5 0.005719897303580951 __DUMMY__ 0.0036060147995327562 6 0.00327754339679122 3 6.293671157657274E-4 7 3.468373110899186E-4 8 2.46638665136627E-4 1 2.4348383046221805E-4 2 9.121931257430098E-5 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.09804555108686924 12 0.0960290330765005 11 0.08552005899831992 13 0.075196283872621 22 0.07302906033825805 19 0.06600595147738153 18 0.06429918145398487 10 0.055476869706284 14 0.04859587524541782 0 0.045405761922847614 20 0.044023291577045105 17 0.04073743755317975 24 0.04028859301929039 23 0.03758818800565563 9 0.03305835973554609 16 0.03125249913318583 4 0.012951966004455875 5 0.012245402184366056 6 0.010640331298360286 __DUMMY__ 0.005727403662858282 7 0.005270166173422733 8 0.00508380197914269 1 0.004930777221405196 2 0.004683523831261623 3 0.003848252129224679 15 6.637931311508324E-5 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 10 0.10129114669317393 18 0.09205641271843953 11 0.08165431502643651 22 0.0802477716952423 21 0.07541387790193375 9 0.06520101759769963 14 0.06419300737937003 0 0.061866035712799354 13 0.06116888115088566 12 0.053918647531115194 19 0.048720928900054965 17 0.04180346361356701 15 0.01968430161751537 4 0.018832379630733434 5 0.018495715299043487 20 0.01802400728218828 23 0.016034579404514564 6 0.015884575569278442 1 0.011784067871096404 8 0.011781362978562119 7 0.011716195205276917 2 0.011229257002495796 3 0.011184510935037452 24 0.0036205902984689214 16 0.0027668096786590706 __DUMMY__ 0.0014261413064116497 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.08382549368197093 17 0.07717024285673897 9 0.0633220763811951 22 0.05984797200929041 11 0.05739244267178386 16 0.05273596277881931 10 0.05109523998709066 18 0.05031929631861622 6 0.0474441807234609 8 0.044459499074544245 7 0.04415930239229507 1 0.043963078232807574 4 0.043513327273413546 2 0.043490599126708385 5 0.04280683965964549 3 0.03822410185808994 19 0.03612075361474058 21 0.03388420324420607 12 0.030186108429483056 23 0.024444663721467717 13 0.016304128969830252 15 0.006704215532640338 24 0.004209709651290666 __DUMMY__ 0.002462858143906999 14 0.001913703665963813 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.12690388272720757 12 0.10694950617078451 14 0.09639663042309099 21 0.07575552850408547 18 0.06760576033017905 10 0.06619922800195484 11 0.06026552232724945 20 0.05359732449186774 15 0.0499274363682724 19 0.04864298686762488 23 0.040842425664536906 22 0.03797970399759666 0 0.028311001631838455 24 0.027177773496503375 17 0.02421692855907115 16 0.02212956487042808 9 0.01893421233896089 6 0.010718875013945943 4 0.010163158721795379 5 0.009868311238006596 8 0.004093295153672101 1 0.004077811408134594 7 0.004052066680315415 2 0.003889100868846927 __DUMMY__ 0.0013019641440307499 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.07506321972408957 4 0.05984205999678798 22 0.0594841256336677 7 0.05937733796080017 8 0.05926336534412043 6 0.05921337823066828 1 0.0590810671460653 5 0.058734792738073534 3 0.05780205497361337 2 0.05772774498154166 0 0.05556078693578788 17 0.05018685237007552 18 0.04506081446333601 10 0.04390697464630446 23 0.03404151006703417 21 0.03261207877958655 11 0.03152970991411779 19 0.02330113299485619 24 0.021503228853463664 16 0.01738190160741585 15 0.01479682156704553 14 0.012046380013791897 20 0.005189434742369264 12 0.004982871293277018 __DUMMY__ 0.002310355022110428 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.08648841328860764 0 0.08184147427094544 16 0.06856618914842914 9 0.06038381511394021 22 0.058557621673792075 18 0.05426944670580818 11 0.04891994369657148 10 0.04539533076067608 19 0.04516564355710641 6 0.044176430318972816 8 0.04166405375206967 7 0.04142162436064038 1 0.041337314062689 2 0.04068193119435023 4 0.039828970025313534 5 0.039605469880187726 3 0.03542794898445359 21 0.02993687510777897 23 0.02468567030147219 12 0.02367363529713417 15 0.017663508378727995 20 0.010581632644512728 24 0.010518111688074075 13 0.007075928020419105 __DUMMY__ 0.0021230084470243273 14 1.0009320302684554E-5 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.08840217086112971 0 0.08305528269914327 16 0.07170814409455245 9 0.05934045239463576 22 0.056320662967765445 18 0.05364597393763293 11 0.048194586196214494 10 0.04515699976259484 19 0.04507856655794885 6 0.044032502009549564 8 0.04140210777944901 7 0.04115363896386287 1 0.04114925759974747 2 0.04033732343250459 4 0.03920786878334477 5 0.038814381545866555 3 0.034600872149953374 21 0.02829142742394225 23 0.024740432150886393 12 0.024557661982247313 15 0.02008655044629524 20 0.010927999150224915 24 0.00964344788147083 13 0.008521908349987416 __DUMMY__ 0.0016055491286620816 14 2.423175038755227E-5 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.08692403885170184 17 0.0798332642578963 9 0.06384492926460972 22 0.06052855801716189 11 0.05831243840796408 16 0.05561230128956901 10 0.054447899966423664 18 0.05273543984201927 6 0.045990502050095 8 0.04302492109982766 7 0.04285367262721183 1 0.042638007826179526 2 0.042522710595686734 4 0.041876817209348015 5 0.041550178934297945 3 0.037347223916549384 19 0.03712654315903377 21 0.03168121130148178 12 0.025776089511249073 23 0.02228007948408249 13 0.013090679366390821 15 0.011959433400589366 24 0.0031565466415549716 14 0.002842650068764244 __DUMMY__ 0.0020275278445569 20 1.63350657544712E-5 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 9 0.06346269520914556 4 0.05724971864163047 5 0.056970067329096895 3 0.0568976694213406 22 0.05681734421787432 8 0.05639838739582849 7 0.0562887246929594 6 0.056013202150628875 1 0.05595219469329913 2 0.05591317357257692 0 0.04740127520062744 17 0.04723585775074982 23 0.04156546863664101 18 0.03945679972350125 21 0.03701742262136641 24 0.03627240207995519 10 0.03291644194838476 19 0.03286977259573254 11 0.030968157943778062 16 0.02607232316807194 20 0.019207644489084345 15 0.014597512069320452 12 0.012981903931579797 14 0.009473840516826069 __DUMMY__ 0.0 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.10413054570635683 18 0.09118345649053154 11 0.06891367525302429 0 0.06641282828283647 22 0.06579277422336792 14 0.0656278327945121 9 0.0618322543087665 19 0.05354651771634706 17 0.0525544813987001 21 0.049793233970034 13 0.04885645763040394 15 0.046168078049199604 12 0.03267068146931599 16 0.027571147042566232 20 0.026977531272152286 4 0.01763717338552293 5 0.01719839831668782 6 0.01650169164041377 7 0.014606157213560778 8 0.014507286075396303 1 0.014453440845070593 2 0.014010538658774286 3 0.013760432056281259 23 0.011173592732945069 __DUMMY__ 0.004119793467232407 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.12340408328659258 22 0.09409619622843592 21 0.08334462296561912 0 0.08150072133474473 10 0.07645568647781902 18 0.07559173993743427 17 0.07099959131101287 12 0.06593492021840056 19 0.0636064106630767 16 0.048327388139597825 9 0.048051090999029024 13 0.045474060706279684 14 0.03556377596240714 20 0.015360727215115583 24 0.013664707443960448 23 0.010092381570203897 4 0.009367688119141224 6 0.009056274455010935 5 0.008475479077355302 15 0.005037020179384931 __DUMMY__ 0.004378769901095162 8 0.0033493274169718737 7 0.003231763304363176 1 0.0028416258792807814 2 0.00279394720766722 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.10299886361801767 10 0.0851258361849689 21 0.08144729823294027 18 0.07916089955451981 22 0.07794731269481879 12 0.0725261162429674 13 0.06606241005792757 19 0.06545926311168497 0 0.06381992697138086 14 0.06043665425269572 17 0.05079612273401078 9 0.0417491273481719 16 0.03623645010963148 20 0.03350185699191109 15 0.022486363761479188 24 0.02086002948541332 23 0.01814606371903479 5 0.006834895873277627 4 0.006828349529883398 6 0.0050435267751164055 2 7.788510532116062E-4 7 6.527656380881419E-4 1 6.16080585750874E-4 8 4.8493547309739576E-4 __DUMMY__ 2.15761731943331E-18 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.09727563525609273 18 0.08516591489494846 22 0.07152117200500124 11 0.07118851418514999 9 0.06620859334188113 14 0.062236328612256774 21 0.06130570044830104 0 0.06053662868932161 13 0.05346539263495728 19 0.04148678929633533 12 0.04135844171442982 17 0.04134258539933771 15 0.028568379149322906 4 0.025570127937580792 5 0.025208107341755277 6 0.023365795026839102 7 0.02031394758034924 1 0.020295668185768723 8 0.020262415944454545 2 0.01969123467206349 3 0.019668030970420323 23 0.016653027181116803 20 0.016472384951103484 16 0.004953967477116784 __DUMMY__ 0.0030632920576228423 24 0.0028219250464725757 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.07754685374626552 18 0.07654885106243672 10 0.07519682556918082 9 0.07364246683625247 0 0.0693691715357891 17 0.0625954060884987 11 0.05954742846996591 19 0.05197135880178451 21 0.04782411450266446 4 0.03579411264297104 5 0.03495032149166235 6 0.03391467116920934 8 0.032999136545955265 7 0.0328436687628574 3 0.032607160610287796 1 0.03254646820056031 2 0.03203317819357246 16 0.02949304417553254 14 0.023412450010115854 23 0.019183281278634452 15 0.016084308106856383 20 0.015565676107938417 12 0.01353614093423946 24 0.01196301142498492 13 0.005216999973471879 __DUMMY__ 0.0036138937583119765 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 9 0.06346269520914556 4 0.05724971864163047 5 0.056970067329096895 3 0.0568976694213406 22 0.05681734421787432 8 0.05639838739582849 7 0.0562887246929594 6 0.056013202150628875 1 0.05595219469329913 2 0.05591317357257692 0 0.04740127520062744 17 0.04723585775074982 23 0.04156546863664101 18 0.03945679972350125 21 0.03701742262136641 24 0.03627240207995519 10 0.03291644194838476 19 0.03286977259573254 11 0.030968157943778062 16 0.02607232316807194 20 0.019207644489084345 15 0.014597512069320452 12 0.012981903931579797 14 0.009473840516826069 __DUMMY__ 0.0 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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.08621245643180186 0 0.08140018333321214 16 0.06832122850048819 9 0.06080512052629977 22 0.05812033424483615 18 0.053888917711884005 11 0.04873885667082195 10 0.045321563183742 19 0.045063028540739715 6 0.0443272347761817 8 0.04176956816143439 7 0.04167044368809947 1 0.04162862855607647 2 0.04075673612396855 4 0.03998690333096262 5 0.039729902987233785 3 0.0355213584626452 21 0.030073703596892265 23 0.024763867412945645 12 0.02376920148249941 15 0.017876006647187796 20 0.010720298225583349 24 0.010419175896681563 13 0.0069822610939389755 __DUMMY__ 0.002123011081121212 14 1.0009332721626868E-5 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 20 0.1186742796115335 19 0.11829769460524497 18 0.10464156113978783 24 0.08380499643246848 21 0.07207551961835894 23 0.06636906484162952 22 0.06407581395704967 16 0.060999838758584064 17 0.05595862878679609 12 0.04576824314088581 10 0.037723242668861 15 0.028740449537046388 9 0.026572752269619623 11 0.0255911613042056 14 0.020340338166487046 4 0.011684733968088517 5 0.01121635034340293 0 0.010126970026592156 3 0.008596959685534812 8 0.005342814347992251 7 0.0052000556516563 6 0.005137231881099715 1 0.00418806978996193 13 0.0036526645728128596 2 0.0036244964742552224 __DUMMY__ 0.00159606842004479 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.08012348293675656 19 0.07827996589644248 22 0.06693755338180626 20 0.06360966757190613 17 0.058348954434903476 21 0.056117098636894826 24 0.051857856427424125 9 0.05025252119866507 23 0.04575590621307808 16 0.04509935793302613 10 0.044484905017525375 0 0.03774955745441239 11 0.03636896281422607 4 0.030588609586082432 5 0.03039136677231268 12 0.028199056940261782 3 0.028023949556547044 6 0.02687077708213581 8 0.026551670020828488 7 0.02637786284991896 1 0.025847247973003838 2 0.025524138049101152 15 0.01937400793500892 14 0.01476044953652643 __DUMMY__ 0.002249510230832317 13 2.555635503732829E-4 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.0867268255933658 0 0.08204223932036864 16 0.06895425609431792 9 0.060169717064866464 22 0.058407261762296055 18 0.05425478613451603 11 0.04899021948362476 10 0.045402731317317 19 0.04520317810974221 6 0.04411379253061504 8 0.041582071348300186 7 0.04132569864227746 1 0.041246314074084404 2 0.0406027330682296 4 0.03971222061693574 5 0.03948216385919485 3 0.03528854269236392 21 0.029821033375102873 23 0.0246884431914185 12 0.02389177722333825 15 0.017809185548160893 20 0.010590832802159177 24 0.010413332387435961 13 0.0073270148266540115 __DUMMY__ 0.0019370036614818212 14 1.662527183217646E-5 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 12 0.0947975558476538 21 0.09396749550684047 11 0.08577528419320818 13 0.07804517313126394 22 0.07103886626774245 18 0.059489428006130385 19 0.05726083312780299 10 0.05558524435397636 14 0.04873766937421861 0 0.048104884272280386 17 0.03947593862698972 23 0.0360944462590806 20 0.03569168370966758 9 0.03536553850350485 24 0.03485925474928239 16 0.027541305736088054 4 0.016618802583218472 5 0.0161199861451885 6 0.015113252638452673 7 0.00962942060308155 8 0.00955456528741815 1 0.009409088331937359 2 0.009274369010671319 3 0.007681413922780651 __DUMMY__ 0.004768499811520505 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.12398648513088695 22 0.09483198496432826 21 0.0842376274914591 0 0.08104260386113381 10 0.07752051541022663 18 0.07631780749639104 17 0.06986818766241336 12 0.0656102076954132 19 0.06423485003030369 9 0.048390011633996914 16 0.04679956989751199 13 0.04514647593736953 14 0.036104768030362354 20 0.015408743514109088 24 0.01419031139994962 23 0.010544270476544087 4 0.009268884959175508 6 0.008644266178552669 5 0.008510850713726656 15 0.0045895444835196125 __DUMMY__ 0.0037735689336947063 8 0.003029785948173314 7 0.00288439440840346 1 0.0025427593235874584 2 0.002521524418767135 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.09543494987437212 12 0.0952868506079129 11 0.08572420357606114 13 0.07703932363696989 22 0.07196781044516377 18 0.06137038644934503 19 0.060243641554835206 10 0.055938688681225104 14 0.04878268736823224 0 0.04726933891048272 17 0.0398369838820847 20 0.038700068038613464 24 0.03667512721784336 23 0.03652442688750195 9 0.03476492587254059 16 0.02880437160570073 4 0.015324576165100587 5 0.01488667611289846 6 0.013574037136209366 7 0.008191958043248232 8 0.008027854346867619 1 0.007939217268959098 2 0.0077952507222031715 3 0.006462733996969141 __DUMMY__ 0.0034339115986593794 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.10279784597443005 10 0.08519213277699451 21 0.08136266982859655 18 0.07919823490421071 22 0.07781701628374375 12 0.07222428849430373 13 0.0659724866767989 19 0.06541305739214849 0 0.06375172265183093 14 0.06032612344907017 17 0.05073459776819701 9 0.04178895839789087 16 0.03627767191186912 20 0.03366114401819805 15 0.022523126414693777 24 0.02089512094068483 23 0.018470750232115196 4 0.00682890834631465 5 0.0067920153195018 6 0.005112307185238429 7 7.992344717002379E-4 2 7.749528649063579E-4 1 6.751137500618018E-4 8 6.105199464999803E-4 __DUMMY__ 2.157617920238063E-18 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.08707568375899627 17 0.07920495929357406 9 0.06542842984682079 22 0.0624942510459849 11 0.05932217109343159 10 0.0566108628285443 18 0.05459124299683752 16 0.05324930432628595 6 0.045351284578554744 8 0.042722816812541975 7 0.04246879941788098 1 0.042287647389278406 2 0.04194892642260996 4 0.04165056409122358 5 0.04112498030750343 19 0.03745836681095974 3 0.03715309369948625 21 0.03269932577868762 12 0.02407232130724728 23 0.020953425487597276 13 0.011915886781162737 15 0.01140260217529023 14 0.0038453344702596417 24 0.0031915924670537247 __DUMMY__ 0.0017579541755804627 20 1.8172636606588193E-5 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.11897656010014199 20 0.11881885308037995 18 0.10474079659945797 24 0.08431811817956568 21 0.07254212653096649 23 0.06626516971002672 22 0.06417827560930728 16 0.061176187839433724 17 0.056059910546218526 12 0.0461724346326694 10 0.03705590376024462 15 0.02929535644275876 9 0.027246880749582224 11 0.024783107176020214 14 0.020111319756111423 4 0.011715058118591554 5 0.011714731930506619 0 0.009262979937851213 3 0.008679387449514 6 0.005020954939338777 8 0.004945114170394926 7 0.0048576980886396205 1 0.004052952515478151 2 0.003640099460368773 13 0.002773953786542497 __DUMMY__ 0.00159606888988876 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 18 0.07153175926979032 22 0.06870869912849709 19 0.06445372710667006 17 0.058628430714726086 9 0.05788863676743996 21 0.05197535698115944 0 0.04772473991050076 10 0.04767415461008395 20 0.044531146473838795 11 0.04206669420284545 24 0.0407723737131934 16 0.03919578351263177 23 0.03896512156892982 4 0.03648620955837503 5 0.03591907352840716 3 0.03390263338467382 6 0.033761982766971274 8 0.033353892917509634 7 0.03325245757230646 1 0.03259775076934077 2 0.03224102446572582 12 0.02282922812493338 15 0.01502492576313317 14 0.013505492610484015 __DUMMY__ 0.0026034078540463387 13 4.0529672378608107E-4 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 1 0.0736602803184132 7 0.0732586530158125 8 0.07299945361614565 2 0.07259536056185986 6 0.0721972120873571 3 0.07210050570925561 4 0.071960129279593 5 0.07178445619619933 9 0.05916725575993991 23 0.05378400158767952 17 0.03991937632885288 22 0.03963024281381755 24 0.03834505602160293 0 0.037834946552152283 18 0.023815036649851386 21 0.021437837516428374 16 0.019766818206666845 15 0.016856153627624985 10 0.01644864670384413 19 0.014498790491543338 20 0.014420892882918757 11 0.012243828793932356 12 0.008363402679684757 14 0.002911662598823653 __DUMMY__ 0.0 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.07506321972408957 4 0.05984205999678798 22 0.0594841256336677 7 0.05937733796080017 8 0.05926336534412042 6 0.05921337823066828 1 0.0590810671460653 5 0.05873479273807353 3 0.05780205497361337 2 0.05772774498154166 0 0.05556078693578788 17 0.05018685237007552 18 0.04506081446333601 10 0.04390697464630446 23 0.03404151006703417 21 0.03261207877958655 11 0.03152970991411779 19 0.023301132994856193 24 0.021503228853463664 16 0.01738190160741585 15 0.014796821567045527 14 0.012046380013791897 20 0.005189434742369264 12 0.004982871293277018 __DUMMY__ 0.002310355022110428 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 1 0.0734053029680638 7 0.07333108944998588 8 0.07297324138433485 2 0.07244945419908014 6 0.07235201623295608 4 0.07203412862582066 3 0.0719549101147562 5 0.07168094398393313 9 0.059205085212687705 23 0.05379281844473115 17 0.03990343460705956 22 0.03970945136426443 24 0.038341716667928925 0 0.0378677266960036 18 0.023810769821046348 21 0.02139019781620525 16 0.0198259906419299 15 0.016866521002926176 10 0.016533757157828448 19 0.014493585448755153 20 0.014468750569808184 11 0.012290468480700445 12 0.008367699633314431 14 0.002950939475879559 __DUMMY__ 0.0 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 1 0.07362639206140201 7 0.07321984031987203 8 0.07297090339877273 2 0.07266794818837514 6 0.07218795103092102 3 0.07217257055913773 4 0.07195809751322464 5 0.07181691956571228 9 0.05913697323794273 23 0.05377308543066905 17 0.03990018465682535 22 0.03963300154591851 24 0.03833805046164517 0 0.037828586019947416 18 0.02380027969325214 21 0.021427809963569074 16 0.01976645382633656 15 0.016864664119005376 10 0.016455966226626133 19 0.014492083013364254 20 0.014417585378127798 11 0.012250445622488617 12 0.008371955219763744 14 0.002922252947100292 __DUMMY__ 0.0 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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 1 0.07364230979679676 7 0.07323377634883386 8 0.07297977607588688 2 0.07264515396545289 6 0.07218984698202321 3 0.07214983797052721 4 0.07195804881718518 5 0.07180715491011186 9 0.05914715474245454 23 0.053776969596794906 17 0.03990689365915219 22 0.03963068167927216 24 0.03833938556151744 0 0.03783026515337688 18 0.023805355918234485 21 0.021431883040629904 16 0.019766145120223986 15 0.016861109780946848 10 0.016452294064507513 19 0.014494351955016334 20 0.014417786283758836 11 0.01224722605078722 12 0.008368854555238925 14 0.0029177379712698732 __DUMMY__ 0.0 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.07462784671053586 22 0.05996590211342111 4 0.05961923316530543 7 0.05910927353772619 8 0.05910882276243529 6 0.05900975674212917 5 0.05880900118966202 1 0.05873276956274348 3 0.057900590309360456 2 0.05782798747461217 0 0.05559360106955264 17 0.05000841822107131 18 0.0452908069043497 10 0.044152331917241834 23 0.03399837689012406 21 0.032593272910786265 11 0.03155998391869048 19 0.02335403301703235 24 0.02138968875534042 16 0.017475350161972426 15 0.01507165105457743 14 0.012112946393598993 20 0.005261981803538332 12 0.005116020364078432 __DUMMY__ 0.0023103530501139484 false 1.0
900 21 0.09708892336888457 12 0.09513618169819399 11 0.08459358268476473 13 0.07460462911154067 22 0.07234535435014856 19 0.06502809964972603 18 0.06426055723982378 10 0.05522433047270314 14 0.04818067430554242 0 0.04515405099140586 20 0.04381102334219712 17 0.04041077602791566 24 0.03974969258744085 23 0.0372638036170479 9 0.03304589715637829 16 0.030797922414387443 4 0.012917209062389154 __DUMMY__ 0.012419916231831654 5 0.012227579250992755 6 0.010660569640918485 7 0.005480600037222885 8 0.00530025088006013 1 0.0052668585987776136 2 0.004915610938975177 3 0.00405349308271051 15 6.241325802057833E-5 false 0.0
901 21 0.09708892336888457 12 0.09513618169819399 11 0.08459358268476473 13 0.07460462911154067 22 0.07234535435014856 19 0.06502809964972603 18 0.06426055723982378 10 0.05522433047270314 14 0.04818067430554242 0 0.04515405099140586 20 0.04381102334219712 17 0.04041077602791566 24 0.03974969258744085 23 0.0372638036170479 9 0.03304589715637829 16 0.030797922414387443 4 0.012917209062389154 __DUMMY__ 0.012419916231831654 5 0.012227579250992755 6 0.010660569640918485 7 0.005480600037222885 8 0.00530025088006013 1 0.0052668585987776136 2 0.004915610938975177 3 0.00405349308271051 15 6.241325802057833E-5 false 0.0
902 21 0.10152667902947585 12 0.09660034656947265 11 0.08529839325444903 22 0.0751329594602709 13 0.07289953858742948 19 0.07260064065180273 18 0.06784781931494653 10 0.055415898601118556 20 0.04984318914484596 14 0.04829427113741788 24 0.04386838005412058 0 0.043484470346132974 17 0.04180974869155629 23 0.038628858811430654 16 0.03396146266870902 9 0.03185044981901515 4 0.00971608083342692 5 0.009199296021491856 6 0.006911829414919018 __DUMMY__ 0.0065701738088722135 7 0.0020155057449823604 8 0.001880095582251326 1 0.001637116347654895 2 0.0015765697129759243 3 0.0013296029293932497 15 1.0062346183817585E-4 false 0.0
905 21 0.09709626675322665 12 0.09507153122376184 11 0.08462265163656345 13 0.07451822215252274 22 0.07239317294009745 19 0.0650216036409109 18 0.064255642587084 10 0.05523282608925299 14 0.04814286273939555 0 0.04517846650172713 20 0.043776254134395814 17 0.040419293069280986 24 0.039749306573955055 23 0.03724174256902484 9 0.03308835106885242 16 0.030781674533383797 4 0.012935531715609426 __DUMMY__ 0.012404911240057551 5 0.012244976444270776 6 0.010672782823983143 7 0.005499200705228406 8 0.0053183000245802525 1 0.005286240798546555 2 0.004934374472291523 3 0.004080090098080181 15 3.372346391650171E-5 false 0.0
|
reznikmm/matreshka | Ada | 4,037 | 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.Office_Target_Frame_Attributes;
package Matreshka.ODF_Office.Target_Frame_Attributes is
type Office_Target_Frame_Attribute_Node is
new Matreshka.ODF_Office.Abstract_Office_Attribute_Node
and ODF.DOM.Office_Target_Frame_Attributes.ODF_Office_Target_Frame_Attribute
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Office_Target_Frame_Attribute_Node;
overriding function Get_Local_Name
(Self : not null access constant Office_Target_Frame_Attribute_Node)
return League.Strings.Universal_String;
end Matreshka.ODF_Office.Target_Frame_Attributes;
|
leo-brewin/adm-bssn-numerical | Ada | 8,244 | adb | package body BSSNBase is
-- overloaded operators for MetricPointArray
function "-" (Right : MetricPointArray) return MetricPointArray
is
tmp : MetricPointArray := Right;
begin
for i in Right'range(1) loop
tmp (i) := - Right (i);
end loop;
return tmp;
end "-";
function "-" (Left : MetricPointArray; Right : MetricPointArray) return MetricPointArray
is
tmp : MetricPointArray := Right;
begin
for i in Left'range(1) loop
tmp (i) := Left (i) - Right (i);
end loop;
return tmp;
end "-";
function "+" (Left : MetricPointArray; Right : MetricPointArray) return MetricPointArray
is
tmp : MetricPointArray := Right;
begin
for i in Left'range(1) loop
tmp (i) := Left (i) + Right (i);
end loop;
return tmp;
end "+";
function "*" (Left : Real; Right : MetricPointArray) return MetricPointArray
is
tmp : MetricPointArray := Right;
begin
for i in Right'Range(1) loop
tmp (i) := Left * Right (i);
end loop;
return tmp;
end "*";
function "/" (Left : MetricPointArray; Right : Real) return MetricPointArray
is
tmp : MetricPointArray := left;
begin
for i in Left'Range loop
tmp (i) := Left (i) / Right;
end loop;
return tmp;
end "/";
-- overloaded operators for ExtcurvPointArray
function "-" (Right : ExtcurvPointArray) return ExtcurvPointArray
is
tmp : ExtcurvPointArray := Right;
begin
for i in Right'range(1) loop
tmp (i) := - Right (i);
end loop;
return tmp;
end "-";
function "-" (Left : ExtcurvPointArray; Right : ExtcurvPointArray) return ExtcurvPointArray
is
tmp : ExtcurvPointArray := Right;
begin
for i in Left'range(1) loop
tmp (i) := Left (i) - Right (i);
end loop;
return tmp;
end "-";
function "+" (Left : ExtcurvPointArray; Right : ExtcurvPointArray) return ExtcurvPointArray
is
tmp : ExtcurvPointArray := Right;
begin
for i in Left'range(1) loop
tmp (i) := Left (i) + Right (i);
end loop;
return tmp;
end "+";
function "*" (Left : Real; Right : ExtcurvPointArray) return ExtcurvPointArray
is
tmp : ExtcurvPointArray := Right;
begin
for i in Right'Range(1) loop
tmp (i) := Left * Right (i);
end loop;
return tmp;
end "*";
function "/" (Left : ExtcurvPointArray; Right : Real) return ExtcurvPointArray
is
tmp : ExtcurvPointArray := left;
begin
for i in Left'Range loop
tmp (i) := Left (i) / Right;
end loop;
return tmp;
end "/";
-- overloaded operators for GammaPointArray
function "-" (Right : GammaPointArray) return GammaPointArray
is
tmp : GammaPointArray := Right;
begin
for i in Right'range(1) loop
tmp (i) := - Right (i);
end loop;
return tmp;
end "-";
function "-" (Left : GammaPointArray; Right : GammaPointArray) return GammaPointArray
is
tmp : GammaPointArray := Right;
begin
for i in Left'range(1) loop
tmp (i) := Left (i) - Right (i);
end loop;
return tmp;
end "-";
function "+" (Left : GammaPointArray; Right : GammaPointArray) return GammaPointArray
is
tmp : GammaPointArray := Right;
begin
for i in Left'range(1) loop
tmp (i) := Left (i) + Right (i);
end loop;
return tmp;
end "+";
function "*" (Left : Real; Right : GammaPointArray) return GammaPointArray
is
tmp : GammaPointArray := Right;
begin
for i in Right'Range(1) loop
tmp (i) := Left * Right (i);
end loop;
return tmp;
end "*";
function "/" (Left : GammaPointArray; Right : Real) return GammaPointArray
is
tmp : GammaPointArray := left;
begin
for i in Left'Range loop
tmp (i) := Left (i) / Right;
end loop;
return tmp;
end "/";
-- elementary operations on symmetric 3x3 matrices gab and Kab
Function symm_inverse (gab : MetricPointArray)
Return MetricPointArray
is
inv : MetricPointArray;
det : Real;
begin
inv (xx) := gab (yy) * gab (zz) - gab (yz) * gab (yz);
inv (xy) := - gab (xy) * gab (zz) + gab (xz) * gab (yz);
inv (xz) := gab (xy) * gab (yz) - gab (xz) * gab (yy);
inv (yy) := gab (xx) * gab (zz) - gab (xz) * gab (xz);
inv (yz) := - gab (xx) * gab (yz) + gab (xy) * gab (xz);
inv (zz) := gab (xx) * gab (yy) - gab (xy) * gab (xy);
det := inv(xx)*gab(xx) + inv(xy)*gab(xy) + inv(xz)*gab(xz);
inv (xx) := inv (xx) / det;
inv (xy) := inv (xy) / det;
inv (xz) := inv (xz) / det;
inv (yy) := inv (yy) / det;
inv (yz) := inv (yz) / det;
inv (zz) := inv (zz) / det;
Return inv;
end symm_inverse;
Function symm_det (gab : MetricPointArray)
Return Real
is
tmp_xx, tmp_xy, tmp_xz : Real;
begin
tmp_xx := gab (yy) * gab (zz) - gab (yz) * gab (yz);
tmp_xy := - gab (xy) * gab (zz) + gab (xz) * gab (yz);
tmp_xz := gab (xy) * gab (yz) - gab (xz) * gab (yy);
Return tmp_xx*gab(xx) + tmp_xy*gab(xy) + tmp_xz*gab(xz);
end symm_det;
Function symm_trace (mat : ExtcurvPointArray;
iab : MetricPointArray)
Return Real
is
trace : Real;
begin
trace := iab(xx)*mat(xx) + iab(yy)*mat(yy) + iab(zz)*mat(zz)
+ 2.0*(iab(xy)*mat(xy) + iab(xz)*mat(xz) + iab(yz)*mat(yz));
Return trace;
end symm_trace;
Function symm_raise_indices (Mdn : MetricPointArray;
iab : MetricPointArray)
Return MetricPointArray
is
t01, t02, t03, t04, t05, t06, t07, t08, t09 : Real;
Mup : MetricPointArray;
begin
t01 := Mdn(xx)*iab(xx) + Mdn(xy)*iab(xy) + Mdn(xz)*iab(xz);
t02 := Mdn(yy)*iab(yy) + Mdn(xy)*iab(xy) + Mdn(yz)*iab(yz);
t03 := Mdn(zz)*iab(zz) + Mdn(xz)*iab(xz) + Mdn(yz)*iab(yz);
t04 := Mdn(xy)*iab(xx) + Mdn(yy)*iab(xy) + Mdn(yz)*iab(xz);
t05 := Mdn(xz)*iab(xx) + Mdn(yz)*iab(xy) + Mdn(zz)*iab(xz);
t06 := Mdn(xx)*iab(xy) + Mdn(xy)*iab(yy) + Mdn(xz)*iab(yz);
t07 := Mdn(xz)*iab(xy) + Mdn(yz)*iab(yy) + Mdn(zz)*iab(yz);
t08 := Mdn(xx)*iab(xz) + Mdn(xy)*iab(yz) + Mdn(xz)*iab(zz);
t09 := Mdn(xy)*iab(xz) + Mdn(yy)*iab(yz) + Mdn(yz)*iab(zz);
Mup (xx) := iab(xx)*t01 + iab(xy)*t04 + iab(xz)*t05;
Mup (xy) := iab(xy)*t01 + iab(yy)*t04 + iab(yz)*t05;
Mup (xz) := iab(xz)*t01 + iab(yz)*t04 + iab(zz)*t05;
Mup (yy) := iab(xy)*t06 + iab(yy)*t02 + iab(yz)*t07;
Mup (yz) := iab(xz)*t06 + iab(yz)*t02 + iab(zz)*t07;
Mup (zz) := iab(xz)*t08 + iab(yz)*t09 + iab(zz)*t03;
return Mup;
end symm_raise_indices;
Function symm_raise_indices (Mdn : ExtcurvPointArray;
iab : MetricPointArray)
Return ExtcurvPointArray
is
t01, t02, t03, t04, t05, t06, t07, t08, t09 : Real;
Mup : ExtcurvPointArray;
begin
t01 := Mdn(xx)*iab(xx) + Mdn(xy)*iab(xy) + Mdn(xz)*iab(xz);
t02 := Mdn(yy)*iab(yy) + Mdn(xy)*iab(xy) + Mdn(yz)*iab(yz);
t03 := Mdn(zz)*iab(zz) + Mdn(xz)*iab(xz) + Mdn(yz)*iab(yz);
t04 := Mdn(xy)*iab(xx) + Mdn(yy)*iab(xy) + Mdn(yz)*iab(xz);
t05 := Mdn(xz)*iab(xx) + Mdn(yz)*iab(xy) + Mdn(zz)*iab(xz);
t06 := Mdn(xx)*iab(xy) + Mdn(xy)*iab(yy) + Mdn(xz)*iab(yz);
t07 := Mdn(xz)*iab(xy) + Mdn(yz)*iab(yy) + Mdn(zz)*iab(yz);
t08 := Mdn(xx)*iab(xz) + Mdn(xy)*iab(yz) + Mdn(xz)*iab(zz);
t09 := Mdn(xy)*iab(xz) + Mdn(yy)*iab(yz) + Mdn(yz)*iab(zz);
Mup (xx) := iab(xx)*t01 + iab(xy)*t04 + iab(xz)*t05;
Mup (xy) := iab(xy)*t01 + iab(yy)*t04 + iab(yz)*t05;
Mup (xz) := iab(xz)*t01 + iab(yz)*t04 + iab(zz)*t05;
Mup (yy) := iab(xy)*t06 + iab(yy)*t02 + iab(yz)*t07;
Mup (yz) := iab(xz)*t06 + iab(yz)*t02 + iab(zz)*t07;
Mup (zz) := iab(xz)*t08 + iab(yz)*t09 + iab(zz)*t03;
return Mup;
end symm_raise_indices;
end BSSNBase;
|
AdaCore/Ada_Drivers_Library | Ada | 26,231 | ads | -- This spec has been automatically generated from STM32F7x9.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.ADC is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- status register
type SR_Register is record
-- Analog watchdog flag
AWD : Boolean := False;
-- Regular channel end of conversion
EOC : Boolean := False;
-- Injected channel end of conversion
JEOC : Boolean := False;
-- Injected channel start flag
JSTRT : Boolean := False;
-- Regular channel start flag
STRT : Boolean := False;
-- Overrun
OVR : Boolean := False;
-- unspecified
Reserved_6_31 : HAL.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
AWD at 0 range 0 .. 0;
EOC at 0 range 1 .. 1;
JEOC at 0 range 2 .. 2;
JSTRT at 0 range 3 .. 3;
STRT at 0 range 4 .. 4;
OVR at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
subtype CR1_AWDCH_Field is HAL.UInt5;
subtype CR1_DISCNUM_Field is HAL.UInt3;
subtype CR1_RES_Field is HAL.UInt2;
-- control register 1
type CR1_Register is record
-- Analog watchdog channel select bits
AWDCH : CR1_AWDCH_Field := 16#0#;
-- Interrupt enable for EOC
EOCIE : Boolean := False;
-- Analog watchdog interrupt enable
AWDIE : Boolean := False;
-- Interrupt enable for injected channels
JEOCIE : Boolean := False;
-- Scan mode
SCAN : Boolean := False;
-- Enable the watchdog on a single channel in scan mode
AWDSGL : Boolean := False;
-- Automatic injected group conversion
JAUTO : Boolean := False;
-- Discontinuous mode on regular channels
DISCEN : Boolean := False;
-- Discontinuous mode on injected channels
JDISCEN : Boolean := False;
-- Discontinuous mode channel count
DISCNUM : CR1_DISCNUM_Field := 16#0#;
-- unspecified
Reserved_16_21 : HAL.UInt6 := 16#0#;
-- Analog watchdog enable on injected channels
JAWDEN : Boolean := False;
-- Analog watchdog enable on regular channels
AWDEN : Boolean := False;
-- Resolution
RES : CR1_RES_Field := 16#0#;
-- Overrun interrupt enable
OVRIE : Boolean := False;
-- unspecified
Reserved_27_31 : HAL.UInt5 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR1_Register use record
AWDCH at 0 range 0 .. 4;
EOCIE at 0 range 5 .. 5;
AWDIE at 0 range 6 .. 6;
JEOCIE at 0 range 7 .. 7;
SCAN at 0 range 8 .. 8;
AWDSGL at 0 range 9 .. 9;
JAUTO at 0 range 10 .. 10;
DISCEN at 0 range 11 .. 11;
JDISCEN at 0 range 12 .. 12;
DISCNUM at 0 range 13 .. 15;
Reserved_16_21 at 0 range 16 .. 21;
JAWDEN at 0 range 22 .. 22;
AWDEN at 0 range 23 .. 23;
RES at 0 range 24 .. 25;
OVRIE at 0 range 26 .. 26;
Reserved_27_31 at 0 range 27 .. 31;
end record;
subtype CR2_JEXTSEL_Field is HAL.UInt4;
subtype CR2_JEXTEN_Field is HAL.UInt2;
subtype CR2_EXTSEL_Field is HAL.UInt4;
subtype CR2_EXTEN_Field is HAL.UInt2;
-- control register 2
type CR2_Register is record
-- A/D Converter ON / OFF
ADON : Boolean := False;
-- Continuous conversion
CONT : Boolean := False;
-- unspecified
Reserved_2_7 : HAL.UInt6 := 16#0#;
-- Direct memory access mode (for single ADC mode)
DMA : Boolean := False;
-- DMA disable selection (for single ADC mode)
DDS : Boolean := False;
-- End of conversion selection
EOCS : Boolean := False;
-- Data alignment
ALIGN : Boolean := False;
-- unspecified
Reserved_12_15 : HAL.UInt4 := 16#0#;
-- External event select for injected group
JEXTSEL : CR2_JEXTSEL_Field := 16#0#;
-- External trigger enable for injected channels
JEXTEN : CR2_JEXTEN_Field := 16#0#;
-- Start conversion of injected channels
JSWSTART : Boolean := False;
-- unspecified
Reserved_23_23 : HAL.Bit := 16#0#;
-- External event select for regular group
EXTSEL : CR2_EXTSEL_Field := 16#0#;
-- External trigger enable for regular channels
EXTEN : CR2_EXTEN_Field := 16#0#;
-- Start conversion of regular channels
SWSTART : Boolean := False;
-- unspecified
Reserved_31_31 : HAL.Bit := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR2_Register use record
ADON at 0 range 0 .. 0;
CONT at 0 range 1 .. 1;
Reserved_2_7 at 0 range 2 .. 7;
DMA at 0 range 8 .. 8;
DDS at 0 range 9 .. 9;
EOCS at 0 range 10 .. 10;
ALIGN at 0 range 11 .. 11;
Reserved_12_15 at 0 range 12 .. 15;
JEXTSEL at 0 range 16 .. 19;
JEXTEN at 0 range 20 .. 21;
JSWSTART at 0 range 22 .. 22;
Reserved_23_23 at 0 range 23 .. 23;
EXTSEL at 0 range 24 .. 27;
EXTEN at 0 range 28 .. 29;
SWSTART at 0 range 30 .. 30;
Reserved_31_31 at 0 range 31 .. 31;
end record;
-- SMPR1_SMP array element
subtype SMPR1_SMP_Element is HAL.UInt3;
-- SMPR1_SMP array
type SMPR1_SMP_Field_Array is array (10 .. 18) of SMPR1_SMP_Element
with Component_Size => 3, Size => 27;
-- Type definition for SMPR1_SMP
type SMPR1_SMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SMP as a value
Val : HAL.UInt27;
when True =>
-- SMP as an array
Arr : SMPR1_SMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 27;
for SMPR1_SMP_Field use record
Val at 0 range 0 .. 26;
Arr at 0 range 0 .. 26;
end record;
-- sample time register 1
type SMPR1_Register is record
-- Sample time bits
SMP : SMPR1_SMP_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_27_31 : HAL.UInt5 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SMPR1_Register use record
SMP at 0 range 0 .. 26;
Reserved_27_31 at 0 range 27 .. 31;
end record;
-- SMPR2_SMP array element
subtype SMPR2_SMP_Element is HAL.UInt3;
-- SMPR2_SMP array
type SMPR2_SMP_Field_Array is array (0 .. 9) of SMPR2_SMP_Element
with Component_Size => 3, Size => 30;
-- Type definition for SMPR2_SMP
type SMPR2_SMP_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SMP as a value
Val : HAL.UInt30;
when True =>
-- SMP as an array
Arr : SMPR2_SMP_Field_Array;
end case;
end record
with Unchecked_Union, Size => 30;
for SMPR2_SMP_Field use record
Val at 0 range 0 .. 29;
Arr at 0 range 0 .. 29;
end record;
-- sample time register 2
type SMPR2_Register is record
-- Sample time bits
SMP : SMPR2_SMP_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SMPR2_Register use record
SMP at 0 range 0 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
subtype JOFR1_JOFFSET1_Field is HAL.UInt12;
-- injected channel data offset register x
type JOFR1_Register is record
-- Data offset for injected channel x
JOFFSET1 : JOFR1_JOFFSET1_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JOFR1_Register use record
JOFFSET1 at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype JOFR2_JOFFSET2_Field is HAL.UInt12;
-- injected channel data offset register x
type JOFR2_Register is record
-- Data offset for injected channel x
JOFFSET2 : JOFR2_JOFFSET2_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JOFR2_Register use record
JOFFSET2 at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype JOFR3_JOFFSET3_Field is HAL.UInt12;
-- injected channel data offset register x
type JOFR3_Register is record
-- Data offset for injected channel x
JOFFSET3 : JOFR3_JOFFSET3_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JOFR3_Register use record
JOFFSET3 at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype JOFR4_JOFFSET4_Field is HAL.UInt12;
-- injected channel data offset register x
type JOFR4_Register is record
-- Data offset for injected channel x
JOFFSET4 : JOFR4_JOFFSET4_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JOFR4_Register use record
JOFFSET4 at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype HTR_HT_Field is HAL.UInt12;
-- watchdog higher threshold register
type HTR_Register is record
-- Analog watchdog higher threshold
HT : HTR_HT_Field := 16#FFF#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for HTR_Register use record
HT at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype LTR_LT_Field is HAL.UInt12;
-- watchdog lower threshold register
type LTR_Register is record
-- Analog watchdog lower threshold
LT : LTR_LT_Field := 16#0#;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for LTR_Register use record
LT at 0 range 0 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
-- SQR1_SQ array element
subtype SQR1_SQ_Element is HAL.UInt5;
-- SQR1_SQ array
type SQR1_SQ_Field_Array is array (13 .. 16) of SQR1_SQ_Element
with Component_Size => 5, Size => 20;
-- Type definition for SQR1_SQ
type SQR1_SQ_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SQ as a value
Val : HAL.UInt20;
when True =>
-- SQ as an array
Arr : SQR1_SQ_Field_Array;
end case;
end record
with Unchecked_Union, Size => 20;
for SQR1_SQ_Field use record
Val at 0 range 0 .. 19;
Arr at 0 range 0 .. 19;
end record;
subtype SQR1_L_Field is HAL.UInt4;
-- regular sequence register 1
type SQR1_Register is record
-- 13th conversion in regular sequence
SQ : SQR1_SQ_Field := (As_Array => False, Val => 16#0#);
-- Regular channel sequence length
L : SQR1_L_Field := 16#0#;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SQR1_Register use record
SQ at 0 range 0 .. 19;
L at 0 range 20 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- SQR2_SQ array element
subtype SQR2_SQ_Element is HAL.UInt5;
-- SQR2_SQ array
type SQR2_SQ_Field_Array is array (7 .. 12) of SQR2_SQ_Element
with Component_Size => 5, Size => 30;
-- Type definition for SQR2_SQ
type SQR2_SQ_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SQ as a value
Val : HAL.UInt30;
when True =>
-- SQ as an array
Arr : SQR2_SQ_Field_Array;
end case;
end record
with Unchecked_Union, Size => 30;
for SQR2_SQ_Field use record
Val at 0 range 0 .. 29;
Arr at 0 range 0 .. 29;
end record;
-- regular sequence register 2
type SQR2_Register is record
-- 7th conversion in regular sequence
SQ : SQR2_SQ_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SQR2_Register use record
SQ at 0 range 0 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
-- SQR3_SQ array element
subtype SQR3_SQ_Element is HAL.UInt5;
-- SQR3_SQ array
type SQR3_SQ_Field_Array is array (1 .. 6) of SQR3_SQ_Element
with Component_Size => 5, Size => 30;
-- Type definition for SQR3_SQ
type SQR3_SQ_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- SQ as a value
Val : HAL.UInt30;
when True =>
-- SQ as an array
Arr : SQR3_SQ_Field_Array;
end case;
end record
with Unchecked_Union, Size => 30;
for SQR3_SQ_Field use record
Val at 0 range 0 .. 29;
Arr at 0 range 0 .. 29;
end record;
-- regular sequence register 3
type SQR3_Register is record
-- 1st conversion in regular sequence
SQ : SQR3_SQ_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SQR3_Register use record
SQ at 0 range 0 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
-- JSQR_JSQ array element
subtype JSQR_JSQ_Element is HAL.UInt5;
-- JSQR_JSQ array
type JSQR_JSQ_Field_Array is array (1 .. 4) of JSQR_JSQ_Element
with Component_Size => 5, Size => 20;
-- Type definition for JSQR_JSQ
type JSQR_JSQ_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- JSQ as a value
Val : HAL.UInt20;
when True =>
-- JSQ as an array
Arr : JSQR_JSQ_Field_Array;
end case;
end record
with Unchecked_Union, Size => 20;
for JSQR_JSQ_Field use record
Val at 0 range 0 .. 19;
Arr at 0 range 0 .. 19;
end record;
subtype JSQR_JL_Field is HAL.UInt2;
-- injected sequence register
type JSQR_Register is record
-- 1st conversion in injected sequence
JSQ : JSQR_JSQ_Field := (As_Array => False, Val => 16#0#);
-- Injected sequence length
JL : JSQR_JL_Field := 16#0#;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JSQR_Register use record
JSQ at 0 range 0 .. 19;
JL at 0 range 20 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
subtype JDR_JDATA_Field is HAL.UInt16;
-- injected data register x
type JDR_Register is record
-- Read-only. Injected data
JDATA : JDR_JDATA_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for JDR_Register use record
JDATA at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype DR_DATA_Field is HAL.UInt16;
-- regular data register
type DR_Register is record
-- Read-only. Regular data
DATA : DR_DATA_Field;
-- unspecified
Reserved_16_31 : HAL.UInt16;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for DR_Register use record
DATA at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-- ADC Common status register
type CSR_Register is record
-- Read-only. Analog watchdog flag of ADC 1
AWD1 : Boolean;
-- Read-only. End of conversion of ADC 1
EOC1 : Boolean;
-- Read-only. Injected channel end of conversion of ADC 1
JEOC1 : Boolean;
-- Read-only. Injected channel Start flag of ADC 1
JSTRT1 : Boolean;
-- Read-only. Regular channel Start flag of ADC 1
STRT1 : Boolean;
-- Read-only. Overrun flag of ADC 1
OVR1 : Boolean;
-- unspecified
Reserved_6_7 : HAL.UInt2;
-- Read-only. Analog watchdog flag of ADC 2
AWD2 : Boolean;
-- Read-only. End of conversion of ADC 2
EOC2 : Boolean;
-- Read-only. Injected channel end of conversion of ADC 2
JEOC2 : Boolean;
-- Read-only. Injected channel Start flag of ADC 2
JSTRT2 : Boolean;
-- Read-only. Regular channel Start flag of ADC 2
STRT2 : Boolean;
-- Read-only. Overrun flag of ADC 2
OVR2 : Boolean;
-- unspecified
Reserved_14_15 : HAL.UInt2;
-- Read-only. Analog watchdog flag of ADC 3
AWD3 : Boolean;
-- Read-only. End of conversion of ADC 3
EOC3 : Boolean;
-- Read-only. Injected channel end of conversion of ADC 3
JEOC3 : Boolean;
-- Read-only. Injected channel Start flag of ADC 3
JSTRT3 : Boolean;
-- Read-only. Regular channel Start flag of ADC 3
STRT3 : Boolean;
-- Read-only. Overrun flag of ADC3
OVR3 : Boolean;
-- unspecified
Reserved_22_31 : HAL.UInt10;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CSR_Register use record
AWD1 at 0 range 0 .. 0;
EOC1 at 0 range 1 .. 1;
JEOC1 at 0 range 2 .. 2;
JSTRT1 at 0 range 3 .. 3;
STRT1 at 0 range 4 .. 4;
OVR1 at 0 range 5 .. 5;
Reserved_6_7 at 0 range 6 .. 7;
AWD2 at 0 range 8 .. 8;
EOC2 at 0 range 9 .. 9;
JEOC2 at 0 range 10 .. 10;
JSTRT2 at 0 range 11 .. 11;
STRT2 at 0 range 12 .. 12;
OVR2 at 0 range 13 .. 13;
Reserved_14_15 at 0 range 14 .. 15;
AWD3 at 0 range 16 .. 16;
EOC3 at 0 range 17 .. 17;
JEOC3 at 0 range 18 .. 18;
JSTRT3 at 0 range 19 .. 19;
STRT3 at 0 range 20 .. 20;
OVR3 at 0 range 21 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
subtype CCR_MULT_Field is HAL.UInt5;
subtype CCR_DELAY_Field is HAL.UInt4;
subtype CCR_DMA_Field is HAL.UInt2;
subtype CCR_ADCPRE_Field is HAL.UInt2;
-- ADC common control register
type CCR_Register is record
-- Multi ADC mode selection
MULT : CCR_MULT_Field := 16#0#;
-- unspecified
Reserved_5_7 : HAL.UInt3 := 16#0#;
-- Delay between 2 sampling phases
DELAY_k : CCR_DELAY_Field := 16#0#;
-- unspecified
Reserved_12_12 : HAL.Bit := 16#0#;
-- DMA disable selection for multi-ADC mode
DDS : Boolean := False;
-- Direct memory access mode for multi ADC mode
DMA : CCR_DMA_Field := 16#0#;
-- ADC prescaler
ADCPRE : CCR_ADCPRE_Field := 16#0#;
-- unspecified
Reserved_18_21 : HAL.UInt4 := 16#0#;
-- VBAT enable
VBATE : Boolean := False;
-- Temperature sensor and VREFINT enable
TSVREFE : Boolean := False;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CCR_Register use record
MULT at 0 range 0 .. 4;
Reserved_5_7 at 0 range 5 .. 7;
DELAY_k at 0 range 8 .. 11;
Reserved_12_12 at 0 range 12 .. 12;
DDS at 0 range 13 .. 13;
DMA at 0 range 14 .. 15;
ADCPRE at 0 range 16 .. 17;
Reserved_18_21 at 0 range 18 .. 21;
VBATE at 0 range 22 .. 22;
TSVREFE at 0 range 23 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- CDR_DATA array element
subtype CDR_DATA_Element is HAL.UInt16;
-- CDR_DATA array
type CDR_DATA_Field_Array is array (1 .. 2) of CDR_DATA_Element
with Component_Size => 16, Size => 32;
-- ADC common regular data register for dual and triple modes
type CDR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- DATA as a value
Val : HAL.UInt32;
when True =>
-- DATA as an array
Arr : CDR_DATA_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for CDR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Analog-to-digital converter
type ADC1_Peripheral is record
-- status register
SR : aliased SR_Register;
-- control register 1
CR1 : aliased CR1_Register;
-- control register 2
CR2 : aliased CR2_Register;
-- sample time register 1
SMPR1 : aliased SMPR1_Register;
-- sample time register 2
SMPR2 : aliased SMPR2_Register;
-- injected channel data offset register x
JOFR1 : aliased JOFR1_Register;
-- injected channel data offset register x
JOFR2 : aliased JOFR2_Register;
-- injected channel data offset register x
JOFR3 : aliased JOFR3_Register;
-- injected channel data offset register x
JOFR4 : aliased JOFR4_Register;
-- watchdog higher threshold register
HTR : aliased HTR_Register;
-- watchdog lower threshold register
LTR : aliased LTR_Register;
-- regular sequence register 1
SQR1 : aliased SQR1_Register;
-- regular sequence register 2
SQR2 : aliased SQR2_Register;
-- regular sequence register 3
SQR3 : aliased SQR3_Register;
-- injected sequence register
JSQR : aliased JSQR_Register;
-- injected data register x
JDR1 : aliased JDR_Register;
-- injected data register x
JDR2 : aliased JDR_Register;
-- injected data register x
JDR3 : aliased JDR_Register;
-- injected data register x
JDR4 : aliased JDR_Register;
-- regular data register
DR : aliased DR_Register;
end record
with Volatile;
for ADC1_Peripheral use record
SR at 16#0# range 0 .. 31;
CR1 at 16#4# range 0 .. 31;
CR2 at 16#8# range 0 .. 31;
SMPR1 at 16#C# range 0 .. 31;
SMPR2 at 16#10# range 0 .. 31;
JOFR1 at 16#14# range 0 .. 31;
JOFR2 at 16#18# range 0 .. 31;
JOFR3 at 16#1C# range 0 .. 31;
JOFR4 at 16#20# range 0 .. 31;
HTR at 16#24# range 0 .. 31;
LTR at 16#28# range 0 .. 31;
SQR1 at 16#2C# range 0 .. 31;
SQR2 at 16#30# range 0 .. 31;
SQR3 at 16#34# range 0 .. 31;
JSQR at 16#38# range 0 .. 31;
JDR1 at 16#3C# range 0 .. 31;
JDR2 at 16#40# range 0 .. 31;
JDR3 at 16#44# range 0 .. 31;
JDR4 at 16#48# range 0 .. 31;
DR at 16#4C# range 0 .. 31;
end record;
-- Analog-to-digital converter
ADC1_Periph : aliased ADC1_Peripheral
with Import, Address => System'To_Address (16#40012000#);
-- Analog-to-digital converter
ADC2_Periph : aliased ADC1_Peripheral
with Import, Address => System'To_Address (16#40012100#);
-- Analog-to-digital converter
ADC3_Periph : aliased ADC1_Peripheral
with Import, Address => System'To_Address (16#40012200#);
-- Common ADC registers
type C_ADC_Peripheral is record
-- ADC Common status register
CSR : aliased CSR_Register;
-- ADC common control register
CCR : aliased CCR_Register;
-- ADC common regular data register for dual and triple modes
CDR : aliased CDR_Register;
end record
with Volatile;
for C_ADC_Peripheral use record
CSR at 16#0# range 0 .. 31;
CCR at 16#4# range 0 .. 31;
CDR at 16#8# range 0 .. 31;
end record;
-- Common ADC registers
C_ADC_Periph : aliased C_ADC_Peripheral
with Import, Address => System'To_Address (16#40012300#);
end STM32_SVD.ADC;
|
reznikmm/matreshka | Ada | 4,668 | 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.
------------------------------------------------------------------------------
-- A comment is a textual annotation that can be attached to a set of
-- elements.
------------------------------------------------------------------------------
with AMF.UML.Elements;
limited with AMF.UML.Elements.Collections;
package AMF.UML.Comments is
pragma Preelaborate;
type UML_Comment is limited interface
and AMF.UML.Elements.UML_Element;
type UML_Comment_Access is
access all UML_Comment'Class;
for UML_Comment_Access'Storage_Size use 0;
not overriding function Get_Annotated_Element
(Self : not null access constant UML_Comment)
return AMF.UML.Elements.Collections.Set_Of_UML_Element is abstract;
-- Getter of Comment::annotatedElement.
--
-- References the Element(s) being commented.
not overriding function Get_Body
(Self : not null access constant UML_Comment)
return AMF.Optional_String is abstract;
-- Getter of Comment::body.
--
-- Specifies a string that is the comment.
not overriding procedure Set_Body
(Self : not null access UML_Comment;
To : AMF.Optional_String) is abstract;
-- Setter of Comment::body.
--
-- Specifies a string that is the comment.
end AMF.UML.Comments;
|
mgrojo/smk | Ada | 4,733 | ads | -- -----------------------------------------------------------------------------
-- smk, the smart make
-- © 2018 Lionel Draghi <[email protected]>
-- SPDX-License-Identifier: APSL-2.0
-- -----------------------------------------------------------------------------
-- 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: Smk.Run_Files specification
--
-- Purpose:
-- This package defines a "Run File" and it's storage.
--
-- Effects:
--
-- Performance:
--
-- -----------------------------------------------------------------------------
with Ada.Calendar;
with Ada.Containers.Ordered_Maps;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
private package Smk.Run_Files is
-- --------------------------------------------------------------------------
type Section_Names is new Unbounded_String;
type Command_Lines is new Unbounded_String;
function "+" (Section : Section_Names) return String is
(To_String (Section));
function "+" (Command : Command_Lines) return String is
(To_String (Command));
function "+" (Section : String) return Section_Names is
(To_Unbounded_String (Section));
function "+" (Command : String) return Command_Lines is
(To_Unbounded_String (Command));
Default_Section : constant Section_Names
:= Section_Names (Null_Unbounded_String);
-- --------------------------------------------------------------------------
type File_Name is new Unbounded_String;
function "+" (Name : File_Name) return String;
function "+" (Name : String) return File_Name;
function "+" (Name : File_Name) return Unbounded_String;
-- --------------------------------------------------------------------------
-- type File_Type is record
-- Time_Tag : Ada.Calendar.Time;
-- end record;
use type Ada.Calendar.Time;
package File_Lists is
new Ada.Containers.Ordered_Maps (Key_Type => File_Name,
Element_Type => Ada.Calendar.Time);
-- --------------------------------------------------------------------------
procedure Dump (File_List : in File_Lists.Map;
Filter_Sytem_Files : in Boolean);
-- Dump files in a one per line bulleted way
-- if Filter_System_Files, then ignore /lib /usr /etc /opt files
-- --------------------------------------------------------------------------
procedure Update_Time_Tag (File_List : in out File_Lists.Map);
-- updates time_tag of each file according to the current file system state
-- --------------------------------------------------------------------------
type Run is record
Section : Section_Names := Default_Section;
Run_Time : Ada.Calendar.Time;
Sources : File_Lists.Map := File_Lists.Empty_Map;
Targets : File_Lists.Map := File_Lists.Empty_Map;
end record;
package Run_Lists is
new Ada.Containers.Ordered_Maps (Key_Type => Command_Lines,
Element_Type => Run);
-- --------------------------------------------------------------------------
procedure Insert_Or_Update (The_Command : in Command_Lines;
The_Run : in Run;
In_Run_List : in out Run_Lists.Map);
-- --------------------------------------------------------------------------
procedure Dump (Run_List : in Run_Lists.Map;
Filter_Sytem_Files : in Boolean);
-- Dump each run with the format :
--
-- Time_Tag Command
-- Sources:
-- Time_Tag file1
-- Time_Tag file2
-- ...
-- Targets:
-- Time_Tag file1
-- Time_Tag file2
-- ...
-- --------------------------------------------------------------------------
-- Run storage management
-- --------------------------------------------------------------------------
function Saved_Run_Found return Boolean;
function Get_Saved_Run return Run_Lists.Map;
procedure Save_Run (The_Run : in Run_Lists.Map);
end Smk.Run_Files;
|
charlie5/cBound | Ada | 1,214 | ads | -- This file is generated by SWIG. Please do not modify by hand.
--
with xcb.xcb_value_error_t;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_font_error_t is
-- Item
--
subtype Item is xcb.xcb_value_error_t.Item;
-- Item_Array
--
type Item_Array is
array (Interfaces.C.size_t range <>) of aliased xcb.xcb_font_error_t.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_font_error_t.Item,
Element_Array => xcb.xcb_font_error_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_font_error_t.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_font_error_t.Pointer,
Element_Array => xcb.xcb_font_error_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_font_error_t;
|
dan76/Amass | Ada | 1,410 | ads | -- Copyright © by Jeff Foley 2017-2023. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
-- SPDX-License-Identifier: Apache-2.0
local url = require("url")
local json = require("json")
name = "CertSpotter"
type = "cert"
function start()
set_rate_limit(2)
end
function vertical(ctx, domain)
local resp, err = request(ctx, {['url']=api_url(domain)})
if (err ~= nil and err ~= "") then
log(ctx, "vertical request to service failed: " .. err)
return
elseif (resp.status_code < 200 or resp.status_code >= 400) then
log(ctx, "vertical request to service returned with status code: " .. resp.status)
return
end
local body = "{\"results\":" .. resp.body .. "}"
local d = json.decode(body)
if (d == nil) then
log(ctx, "failed to decode the JSON response")
return
elseif (d.results == nil or #(d.results) == 0) then
return
end
for _, r in pairs(d.results) do
for _, name in pairs(r['dns_names']) do
new_name(ctx, name)
end
end
end
function api_url(domain)
local params = {
['domain']=domain,
['include_subdomains']="true",
['match_wildcards']="true",
['expand']="dns_names",
}
return "https://api.certspotter.com/v1/issuances?" .. url.build_query_string(params)
end
|
reznikmm/matreshka | Ada | 3,674 | 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.Text_Page_Count_Elements is
pragma Preelaborate;
type ODF_Text_Page_Count is limited interface
and XML.DOM.Elements.DOM_Element;
type ODF_Text_Page_Count_Access is
access all ODF_Text_Page_Count'Class
with Storage_Size => 0;
end ODF.DOM.Text_Page_Count_Elements;
|
stcarrez/ada-css | Ada | 3,885 | ads | -----------------------------------------------------------------------
-- css-core-properties -- Core CSS API definition
-- Copyright (C) 2017 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.
-----------------------------------------------------------------------
private with Ada.Finalization;
with Util.Log.Locations;
with CSS.Core.Values;
package CSS.Core.Properties is
-- Exception raised when a property cannot be found.
NO_PROPERTY : exception;
subtype Value_Type is CSS.Core.Values.Value_Type;
subtype Value_List is CSS.Core.Values.Value_List;
use type CSS.Core.Values.Value_List;
type CSSProperty is record
Rule : CSSRule_Access;
Name : CSSProperty_Name;
Value : Value_List;
Location : CSS.Core.Location;
end record;
type CSSProperty_List is tagged limited private;
-- Get the property with the given name from the list.
-- If the property is defined several times, the last value
-- that was inserted is returned.
-- Raises the <tt>NO_PROPERTY</tt> exception if the property was not found.
function Get_Property (List : in CSSProperty_List;
Name : in String) return CSSProperty;
-- Get the number of properties in the list.
function Get_Length (List : in CSSProperty_List) return Natural;
-- Returns true if the two property list are identical. They contain
-- the same properties in the same order.
function "=" (Left, Right : in CSSProperty_List) return Boolean;
-- Set the file information associated with the property list.
procedure Set_File_Info (Into : in out CSSProperty_List;
File : in Util.Log.Locations.File_Info_Access);
-- Append the CSS property with the value to the list.
procedure Append (List : in out CSSProperty_List;
Name : in CSSProperty_Name;
Value : in Value_List;
Line : in Natural := 0;
Column : in Natural := 0);
-- Append the CSS property with the value to the list.
procedure Append (List : in out CSSProperty_List;
Name : in CSSProperty_Name;
Value : in Value_Type;
Line : in Natural := 0;
Column : in Natural := 0);
-- Iterate over the list of properties and call the <tt>Process</tt> procedure.
procedure Iterate (List : in CSSProperty_List;
Process : not null access procedure (Prop : in CSSProperty));
private
type CSSInternal_Property is record
Name : CSSProperty_Name;
Value : Value_List;
Line : Natural;
Column : Natural;
end record;
type CSSInternal_Property_Array is array (Positive range <>) of CSSInternal_Property;
type CSSInternal_Property_Array_Access is access all CSSInternal_Property_Array;
type CSSProperty_List is new Ada.Finalization.Limited_Controlled with record
Parent : CSSRule_Access;
File : Util.Log.Locations.File_Info_Access;
Properties : CSSInternal_Property_Array_Access;
end record;
-- Release the memory used by the property list.
overriding
procedure Finalize (List : in out CSSProperty_List);
end CSS.Core.Properties;
|
fnarenji/BezierToSTL | Ada | 549 | ads | with Courbes; use Courbes;
package Courbes.Singletons is
use Liste_Points;
type Singleton is new Courbe with private;
-- Crée un singleton
function Ctor_Singleton (P : Point2D) return Singleton;
overriding procedure Accepter (Self : Singleton; Visiteur : Courbes.Visiteurs.Visiteur_Courbe'Class);
-- Obtient un point d'un singleton
overriding function Obtenir_Point(Self : Singleton; X : Coordonnee_Normalisee) return Point2D;
private
type Singleton is new Courbe with null record;
end Courbes.Singletons;
|
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.Office_Dde_Topic_Attributes is
pragma Preelaborate;
type ODF_Office_Dde_Topic_Attribute is limited interface
and XML.DOM.Attributes.DOM_Attribute;
type ODF_Office_Dde_Topic_Attribute_Access is
access all ODF_Office_Dde_Topic_Attribute'Class
with Storage_Size => 0;
end ODF.DOM.Office_Dde_Topic_Attributes;
|
reznikmm/matreshka | Ada | 621 | ads | with League.Holders;
package ORM.Fields is
pragma Preelaborate;
type Abstract_Field is abstract tagged limited private;
function Is_Modified (Self : Abstract_Field'Class) return Boolean;
procedure Reset_Is_Modified (Self : in out Abstract_Field'Class);
not overriding function Get
(Self : Abstract_Field) return League.Holders.Holder is abstract;
not overriding procedure Set
(Self : in out Abstract_Field; Value : League.Holders.Holder) is abstract;
private
type Abstract_Field is abstract tagged limited record
Is_Modified : Boolean := False;
end record;
end ORM.Fields;
|
charlie5/aIDE | Ada | 1,348 | ads | with
AdaM.exception_Handler,
gtk.Widget;
private
with
gtk.Box,
gtk.Frame,
gtk.Alignment,
gtk.Label,
gtk.Button;
limited
with
aIDE.Editor.of_block;
package aIDE.Editor.of_exception_handler
is
type Item is new Editor.item with private;
type View is access all Item'Class;
function new_Editor (the_Handler : in AdaM.exception_Handler.view) return View;
procedure free (the_Handler : in out View);
overriding
function top_Widget (Self : in Item) return gtk.Widget.Gtk_Widget;
private
use Gtk.Box,
Gtk.Button,
Gtk.Alignment,
Gtk.Label,
Gtk.Frame;
type Item is new Editor.item with
record
exception_Handler : AdaM.exception_Handler.view;
top_Frame : gtk_Frame;
top_Box : gtk_Box;
handler_Alignment : Gtk_Alignment;
block_Editor : access aIDE.Editor.of_block.item'Class;
when_Label : gtk_Label;
exception_names_Box : gtk_Box;
rid_Button : gtk_Button;
end record;
procedure add_new_exception_Button (Self : access Item; Slot : in Positive);
function exception_Button (Self : in Item; Slot : in Positive) return Gtk.Button.gtk_Button;
end aIDE.Editor.of_exception_handler;
|
MatrixMike/AdaDemo1 | Ada | 278 | adb | with Ada.Text_IO;
use Ada.Text_IO;
procedure Demo2 is
-- type Arr_Type is array(1..1000) of String;
procedure proceed(Arg1: in Arr_Type) is
begin
-- <program body>
Put_Line("second line");
end proceed;
begin
-- call to proceed
Put_Line("second line");
end Demo2;
|
ekoeppen/STM32_Generic_Ada_Drivers | Ada | 464 | ads | with HAL;
generic
with package USART is new HAL.USART (<>);
package Drivers.Text_IO is
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 : Unsigned_8 := 0);
procedure New_Line;
procedure Get_Line (S : out String; Count : out Natural);
procedure Hex_Dump (S : String);
end Drivers.Text_IO;
|
zhmu/ananas | Ada | 5,467 | ads | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . T A S K _ P R I M I T I V E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2001-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 is a VxWorks version of this package
with System.OS_Interface;
package System.Task_Primitives is
pragma Preelaborate;
type Lock is limited private;
-- Should be used for implementation of protected objects
type RTS_Lock is limited private;
-- Should be used inside the runtime system. The difference between Lock
-- and the RTS_Lock is that the later one serves only as a semaphore so
-- that do not check for ceiling violations.
type Suspension_Object is limited private;
-- Should be used for the implementation of Ada.Synchronous_Task_Control
type Task_Body_Access is access procedure;
-- Pointer to the task body's entry point (or possibly a wrapper
-- declared local to the GNARL).
type Private_Data is limited private;
-- Any information that the GNULLI needs maintained on a per-task basis.
-- A component of this type is guaranteed to be included in the
-- Ada_Task_Control_Block.
subtype Task_Address is System.Address;
Task_Address_Size : constant := Standard'Address_Size;
-- Type used for task addresses and its size
Alternate_Stack_Size : constant := 0;
-- No alternate signal stack is used on this platform
private
type Priority_Type is (Prio_None, Prio_Protect, Prio_Inherit);
type Lock is record
Mutex : System.OS_Interface.SEM_ID;
Protocol : Priority_Type;
Prio_Ceiling : System.OS_Interface.int;
-- Priority ceiling of lock
end record;
type RTS_Lock is new Lock;
type Suspension_Object is record
State : Boolean;
pragma Atomic (State);
-- Boolean that indicates whether the object is open. This field is
-- marked Atomic to ensure that we can read its value without locking
-- the access to the Suspension_Object.
Waiting : Boolean;
-- Flag showing if there is a task already suspended on this object
L : aliased System.OS_Interface.SEM_ID;
-- Protection for ensuring mutual exclusion on the Suspension_Object
CV : aliased System.OS_Interface.SEM_ID;
-- Condition variable used to queue threads until condition is signaled
end record;
type Private_Data is limited record
Thread : aliased System.OS_Interface.t_id := 0;
pragma Atomic (Thread);
-- Thread field may be updated by two different threads of control.
-- (See, Enter_Task and Create_Task in s-taprop.adb).
-- They put the same value (thr_self value). We do not want to
-- use lock on those operations and the only thing we have to
-- make sure is that they are updated in atomic fashion.
LWP : aliased System.OS_Interface.t_id := 0;
-- The purpose of this field is to provide a better tasking support on
-- gdb. The order of the two first fields (Thread and LWP) is important.
-- On targets where lwp is not relevant, this is equivalent to Thread.
CV : aliased System.OS_Interface.SEM_ID;
L : aliased RTS_Lock;
-- Protection for all components is lock L
end record;
end System.Task_Primitives;
|
AdaCore/libadalang | Ada | 42 | ads | with Pkg_2;
package Pkg_1 renames Pkg_2;
|
AdaCore/gpr | Ada | 2,005 | ads |
--
-- Copyright (C) 2019-2023, AdaCore
-- SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
--
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with GNATCOLL.VFS;
with Gpr_Parser_Support.Token_Data_Handlers;
use Gpr_Parser_Support.Token_Data_Handlers;
with Gpr_Parser.Common; use Gpr_Parser.Common;
-- This package provides types and primitives to split text streams into lists
-- of tokens.
package Gpr_Parser.Lexer is
use Support.Diagnostics, Support.Text;
type Lexer_Input (Kind : Lexer_Input_Kind) is record
case Kind is
when File | Bytes_Buffer =>
Charset : Unbounded_String;
-- Name of the charset to use in order to decode the input source
Read_BOM : Boolean;
-- Whether the lexer should look for an optional Byte Order Mark
case Kind is
when File =>
Filename : GNATCOLL.VFS.Virtual_File;
-- Name of the file to read
when Bytes_Buffer =>
Bytes : Unbounded_String;
-- Source buffer to read
when others => null;
end case;
when Text_Buffer =>
Text : Unbounded_Text_Type;
-- Source buffer to read
end case;
end record;
-- Input from which the lexer will read tokens
procedure Extract_Tokens
(Input : Lexer_Input;
With_Trivia : Boolean;
TDH : in out Token_Data_Handler;
Diagnostics : in out Diagnostics_Vectors.Vector)
with Pre => Initialized (TDH) and then not Has_Source_Buffer (TDH),
Post => Has_Source_Buffer (TDH);
-- Extract tokens out of the given ``Input`` and store them into ``TDH``.
--
-- Raise a ``Name_Error`` exception if this involves reading a file that
-- can not be open. Raise an ``Unknown_Charset`` exception if the requested
-- charset is unknown. Raise an ``Invalid_Input`` exception if the source
-- cannot be decoded using the given ``Charset``.
end Gpr_Parser.Lexer;
|
AdaCore/gpr | Ada | 56 | ads | package S.Foo is
Msg : String := "S.Foo";
end S.Foo;
|
optikos/oasis | Ada | 3,698 | ads | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
limited with Program.Scanners;
with Program.Scanner_Destinations;
with Program.Scanner_States;
package Program.Scanned_Rule_Handlers is
pragma Pure;
type Handler is abstract tagged limited null record;
procedure Delimiter
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
procedure Identifier
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
procedure Numeric_Literal
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
procedure Obsolescent_Numeric_Literal
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
procedure Character_Literal
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
procedure String_Literal
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
procedure Obsolescent_String_Literal
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
procedure Comment
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
procedure Space
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
procedure New_Line
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
procedure Error
(Self : not null access Handler;
Scanner : not null access Program.Scanners.Scanner'Class;
Rule : Program.Scanner_States.Rule_Index;
Token : out Program.Scanner_Destinations.Token_Kind;
Skip : in out Boolean) is abstract;
type Handler_Access is access all Handler'Class with Storage_Size => 0;
end Program.Scanned_Rule_Handlers;
|
reznikmm/matreshka | Ada | 4,884 | 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.Style_Presentation_Page_Layout_Elements;
package Matreshka.ODF_Style.Presentation_Page_Layout_Elements is
type Style_Presentation_Page_Layout_Element_Node is
new Matreshka.ODF_Style.Abstract_Style_Element_Node
and ODF.DOM.Style_Presentation_Page_Layout_Elements.ODF_Style_Presentation_Page_Layout
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters)
return Style_Presentation_Page_Layout_Element_Node;
overriding function Get_Local_Name
(Self : not null access constant Style_Presentation_Page_Layout_Element_Node)
return League.Strings.Universal_String;
overriding procedure Enter_Node
(Self : not null access Style_Presentation_Page_Layout_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 Style_Presentation_Page_Layout_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 Style_Presentation_Page_Layout_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_Style.Presentation_Page_Layout_Elements;
|
reznikmm/matreshka | Ada | 4,701 | 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.Hyphenation_Ladder_Count_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Fo_Hyphenation_Ladder_Count_Attribute_Node is
begin
return Self : Fo_Hyphenation_Ladder_Count_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_Hyphenation_Ladder_Count_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Hyphenation_Ladder_Count_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Fo_URI,
Matreshka.ODF_String_Constants.Hyphenation_Ladder_Count_Attribute,
Fo_Hyphenation_Ladder_Count_Attribute_Node'Tag);
end Matreshka.ODF_Fo.Hyphenation_Ladder_Count_Attributes;
|
tum-ei-rcs/StratoX | Ada | 18,370 | adb |
with Ada.Real_Time; use Ada.Real_Time;
with Ada.Numerics.Generic_Real_Arrays;
with Units.Vectors; use Units.Vectors.Unit_Arrays_Pack;
with Logger;
with Profiler;
package body Kalman with SPARK_Mode,
Refined_State => (State => (G, KM_Profiler))
is
k : constant := State_Vector_Index_Type'Last; -- states
l : constant := Input_Vector_Index_Type'Last; -- inputs
m : constant := Observation_Vector_Index_Type'Last; -- observations
-- all the global data together
type Global_Type is record
t_last : Ada.Real_Time.Time := Ada.Real_Time.Time_First;
x : State_Vector; -- k states
u : Input_Vector; -- l inputs
z : Observation_Vector; -- m observations
A : State_Transition_Matrix; -- k×k
B : Input_Transition_Matrix; -- k×l
H : Observation_Transition_Matrix; -- m×k
P : State_Covariance_Matrix; -- k×k
Q : State_Noise_Covariance_Matrix; -- k×k
R : Observation_Noise_Covariance_Matrix; -- m×m
end record;
--------------------
-- INTERNAL STATES
--------------------
G : Global_Type;
KM_Profiler : Profiler.Profile_Tag;
ANGLE_PROCESS_VARIANCE : constant := 1.0e-4; -- 1.0e-4 trust in orientation prediction (gyro integral)
RATE_PROCESS_VARIANCE : constant := 3.0e-2; -- 1.0e-2 dont trust in rate prediction
BIAS_PROCESS_VARIANCE : constant := 1.0e-12; -- trust in prev bias (really slow bias drift?)
ANGLE_MEASUREMENT_VARIANCE : constant := 6.0e-3; -- 3.0e-2 dont trust in angle measurement (acc arctan)
MAG_MEASUREMENT_VARIANCE : constant := 1.0e-1; -- trust magnetometer
RATE_MEASUREMENT_VARIANCE : constant := 1.0e-4; -- 1.0e-3 trust rate measurement
-----------------
-- reset
-----------------
procedure reset( init_states : State_Vector := DEFAULT_INIT_STATES ) is
now : constant Time := Clock;
begin
G.t_last := now;
-- initial states:
G.x := init_states;
-- init matrices with zero
G.A := (others => (others => 0.0));
G.H := (others => (others => 0.0));
-- Set H Measurement Matrix
G.H( map(Z_LON) , map(X_LON) ) := 1.0;
G.H( map(Z_LAT), map(X_LAT) ) := 1.0;
G.H( map(Z_ALT) , map(X_ALT) ) := 1.0;
G.H( map(Z_BARO_ALT), map(X_ALT) ) := 1.0;
G.H( map(Z_ROLL) , map(X_ROLL) ) := 1.0;
G.H( map(Z_PITCH), map(X_PITCH) ) := 1.0;
G.H( map(Z_YAW) , map(X_YAW) ) := 1.0;
G.H( map(Z_ROLL_RATE) , map(X_ROLL_RATE) ) := 1.0;
G.H( map(Z_PITCH_RATE), map(X_PITCH_RATE) ) := 1.0;
G.H( map(Z_YAW_RATE) , map(X_YAW_RATE) ) := 1.0;
-- G.H( map(Z_ROLL) , map(X_ROLL_BIAS) ) := -1.0; -- gyro measurements INCLUDES bias
-- G.H( map(Z_PITCH), map(X_PITCH_BIAS) ) := -1.0;
-- G.H( map(Z_YAW) , map(X_YAW_BIAS) ) := -1.0;
-- Set A, Dynamic Matrix
declare
A : State_Transition_Matrix;
-- avoid forbidden aliasing by copying the result into G after the call (SPARK RM 6.4.2)
begin
calculate_A( A, 0.0 * Second);
G.A := A;
end;
-- Set P, Covariance Matrix to high values => uncertain about init values
G.P := Eye( k ) * 10.0;
pragma Annotate (GNATprove, False_Positive, "length check might fail", "multiplication with scalar is implemented");
G.P( map(X_ROLL), map(X_ROLL) ) := ANGLE_PROCESS_VARIANCE;
G.P( map(X_PITCH), map(X_PITCH) ) := ANGLE_PROCESS_VARIANCE;
G.P( map(X_YAW), map(X_YAW) ) := ANGLE_PROCESS_VARIANCE; -- Prediction is gyro itegral
G.P( map(X_ROLL_BIAS), map(X_ROLL_BIAS) ) := BIAS_PROCESS_VARIANCE; -- we are sure about the bias
G.P( map(X_PITCH_BIAS), map(X_PITCH_BIAS) ) := BIAS_PROCESS_VARIANCE; -- we are sure about the bias
-- Process Noise
G.Q := Eye( k ) * 1.0e-1;
pragma Annotate (GNATprove, False_Positive, "length check might fail", "multiplication with scalar is implemented");
G.Q( map(X_ROLL), map(X_ROLL) ) := ANGLE_PROCESS_VARIANCE;
G.Q( map(X_PITCH), map(X_PITCH) ) := ANGLE_PROCESS_VARIANCE * 100.0;
G.Q( map(X_YAW), map(X_YAW) ) := ANGLE_PROCESS_VARIANCE;
G.Q( map(X_ROLL_RATE), map(X_ROLL_RATE) ) := RATE_PROCESS_VARIANCE;
G.Q( map(X_PITCH_RATE), map(X_PITCH_RATE) ) := RATE_PROCESS_VARIANCE;
G.Q( map(X_YAW_RATE), map(X_YAW_RATE) ) := RATE_PROCESS_VARIANCE;
G.Q( map(X_ROLL_BIAS), map(X_ROLL_BIAS) ) := BIAS_PROCESS_VARIANCE;
G.Q( map(X_PITCH_BIAS), map(X_PITCH_BIAS) ) := BIAS_PROCESS_VARIANCE;
-- Set P to Q
G.P := G.Q;
-- Measurement Noise
G.R := Eye( m ) * 1.0e-3; -- default
pragma Annotate (GNATprove, False_Positive, "length check might fail", "multiplication with scalar is implemented");
G.R( map(Z_ROLL), map(Z_ROLL) ) := ANGLE_MEASUREMENT_VARIANCE;
G.R( map(Z_PITCH), map(Z_PITCH) ) := ANGLE_MEASUREMENT_VARIANCE / 100.0; -- for pitch, accmeter is more reliable
G.R( map(Z_YAW), map(Z_YAW) ) := MAG_MEASUREMENT_VARIANCE; -- magnetometer vector, quite accurate
G.R( map(Z_ROLL_RATE), map(Z_ROLL_RATE) ) := RATE_MEASUREMENT_VARIANCE;
G.R( map(Z_PITCH_RATE), map(Z_PITCH_RATE) ) := RATE_MEASUREMENT_VARIANCE;
G.R( map(Z_YAW_RATE), map(Z_YAW_RATE) ) := RATE_MEASUREMENT_VARIANCE;
end reset;
-------------------------
-- perform_Filter_Step
-------------------------
procedure perform_Filter_Step( u : in Input_Vector; z : in Observation_Vector ) is
time_of_call : constant Time := Clock;
dt : constant Time_Type := To_Time(time_of_call - G.t_last);
begin
-- FIXME: protect against dt=0?
KM_Profiler.start;
predict(u, dt);
update(z, dt);
KM_Profiler.stop;
--KM_Profiler.log;
-- some time has passed until now
G.t_last := time_of_call;
end perform_Filter_Step;
-------------------------
-- predict
-------------------------
procedure predict(u : Input_Vector; dt : Time_Type) is
begin
declare
x : State_Vector := G.x;
-- avoid forbidden aliasing by copying the result into G after the call (SPARK RM 6.4.2)
begin
predict_state( x, u, dt );
G.x := x;
end;
declare
P : State_Covariance_Matrix := G.P;
-- avoid forbidden aliasing by copying the result into G after the call (SPARK RM 6.4.2)
begin
predict_cov( P, G.Q );
G.P := P;
end;
end predict;
-------------------------
-- update
-------------------------
procedure update(z : Observation_Vector; dt : Time_Type) is
K : Kalman_Gain_Matrix;
residual : Innovation_Vector;
begin
estimate_observation_noise_cov( G.R, G.x, z);
declare
x : constant State_Vector := G.x;
-- avoid forbidden aliasing by copying the result into G after the call (SPARK RM 6.4.2)
begin
calculate_gain( x, z, dt, K, residual );
end;
uptate_state( G.x, K, residual, dt );
declare
P : State_Covariance_Matrix := G.P;
-- avoid forbidden aliasing by copying the result into G after the call (SPARK RM 6.4.2)
begin
update_cov( P, K );
G.P := P;
end;
end update;
-------------------------
-- get_States
-------------------------
function get_States return State_Vector is
begin
return G.x;
end get_States;
-------------------------
-- predict_state
-------------------------
procedure predict_state( state : in out State_Vector; input : Input_Vector; dt : Time_Type )
is
new_state : State_Vector := state;
ELEVON_TO_GYRO : constant Frequency_Type := 0.5 * Hertz; -- FIXME: needs own type with (1/s)^2
PITCH_TO_AIRSPEED : constant := 0.5 * Meter / ( Degree * Second );
compensated_rates : Angular_Velocity_Vector := state.rates;
begin
-- gyro compensation
declare
-- SPARK: conversion between array types that have different element types is not yet supported
cv : Cartesian_Vector_Type := (X => Base_Unit_Type (compensated_rates(X)),
Y => Base_Unit_Type (compensated_rates(Y)),
Z => Base_Unit_Type (compensated_rates(Z)));
begin
rotate (cv, X , state.orientation.Roll);
compensated_rates := (X => Angular_Velocity_Type (cv(X)),
Y => Angular_Velocity_Type (cv(Y)),
Z => Angular_Velocity_Type (cv(Z)));
end;
-- state prediction: it seems as roll angle is only 1/10 of what it should be
new_state.orientation := state.orientation + (compensated_rates - state.bias) * dt;
--new_state.orientation.Yaw := new_state.orientation.Yaw + new_state.orientation.Roll * 0.1;
new_state.rates(X) := state.rates(X) + (input.Aileron - G.u.Aileron)/Second * ELEVON_TO_GYRO * dt;
new_state.rates(Y) := state.rates(Y) + (input.Elevator - G.u.Elevator)/Second * ELEVON_TO_GYRO * dt;
new_state.rates(Z) := state.rates(Z);
new_state.bias := state.bias;
new_state.pos := state.pos; -- + state.ground_speed * dt;
new_state.air_speed(X) := state.air_speed(X) - state.orientation.Pitch * PITCH_TO_AIRSPEED;
state := new_state;
G.u := input;
-- estimate Q
end predict_state;
-------------------------
-- predict_cov
-------------------------
procedure predict_cov( P : in out State_Covariance_Matrix; Q : State_Noise_Covariance_Matrix ) is
begin
P := G.A * P * Transpose(G.A) + Q;
end predict_cov;
procedure estimate_observation_noise_cov( R : in out Observation_Noise_Covariance_Matrix;
states : State_Vector;
samples : Observation_Vector
) is
RATE_REF : constant Angular_Velocity_Type := 200.0*Degree/Second;
begin
R( map(Z_ROLL), map(Z_ROLL) ) := Base_Unit_Type (ANGLE_MEASUREMENT_VARIANCE +
30.0* ANGLE_MEASUREMENT_VARIANCE * abs(samples.acc_length/GRAVITY - Unit_Type(1.0)) +
10.0* ANGLE_MEASUREMENT_VARIANCE * abs(states.orientation.Pitch/Pitch_Type'Last) +
50.0* ANGLE_MEASUREMENT_VARIANCE * abs(states.rates(X)/RATE_REF));
R( map(Z_PITCH), map(Z_PITCH) ) := Base_Unit_Type (ANGLE_MEASUREMENT_VARIANCE +
10.0* ANGLE_MEASUREMENT_VARIANCE * abs(samples.acc_length/GRAVITY - Unit_Type(1.0)) +
30.0* ANGLE_MEASUREMENT_VARIANCE * abs(states.rates(Y)/RATE_REF));
end estimate_observation_noise_cov;
-------------------------
-- Minus
-------------------------
function "-"(Left, Right : Observation_Vector) return Innovation_Vector is
begin
return ( Left.gps_pos - Right.gps_pos,
Left.baro_alt - Right.baro_alt,
Left.acc_ori - Right.acc_ori, -- problem: should be delta angle
Left.gyr_rates - Right.gyr_rates );
end "-";
-------------------------
-- calculate_gain
-------------------------
procedure calculate_gain( states : State_Vector;
samples : Observation_Vector;
dt : Time_Type;
K : out Kalman_Gain_Matrix;
residual : out Innovation_Vector) is
function measurement_transition( states : in State_Vector; dt : Time_Type ) return Observation_Vector is
samples : Observation_Vector;
begin
samples.baro_alt := states.pos.Altitude;
samples.gps_pos := states.pos;
samples.gyr_rates := states.rates;
samples.acc_ori := states.orientation;
return samples;
end measurement_transition;
S : Innovation_Covariance_Matrix;
begin
-- estimate gain
residual := samples - measurement_transition( states, dt );
S := G.H * G.P * Transpose(G.H) + G.R;
K := G.P * Transpose(G.H) * Inverse( S );
-- save observation vector
G.z := samples;
end calculate_gain;
-------------------------
-- uptate_state
-------------------------
procedure uptate_state( states : in out State_Vector;
K : Kalman_Gain_Matrix;
residual : Innovation_Vector;
dt : Time_Type ) is
BIAS_LIMIT : constant Angular_Velocity_Type := 50.0 * Degree/Second;
EPS: constant := 1.0E-12;
begin
if dt > Time_Type (0.0) then
-- update state
states.pos.Longitude := states.pos.Longitude + Unit_Type (K( map(X_LON), map(Z_LON) )) * residual.delta_gps_pos.Longitude;
states.pos.Latitude := states.pos.Latitude + Unit_Type (K( map(X_LAT), map(Z_LAT) )) * residual.delta_gps_pos.Latitude;
states.pos.Altitude := states.pos.Altitude + Unit_Type (K( map(X_ALT), map(Z_ALT) )) * residual.delta_gps_pos.Altitude
+ Unit_Type (K( map(X_ALT), map(Z_BARO_ALT) )) * residual.delta_baro_alt;
states.orientation.Roll := wrap_Angle( states.orientation.Roll + Unit_Type (K( map(X_ROLL), map(Z_ROLL) )) * residual.delta_acc_ori(X),
Roll_Type'First, Roll_Type'Last );
states.orientation.Pitch := mirror_Angle( states.orientation.Pitch + Unit_Type (K( map(X_PITCH), map(Z_PITCH) )) * residual.delta_acc_ori(Y),
Pitch_Type'First, Pitch_Type'Last );
states.orientation.Yaw := wrap_Angle( states.orientation.Yaw + Unit_Type (K( map(X_YAW), map(Z_YAW) )) * residual.delta_acc_ori(Z),
Yaw_Type'First, Yaw_Type'Last);
-- avoid underflow
if abs (states.rates(X)) < Angular_Velocity_Type (EPS) then
states.rates(X) := Angular_Velocity_Type (0.0);
end if;
if abs (Float (residual.delta_gyr_rates(X))) > EPS then
states.rates(X) := states.rates(X) + Unit_Type (K( map(X_ROLL_RATE), map(Z_ROLL_RATE) )) * residual.delta_gyr_rates(X);
end if;
if abs (states.rates(Y)) < Angular_Velocity_Type (EPS) then
states.rates(Y) := Angular_Velocity_Type (0.0);
end if;
if abs (Float (residual.delta_gyr_rates(Y))) > EPS then
states.rates(Y) := states.rates(Y) + Unit_Type (K( map(X_PITCH_RATE), map(Z_PITCH_RATE) )) * residual.delta_gyr_rates(Y);
end if;
if abs (states.rates(Z)) < Angular_Velocity_Type (EPS) then
states.rates(Z) := Angular_Velocity_Type (0.0);
end if;
if abs (Float (residual.delta_gyr_rates(Z))) > EPS then
states.rates(Z) := states.rates(Z) + Unit_Type (K( map(X_YAW_RATE), map(Z_YAW_RATE) )) * residual.delta_gyr_rates(Z);
end if;
states.bias(X) := states.bias(X) + Unit_Type (K( map(X_ROLL_BIAS), map(Z_ROLL) )) * residual.delta_acc_ori(X) / dt;
states.bias(Y) := states.bias(Y) + Unit_Type (K( map(X_PITCH_BIAS), map(Z_PITCH) )) * residual.delta_acc_ori(Y) / dt;
states.bias(Z) := states.bias(Z) + Unit_Type (K( map(X_YAW_BIAS), map(Z_YAW) )) * residual.delta_acc_ori(Z) / dt;
-- Logger.log(Logger.DEBUG, "bX: " & AImage( states.bias(X)*Second ) &
-- ", K_X: " & Image( K( map(X_ROLL), map(Z_ROLL) ) ) &
-- ", GyrX: " & AImage(states.rates(X)*Second)
-- );
-- Logger.log(Logger.DEBUG, "bY: " & AImage( states.bias(Y)*Second ) &
-- ", K_Y: " & Image( K( map(X_PITCH), map(Z_PITCH) ) ) &
-- ", GyrY: " & AImage(states.rates(Y)*Second)
-- );
-- limit bias
for dim in Cartesian_Coordinates_Type loop
if states.bias(dim) < -BIAS_LIMIT then
states.bias(dim) := -BIAS_LIMIT;
elsif states.bias(dim) > BIAS_LIMIT then
states.bias(dim) := BIAS_LIMIT;
end if;
end loop;
end if;
end uptate_state;
-------------------------
-- update_cov
-------------------------
procedure update_cov( P : in out State_Covariance_Matrix; K :Kalman_Gain_Matrix ) is
begin
-- update cov
P := P - (K * G.H) * P;
end update_cov;
-------------------------
-- calculate_A
-------------------------
procedure calculate_A( A : out State_Transition_Matrix; dt : Time_Type ) is
begin
A := (others => (others => 0.0));
A( map(X_LAT), map(X_LAT) ) := 1.0; A( map(X_LAT), map(X_GROUND_SPEED_X) ) := Base_Unit_Type(dt);
A( map(X_LON), map(X_LON) ) := 1.0; A( map(X_LON), map(X_GROUND_SPEED_Y) ) := Base_Unit_Type(dt);
A( map(X_ALT), map(X_ALT) ) := 1.0; A( map(X_ALT), map(X_GROUND_SPEED_Z) ) := -Base_Unit_Type(dt);
A( map(X_ROLL), map(X_ROLL) ) := 1.0; A( map(X_ROLL), map(X_ROLL_RATE) ) := Base_Unit_Type(dt); A( map(X_ROLL), map(X_ROLL_BIAS) ) := -Base_Unit_Type(dt);
A( map(X_PITCH), map(X_PITCH) ) := 1.0; A( map(X_PITCH), map(X_PITCH_RATE) ) := Base_Unit_Type(dt); A( map(X_PITCH), map(X_PITCH_BIAS) ) := -Base_Unit_Type(dt);
A( map(X_YAW), map(X_YAW) ) := 1.0; A( map(X_YAW), map(X_YAW_RATE) ) := Base_Unit_Type(dt); A( map(X_YAW), map(X_YAW_BIAS) ) := -Base_Unit_Type(dt);
A( map(X_ROLL_RATE), map(X_ROLL_RATE) ) := 1.0;
A( map(X_PITCH_RATE), map(X_PITCH_RATE) ) := 1.0;
A( map(X_YAW_RATE), map(X_YAW_RATE) ) := 1.0;
A( map(X_ROLL_BIAS), map(X_ROLL_BIAS) ) := 1.0;
A( map(X_PITCH_BIAS), map(X_PITCH_BIAS) ) := 1.0;
A( map(X_YAW_BIAS), map(X_YAW_BIAS) ) := 1.0;
end calculate_A;
end Kalman;
|
rtoal/enhanced-dining-philosophers | Ada | 1,253 | ads | ------------------------------------------------------------------------------
-- randoms.ads
--
-- A package for simple random number generation. Ada provides powerful and
-- sophisticated random number facilities which are a bit heavy handed for
-- simple applications. This package provides only the basics. Conceptually
-- it implements a single random number generator, from which you can obtain
-- random discretes and floats. The operations are:
--
-- Reset reset the generator to some unspecified state.
-- Reset (Seed) reset the generator to the state specified by Seed.
-- Random (X, Y) return a random number in X..Y inclusive. There are
-- integer and floating point versions of this function.
-- Random_Discrete a generic function to return a random value from a giv-
-- en discrete type.
------------------------------------------------------------------------------
package Randoms is
procedure Reset;
procedure Reset (Seed: Integer);
function Random (X, Y: Integer) return Integer;
function Random (X, Y: Float) return Float;
generic type Element is (<>); function Random_Discrete return Element;
end Randoms;
|
mgrojo/bingada | Ada | 639 | ads | --*****************************************************************************
--*
--* PROJECT: BINGADA
--*
--* FILE: q_bingo-q_bombo.ads
--*
--* AUTHOR: Javier Fuica Fernandez
--*
--*****************************************************************************
package Q_Bingo.Q_Bombo is
procedure P_Init;
procedure P_Spin (V_Number : out Positive;
V_Current_Index : out T_Number;
V_Last_Number : out Boolean);
function F_Get_Number (V_Index : T_Number) return T_Number;
function F_Get_Current_Index return T_Number;
end Q_Bingo.Q_Bombo;
|
reznikmm/matreshka | Ada | 446 | ads | with Ada.Streams;
with League.Strings;
package Demo is
type Rect is record
F : Boolean;
X : Integer;
Y : Integer;
N : League.Strings.Universal_String;
end record;
procedure Read
(S : access Ada.Streams.Root_Stream_Type'Class;
V : out Rect);
procedure Write
(S : access Ada.Streams.Root_Stream_Type'Class;
V : Rect);
for Rect'Read use Read;
for Rect'Write use Write;
end Demo;
|
reznikmm/matreshka | Ada | 3,654 | 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.
------------------------------------------------------------------------------
with League.Holders.Generic_Holders;
package AMF.DG.Holders.Translates is
new League.Holders.Generic_Holders
(AMF.DG.DG_Translate);
pragma Preelaborate (AMF.DG.Holders.Translates);
|
faelys/natools | Ada | 13,955 | adb | ------------------------------------------------------------------------------
-- Copyright (c) 2016-2017, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR --
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES --
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN --
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF --
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --
------------------------------------------------------------------------------
package body Natools.Smaz is
use type Ada.Streams.Stream_Element_Offset;
procedure Find_Entry
(Dict : in Dictionary;
Template : in String;
Index : out Ada.Streams.Stream_Element;
Length : out Natural);
-- Try to find the longest entry in Dict that is a prefix of Template,
-- setting Length to 0 when no such entry exists.
function To_String (Data : in Ada.Streams.Stream_Element_Array)
return String;
-- Convert a stream element array into a string
function Verbatim_Size (Dict : Dictionary; Original_Size : Natural)
return Ada.Streams.Stream_Element_Count;
-- Return the number of bytes needed by the verbatim encoding
-- of Original_Size bytes.
------------------------------
-- Local Helper Subprograms --
------------------------------
procedure Find_Entry
(Dict : in Dictionary;
Template : in String;
Index : out Ada.Streams.Stream_Element;
Length : out Natural)
is
I : Ada.Streams.Stream_Element;
N : Natural;
begin
Index := Ada.Streams.Stream_Element'Last;
Length := 0;
for Last in reverse Template'Range loop
N := Dict.Hash (Template (Template'First .. Last));
if N <= Natural (Dict.Dict_Last) then
I := Ada.Streams.Stream_Element (N);
if Dict_Entry (Dict, I) = Template (Template'First .. Last) then
Index := I;
Length := 1 + Last - Template'First;
return;
end if;
end if;
end loop;
end Find_Entry;
function To_String (Data : in Ada.Streams.Stream_Element_Array)
return String is
begin
return Result : String (1 .. Data'Length) do
for I in Result'Range loop
Result (I) := Character'Val (Data
(Data'First + Ada.Streams.Stream_Element_Offset (I - 1)));
end loop;
end return;
end To_String;
function Verbatim_Size (Dict : Dictionary; Original_Size : Natural)
return Ada.Streams.Stream_Element_Count
is
Verbatim1_Max_Size : constant Ada.Streams.Stream_Element_Count
:= Ada.Streams.Stream_Element_Count
(Ada.Streams.Stream_Element'Last - Dict.Dict_Last)
- Boolean'Pos (Dict.Variable_Length_Verbatim);
Verbatim2_Max_Size : constant Ada.Streams.Stream_Element_Count
:= Ada.Streams.Stream_Element_Count (Ada.Streams.Stream_Element'Last)
+ Verbatim1_Max_Size;
Remaining : Ada.Streams.Stream_Element_Count
:= Ada.Streams.Stream_Element_Count (Original_Size);
Overhead : Ada.Streams.Stream_Element_Count := 0;
begin
if Dict.Variable_Length_Verbatim then
if Remaining >= Verbatim2_Max_Size then
declare
Full_Blocks : constant Ada.Streams.Stream_Element_Count
:= Remaining / Verbatim2_Max_Size;
begin
Overhead := Overhead + 2 * Full_Blocks;
Remaining := Remaining - Verbatim2_Max_Size * Full_Blocks;
end;
end if;
if Remaining > Verbatim1_Max_Size then
Overhead := Overhead + 2;
Remaining := 0;
end if;
end if;
declare
Block_Count : constant Ada.Streams.Stream_Element_Count
:= (Remaining + Verbatim1_Max_Size - 1) / Verbatim1_Max_Size;
begin
Overhead := Overhead + Block_Count;
end;
return Overhead + Ada.Streams.Stream_Element_Count (Original_Size);
end Verbatim_Size;
----------------------
-- Public Interface --
----------------------
function Dict_Entry
(Dict : in Dictionary;
Index : in Ada.Streams.Stream_Element)
return String
is
First : constant Positive := Dict.Offsets (Index);
Last : Natural := Dict.Values'Last;
begin
if Index + 1 in Dict.Offsets'Range then
Last := Dict.Offsets (Index + 1) - 1;
end if;
return Dict.Values (First .. Last);
end Dict_Entry;
function Compressed_Upper_Bound
(Dict : in Dictionary;
Input : in String)
return Ada.Streams.Stream_Element_Count is
begin
return Verbatim_Size (Dict, Input'Length);
end Compressed_Upper_Bound;
procedure Compress
(Dict : in Dictionary;
Input : in String;
Output_Buffer : out Ada.Streams.Stream_Element_Array;
Output_Last : out Ada.Streams.Stream_Element_Offset)
is
procedure Find_Entry;
Verbatim1_Max_Size : constant Natural
:= Natural (Ada.Streams.Stream_Element'Last - Dict.Dict_Last)
- Boolean'Pos (Dict.Variable_Length_Verbatim);
Verbatim2_Max_Size : constant Natural
:= Natural (Ada.Streams.Stream_Element'Last)
+ Verbatim1_Max_Size;
Input_Index : Positive := Input'First;
Length : Natural;
Word : Ada.Streams.Stream_Element;
procedure Find_Entry is
begin
Find_Entry
(Dict,
Input (Input_Index
.. Natural'Min (Input_Index + Dict.Max_Word_Length - 1,
Input'Last)),
Word,
Length);
end Find_Entry;
Previous_Verbatim_Beginning : Natural := 0;
Previous_Verbatim_Last : Ada.Streams.Stream_Element_Offset := 0;
begin
Output_Last := Output_Buffer'First - 1;
Find_Entry;
Main_Loop :
while Input_Index in Input'Range loop
Data_In_Dict :
while Length > 0 loop
Output_Last := Output_Last + 1;
Output_Buffer (Output_Last) := Word;
Input_Index := Input_Index + Length;
exit Main_Loop when Input_Index not in Input'Range;
Find_Entry;
end loop Data_In_Dict;
Verbatim_Block :
declare
Beginning : Positive := Input_Index;
Verbatim_Length, Block_Length : Natural;
begin
Verbatim_Scan :
while Length = 0 and Input_Index in Input'Range loop
Input_Index := Input_Index + 1;
Find_Entry;
end loop Verbatim_Scan;
Verbatim_Length := Input_Index - Beginning;
if Previous_Verbatim_Beginning > 0
and then Output_Last + Verbatim_Size (Dict, Verbatim_Length)
>= Previous_Verbatim_Last + Verbatim_Size
(Dict, Input_Index - Previous_Verbatim_Beginning)
then
Beginning := Previous_Verbatim_Beginning;
Output_Last := Previous_Verbatim_Last;
Verbatim_Length := Input_Index - Beginning;
else
Previous_Verbatim_Beginning := Beginning;
Previous_Verbatim_Last := Output_Last;
end if;
Verbatim_Encode :
while Verbatim_Length > 0 loop
if Dict.Variable_Length_Verbatim
and then Verbatim_Length > Verbatim1_Max_Size
then
Block_Length := Natural'Min
(Verbatim_Length, Verbatim2_Max_Size);
Output_Buffer (Output_Last + 1)
:= Ada.Streams.Stream_Element'Last;
Output_Buffer (Output_Last + 2) := Ada.Streams.Stream_Element
(Block_Length - Verbatim1_Max_Size);
Output_Last := Output_Last + 2;
else
Block_Length := Natural'Min
(Verbatim_Length, Verbatim1_Max_Size);
Output_Last := Output_Last + 1;
Output_Buffer (Output_Last)
:= Ada.Streams.Stream_Element'Last
- Ada.Streams.Stream_Element
(Block_Length - 1
+ Boolean'Pos (Dict.Variable_Length_Verbatim));
end if;
Verbatim_Copy :
for I in Beginning .. Beginning + Block_Length - 1 loop
Output_Last := Output_Last + 1;
Output_Buffer (Output_Last) := Character'Pos (Input (I));
end loop Verbatim_Copy;
Verbatim_Length := Verbatim_Length - Block_Length;
Beginning := Beginning + Block_Length;
end loop Verbatim_Encode;
end Verbatim_Block;
end loop Main_Loop;
end Compress;
function Compress (Dict : in Dictionary; Input : in String)
return Ada.Streams.Stream_Element_Array
is
Result : Ada.Streams.Stream_Element_Array
(1 .. Compressed_Upper_Bound (Dict, Input));
Last : Ada.Streams.Stream_Element_Offset;
begin
Compress (Dict, Input, Result, Last);
return Result (Result'First .. Last);
end Compress;
function Decompressed_Length
(Dict : in Dictionary;
Input : in Ada.Streams.Stream_Element_Array)
return Natural
is
Result : Natural := 0;
Verbatim_Code_Count : constant Ada.Streams.Stream_Element_Offset
:= Ada.Streams.Stream_Element_Offset
(Ada.Streams.Stream_Element'Last - Dict.Dict_Last);
Input_Index : Ada.Streams.Stream_Element_Offset := Input'First;
Input_Byte : Ada.Streams.Stream_Element;
Verbatim_Length : Ada.Streams.Stream_Element_Offset;
begin
while Input_Index in Input'Range loop
Input_Byte := Input (Input_Index);
if Input_Byte in Dict.Offsets'Range then
Result := Result + Dict_Entry (Dict, Input_Byte)'Length;
Input_Index := Input_Index + 1;
else
if not Dict.Variable_Length_Verbatim then
Verbatim_Length := Ada.Streams.Stream_Element_Offset
(Ada.Streams.Stream_Element'Last - Input_Byte) + 1;
elsif Input_Byte < Ada.Streams.Stream_Element'Last then
Verbatim_Length := Ada.Streams.Stream_Element_Offset
(Ada.Streams.Stream_Element'Last - Input_Byte);
else
Input_Index := Input_Index + 1;
Verbatim_Length := Ada.Streams.Stream_Element_Offset
(Input (Input_Index)) + Verbatim_Code_Count - 1;
end if;
Result := Result + Positive (Verbatim_Length);
Input_Index := Input_Index + Verbatim_Length + 1;
end if;
end loop;
return Result;
end Decompressed_Length;
procedure Decompress
(Dict : in Dictionary;
Input : in Ada.Streams.Stream_Element_Array;
Output_Buffer : out String;
Output_Last : out Natural)
is
procedure Append (S : in String);
procedure Append (S : in Ada.Streams.Stream_Element_Array);
procedure Append (S : in String) is
begin
Output_Buffer (Output_Last + 1 .. Output_Last + S'Length) := S;
Output_Last := Output_Last + S'Length;
end Append;
procedure Append (S : in Ada.Streams.Stream_Element_Array) is
begin
Append (To_String (S));
end Append;
Verbatim_Code_Count : constant Ada.Streams.Stream_Element_Offset
:= Ada.Streams.Stream_Element_Offset
(Ada.Streams.Stream_Element'Last - Dict.Dict_Last);
Input_Index : Ada.Streams.Stream_Element_Offset := Input'First;
Input_Byte : Ada.Streams.Stream_Element;
Verbatim_Length : Ada.Streams.Stream_Element_Offset;
begin
Output_Last := Output_Buffer'First - 1;
while Input_Index in Input'Range loop
Input_Byte := Input (Input_Index);
if Input_Byte in Dict.Offsets'Range then
Append (Dict_Entry (Dict, Input_Byte));
Input_Index := Input_Index + 1;
else
if not Dict.Variable_Length_Verbatim then
Verbatim_Length := Ada.Streams.Stream_Element_Offset
(Ada.Streams.Stream_Element'Last - Input_Byte) + 1;
elsif Input_Byte < Ada.Streams.Stream_Element'Last then
Verbatim_Length := Ada.Streams.Stream_Element_Offset
(Ada.Streams.Stream_Element'Last - Input_Byte);
else
Input_Index := Input_Index + 1;
Verbatim_Length := Ada.Streams.Stream_Element_Offset
(Input (Input_Index)) + Verbatim_Code_Count - 1;
end if;
Append (Input (Input_Index + 1 .. Input_Index + Verbatim_Length));
Input_Index := Input_Index + Verbatim_Length + 1;
end if;
end loop;
end Decompress;
function Decompress
(Dict : in Dictionary; Input : in Ada.Streams.Stream_Element_Array)
return String
is
Result : String (1 .. Decompressed_Length (Dict, Input));
Last : Natural;
begin
Decompress (Dict, Input, Result, Last);
pragma Assert (Last = Result'Last);
return Result;
end Decompress;
end Natools.Smaz;
|
MinimSecure/unum-sdk | Ada | 773 | ads | -- Copyright 2013-2019 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 IO is
procedure Put_Line (S : String);
end IO;
|
smola/language-dataset | Ada | 70,342 | adb | ------------------------------------------------------------------------------
-- --
-- GPR PROJECT MANAGER --
-- --
-- Copyright (C) 2001-2019, Free Software Foundation, Inc. --
-- --
-- This library 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 library is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY 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/>. --
-- --
------------------------------------------------------------------------------
with Ada.Characters.Handling; use Ada.Characters.Handling;
with Ada.Command_Line;
with Ada.Directories;
with Ada.Environment_Variables; use Ada.Environment_Variables;
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Unchecked_Deallocation;
with GNAT.Case_Util; use GNAT.Case_Util;
with GNAT.Directory_Operations; use GNAT.Directory_Operations;
with GNAT.HTable;
with GPR.Opt;
with GPR.Attr;
with GPR.Names; use GPR.Names;
with GPR.Output; use GPR.Output;
with GPR.Snames; use GPR.Snames;
package body GPR is
package body Stamps is separate;
type Restricted_Lang;
type Restricted_Lang_Access is access Restricted_Lang;
type Restricted_Lang is record
Name : Name_Id;
Next : Restricted_Lang_Access;
end record;
Restricted_Languages : Restricted_Lang_Access := null;
-- When null, all languages are allowed, otherwise only the languages in
-- the list are allowed.
Object_Suffix : constant String := Get_Target_Object_Suffix.all;
-- File suffix for object files
Initial_Buffer_Size : constant := 100;
-- Initial size for extensible buffer used in Add_To_Buffer
The_Empty_String : Name_Id := No_Name;
The_Dot_String : Name_Id := No_Name;
Debug_Level : Integer := 0;
-- Current indentation level for debug traces
type Cst_String_Access is access constant String;
All_Lower_Case_Image : aliased constant String := "lowercase";
All_Upper_Case_Image : aliased constant String := "UPPERCASE";
Mixed_Case_Image : aliased constant String := "MixedCase";
The_Casing_Images : constant array (Casing_Type) of Cst_String_Access :=
(All_Lower_Case => All_Lower_Case_Image'Access,
All_Upper_Case => All_Upper_Case_Image'Access,
Mixed_Case => Mixed_Case_Image'Access,
Unknown => null);
type Section_Displayed_Arr is array (Section_Type) of Boolean;
Section_Displayed : Section_Displayed_Arr := (others => False);
-- Flags to avoid to display several times the section header
Temp_Files : Temp_Files_Table.Instance;
-- Table to record temp file paths to be deleted, when no project tree is
-- available.
function Label (Section : Section_Type) return String;
-- Section headers
procedure Free (Project : in out Project_Id);
-- Free memory allocated for Project
procedure Free_List (Languages : in out Language_Ptr);
procedure Free_List (Source : in out Source_Id);
procedure Free_List (Languages : in out Language_List);
-- Free memory allocated for the list of languages or sources
procedure Reset_Units_In_Table (Table : in out Units_Htable.Instance);
-- Resets all Units to No_Unit_Index Unit.File_Names (Spec).Unit &
-- Unit.File_Names (Impl).Unit in the given table.
procedure Free_Units (Table : in out Units_Htable.Instance);
-- Free memory allocated for unit information in the project
procedure Language_Changed (Iter : in out Source_Iterator);
procedure Project_Changed (Iter : in out Source_Iterator);
-- Called when a new project or language was selected for this iterator
function Contains_ALI_Files (Dir : Path_Name_Type) return Boolean;
-- Return True if there is at least one ALI file in the directory Dir
-----------------------------
-- Add_Restricted_Language --
-----------------------------
procedure Add_Restricted_Language (Name : String) is
N : String (1 .. Name'Length) := Name;
begin
To_Lower (N);
Name_Len := 0;
Add_Str_To_Name_Buffer (N);
Restricted_Languages :=
new Restricted_Lang'(Name => Name_Find, Next => Restricted_Languages);
end Add_Restricted_Language;
-----------------
-- Add_To_Path --
-----------------
procedure Add_To_Path
(Directory : String;
Append : Boolean := False;
Variable : String := "PATH")
is
procedure Update (Path : String);
-- Update value of Variable. Path is its current value;
------------
-- Update --
------------
procedure Update (Path : String) is
begin
if Path'Length = 0 then
Set (Variable, Directory);
elsif Append then
Set (Variable, Path & Path_Separator & Directory);
else
Set (Variable, Directory & Path_Separator & Path);
end if;
end Update;
begin
if Directory'Length /= 0 then
if not Exists (Variable) then
Update ("");
else
Update (Value (Variable));
end if;
end if;
end Add_To_Path;
-------------------------------------
-- Remove_All_Restricted_Languages --
-------------------------------------
procedure Remove_All_Restricted_Languages is
begin
Restricted_Languages := null;
end Remove_All_Restricted_Languages;
-------------------
-- Add_To_Buffer --
-------------------
procedure Add_To_Buffer
(S : String;
To : in out String_Access;
Last : in out Natural)
is
begin
if To = null then
To := new String (1 .. Initial_Buffer_Size);
Last := 0;
end if;
-- If Buffer is too small, double its size
while Last + S'Length > To'Last loop
declare
New_Buffer : constant String_Access :=
new String (1 .. 2 * To'Length);
begin
New_Buffer (1 .. Last) := To (1 .. Last);
Free (To);
To := New_Buffer;
end;
end loop;
To (Last + 1 .. Last + S'Length) := S;
Last := Last + S'Length;
end Add_To_Buffer;
---------------------------------
-- Current_Object_Path_File_Of --
---------------------------------
function Current_Object_Path_File_Of
(Shared : Shared_Project_Tree_Data_Access) return Path_Name_Type
is
begin
return Shared.Private_Part.Current_Object_Path_File;
end Current_Object_Path_File_Of;
---------------------------------
-- Current_Source_Path_File_Of --
---------------------------------
function Current_Source_Path_File_Of
(Shared : Shared_Project_Tree_Data_Access)
return Path_Name_Type is
begin
return Shared.Private_Part.Current_Source_Path_File;
end Current_Source_Path_File_Of;
---------------------------
-- Delete_Temporary_File --
---------------------------
procedure Delete_Temporary_File
(Shared : Shared_Project_Tree_Data_Access := null;
Path : Path_Name_Type)
is
Dont_Care : Boolean;
pragma Warnings (Off, Dont_Care);
begin
if not Opt.Keep_Temporary_Files then
if Current_Verbosity = High then
Write_Line ("Removing temp file: " & Get_Name_String (Path));
end if;
Delete_File (Get_Name_String (Path), Dont_Care);
if Shared = null then
for Index in
1 .. Temp_Files_Table.Last (Temp_Files)
loop
if Temp_Files.Table (Index) = Path then
Temp_Files.Table (Index) := No_Path;
end if;
end loop;
else
for Index in
1 .. Temp_Files_Table.Last (Shared.Private_Part.Temp_Files)
loop
if Shared.Private_Part.Temp_Files.Table (Index) = Path then
Shared.Private_Part.Temp_Files.Table (Index) := No_Path;
end if;
end loop;
end if;
end if;
end Delete_Temporary_File;
procedure Delete_Temporary_File
(Shared : Shared_Project_Tree_Data_Access := null;
Path : String)
is
Path_Name : Path_Name_Type;
begin
Name_Len := 0;
Add_Str_To_Name_Buffer (Path);
Path_Name := Name_Find;
Delete_Temporary_File (Shared, Path_Name);
end Delete_Temporary_File;
---------------------------
-- Delete_All_Temp_Files --
---------------------------
procedure Delete_All_Temp_Files
(Shared : Shared_Project_Tree_Data_Access)
is
Success : Boolean;
Path : Path_Name_Type;
Instance : Temp_Files_Table.Instance;
begin
if not Opt.Keep_Temporary_Files then
if Shared = null then
Instance := Temp_Files;
else
Instance := Shared.Private_Part.Temp_Files;
end if;
for Index in
1 .. Temp_Files_Table.Last (Instance)
loop
Path := Instance.Table (Index);
if Path /= No_Path then
declare
Path_Name : constant String := Get_Name_String (Path);
begin
if Current_Verbosity = High then
Write_Line ("Removing temp file: " & Path_Name);
end if;
Delete_File (Path_Name, Success);
if not Success then
if Is_Regular_File (Path_Name) then
Write_Line
("Could not remove temp file " & Path_Name);
elsif Current_Verbosity = High then
Write_Line
("Temp file " & Path_Name & " already deleted");
end if;
end if;
end;
end if;
end loop;
if Shared = null then
Temp_Files_Table.Init (Temp_Files);
else
Temp_Files_Table.Init (Shared.Private_Part.Temp_Files);
end if;
end if;
if Shared /= null then
-- If any of the environment variables ADA_PRJ_INCLUDE_FILE or
-- ADA_PRJ_OBJECTS_FILE has been set, then reset their value to
-- the empty string.
if Shared.Private_Part.Current_Source_Path_File /= No_Path then
Setenv (Project_Include_Path_File, "");
end if;
if Shared.Private_Part.Current_Object_Path_File /= No_Path then
Setenv (Project_Objects_Path_File, "");
end if;
end if;
end Delete_All_Temp_Files;
---------------------
-- Dependency_Name --
---------------------
function Dependency_Name
(Source_File_Name : File_Name_Type;
Dependency : Dependency_File_Kind) return File_Name_Type
is
begin
case Dependency is
when None =>
return No_File;
when Makefile =>
return Extend_Name (Source_File_Name, Makefile_Dependency_Suffix);
when ALI_File | ALI_Closure =>
return Extend_Name (Source_File_Name, ALI_Dependency_Suffix);
end case;
end Dependency_Name;
---------
-- Set --
---------
procedure Set (Section : Section_Type)
is
begin
Section_Displayed (Section) := True;
end Set;
-------------
-- Display --
-------------
procedure Display
(Section : Section_Type;
Command : String;
Argument : String)
is
Buffer : String (1 .. 1_000);
Last : Natural := 0;
First_Offset : constant := 3;
Second_Offset : constant := 18;
begin
-- Display the section header if not already displayed
if not Section_Displayed (Section) then
Put_Line (Label (Section));
Section_Displayed (Section) := True;
end if;
Buffer (1 .. First_Offset) := (others => ' ');
Last := First_Offset + 1;
Buffer (Last) := '[';
Buffer (Last + 1 .. Last + Command'Length) := Command;
Last := Last + Command'Length + 1;
Buffer (Last) := ']';
-- At least one space between first and second column. Second column
-- starts at least at Second_Offset + 1.
loop
Last := Last + 1;
Buffer (Last) := ' ';
exit when Last >= Second_Offset;
end loop;
Buffer (Last + 1 .. Last + Argument'Length) := Argument;
Last := Last + Argument'Length;
Put_Line (Buffer (1 .. Last));
end Display;
----------------
-- Dot_String --
----------------
function Dot_String return Name_Id is
begin
return The_Dot_String;
end Dot_String;
----------------
-- Empty_File --
----------------
function Empty_File return File_Name_Type is
begin
return File_Name_Type (The_Empty_String);
end Empty_File;
-------------------
-- Empty_Project --
-------------------
function Empty_Project
(Qualifier : Project_Qualifier) return Project_Data
is
begin
GPR.Initialize (Tree => No_Project_Tree);
declare
Data : Project_Data (Qualifier => Qualifier);
begin
-- Only the fields for which no default value could be provided in
-- prj.ads are initialized below.
Data.Config := Default_Project_Config;
return Data;
end;
end Empty_Project;
------------------
-- Empty_String --
------------------
function Empty_String return Name_Id is
begin
return The_Empty_String;
end Empty_String;
-----------------
-- Extend_Name --
-----------------
function Extend_Name
(File : File_Name_Type;
With_Suffix : String) return File_Name_Type
is
Last : Positive;
begin
Get_Name_String (File);
Last := Name_Len + 1;
while Name_Len /= 0 and then Name_Buffer (Name_Len) /= '.' loop
Name_Len := Name_Len - 1;
end loop;
if Name_Len <= 1 then
Name_Len := Last;
end if;
for J in With_Suffix'Range loop
Name_Buffer (Name_Len) := With_Suffix (J);
Name_Len := Name_Len + 1;
end loop;
Name_Len := Name_Len - 1;
return Name_Find;
end Extend_Name;
----------
-- Free --
----------
procedure Free (Proj : in out Project_Node_Tree_Ref) is
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Project_Node_Tree_Data, Project_Node_Tree_Ref);
begin
if Proj /= null then
Tree_Private_Part.Project_Node_Table.Free (Proj.Project_Nodes);
Tree_Private_Part.Projects_Htable.Reset (Proj.Projects_HT);
Unchecked_Free (Proj);
end if;
end Free;
-------------------------
-- Is_Allowed_Language --
-------------------------
function Is_Allowed_Language (Name : Name_Id) return Boolean is
R : Restricted_Lang_Access := Restricted_Languages;
Lang : constant String := Get_Name_String (Name);
begin
if R = null then
return True;
else
while R /= null loop
if Get_Name_String (R.Name) = Lang then
return True;
end if;
R := R.Next;
end loop;
return False;
end if;
end Is_Allowed_Language;
---------------------
-- Project_Changed --
---------------------
procedure Project_Changed (Iter : in out Source_Iterator) is
begin
if Iter.Project /= null then
Iter.Language := Iter.Project.Project.Languages;
Language_Changed (Iter);
end if;
end Project_Changed;
----------------------
-- Language_Changed --
----------------------
procedure Language_Changed (Iter : in out Source_Iterator) is
begin
Iter.Current := No_Source;
if Iter.Language_Name /= No_Name then
while Iter.Language /= null
and then Iter.Language.Name /= Iter.Language_Name
loop
Iter.Language := Iter.Language.Next;
end loop;
end if;
-- If there is no matching language in this project, move to next
if Iter.Language = No_Language_Index then
if Iter.All_Projects then
loop
Iter.Project := Iter.Project.Next;
exit when Iter.Project = null
or else Iter.Encapsulated_Libs
or else not Iter.Project.From_Encapsulated_Lib;
end loop;
Project_Changed (Iter);
else
Iter.Project := null;
end if;
else
Iter.Current := Iter.Language.First_Source;
if Iter.Current = No_Source then
Iter.Language := Iter.Language.Next;
Language_Changed (Iter);
elsif not Iter.Locally_Removed
and then Iter.Current.Locally_Removed
then
Next (Iter);
end if;
end if;
end Language_Changed;
---------------------
-- For_Each_Source --
---------------------
function For_Each_Source
(In_Tree : Project_Tree_Ref;
Project : Project_Id := No_Project;
Language : Name_Id := No_Name;
Encapsulated_Libs : Boolean := True;
Locally_Removed : Boolean := True) return Source_Iterator
is
Iter : Source_Iterator;
begin
Iter := Source_Iterator'
(In_Tree => In_Tree,
Project => In_Tree.Projects,
All_Projects => Project = No_Project,
Language_Name => Language,
Language => No_Language_Index,
Current => No_Source,
Encapsulated_Libs => Encapsulated_Libs,
Locally_Removed => Locally_Removed);
if Project /= null then
while Iter.Project /= null
and then Iter.Project.Project /= Project
loop
Iter.Project := Iter.Project.Next;
end loop;
elsif not Encapsulated_Libs then
while Iter.Project /= null
and then Iter.Project.From_Encapsulated_Lib
loop
Iter.Project := Iter.Project.Next;
end loop;
end if;
Project_Changed (Iter);
return Iter;
end For_Each_Source;
-------------
-- Element --
-------------
function Element (Iter : Source_Iterator) return Source_Id is
begin
return Iter.Current;
end Element;
----------
-- Next --
----------
procedure Next (Iter : in out Source_Iterator) is
begin
loop
Iter.Current := Iter.Current.Next_In_Lang;
exit when Iter.Locally_Removed
or else Iter.Current = No_Source
or else not Iter.Current.Locally_Removed;
end loop;
if Iter.Current = No_Source then
Iter.Language := Iter.Language.Next;
Language_Changed (Iter);
end if;
end Next;
--------------------------------
-- For_Every_Project_Imported --
--------------------------------
procedure For_Every_Project_Imported_Context
(By : Project_Id;
Tree : Project_Tree_Ref;
With_State : in out State;
Include_Aggregated : Boolean := True;
Imported_First : Boolean := False)
is
procedure Recursive_Check_Context
(Project : Project_Id;
Tree : Project_Tree_Ref;
In_Aggregate_Lib : Boolean;
From_Encapsulated_Lib : Boolean);
-- Recursively handle the project tree creating a new context for
-- keeping track about already handled projects.
-----------------------------
-- Recursive_Check_Context --
-----------------------------
procedure Recursive_Check_Context
(Project : Project_Id;
Tree : Project_Tree_Ref;
In_Aggregate_Lib : Boolean;
From_Encapsulated_Lib : Boolean)
is
Seen_Name : Name_Id_Set.Set;
-- This set is needed to ensure that we do not handle the same
-- project twice in the context of aggregate libraries.
procedure Recursive_Check
(Project : Project_Id;
Tree : Project_Tree_Ref;
In_Aggregate_Lib : Boolean;
From_Encapsulated_Lib : Boolean);
-- Check if project has already been seen. If not, mark it as Seen,
-- Call Action, and check all its imported and aggregated projects.
---------------------
-- Recursive_Check --
---------------------
procedure Recursive_Check
(Project : Project_Id;
Tree : Project_Tree_Ref;
In_Aggregate_Lib : Boolean;
From_Encapsulated_Lib : Boolean)
is
function Has_Sources (P : Project_Id) return Boolean;
-- Returns True if P has sources
function Get_From_Tree (P : Project_Id) return Project_Id;
-- Get project P from Tree. If P has no sources get another
-- instance of this project with sources. If P has sources,
-- returns it.
-----------------
-- Has_Sources --
-----------------
function Has_Sources (P : Project_Id) return Boolean is
Lang : Language_Ptr;
begin
Lang := P.Languages;
while Lang /= No_Language_Index loop
if Lang.First_Source /= No_Source then
return True;
end if;
Lang := Lang.Next;
end loop;
return False;
end Has_Sources;
-------------------
-- Get_From_Tree --
-------------------
function Get_From_Tree (P : Project_Id) return Project_Id is
List : Project_List := Tree.Projects;
begin
if not Has_Sources (P) then
while List /= null loop
if List.Project.Name = P.Name
and then Has_Sources (List.Project)
then
return List.Project;
end if;
List := List.Next;
end loop;
end if;
return P;
end Get_From_Tree;
-- Local variables
List : Project_List;
-- Start of processing for Recursive_Check
begin
-- If a non abstract imported project is extended, then the actual
-- imported is the extending project.
if Project.Qualifier /= Abstract_Project and then
Project.Extended_By /= No_Project and then
not Seen_Name.Contains (Project.Extended_By.Name)
then
Recursive_Check
(Project.Extended_By, Tree,
In_Aggregate_Lib, From_Encapsulated_Lib);
end if;
if not Seen_Name.Contains (Project.Name) then
-- Even if a project is aggregated multiple times in an
-- aggregated library, we will only return it once.
Seen_Name.Include (Project.Name);
if not Imported_First then
if Project.Qualifier /= Abstract_Project or else
Project.Extended_By = No_Project
then
Action
(Get_From_Tree (Project),
Tree,
Project_Context'
(In_Aggregate_Lib,
From_Encapsulated_Lib),
With_State);
end if;
end if;
-- Visit all extended projects
if Project.Extends /= No_Project then
Recursive_Check
(Project.Extends, Tree,
In_Aggregate_Lib, From_Encapsulated_Lib);
end if;
-- Visit all imported projects
List := Project.Imported_Projects;
while List /= null loop
Recursive_Check
(List.Project, Tree,
In_Aggregate_Lib,
From_Encapsulated_Lib
or else Project.Standalone_Library = Encapsulated);
List := List.Next;
end loop;
-- Visit all aggregated projects
if Include_Aggregated
and then Project.Qualifier in Aggregate_Project
then
declare
Agg : Aggregated_Project_List;
begin
Agg := Project.Aggregated_Projects;
while Agg /= null loop
pragma Assert (Agg.Project /= No_Project);
-- For aggregated libraries, the tree must be the one
-- of the aggregate library.
if Project.Qualifier = Aggregate_Library then
Recursive_Check
(Agg.Project, Tree,
True,
From_Encapsulated_Lib
or else
Project.Standalone_Library = Encapsulated);
else
-- Use a new context as we want to returns the same
-- project in different project tree for aggregated
-- projects.
Recursive_Check_Context
(Agg.Project, Agg.Tree, False, False);
end if;
Agg := Agg.Next;
end loop;
end;
end if;
if Imported_First then
if Project.Qualifier /= Abstract_Project or else
Project.Extended_By = No_Project
then
Action
(Get_From_Tree (Project),
Tree,
Project_Context'
(In_Aggregate_Lib,
From_Encapsulated_Lib),
With_State);
end if;
end if;
end if;
end Recursive_Check;
-- Start of processing for Recursive_Check_Context
begin
Recursive_Check
(Project, Tree, In_Aggregate_Lib, From_Encapsulated_Lib);
end Recursive_Check_Context;
-- Start of processing for For_Every_Project_Imported
begin
Recursive_Check_Context
(Project => By,
Tree => Tree,
In_Aggregate_Lib => False,
From_Encapsulated_Lib => False);
end For_Every_Project_Imported_Context;
procedure For_Every_Project_Imported
(By : Project_Id;
Tree : Project_Tree_Ref;
With_State : in out State;
Include_Aggregated : Boolean := True;
Imported_First : Boolean := False)
is
procedure Internal
(Project : Project_Id;
Tree : Project_Tree_Ref;
Context : Project_Context;
With_State : in out State);
-- Action wrapper for handling the context
--------------
-- Internal --
--------------
procedure Internal
(Project : Project_Id;
Tree : Project_Tree_Ref;
Context : Project_Context;
With_State : in out State)
is
pragma Unreferenced (Context);
begin
Action (Project, Tree, With_State);
end Internal;
procedure For_Projects is
new For_Every_Project_Imported_Context (State, Internal);
begin
For_Projects (By, Tree, With_State, Include_Aggregated, Imported_First);
end For_Every_Project_Imported;
-----------------
-- Find_Source --
-----------------
function Find_Source
(In_Tree : Project_Tree_Ref;
Project : Project_Id;
In_Imported_Only : Boolean := False;
In_Extended_Only : Boolean := False;
Base_Name : File_Name_Type;
Index : Int := 0) return Source_Id
is
Result : Source_Id := No_Source;
procedure Look_For_Sources
(Proj : Project_Id;
Tree : Project_Tree_Ref;
Src : in out Source_Id);
-- Look for Base_Name in the sources of Proj
----------------------
-- Look_For_Sources --
----------------------
procedure Look_For_Sources
(Proj : Project_Id;
Tree : Project_Tree_Ref;
Src : in out Source_Id)
is
Iterator : Source_Iterator;
begin
Iterator := For_Each_Source (In_Tree => Tree, Project => Proj);
while Element (Iterator) /= No_Source loop
if Element (Iterator).File = Base_Name
and then (Index = 0 or else Element (Iterator).Index = Index)
then
Src := Element (Iterator);
-- If the source has been excluded, continue looking. We will
-- get the excluded source only if there is no other source
-- with the same base name that is not locally removed.
if not Element (Iterator).Locally_Removed then
return;
end if;
end if;
Next (Iterator);
end loop;
end Look_For_Sources;
procedure For_Imported_Projects is new For_Every_Project_Imported
(State => Source_Id, Action => Look_For_Sources);
Proj : Project_Id;
-- Start of processing for Find_Source
begin
if In_Extended_Only then
Proj := Project;
while Proj /= No_Project loop
Look_For_Sources (Proj, In_Tree, Result);
exit when Result /= No_Source;
Proj := Proj.Extends;
end loop;
elsif In_Imported_Only then
Look_For_Sources (Project, In_Tree, Result);
if Result = No_Source then
For_Imported_Projects
(By => Project,
Tree => In_Tree,
Include_Aggregated => False,
With_State => Result);
end if;
else
Look_For_Sources (No_Project, In_Tree, Result);
end if;
return Result;
end Find_Source;
----------------------
-- Find_All_Sources --
----------------------
function Find_All_Sources
(In_Tree : Project_Tree_Ref;
Project : Project_Id;
In_Imported_Only : Boolean := False;
In_Extended_Only : Boolean := False;
Base_Name : File_Name_Type;
Index : Int := 0) return Source_Ids
is
Result : Source_Ids (1 .. 1_000);
Last : Natural := 0;
type Empty_State is null record;
No_State : Empty_State;
-- This is needed for the State parameter of procedure Look_For_Sources
-- below, because of the instantiation For_Imported_Projects of generic
-- procedure For_Every_Project_Imported. As procedure Look_For_Sources
-- does not modify parameter State, there is no need to give its type
-- more than one value.
procedure Look_For_Sources
(Proj : Project_Id;
Tree : Project_Tree_Ref;
State : in out Empty_State);
-- Look for Base_Name in the sources of Proj
----------------------
-- Look_For_Sources --
----------------------
procedure Look_For_Sources
(Proj : Project_Id;
Tree : Project_Tree_Ref;
State : in out Empty_State)
is
Iterator : Source_Iterator;
Src : Source_Id;
begin
State := No_State;
Iterator := For_Each_Source (In_Tree => Tree, Project => Proj);
while Element (Iterator) /= No_Source loop
if Element (Iterator).File = Base_Name
and then (Index = 0
or else
(Element (Iterator).Unit /= No_Unit_Index
and then
Element (Iterator).Index = Index))
then
Src := Element (Iterator);
-- If the source has been excluded, continue looking. We will
-- get the excluded source only if there is no other source
-- with the same base name that is not locally removed.
if not Element (Iterator).Locally_Removed then
Last := Last + 1;
Result (Last) := Src;
end if;
end if;
Next (Iterator);
end loop;
end Look_For_Sources;
procedure For_Imported_Projects is new For_Every_Project_Imported
(State => Empty_State, Action => Look_For_Sources);
Proj : Project_Id;
-- Start of processing for Find_All_Sources
begin
if In_Extended_Only then
Proj := Project;
while Proj /= No_Project loop
Look_For_Sources (Proj, In_Tree, No_State);
exit when Last > 0;
Proj := Proj.Extends;
end loop;
elsif In_Imported_Only then
Look_For_Sources (Project, In_Tree, No_State);
if Last = 0 then
For_Imported_Projects
(By => Project,
Tree => In_Tree,
Include_Aggregated => False,
With_State => No_State);
end if;
else
Look_For_Sources (No_Project, In_Tree, No_State);
end if;
return Result (1 .. Last);
end Find_All_Sources;
----------
-- Hash --
----------
function Hash is new GNAT.HTable.Hash (Header_Num => Header_Num);
-- Used in implementation of other functions Hash below
----------
-- Hash --
----------
function Hash (Name : File_Name_Type) return Header_Num is
begin
return Hash (Get_Name_String (Name));
end Hash;
function Hash (Name : Name_Id) return Header_Num is
begin
return Hash (Get_Name_String (Name));
end Hash;
function Hash (Name : Path_Name_Type) return Header_Num is
begin
return Hash (Get_Name_String (Name));
end Hash;
function Hash (Project : Project_Id) return Header_Num is
begin
if Project = No_Project then
return Header_Num'First;
else
return Hash (Get_Name_String (Project.Name));
end if;
end Hash;
-----------
-- Image --
-----------
function Image (The_Casing : Casing_Type) return String is
begin
return The_Casing_Images (The_Casing).all;
end Image;
-----------
-- Image --
-----------
function Image (Kind : Lib_Kind) return String is
begin
case Kind is
when Static => return "static";
when Dynamic => return "dynamic";
when Relocatable => return "relocatable";
when Static_Pic => return "static-pic";
end case;
end Image;
-----------------------------
-- Is_Standard_GNAT_Naming --
-----------------------------
function Is_Standard_GNAT_Naming
(Naming : Lang_Naming_Data) return Boolean
is
begin
return Get_Name_String (Naming.Spec_Suffix) = ".ads"
and then Get_Name_String (Naming.Body_Suffix) = ".adb"
and then Get_Name_String (Naming.Dot_Replacement) = "-";
end Is_Standard_GNAT_Naming;
----------------
-- Initialize --
----------------
procedure Initialize (Tree : Project_Tree_Ref) is
begin
if The_Empty_String = No_Name then
Name_Len := 0;
The_Empty_String := Name_Find;
Name_Len := 1;
Name_Buffer (1) := '.';
The_Dot_String := Name_Find;
GPR.Attr.Initialize;
-- Add the directory of the GPR tool at the end of the PATH, so that
-- other GPR tools, such as gprconfig, may be found.
declare
Program_Name : constant String := Ada.Command_Line.Command_Name;
use Ada.Directories;
begin
if Program_Name'Length > 0 then
if Is_Absolute_Path (Program_Name) then
Add_To_Path
(Containing_Directory (Program_Name),
Append => True);
else
Add_To_Path
(Current_Directory &
Directory_Separator &
Containing_Directory (Program_Name),
Append => True);
end if;
end if;
end;
end if;
if Tree /= No_Project_Tree then
Reset (Tree);
end if;
end Initialize;
------------------
-- Is_Extending --
------------------
function Is_Extending
(Extending : Project_Id;
Extended : Project_Id) return Boolean
is
Proj : Project_Id;
begin
Proj := Extending;
while Proj /= No_Project loop
if Proj = Extended then
return True;
end if;
Proj := Proj.Extends;
end loop;
return False;
end Is_Extending;
-----------------
-- Object_Name --
-----------------
function Object_Name
(Source_File_Name : File_Name_Type;
Object_File_Suffix : Name_Id := No_Name) return File_Name_Type
is
begin
if Object_File_Suffix = No_Name then
return Extend_Name
(Source_File_Name, Object_Suffix);
else
return Extend_Name
(Source_File_Name, Get_Name_String (Object_File_Suffix));
end if;
end Object_Name;
function Object_Name
(Source_File_Name : File_Name_Type;
Source_Index : Int;
Index_Separator : Character;
Object_File_Suffix : Name_Id := No_Name) return File_Name_Type
is
Index_Img : constant String := Source_Index'Img;
Last : Natural;
begin
Get_Name_String (Source_File_Name);
Last := Name_Len;
while Last > 1 and then Name_Buffer (Last) /= '.' loop
Last := Last - 1;
end loop;
if Last > 1 then
Name_Len := Last - 1;
end if;
Add_Char_To_Name_Buffer (Index_Separator);
Add_Str_To_Name_Buffer (Index_Img (2 .. Index_Img'Last));
if Object_File_Suffix = No_Name then
Add_Str_To_Name_Buffer (Object_Suffix);
else
Add_Str_To_Name_Buffer (Get_Name_String (Object_File_Suffix));
end if;
return Name_Find;
end Object_Name;
----------------------
-- Record_Temp_File --
----------------------
procedure Record_Temp_File
(Shared : Shared_Project_Tree_Data_Access;
Path : Path_Name_Type)
is
begin
if Shared = null then
Temp_Files_Table.Append (Temp_Files, Path);
else
Temp_Files_Table.Append (Shared.Private_Part.Temp_Files, Path);
end if;
end Record_Temp_File;
----------
-- Free --
----------
procedure Free (List : in out Aggregated_Project_List) is
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Aggregated_Project, Aggregated_Project_List);
Tmp : Aggregated_Project_List;
begin
while List /= null loop
Tmp := List.Next;
Free (List.Tree);
Unchecked_Free (List);
List := Tmp;
end loop;
end Free;
----------------------------
-- Add_Aggregated_Project --
----------------------------
procedure Add_Aggregated_Project
(Project : Project_Id;
Path : Path_Name_Type)
is
Aggregated : Aggregated_Project_List;
begin
-- Check if the project is already in the aggregated project list. If it
-- is, do not add it again.
Aggregated := Project.Aggregated_Projects;
while Aggregated /= null loop
if Path = Aggregated.Path then
return;
else
Aggregated := Aggregated.Next;
end if;
end loop;
Project.Aggregated_Projects := new Aggregated_Project'
(Path => Path,
Project => No_Project,
Tree => null,
Node_Tree => null,
Next => Project.Aggregated_Projects);
end Add_Aggregated_Project;
----------
-- Free --
----------
procedure Free (Project : in out Project_Id) is
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Project_Data, Project_Id);
begin
if Project /= null then
Free (Project.Ada_Include_Path);
Free (Project.Objects_Path);
Free (Project.Ada_Objects_Path);
Free (Project.Ada_Objects_Path_No_Libs);
Free_List (Project.Imported_Projects, Free_Project => False);
Free_List (Project.All_Imported_Projects, Free_Project => False);
Free_List (Project.Languages);
case Project.Qualifier is
when Aggregate | Aggregate_Library =>
Free (Project.Aggregated_Projects);
when others =>
null;
end case;
Unchecked_Free (Project);
end if;
end Free;
---------------
-- Free_List --
---------------
procedure Free_List (Languages : in out Language_List) is
procedure Unchecked_Free is new Ada.Unchecked_Deallocation
(Language_List_Element, Language_List);
Tmp : Language_List;
begin
while Languages /= null loop
Tmp := Languages.Next;
Unchecked_Free (Languages);
Languages := Tmp;
end loop;
end Free_List;
---------------
-- Free_List --
---------------
procedure Free_List (Source : in out Source_Id) is
procedure Unchecked_Free is new
Ada.Unchecked_Deallocation (Source_Data, Source_Id);
Tmp : Source_Id;
begin
while Source /= No_Source loop
Tmp := Source.Next_In_Lang;
Free_List (Source.Alternate_Languages);
if Source.Unit /= null
and then Source.Kind in Spec_Or_Body
then
Source.Unit.File_Names (Source.Kind) := null;
end if;
Unchecked_Free (Source);
Source := Tmp;
end loop;
end Free_List;
---------------
-- Free_List --
---------------
procedure Free_List
(List : in out Project_List;
Free_Project : Boolean)
is
procedure Unchecked_Free is new
Ada.Unchecked_Deallocation (Project_List_Element, Project_List);
Tmp : Project_List;
begin
while List /= null loop
Tmp := List.Next;
if Free_Project then
Free (List.Project);
end if;
Unchecked_Free (List);
List := Tmp;
end loop;
end Free_List;
---------------
-- Free_List --
---------------
procedure Free_List (Languages : in out Language_Ptr) is
procedure Unchecked_Free is new
Ada.Unchecked_Deallocation (Language_Data, Language_Ptr);
Tmp : Language_Ptr;
begin
while Languages /= null loop
Tmp := Languages.Next;
Free_List (Languages.First_Source);
Unchecked_Free (Languages);
Languages := Tmp;
end loop;
end Free_List;
-----------
-- Label --
-----------
function Label (Section : Section_Type) return String is
begin
case Section is
when Setup =>
return "Setup";
when Compile =>
return "Compile";
when Build_Libraries =>
return "Build Libraries";
when Bind =>
return "Bind";
when Link =>
return "Link";
end case;
end Label;
--------------------------
-- Reset_Units_In_Table --
--------------------------
procedure Reset_Units_In_Table (Table : in out Units_Htable.Instance) is
Unit : Unit_Index;
begin
Unit := Units_Htable.Get_First (Table);
while Unit /= No_Unit_Index loop
if Unit.File_Names (Spec) /= null then
Unit.File_Names (Spec).Unit := No_Unit_Index;
end if;
if Unit.File_Names (Impl) /= null then
Unit.File_Names (Impl).Unit := No_Unit_Index;
end if;
Unit := Units_Htable.Get_Next (Table);
end loop;
end Reset_Units_In_Table;
----------------
-- Free_Units --
----------------
procedure Free_Units (Table : in out Units_Htable.Instance) is
procedure Unchecked_Free is new
Ada.Unchecked_Deallocation (Unit_Data, Unit_Index);
Unit : Unit_Index;
begin
Unit := Units_Htable.Get_First (Table);
while Unit /= No_Unit_Index loop
-- We cannot reset Unit.File_Names (Impl or Spec).Unit here as
-- Source_Data buffer is freed by the following instruction
-- Free_List (Tree.Projects, Free_Project => True);
Unchecked_Free (Unit);
Unit := Units_Htable.Get_Next (Table);
end loop;
Units_Htable.Reset (Table);
end Free_Units;
----------
-- Free --
----------
procedure Free (Tree : in out Project_Tree_Ref) is
procedure Unchecked_Free is new
Ada.Unchecked_Deallocation
(Project_Tree_Data, Project_Tree_Ref);
procedure Unchecked_Free is new
Ada.Unchecked_Deallocation
(Project_Tree_Appdata'Class, Project_Tree_Appdata_Access);
begin
if Tree /= null then
if Tree.Is_Root_Tree then
Name_List_Table.Free (Tree.Shared.Name_Lists);
Number_List_Table.Free (Tree.Shared.Number_Lists);
String_Element_Table.Free (Tree.Shared.String_Elements);
Variable_Element_Table.Free (Tree.Shared.Variable_Elements);
Array_Element_Table.Free (Tree.Shared.Array_Elements);
Array_Table.Free (Tree.Shared.Arrays);
Package_Table.Free (Tree.Shared.Packages);
Temp_Files_Table.Free (Tree.Shared.Private_Part.Temp_Files);
end if;
if Tree.Appdata /= null then
Free (Tree.Appdata.all);
Unchecked_Free (Tree.Appdata);
end if;
Source_Paths_Htable.Reset (Tree.Source_Paths_HT);
Source_Files_Htable.Reset (Tree.Source_Files_HT);
Reset_Units_In_Table (Tree.Units_HT);
Free_List (Tree.Projects, Free_Project => True);
Free_Units (Tree.Units_HT);
Unchecked_Free (Tree);
end if;
end Free;
------------------------------
-- Languages_Are_Restricted --
------------------------------
function Languages_Are_Restricted return Boolean is
begin
return Restricted_Languages /= null;
end Languages_Are_Restricted;
-----------
-- Reset --
-----------
procedure Reset (Tree : Project_Tree_Ref) is
begin
-- Visible tables
if Tree.Is_Root_Tree then
-- We cannot use 'Access here:
-- "illegal attribute for discriminant-dependent component"
-- However, we know this is valid since Shared and Shared_Data have
-- the same lifetime and will always exist concurrently.
Tree.Shared := Tree.Shared_Data'Unrestricted_Access;
Number_List_Table.Init (Tree.Shared.Number_Lists);
String_Element_Table.Init (Tree.Shared.String_Elements);
Variable_Element_Table.Init (Tree.Shared.Variable_Elements);
Array_Element_Table.Init (Tree.Shared.Array_Elements);
Array_Table.Init (Tree.Shared.Arrays);
Package_Table.Init (Tree.Shared.Packages);
-- As Ada_Runtime_Dir is the key for caching various Ada language
-- data, reset it so that the cached values are no longer used.
-- Tree.Shared.Ada_Runtime_Dir := No_Name;
-- Create Dot_String_List
String_Element_Table.Append
(Tree.Shared.String_Elements,
String_Element'
(Value => The_Dot_String,
Index => 0,
Display_Value => The_Dot_String,
Location => No_Location,
Next => Nil_String));
Tree.Shared.Dot_String_List :=
String_Element_Table.Last (Tree.Shared.String_Elements);
-- Private part table
Temp_Files_Table.Init (Tree.Shared.Private_Part.Temp_Files);
Tree.Shared.Private_Part.Current_Source_Path_File := No_Path;
Tree.Shared.Private_Part.Current_Object_Path_File := No_Path;
end if;
Source_Paths_Htable.Reset (Tree.Source_Paths_HT);
Source_Files_Htable.Reset (Tree.Source_Files_HT);
Replaced_Source_HTable.Reset (Tree.Replaced_Sources);
Tree.Replaced_Source_Number := 0;
Reset_Units_In_Table (Tree.Units_HT);
Free_List (Tree.Projects, Free_Project => True);
Free_Units (Tree.Units_HT);
end Reset;
-------------------------------------
-- Set_Current_Object_Path_File_Of --
-------------------------------------
procedure Set_Current_Object_Path_File_Of
(Shared : Shared_Project_Tree_Data_Access;
To : Path_Name_Type)
is
begin
Shared.Private_Part.Current_Object_Path_File := To;
end Set_Current_Object_Path_File_Of;
-------------------------------------
-- Set_Current_Source_Path_File_Of --
-------------------------------------
procedure Set_Current_Source_Path_File_Of
(Shared : Shared_Project_Tree_Data_Access;
To : Path_Name_Type)
is
begin
Shared.Private_Part.Current_Source_Path_File := To;
end Set_Current_Source_Path_File_Of;
-----------------------
-- Set_Path_File_Var --
-----------------------
procedure Set_Path_File_Var (Name : String; Value : String) is
begin
Setenv (Name, Value);
end Set_Path_File_Var;
-------------------
-- Switches_Name --
-------------------
function Switches_Name
(Source_File_Name : File_Name_Type) return File_Name_Type
is
begin
return Extend_Name (Source_File_Name, Switches_Dependency_Suffix);
end Switches_Name;
-----------
-- Value --
-----------
function Value (Image : String) return Casing_Type is
begin
for Casing in The_Casing_Images'Range loop
if To_Lower (Image) = To_Lower (The_Casing_Images (Casing).all) then
return Casing;
end if;
end loop;
raise Constraint_Error;
end Value;
---------------------
-- Has_Ada_Sources --
---------------------
function Has_Ada_Sources (Data : Project_Id) return Boolean is
Lang : Language_Ptr;
begin
Lang := Data.Languages;
while Lang /= No_Language_Index loop
if Lang.Name = Name_Ada then
return Lang.First_Source /= No_Source;
end if;
Lang := Lang.Next;
end loop;
return False;
end Has_Ada_Sources;
------------------------
-- Contains_ALI_Files --
------------------------
function Contains_ALI_Files (Dir : Path_Name_Type) return Boolean is
Dir_Name : constant String := Get_Name_String (Dir);
Direct : Dir_Type;
Name : String (1 .. 1_000);
Last : Natural;
Result : Boolean := False;
begin
Open (Direct, Dir_Name);
-- For each file in the directory, check if it is an ALI file
loop
Read (Direct, Name, Last);
exit when Last = 0;
-- Canonical_Case_File_Name (Name (1 .. Last));
Result := Last >= 5 and then Name (Last - 3 .. Last) = ".ali";
exit when Result;
end loop;
Close (Direct);
return Result;
exception
-- If there is any problem, close the directory if open and return True.
-- The library directory will be added to the path.
when others =>
if Is_Open (Direct) then
Close (Direct);
end if;
return True;
end Contains_ALI_Files;
--------------------------
-- Get_Object_Directory --
--------------------------
function Get_Object_Directory
(Project : Project_Id;
Including_Libraries : Boolean;
Only_If_Ada : Boolean := False) return Path_Name_Type
is
begin
if (Project.Library and then Including_Libraries)
or else
(Project.Object_Directory /= No_Path_Information
and then (not Including_Libraries or else not Project.Library))
then
-- For a library project, add the library ALI directory if there is
-- no object directory or if the library ALI directory contains ALI
-- files; otherwise add the object directory.
if Project.Library then
if Project.Object_Directory = No_Path_Information
or else
(Including_Libraries
and then
Contains_ALI_Files (Project.Library_ALI_Dir.Display_Name))
then
return Project.Library_ALI_Dir.Display_Name;
else
return Project.Object_Directory.Display_Name;
end if;
-- For a non-library project, add object directory if it is not a
-- virtual project, and if there are Ada sources in the project or
-- one of the projects it extends. If there are no Ada sources,
-- adding the object directory could disrupt the order of the
-- object dirs in the path.
elsif not Project.Virtual then
declare
Add_Object_Dir : Boolean;
Prj : Project_Id;
begin
Add_Object_Dir := not Only_If_Ada;
Prj := Project;
while not Add_Object_Dir and then Prj /= No_Project loop
if Has_Ada_Sources (Prj) then
Add_Object_Dir := True;
else
Prj := Prj.Extends;
end if;
end loop;
if Add_Object_Dir then
return Project.Object_Directory.Display_Name;
end if;
end;
end if;
end if;
return No_Path;
end Get_Object_Directory;
-----------------------------------
-- Ultimate_Extending_Project_Of --
-----------------------------------
function Ultimate_Extending_Project_Of
(Proj : Project_Id) return Project_Id
is
Prj : Project_Id;
begin
Prj := Proj;
while Prj /= null and then Prj.Extended_By /= No_Project loop
Prj := Prj.Extended_By;
end loop;
return Prj;
end Ultimate_Extending_Project_Of;
-----------------------------------
-- Compute_All_Imported_Projects --
-----------------------------------
procedure Compute_All_Imported_Projects
(Root_Project : Project_Id;
Tree : Project_Tree_Ref)
is
procedure Analyze_Tree
(Local_Root : Project_Id;
Local_Tree : Project_Tree_Ref;
Context : Project_Context);
-- Process Project and all its aggregated project to analyze their own
-- imported projects.
------------------
-- Analyze_Tree --
------------------
procedure Analyze_Tree
(Local_Root : Project_Id;
Local_Tree : Project_Tree_Ref;
Context : Project_Context)
is
pragma Unreferenced (Local_Root);
Project : Project_Id;
procedure Recursive_Add
(Prj : Project_Id;
Tree : Project_Tree_Ref;
Context : Project_Context;
Dummy : in out Boolean);
-- Recursively add the projects imported by project Project, but not
-- those that are extended.
-------------------
-- Recursive_Add --
-------------------
procedure Recursive_Add
(Prj : Project_Id;
Tree : Project_Tree_Ref;
Context : Project_Context;
Dummy : in out Boolean)
is
pragma Unreferenced (Tree);
List : Project_List;
Prj2 : Project_Id;
begin
-- A project is not importing itself
Prj2 := Ultimate_Extending_Project_Of (Prj);
if Project /= Prj2 then
-- Check that the project is not already in the list. We know
-- the one passed to Recursive_Add have never been visited
-- before, but the one passed it are the extended projects.
List := Project.All_Imported_Projects;
while List /= null loop
if List.Project = Prj2 then
return;
end if;
List := List.Next;
end loop;
-- Add it to the list
Project.All_Imported_Projects :=
new Project_List_Element'
(Project => Prj2,
From_Encapsulated_Lib =>
Context.From_Encapsulated_Lib
or else Analyze_Tree.Context.From_Encapsulated_Lib,
Next => Project.All_Imported_Projects);
end if;
end Recursive_Add;
procedure For_All_Projects is
new For_Every_Project_Imported_Context (Boolean, Recursive_Add);
Dummy : Boolean := False;
List : Project_List;
begin
List := Local_Tree.Projects;
while List /= null loop
Project := List.Project;
Free_List
(Project.All_Imported_Projects, Free_Project => False);
For_All_Projects
(Project, Local_Tree, Dummy, Include_Aggregated => False);
List := List.Next;
end loop;
end Analyze_Tree;
procedure For_Aggregates is
new For_Project_And_Aggregated_Context (Analyze_Tree);
-- Start of processing for Compute_All_Imported_Projects
begin
For_Aggregates (Root_Project, Tree);
end Compute_All_Imported_Projects;
-------------------
-- Is_Compilable --
-------------------
function Is_Compilable (Source : Source_Id) return Boolean is
begin
case Source.Compilable is
when Unknown =>
if Source.Language.Config.Compiler_Driver /= No_File
and then
Length_Of_Name (Source.Language.Config.Compiler_Driver) /= 0
and then not Source.Locally_Removed
and then (Source.Language.Config.Kind /= File_Based
or else Source.Kind /= Spec)
then
-- Do not modify Source.Compilable before the source record
-- has been initialized.
if Source.Source_TS /= Empty_Time_Stamp then
Source.Compilable := Yes;
end if;
return True;
else
if Source.Source_TS /= Empty_Time_Stamp then
Source.Compilable := No;
end if;
return False;
end if;
when Yes =>
return True;
when No =>
return False;
end case;
end Is_Compilable;
------------------------------
-- Object_To_Global_Archive --
------------------------------
function Object_To_Global_Archive (Source : Source_Id) return Boolean is
begin
return Source.Language.Config.Kind = File_Based
and then Source.Kind = Impl
and then Source.Language.Config.Objects_Linked
and then Is_Compilable (Source)
and then Source.Language.Config.Object_Generated;
end Object_To_Global_Archive;
----------------------------
-- Get_Language_From_Name --
----------------------------
function Get_Language_From_Name
(Project : Project_Id;
Name : String) return Language_Ptr
is
N : Name_Id;
Result : Language_Ptr;
begin
Name_Len := Name'Length;
Name_Buffer (1 .. Name_Len) := Name;
To_Lower (Name_Buffer (1 .. Name_Len));
N := Name_Find;
Result := Project.Languages;
while Result /= No_Language_Index loop
if Result.Name = N then
return Result;
end if;
Result := Result.Next;
end loop;
return No_Language_Index;
end Get_Language_From_Name;
----------------
-- Other_Part --
----------------
function Other_Part (Source : Source_Id) return Source_Id is
begin
if Source.Unit /= No_Unit_Index then
case Source.Kind is
when Impl =>
return Source.Unit.File_Names (Spec);
when Spec =>
return Source.Unit.File_Names (Impl);
when Sep =>
return No_Source;
end case;
else
return No_Source;
end if;
end Other_Part;
------------------
-- Create_Flags --
------------------
function Create_Flags
(Report_Error : Error_Handler;
When_No_Sources : Error_Warning;
Require_Sources_Other_Lang : Boolean := True;
Allow_Duplicate_Basenames : Boolean := True;
Compiler_Driver_Mandatory : Boolean := False;
Error_On_Unknown_Language : Boolean := True;
Require_Obj_Dirs : Error_Warning := Error;
Allow_Invalid_External : Error_Warning := Error;
Missing_Source_Files : Error_Warning := Error;
Ignore_Missing_With : Boolean := False;
Check_Configuration_Only : Boolean := False)
return Processing_Flags
is
begin
return Processing_Flags'
(Report_Error => Report_Error,
When_No_Sources => When_No_Sources,
Require_Sources_Other_Lang => Require_Sources_Other_Lang,
Allow_Duplicate_Basenames => Allow_Duplicate_Basenames,
Error_On_Unknown_Language => Error_On_Unknown_Language,
Compiler_Driver_Mandatory => Compiler_Driver_Mandatory,
Require_Obj_Dirs => Require_Obj_Dirs,
Allow_Invalid_External => Allow_Invalid_External,
Missing_Source_Files => Missing_Source_Files,
Ignore_Missing_With => Ignore_Missing_With,
Incomplete_Withs => False,
Check_Configuration_Only => Check_Configuration_Only);
end Create_Flags;
------------
-- Length --
------------
function Length
(Table : Name_List_Table.Instance;
List : Name_List_Index) return Natural
is
Count : Natural := 0;
Tmp : Name_List_Index;
begin
Tmp := List;
while Tmp /= No_Name_List loop
Count := Count + 1;
Tmp := Table.Table (Tmp).Next;
end loop;
return Count;
end Length;
------------------
-- Debug_Output --
------------------
procedure Debug_Output (Str : String) is
begin
if Current_Verbosity > Default then
Set_Standard_Error;
Write_Line ((1 .. Debug_Level * 2 => ' ') & Str);
Set_Standard_Output;
end if;
end Debug_Output;
------------------
-- Debug_Indent --
------------------
procedure Debug_Indent is
begin
if Current_Verbosity = High then
Set_Standard_Error;
Write_Str ((1 .. Debug_Level * 2 => ' '));
Set_Standard_Output;
end if;
end Debug_Indent;
------------------
-- Debug_Output --
------------------
procedure Debug_Output (Str : String; Str2 : Name_Id) is
begin
if Current_Verbosity > Default then
Debug_Indent;
Set_Standard_Error;
Write_Str (Str);
if Str2 = No_Name then
Write_Line (" <no_name>");
else
Write_Line (" """ & Get_Name_String (Str2) & '"');
end if;
Set_Standard_Output;
end if;
end Debug_Output;
---------------------------
-- Debug_Increase_Indent --
---------------------------
procedure Debug_Increase_Indent
(Str : String := ""; Str2 : Name_Id := No_Name)
is
begin
if Str2 /= No_Name then
Debug_Output (Str, Str2);
else
Debug_Output (Str);
end if;
Debug_Level := Debug_Level + 1;
end Debug_Increase_Indent;
---------------------------
-- Debug_Decrease_Indent --
---------------------------
procedure Debug_Decrease_Indent (Str : String := "") is
begin
if Debug_Level > 0 then
Debug_Level := Debug_Level - 1;
end if;
if Str /= "" then
Debug_Output (Str);
end if;
end Debug_Decrease_Indent;
----------------
-- Debug_Name --
----------------
function Debug_Name (Tree : Project_Tree_Ref) return Name_Id is
P : Project_List;
begin
Name_Len := 0;
Add_Str_To_Name_Buffer ("Tree [");
P := Tree.Projects;
while P /= null loop
if P /= Tree.Projects then
Add_Char_To_Name_Buffer (',');
end if;
Add_Str_To_Name_Buffer (Get_Name_String (P.Project.Name));
P := P.Next;
end loop;
Add_Char_To_Name_Buffer (']');
return Name_Find;
end Debug_Name;
----------
-- Free --
----------
procedure Free (Tree : in out Project_Tree_Appdata) is
pragma Unreferenced (Tree);
begin
null;
end Free;
--------------------------------
-- For_Project_And_Aggregated --
--------------------------------
procedure For_Project_And_Aggregated
(Root_Project : Project_Id;
Root_Tree : Project_Tree_Ref)
is
Agg : Aggregated_Project_List;
begin
Action (Root_Project, Root_Tree);
if Root_Project.Qualifier in Aggregate_Project then
Agg := Root_Project.Aggregated_Projects;
while Agg /= null loop
For_Project_And_Aggregated (Agg.Project, Agg.Tree);
Agg := Agg.Next;
end loop;
end if;
end For_Project_And_Aggregated;
----------------------------------------
-- For_Project_And_Aggregated_Context --
----------------------------------------
procedure For_Project_And_Aggregated_Context
(Root_Project : Project_Id;
Root_Tree : Project_Tree_Ref)
is
procedure Recursive_Process
(Project : Project_Id;
Tree : Project_Tree_Ref;
Context : Project_Context);
-- Process Project and all aggregated projects recursively
-----------------------
-- Recursive_Process --
-----------------------
procedure Recursive_Process
(Project : Project_Id;
Tree : Project_Tree_Ref;
Context : Project_Context)
is
Agg : Aggregated_Project_List;
Ctx : Project_Context;
begin
Action (Project, Tree, Context);
if Project.Qualifier in Aggregate_Project then
Ctx :=
(In_Aggregate_Lib => Project.Qualifier = Aggregate_Library,
From_Encapsulated_Lib =>
Context.From_Encapsulated_Lib
or else Project.Standalone_Library = Encapsulated);
Agg := Project.Aggregated_Projects;
while Agg /= null loop
Recursive_Process (Agg.Project, Agg.Tree, Ctx);
Agg := Agg.Next;
end loop;
end if;
end Recursive_Process;
-- Start of processing for For_Project_And_Aggregated_Context
begin
Recursive_Process
(Root_Project, Root_Tree, Project_Context'(False, False));
end For_Project_And_Aggregated_Context;
--------------------------
-- Set_Require_Obj_Dirs --
--------------------------
procedure Set_Require_Obj_Dirs
(Flags : in out Processing_Flags;
Value : Error_Warning)
is
begin
Flags.Require_Obj_Dirs := Value;
end Set_Require_Obj_Dirs;
-----------------------------
-- Set_Ignore_Missing_With --
-----------------------------
procedure Set_Ignore_Missing_With
(Flags : in out Processing_Flags;
Value : Boolean)
is
begin
Flags.Ignore_Missing_With := Value;
end Set_Ignore_Missing_With;
----------------------------------
-- Set_Check_Configuration_Only --
----------------------------------
procedure Set_Check_Configuration_Only
(Flags : in out Processing_Flags;
Value : Boolean)
is
begin
Flags.Check_Configuration_Only := Value;
end Set_Check_Configuration_Only;
------------------------------
-- Set_Missing_Source_Files --
------------------------------
procedure Set_Missing_Source_Files
(Flags : in out Processing_Flags;
Value : Error_Warning)
is
begin
Flags.Missing_Source_Files := Value;
end Set_Missing_Source_Files;
begin
Temp_Files_Table.Init (Temp_Files);
end GPR;
|
fnarenji/BezierToSTL | Ada | 5,197 | adb | with Ada.Command_Line; use Ada.Command_Line;
with Ada.Text_IO; use Ada.Text_IO;
with Math; use Math;
with STL; use STL;
procedure test_unitaire is
-- Helper génération SVG
procedure Sauve_SVG(Segments : Liste_Points.Liste) is
Fichier : File_Type;
Nom_Fichier : String := "test_unitaire.svg";
-- Affiche du code svg pour un point
procedure Display_Point(P : in out Point2D) is
begin
Put(Fichier, Float'Image(P(P'First)));
Put(Fichier, ",");
Put(Fichier, Float'Image(P(P'Last)));
Put(Fichier, " ");
end;
-- Affiche du code svg pour tout les points
procedure Display_SVG is new Liste_Points.Parcourir(Traiter => Display_Point);
begin
begin
Open (Fichier, Out_File, Nom_Fichier);
exception
when Name_Error =>
-- Si le fichier n'existe pas
Create (Fichier, Out_File, Nom_Fichier);
end;
Put(Fichier, "<svg>");
New_Line(Fichier);
Put(Fichier, "<path d=""M 0 0 L ");
Display_SVG(Segments);
Put(Fichier, " Z"" />");
Put(Fichier, "</svg>");
end;
procedure test_cercle is
Segments : Liste_Points.Liste;
Facettes : Liste_Facettes.Liste;
begin
Liste_Points.Insertion_Queue(Segments, (1.0,0.0));
Liste_Points.Insertion_Queue(Segments, (1.0,1.0));
--on convertit en facettes par rotation
Creation(Segments, Facettes);
--on sauvegarde le modele obtenu
Sauvegarder(Argument(2), Facettes);
end;
procedure Chapiteau is
Segments : Liste_Points.Liste;
Facettes : Liste_Facettes.Liste;
begin
Liste_Points.Insertion_Queue(Segments, (1.0,0.0));
Liste_Points.Insertion_Queue(Segments, (1.0,1.0));
Liste_Points.Insertion_Queue(Segments, (0.0,2.0));
--on convertit en facettes par rotation
Creation(Segments, Facettes);
--on sauvegarde le modele obtenu
Sauvegarder(Argument(2), Facettes);
end;
procedure Test_Bezier_Cub is
Segments : Liste_Points.Liste;
Facettes : Liste_Facettes.Liste;
begin
Bezier((0.0, 0.0),
(200.0, 180.0),
(200.0, 200.0),
(0.0, 200.0),
Nombre_Points_Bezier, Segments);
--on convertit en facettes par rotation
Creation(Segments, Facettes);
--on sauvegarde le modele obtenu
Sauvegarder(Argument(2), Facettes);
-- Sauvegarde en svg pour debug
Sauve_SVG(Segments);
end;
procedure Test_Bezier_Quad is
Segments : Liste_Points.Liste;
Facettes : Liste_Facettes.Liste;
begin
Bezier((0.0, 0.0),
(200.0, 100.0),
(0.0, 200.0),
Nombre_Points_Bezier, Segments);
--on convertit en facettes par rotation
Creation(Segments, Facettes);
--on sauvegarde le modele obtenu
Sauvegarder(Argument(2), Facettes);
-- Sauvegarde en svg pour debug
Sauve_SVG(Segments);
end;
procedure Test_Fusion is
Segments : Liste_Points.Liste;
Segments_2 : Liste_Points.Liste;
Facettes : Liste_Facettes.Liste;
begin
Bezier((0.0, 0.0),
(200.0, 100.0),
(100.0, 200.0),
Nombre_Points_Bezier, Segments);
Bezier((100.0, 200.0),
(200.0, 380.0),
(200.0, 400.0),
(0.0, 400.0),
Nombre_Points_Bezier, Segments_2);
Liste_Points.Fusion(Segments, Segments_2);
--on convertit en facettes par rotation
Creation(Segments, Facettes);
--on sauvegarde le modele obtenu
Sauvegarder(Argument(2), Facettes);
-- Sauvegarde en svg pour debug
Sauve_SVG(Segments);
end;
-- Test pour savoir si le parser bugge
procedure Toupie is
Segments : Liste_Points.Liste;
Segments_2 : Liste_Points.Liste;
Facettes : Liste_Facettes.Liste;
P : Point2D := (68.690373,289.69701);
begin
Liste_Points.Insertion_Queue(Segments, P);
P := (P(1) + 321.228507, P(2) + 7.07107);
Liste_Points.Insertion_Queue(Segments, P);
Bezier(P,
P,
(P(1) - 15.15229, P(2) + 127.27922),
(P(1) - 15.15229 + 23.23351, P(2) + 127.27922 + 157.5838),
Nombre_Points_Bezier, Segments);
P := (P(1) -15.15229 + 23.23351, P(2) + 127.27922 + 157.5838);
Bezier(P,
(P(1) + 38.3858,P(2) + 30.30457),
(P(1) + 38.3858 + 171.72593,P(2) + 30.30457 - 155.5635),
(P(1) + 38.3858 + 171.72593 * 2.0,P(2) + 30.30457 - 155.5635 * 2.0),
Nombre_Points_Bezier, Segments_2);
Liste_Points.Fusion(Segments, Segments_2);
--on convertit en facettes par rotation
Creation(Segments, Facettes);
--on sauvegarde le modele obtenu
Sauvegarder(Argument(2), Facettes);
-- Sauvegarde en svg pour debug
Sauve_SVG(Segments);
end;
begin
Toupie;
end;
|
YaoFei509/iusbdaq | Ada | 8,508 | ads | --------------------------------------------------------------------------------
-- * Spec name iusbdaq.ads
-- * Project name iusbdaq
-- *
-- * Version 1.0
-- * Last update 8/22/08
-- *
-- * Created by Adrian Hoe on 6/25/08.
-- * Copyright (c) 2008 AdaStar Informatics ( http://adastarinformatics.com )
-- * All rights reserved.
-- *
--------------------------------------------------------------------------------
with Interfaces.C;
use Interfaces;
use Interfaces.C;
package Iusbdaq is
Max_Analog_Channel : constant := 8;
type Analog_Data_Array is array (Positive range <>) of C.C_Float;
pragma Convention (C, Analog_Data_Array);
type Void is null record;
pragma Convention (C, Void);
type Void_Ptr is access all Void;
pragma Convention (C, Void_Ptr);
type Void_Ptr_Ptr is access all Void_Ptr;
pragma Convention (C, Void_Ptr_Ptr);
type Handle is new Void_Ptr_Ptr;
type Dword is new C.Unsigned_Long;
type Byte is new C.Unsigned_Char;
type Unsigned_Integer is new C.Unsigned;
type Dword_Ptr is access all Dword;
type Byte_Ptr is access all Byte;
type Char_Ptr is access all C.Char;
type Float_Ptr is access all C.C_Float;
type Int_Ptr is access all C.Int;
type Unsigned_Integer_Ptr is access all C.Unsigned;
type Unsigned_Long_Ptr is access all C.Unsigned_Long;
type No_Of_Analog_Channel is new C.Int range 1 .. Max_Analog_Channel;
type Analog_Channel is new C.Int range 0 .. Max_Analog_Channel - 1;
type PWM_Channel is new C.Int range 1 .. 2;
type Device_Session_Record is
record
Device_Index : C.Int;
Device_Instance : C.Int;
Device_Type : C.Unsigned_Long;
I_Session_1 : Handle; -- Out Pipe, write
I_Session_2 : Handle; -- In Pipe, read
end record;
pragma Convention (C, Device_Session_Record);
type Device_Session_Ptr is access all Device_Session_Record;
type Errors is (
IUSBDAQ_No_Error,
IUSBDAQ_Unknown,
IUSBDAQ_Invalid_Device_Index, -- device index exceed the max device number of that type
IUSBDAQ_Wrong_Type, -- No such iUSBDAQ module type or wrong device type
IUSBDAQ_Handle_Error, -- Open device session error
IUSBDAQ_Device_Not_Available, -- device maybe used by other application or session already been opened.
IUSBDAQ_Write_Error, -- Write error, it could be the device disconnected
IUSBDAQ_Read_Error, -- Read error, it could be the device disconnected
IUSBDAQ_Null_Session, -- NULL session
IUSBDAQ_Receive_Length, -- Partially failed, incorrect receive length
IUSBDAQ_Invalid_Byte_Count, -- the byte count number is invalid
IUSBDAQ_Invalid_Channel, -- channel number is incorrect
IUSBDAQ_Invalid_No_Of_Channels, -- number of channels invalid
IUSBDAQ_Input_Range, -- Wrong input voltage range
IUSBDAQ_Invalid_Duty_Cycle, -- Duty cycle value should be between 0- 1023
IUSBDAQ_Invalid_DIO_Write, -- The IO channel is not an output channel
IUSBDAQ_Invalid_Period, -- wrong PWM period
IUSBDAQ_Too_Many_Scans, -- iUSBDAQ_AIGetScans function asks too many scans to get, max 6400/NrOfChannels
IUSBDAQ_Read_Samples_Timeout,
IUSBDAQ_Low_No_Of_Samples,
IUSBDAQ_High_No_Of_Samples,
IUSBDAQ_Read_Write_Pass_Allowed_Address,
IUSBDAQ_PMW_Period_Too_Big,
IUSBDAQ_PMW_Period_Too_Small,
-- Mac OS X specific
IUSBDAQ_Exception_Error,
IUSBDAQ_IO_Kit_Error
);
for Errors use (
IUSBDAQ_No_Error => 0,
IUSBDAQ_Unknown => 1,
IUSBDAQ_Invalid_Device_Index => 2,
IUSBDAQ_Wrong_Type => 3,
IUSBDAQ_Handle_Error => 4,
IUSBDAQ_Device_Not_Available => 5,
IUSBDAQ_Write_Error => 6,
IUSBDAQ_Read_Error => 7,
IUSBDAQ_Null_Session => 8,
IUSBDAQ_Receive_Length => 9,
IUSBDAQ_Invalid_Byte_Count => 10,
IUSBDAQ_Invalid_Channel => 11,
IUSBDAQ_Invalid_No_Of_Channels => 12,
IUSBDAQ_Input_Range => 13,
IUSBDAQ_Invalid_Duty_Cycle => 14,
IUSBDAQ_Invalid_DIO_Write => 15,
IUSBDAQ_Invalid_Period => 16,
IUSBDAQ_Too_Many_Scans => 17,
IUSBDAQ_Read_Samples_Timeout => 18,
IUSBDAQ_Low_No_Of_Samples => 19,
IUSBDAQ_High_No_Of_Samples => 20,
IUSBDAQ_Read_Write_Pass_Allowed_Address => 21,
IUSBDAQ_PMW_Period_Too_Big => 22,
IUSBDAQ_PMW_Period_Too_Small => 23,
-- Mac OS X specific
IUSBDAQ_Exception_Error => 1_000,
IUSBDAQ_IO_Kit_Error => 1_001
);
for Errors'size use 32;
procedure Enumerate_Device (Device_Type : in C.Unsigned_Long := 0;
Count : in out C.Unsigned_Long;
Error : out C.Int);
procedure Open_Device (Device_Type : in C.Unsigned_Long := 0;
Device_Index : in C.Unsigned_Long;
Session : in out Device_Session_Record;
Error : out C.Int);
procedure Reset (Session : in Device_Session_Record;
Error : out C.Int);
procedure Release_Device (Session : in Device_Session_Record;
Error : out C.Int);
procedure Get_Device_Serial_No (Session : in Device_Session_Record;
Serial_No_1 : out C.Unsigned_Long;
Serial_No_2 : out C.Unsigned_Long;
Error : out C.Int);
procedure Read_Single_Analog_In (Session : in Device_Session_Record;
Channel : in Analog_Channel;
Input_Range : in C.Int := 0;
Voltage : out C.C_Float;
Reserved : out C.Int;
Error : out C.Int);
procedure Read_Multi_Analog_In (Session : in Device_Session_Record;
Start_Ch : in Analog_Channel;
No_Of_Ch : in No_Of_Analog_Channel;
Input_Range : in C.Int := 0;
Voltages : out Analog_Data_Array;
Reserved : out C.Int;
Error : out C.Int);
procedure Read_Counter (Session : in Device_Session_Record;
Reset : in Boolean;
Count : out C.Unsigned;
Error : out C.Int);
procedure PWM_Output (Session : in Device_Session_Record;
Channel : in PWM_Channel;
Duty_Cycle : in C.Int;
Period : in C.Int;
Error : out C.Int);
procedure Stop_PWM (Session : in Device_Session_Record;
Channel : in PWM_Channel;
Error : out C.Int);
function Bits_To_Volt (Bits : C.Int) return C.C_Float;
pragma Import (C, Bits_To_Volt, "iUSBDAQ_BitsToVolt");
function Volt_To_Bits (Volt : C.C_Float) return C.Int;
pragma Import (C, Volt_To_Bits, "iUSBDAQ_VoltToBits");
end Iusbdaq;
|
DrenfongWong/tkm-rpc | Ada | 1,492 | ads | with Tkmrpc.Types;
with Tkmrpc.Operations.Ike;
package Tkmrpc.Request.Ike.Nc_Create is
Data_Size : constant := 16;
type Data_Type is record
Nc_Id : Types.Nc_Id_Type;
Nonce_Length : Types.Nonce_Length_Type;
end record;
for Data_Type use record
Nc_Id at 0 range 0 .. (8 * 8) - 1;
Nonce_Length at 8 range 0 .. (8 * 8) - 1;
end record;
for Data_Type'Size use Data_Size * 8;
Padding_Size : constant := Request.Body_Size - Data_Size;
subtype Padding_Range is Natural range 1 .. Padding_Size;
subtype Padding_Type is Types.Byte_Sequence (Padding_Range);
type Request_Type is record
Header : Request.Header_Type;
Data : Data_Type;
Padding : Padding_Type;
end record;
for Request_Type use record
Header at 0 range 0 .. (Request.Header_Size * 8) - 1;
Data at Request.Header_Size range 0 .. (Data_Size * 8) - 1;
Padding at Request.Header_Size + Data_Size range
0 .. (Padding_Size * 8) - 1;
end record;
for Request_Type'Size use Request.Request_Size * 8;
Null_Request : constant Request_Type :=
Request_Type'
(Header =>
Request.Header_Type'(Operation => Operations.Ike.Nc_Create,
Request_Id => 0),
Data =>
Data_Type'(Nc_Id => Types.Nc_Id_Type'First,
Nonce_Length => Types.Nonce_Length_Type'First),
Padding => Padding_Type'(others => 0));
end Tkmrpc.Request.Ike.Nc_Create;
|
twdroeger/ada-awa | Ada | 3,825 | ads | -----------------------------------------------------------------------
-- awa-mail-clients-files -- Mail client dump/file implementation
-- Copyright (C) 2012, 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 Ada.Strings.Unbounded;
with Util.Properties;
with Util.Concurrent.Counters;
-- The <b>AWA.Mail.Clients.Files</b> package provides a dump implementation of the
-- mail client interfaces on top of raw system files.
package AWA.Mail.Clients.Files is
NAME : constant String := "file";
-- ------------------------------
-- Mail Message
-- ------------------------------
-- The <b>File_Mail_Message</b> represents a mail message that is written on a file in
-- in specific directory.
type File_Mail_Message is new Mail_Message with private;
type File_Mail_Message_Access is access all File_Mail_Message'Class;
-- Set the <tt>From</tt> part of the message.
overriding
procedure Set_From (Message : in out File_Mail_Message;
Name : in String;
Address : in String);
-- Add a recipient for the message.
overriding
procedure Add_Recipient (Message : in out File_Mail_Message;
Kind : in Recipient_Type;
Name : in String;
Address : in String);
-- Set the subject of the message.
overriding
procedure Set_Subject (Message : in out File_Mail_Message;
Subject : in String);
-- Set the body of the message.
overriding
procedure Set_Body (Message : in out File_Mail_Message;
Content : in String);
-- Send the email message.
overriding
procedure Send (Message : in out File_Mail_Message);
-- ------------------------------
-- Mail Manager
-- ------------------------------
-- The <b>Mail_Manager</b> is the entry point to create a new mail message
-- and be able to send it.
type File_Mail_Manager is limited new Mail_Manager with private;
type File_Mail_Manager_Access is access all File_Mail_Manager'Class;
-- Create a file based mail manager and configure it according to the properties.
function Create_Manager (Props : in Util.Properties.Manager'Class) return Mail_Manager_Access;
-- Create a new mail message.
overriding
function Create_Message (Manager : in File_Mail_Manager) return Mail_Message_Access;
private
type File_Mail_Message is new Mail_Message with record
Manager : File_Mail_Manager_Access;
From : Ada.Strings.Unbounded.Unbounded_String;
To : Ada.Strings.Unbounded.Unbounded_String;
Cc : Ada.Strings.Unbounded.Unbounded_String;
Bcc : Ada.Strings.Unbounded.Unbounded_String;
Subject : Ada.Strings.Unbounded.Unbounded_String;
Message : Ada.Strings.Unbounded.Unbounded_String;
end record;
type File_Mail_Manager is limited new Mail_Manager with record
Self : File_Mail_Manager_Access;
Path : Ada.Strings.Unbounded.Unbounded_String;
Index : Util.Concurrent.Counters.Counter;
end record;
end AWA.Mail.Clients.Files;
|
reznikmm/matreshka | Ada | 19,092 | 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.Internals.UML_Named_Elements;
with AMF.UML.Activities;
with AMF.UML.Activity_Edges.Collections;
with AMF.UML.Activity_Groups.Collections;
with AMF.UML.Activity_Nodes.Collections;
with AMF.UML.Activity_Partitions.Collections;
with AMF.UML.Associations;
with AMF.UML.Classifiers.Collections;
with AMF.UML.Constraints.Collections;
with AMF.UML.Dependencies.Collections;
with AMF.UML.Destroy_Link_Actions;
with AMF.UML.Exception_Handlers.Collections;
with AMF.UML.Input_Pins.Collections;
with AMF.UML.Interruptible_Activity_Regions.Collections;
with AMF.UML.Link_End_Datas.Collections;
with AMF.UML.Link_End_Destruction_Datas.Collections;
with AMF.UML.Named_Elements;
with AMF.UML.Namespaces;
with AMF.UML.Output_Pins.Collections;
with AMF.UML.Packages.Collections;
with AMF.UML.Redefinable_Elements.Collections;
with AMF.UML.String_Expressions;
with AMF.UML.Structured_Activity_Nodes;
with AMF.Visitors;
package AMF.Internals.UML_Destroy_Link_Actions is
type UML_Destroy_Link_Action_Proxy is
limited new AMF.Internals.UML_Named_Elements.UML_Named_Element_Proxy
and AMF.UML.Destroy_Link_Actions.UML_Destroy_Link_Action with null record;
overriding function Get_End_Data
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Link_End_Destruction_Datas.Collections.Set_Of_UML_Link_End_Destruction_Data;
-- Getter of DestroyLinkAction::endData.
--
-- Specifies ends of association and inputs.
overriding function Get_End_Data
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Link_End_Datas.Collections.Set_Of_UML_Link_End_Data;
-- Getter of LinkAction::endData.
--
-- Data identifying one end of a link by the objects on its ends and
-- qualifiers.
overriding function Get_Input_Value
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Input_Pins.Collections.Set_Of_UML_Input_Pin;
-- Getter of LinkAction::inputValue.
--
-- Pins taking end objects and qualifier values as input.
overriding function Get_Context
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Classifiers.UML_Classifier_Access;
-- Getter of Action::context.
--
-- The classifier that owns the behavior of which this action is a part.
overriding function Get_Input
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Input_Pins.Collections.Ordered_Set_Of_UML_Input_Pin;
-- Getter of Action::input.
--
-- The ordered set of input pins connected to the Action. These are among
-- the total set of inputs.
overriding function Get_Is_Locally_Reentrant
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return Boolean;
-- Getter of Action::isLocallyReentrant.
--
-- If true, the action can begin a new, concurrent execution, even if
-- there is already another execution of the action ongoing. If false, the
-- action cannot begin a new execution until any previous execution has
-- completed.
overriding procedure Set_Is_Locally_Reentrant
(Self : not null access UML_Destroy_Link_Action_Proxy;
To : Boolean);
-- Setter of Action::isLocallyReentrant.
--
-- If true, the action can begin a new, concurrent execution, even if
-- there is already another execution of the action ongoing. If false, the
-- action cannot begin a new execution until any previous execution has
-- completed.
overriding function Get_Local_Postcondition
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint;
-- Getter of Action::localPostcondition.
--
-- Constraint that must be satisfied when executed is completed.
overriding function Get_Local_Precondition
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint;
-- Getter of Action::localPrecondition.
--
-- Constraint that must be satisfied when execution is started.
overriding function Get_Output
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Output_Pins.Collections.Ordered_Set_Of_UML_Output_Pin;
-- Getter of Action::output.
--
-- The ordered set of output pins connected to the Action. The action
-- places its results onto pins in this set.
overriding function Get_Handler
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Exception_Handlers.Collections.Set_Of_UML_Exception_Handler;
-- Getter of ExecutableNode::handler.
--
-- A set of exception handlers that are examined if an uncaught exception
-- propagates to the outer level of the executable node.
overriding function Get_Activity
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Activities.UML_Activity_Access;
-- Getter of ActivityNode::activity.
--
-- Activity containing the node.
overriding procedure Set_Activity
(Self : not null access UML_Destroy_Link_Action_Proxy;
To : AMF.UML.Activities.UML_Activity_Access);
-- Setter of ActivityNode::activity.
--
-- Activity containing the node.
overriding function Get_In_Group
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Activity_Groups.Collections.Set_Of_UML_Activity_Group;
-- Getter of ActivityNode::inGroup.
--
-- Groups containing the node.
overriding function Get_In_Interruptible_Region
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Interruptible_Activity_Regions.Collections.Set_Of_UML_Interruptible_Activity_Region;
-- Getter of ActivityNode::inInterruptibleRegion.
--
-- Interruptible regions containing the node.
overriding function Get_In_Partition
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Activity_Partitions.Collections.Set_Of_UML_Activity_Partition;
-- Getter of ActivityNode::inPartition.
--
-- Partitions containing the node.
overriding function Get_In_Structured_Node
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access;
-- Getter of ActivityNode::inStructuredNode.
--
-- Structured activity node containing the node.
overriding procedure Set_In_Structured_Node
(Self : not null access UML_Destroy_Link_Action_Proxy;
To : AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access);
-- Setter of ActivityNode::inStructuredNode.
--
-- Structured activity node containing the node.
overriding function Get_Incoming
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge;
-- Getter of ActivityNode::incoming.
--
-- Edges that have the node as target.
overriding function Get_Outgoing
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge;
-- Getter of ActivityNode::outgoing.
--
-- Edges that have the node as source.
overriding function Get_Redefined_Node
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Activity_Nodes.Collections.Set_Of_UML_Activity_Node;
-- Getter of ActivityNode::redefinedNode.
--
-- Inherited nodes replaced by this node in a specialization of the
-- activity.
overriding function Get_Is_Leaf
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return Boolean;
-- Getter of RedefinableElement::isLeaf.
--
-- Indicates whether it is possible to further redefine a
-- RedefinableElement. If the value is true, then it is not possible to
-- further redefine the RedefinableElement. Note that this property is
-- preserved through package merge operations; that is, the capability to
-- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in
-- the resulting RedefinableElement of a package merge operation where a
-- RedefinableElement with isLeaf=false is merged with a matching
-- RedefinableElement with isLeaf=true: the resulting RedefinableElement
-- will have isLeaf=false. Default value is false.
overriding procedure Set_Is_Leaf
(Self : not null access UML_Destroy_Link_Action_Proxy;
To : Boolean);
-- Setter of RedefinableElement::isLeaf.
--
-- Indicates whether it is possible to further redefine a
-- RedefinableElement. If the value is true, then it is not possible to
-- further redefine the RedefinableElement. Note that this property is
-- preserved through package merge operations; that is, the capability to
-- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in
-- the resulting RedefinableElement of a package merge operation where a
-- RedefinableElement with isLeaf=false is merged with a matching
-- RedefinableElement with isLeaf=true: the resulting RedefinableElement
-- will have isLeaf=false. Default value is false.
overriding function Get_Redefined_Element
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Redefinable_Elements.Collections.Set_Of_UML_Redefinable_Element;
-- Getter of RedefinableElement::redefinedElement.
--
-- The redefinable element that is being redefined by this element.
overriding function Get_Redefinition_Context
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier;
-- Getter of RedefinableElement::redefinitionContext.
--
-- References the contexts that this element may be redefined from.
overriding function Get_Client_Dependency
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency;
-- Getter of NamedElement::clientDependency.
--
-- Indicates the dependencies that reference the client.
overriding function Get_Name_Expression
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access;
-- Getter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding procedure Set_Name_Expression
(Self : not null access UML_Destroy_Link_Action_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access);
-- Setter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding function Get_Namespace
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Getter of NamedElement::namespace.
--
-- Specifies the namespace that owns the NamedElement.
overriding function Get_Qualified_Name
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.Optional_String;
-- Getter of NamedElement::qualifiedName.
--
-- A name which allows the NamedElement to be identified within a
-- hierarchy of nested Namespaces. It is constructed from the names of the
-- containing namespaces starting at the root of the hierarchy and ending
-- with the name of the NamedElement itself.
overriding function Association
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Associations.UML_Association_Access;
-- Operation LinkAction::association.
--
-- The association operates on LinkAction. It returns the association of
-- the action.
overriding function Context
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Classifiers.UML_Classifier_Access;
-- Operation Action::context.
--
-- Missing derivation for Action::/context : Classifier
overriding function Is_Consistent_With
(Self : not null access constant UML_Destroy_Link_Action_Proxy;
Redefinee : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean;
-- Operation RedefinableElement::isConsistentWith.
--
-- The query isConsistentWith() specifies, for any two RedefinableElements
-- in a context in which redefinition is possible, whether redefinition
-- would be logically consistent. By default, this is false; this
-- operation must be overridden for subclasses of RedefinableElement to
-- define the consistency conditions.
overriding function Is_Redefinition_Context_Valid
(Self : not null access constant UML_Destroy_Link_Action_Proxy;
Redefined : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean;
-- Operation RedefinableElement::isRedefinitionContextValid.
--
-- The query isRedefinitionContextValid() specifies whether the
-- redefinition contexts of this RedefinableElement are properly related
-- to the redefinition contexts of the specified RedefinableElement to
-- allow this element to redefine the other. By default at least one of
-- the redefinition contexts of this element must be a specialization of
-- at least one of the redefinition contexts of the specified element.
overriding function All_Owning_Packages
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package;
-- Operation NamedElement::allOwningPackages.
--
-- The query allOwningPackages() returns all the directly or indirectly
-- owning packages.
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Destroy_Link_Action_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean;
-- Operation NamedElement::isDistinguishableFrom.
--
-- The query isDistinguishableFrom() determines whether two NamedElements
-- may logically co-exist within a Namespace. By default, two named
-- elements are distinguishable if (a) they have unrelated types or (b)
-- they have related types but different names.
overriding function Namespace
(Self : not null access constant UML_Destroy_Link_Action_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Operation NamedElement::namespace.
--
-- Missing derivation for NamedElement::/namespace : Namespace
overriding procedure Enter_Element
(Self : not null access constant UML_Destroy_Link_Action_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 UML_Destroy_Link_Action_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 UML_Destroy_Link_Action_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.UML_Destroy_Link_Actions;
|
98devin/ada-wfc | Ada | 4,617 | ads | ------------------------------------------------------------------------------
-- EMAIL: <[email protected]> --
-- License: ISC --
-- --
-- Copyright © 2015 darkestkhan --
------------------------------------------------------------------------------
-- Permission to use, copy, modify, and/or distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- The software is provided "as is" and the author disclaims all warranties --
-- with regard to this software including all implied warranties of --
-- merchantability and fitness. In no event shall the author be liable for --
-- any special, direct, indirect, or consequential damages or any damages --
-- whatsoever resulting from loss of use, data or profits, whether in an --
-- action of contract, negligence or other tortious action, arising out of --
-- or in connection with the use or performance of this software. --
------------------------------------------------------------------------------
--------------------------------------------------------------------------
-- This package is based on Lumen.Binary package from Lumen library. --
--------------------------------------------------------------------------
package Imago.Binary is
--------------------------------------------------------------------------
pragma Pure;
--------------------------------------------------------------------------
-----------------------
-- C O N S T A N T S --
-----------------------
--------------------------------------------------------------------------
-- Basic sizes of fundamental binary data types.
Byte_Bits : constant := 8;
Short_Bits: constant := 16;
Word_Bits : constant := 32;
Long_Bits : constant := 64;
--------------------------------------------------------------------------
-- Derived sizes.
Short_Bytes: constant := Short_Bits / Byte_Bits;
Word_Bytes : constant := Word_Bits / Byte_Bits;
Long_Bytes : constant := Long_Bits / Byte_Bits;
--------------------------------------------------------------------------
-- "Last-bit" values for use in rep clauses.
Byte_LB : constant := Byte_Bits - 1;
Short_LB: constant := Short_Bits - 1;
Word_LB : constant := Word_Bits - 1;
Long_LB : constant := Long_Bits - 1;
--------------------------------------------------------------------------
---------------
-- T Y P E S --
---------------
--------------------------------------------------------------------------
-- Unsigned types.
type Byte is mod 2 ** Byte_Bits;
type Short is mod 2 ** Short_Bits;
type Word is mod 2 ** Word_Bits;
type Long is mod 2 ** Long_Bits;
for Byte'Size use Byte_Bits;
for Short'Size use Short_Bits;
for Word'Size use Word_Bits;
for Long'Size use Long_Bits;
--------------------------------------------------------------------------
-- Signed types.
type S_Byte is new Integer range -(2 ** Byte_LB) .. (2 ** Byte_LB) - 1;
type S_Short is new Integer range -(2 ** Short_LB) .. (2 ** Short_LB) - 1;
type S_Word is new Integer range -(2 ** Word_LB) .. (2 ** Word_LB) - 1;
type S_Long is new Long_Integer range -(2 ** Long_LB) .. (2 ** Long_LB) - 1;
for S_Byte'Size use Byte_Bits;
for S_Short'Size use Short_Bits;
for S_Word'Size use Word_Bits;
for S_Long'Size use Long_Bits;
--------------------------------------------------------------------------
-- Array types.
type Byte_Array is array (Natural range <>) of Byte;
type Short_Array is array (Natural range <>) of Short;
type Word_Array is array (Natural range <>) of Word;
type Long_Array is array (Natural range <>) of Long;
type S_Byte_Array is array (Natural range <>) of S_Byte;
type S_Short_Array is array (Natural range <>) of S_Short;
type S_Word_Array is array (Natural range <>) of S_Word;
type S_Long_Array is array (Natural range <>) of S_Long;
---------------------------------------------------------------------------
end Imago.Binary;
|
sungyeon/drake | Ada | 1,627 | ads | pragma License (Unrestricted);
with Ada.Numerics.Generic_Complex_Types;
with Ada.Text_IO.Complex_IO;
generic
with package Complex_Types is new Numerics.Generic_Complex_Types (<>);
package Ada.Wide_Wide_Text_IO.Complex_IO is
-- use Complex_Types;
-- for renaming
package Strings is new Text_IO.Complex_IO (Complex_Types);
Default_Fore : Field
renames Strings.Default_Fore; -- 2
Default_Aft : Field
renames Strings.Default_Aft; -- Complex_Types.Real'Digits - 1
Default_Exp : Field
renames Strings.Default_Exp; -- 3
procedure Get (
File : File_Type; -- Input_File_Type
Item : out Complex_Types.Complex;
Width : Field := 0)
renames Strings.Get;
procedure Get (
Item : out Complex_Types.Complex;
Width : Field := 0)
renames Strings.Get;
procedure Put (
File : File_Type; -- Output_File_Type
Item : Complex_Types.Complex;
Fore : Field := Default_Fore;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp)
renames Strings.Put;
procedure Put (
Item : Complex_Types.Complex;
Fore : Field := Default_Fore;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp)
renames Strings.Put;
procedure Get (
From : Wide_Wide_String;
Item : out Complex_Types.Complex;
Last : out Positive)
renames Strings.Overloaded_Get;
procedure Put (
To : out Wide_Wide_String;
Item : Complex_Types.Complex;
Aft : Field := Default_Aft;
Exp : Field := Default_Exp)
renames Strings.Overloaded_Put;
end Ada.Wide_Wide_Text_IO.Complex_IO;
|
reznikmm/matreshka | Ada | 4,153 | 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_Transition_On_Click_Attributes;
package Matreshka.ODF_Presentation.Transition_On_Click_Attributes is
type Presentation_Transition_On_Click_Attribute_Node is
new Matreshka.ODF_Presentation.Abstract_Presentation_Attribute_Node
and ODF.DOM.Presentation_Transition_On_Click_Attributes.ODF_Presentation_Transition_On_Click_Attribute
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Presentation_Transition_On_Click_Attribute_Node;
overriding function Get_Local_Name
(Self : not null access constant Presentation_Transition_On_Click_Attribute_Node)
return League.Strings.Universal_String;
end Matreshka.ODF_Presentation.Transition_On_Click_Attributes;
|
onox/orka | Ada | 873 | adb | -- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2022 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.
package body Orka.Numerics.Kalman is
procedure Set_State (Object : in out Filter; State : Vector) is
begin
Object.Estimate.State.Replace_Element (State);
end Set_State;
end Orka.Numerics.Kalman;
|
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.Attributes;
package ODF.DOM.Draw_Red_Attributes is
pragma Preelaborate;
type ODF_Draw_Red_Attribute is limited interface
and XML.DOM.Attributes.DOM_Attribute;
type ODF_Draw_Red_Attribute_Access is
access all ODF_Draw_Red_Attribute'Class
with Storage_Size => 0;
end ODF.DOM.Draw_Red_Attributes;
|
ekoeppen/STM32_Generic_Ada_Drivers | Ada | 729 | ads | with STM32_SVD.I2C;
generic
I2C : in out STM32_SVD.I2C.I2C_Peripheral;
package STM32GD.I2C is
pragma Preelaborate;
procedure Init;
function Test (Address: I2C_Address) return Boolean;
function Master_Transmit (Address : I2C_Address; Data : Byte;
Restart : Boolean := False) return Boolean;
function Master_Receive (Address : I2C_Address; Data : out Byte)
return Boolean;
function Master_Receive (Address : I2C_Address; Data : out Byte_Array)
return Boolean;
function Write_Register (Address : I2C_Address; Register : Byte;
Data : Byte) return Boolean;
function Read_Register (Address : I2C_Address; Register : Byte;
Data : out Byte) return Boolean;
end STM32GD.I2C;
|
VitalijBondarenko/Formatted_Output_NG | Ada | 2,258 | ads | ------------------------------------------------------------------------------
-- --
-- Copyright (c) 2016-2022 Vitalii Bondarenko <[email protected]> --
-- --
------------------------------------------------------------------------------
-- --
-- The MIT License (MIT) --
-- --
-- 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 Formatted_Output.Integer_Output;
package Formatted_Output_Natural is
new Formatted_Output.Integer_Output (Natural);
|
AaronC98/PlaneSystem | Ada | 20,426 | adb | ------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2005-2014, AdaCore --
-- --
-- This library 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 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. --
-- --
-- --
-- --
-- --
-- --
-- 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/>. --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
------------------------------------------------------------------------------
pragma Ada_2012;
with Ada.Calendar;
with Ada.Exceptions;
with Ada.Streams;
with Ada.Strings.Unbounded;
with Ada.Text_IO;
with Ada.Unchecked_Deallocation;
with Ada.Containers.Vectors;
with AWS.Messages;
with AWS.MIME;
with AWS.Net.Buffered;
with AWS.Net.Generic_Sets;
with AWS.Parameters;
with AWS.Services.Dispatchers.URI;
with AWS.Templates;
with AWS.Utils;
package body AWS.Services.Download is
use Ada;
use Ada.Containers;
use Ada.Exceptions;
use Ada.Streams;
use Ada.Strings.Unbounded;
URI_Prefix : constant String := "$dm_prefix$";
-- The URI prefix used for all the download manager request
W_Tmplt : constant String := "aws_download_manager_waiting.thtml";
S_Tmplt : constant String := "aws_download_manager_start.thtml";
type Waiting_Position is new Natural;
-- The position in the waiting line, 0 means that the download can be
-- started. 1 means in the first position in the waiting line, the download
-- will start as soon as a download terminates.
type Download_Information is record
URI : Unbounded_String; -- download manager unique key URI
Name : Unbounded_String; -- the resource name (filename)
R_URI : Unbounded_String; -- the resource URI
Started : Boolean; -- True if download can start
Header : Boolean; -- True if HTTP header sent
Stream : Resources.Streams.Stream_Access; -- data stream (input)
Socket : Net.Socket_Access; -- client socket (output)
Position : Waiting_Position; -- position in the waiting line
Index : Positive; -- item vector index (for fast update)
Time_Stamp : Calendar.Time; -- when the download was created
end record;
No_Information : constant Download_Information :=
(Null_Unbounded_String, Null_Unbounded_String,
Null_Unbounded_String, False, False, null, null,
0, 1, Calendar.Clock);
package Download_Vectors is
new Containers.Vectors (Positive, Download_Information);
use Download_Vectors;
-- The task that handles the downloads
task type Download_Manager with Priority => Config.Service_Priority is
end Download_Manager;
type Download_Manager_Access is access Download_Manager;
DM : Download_Manager_Access;
-- The download manager created in the start routine
-- The socket set (multiplexer)
Max_Concurrent_Download : Positive;
package Sock_Set is new Net.Generic_Sets (Download_Information);
-- Data manager
protected Data_Manager is
procedure Insert (Download : Download_Information);
-- Add a new download data information
procedure Update (Download : Download_Information);
-- Update the download information (Download.URI is the unique key)
procedure Remove (Download : Download_Information);
-- Remove the download information, this is either because the download
-- is terminated or an error occurs during the download (interrupted by
-- the user).
entry Ready;
-- Returns if there is at least one download to do
procedure Create_Set (Socket_Set : in out Sock_Set.Socket_Set_Type);
-- Returns in Socket_Set the socket to look at for output availability
procedure Get (URI : String; Download : out Download_Information);
-- Returns the Download_Information for the given URI or No_Information
-- if this URI is not part of the download data. Note that this routine
-- also set the Index and Position fields according to the position in
-- the vector.
procedure Get_UID (UID : out Positive);
-- Returns a unique ID
procedure Set_Shutdown;
-- Download manager shutdown requested
function Shutdown return Boolean;
-- Returns the shutdown status
procedure Release;
-- Release memory associated with the data manager
private
procedure Check_Queue;
-- Check all sockets in the queue and set Socket_Present if sockets are
-- present so waiting for data.
Count : Natural := 0;
-- Set to true when there is nothing to do
Downloads : Vector;
function Index (Download : Download_Information) return Positive;
-- Returns the updated index for Download, 0 if not found
UID : Natural := 0;
Closing : Boolean := False;
Socket_Present : Boolean := False;
end Data_Manager;
----------------
-- DM_Handler --
----------------
DM_Handler : Dispatchers.URI.Handler;
function CB (Request : Status.Data) return Response.Data;
-- Download manager callback handler
-----------
-- Build --
-----------
function Build
(Request : Status.Data;
Name : String;
Resource : not null access Resources.Streams.Stream_Type'Class)
return Response.Data
is
UID : Positive;
begin
Data_Manager.Get_UID (UID);
declare
Key_URI : constant String :=
Status.URI (Request) & "$" & Utils.Image (UID);
begin
Data_Manager.Insert
(Download =>
(To_Unbounded_String (Key_URI), To_Unbounded_String (Name),
To_Unbounded_String (Status.URI (Request)),
False, False,
Resources.Streams.Stream_Access (Resource), null,
0, 1, Calendar.Clock));
return Response.URL
("/" & URI_Prefix & "?RES_URI=" & Key_URI,
Cache_Control => Messages.No_Cache);
end;
end Build;
--------
-- CB --
--------
function CB (Request : Status.Data) return Response.Data is
P_List : constant Parameters.List := Status.Parameters (Request);
URI : constant String := Parameters.Get (P_List, "RES_URI");
Info : Download_Information;
begin
Data_Manager.Get (URI, Info);
if Info = No_Information then
-- This should not happen, guard against bad URL (reload after
-- interrupted download).
return Response.Acknowledge
(Messages.S404, "<p>Download manager page not registered!");
end if;
if Info.Position = 0 then
-- Download can be started now
if Info.Started then
-- Let's go now, set the client side socket
Info.Socket := new Net.Socket_Type'Class'(Status.Socket (Request));
Data_Manager.Update (Info);
return Response.Socket_Taken;
else
-- Display the start page before launching the download
Info.Started := True;
Data_Manager.Update (Info);
return Response.Build
(MIME.Text_HTML,
String'(Templates.Parse
(S_Tmplt,
(1 => Templates.Assoc ("NAME", To_String (Info.Name)),
2 => Templates.Assoc
("RES_URI", To_String (Info.R_URI))))));
end if;
else
return Response.Build
(MIME.Text_HTML,
String'(Templates.Parse
(W_Tmplt,
(1 => Templates.Assoc ("NAME", To_String (Info.Name)),
2 => Templates.Assoc ("RES_URI", To_String (Info.R_URI)),
3 => Templates.Assoc
("POSITION", Positive (Info.Position))))));
end if;
end CB;
----------
-- Data --
----------
protected body Data_Manager is
-----------------
-- Check_Queue --
-----------------
procedure Check_Queue is
use type Net.Socket_Access;
begin
Socket_Present := False;
Check_Socket_Present : for K in 1 .. Natural (Downloads.Length) loop
if Downloads.Element (K).Socket /= null then
Socket_Present := True;
exit Check_Socket_Present;
end if;
end loop Check_Socket_Present;
end Check_Queue;
----------------
-- Create_Set --
----------------
procedure Create_Set (Socket_Set : in out Sock_Set.Socket_Set_Type) is
use type Net.Socket_Access;
Info : Download_Information;
N : Positive;
begin
N := Positive'Min
(Max_Concurrent_Download, Positive (Downloads.Length));
for K in 1 .. N loop
Info := Downloads.Element (K);
if Info.Socket /= null then
Sock_Set.Add (Socket_Set, Info.Socket, Sock_Set.Output);
Sock_Set.Set_Data (Socket_Set, Sock_Set.Socket_Count (K), Info);
end if;
end loop;
end Create_Set;
---------
-- Get --
---------
procedure Get (URI : String; Download : out Download_Information) is
use type Calendar.Time;
Info : Download_Information;
Index : Natural := 0;
begin
-- First remove old entries which have not been checked for at least
-- 15 seconds.
Remove_Old_Entries : while not Downloads.Is_Empty loop
Info := Downloads.First_Element;
if Calendar.Clock - Info.Time_Stamp > 15.0 then
Downloads.Delete_First;
Count := Count - 1;
else
exit Remove_Old_Entries;
end if;
end loop Remove_Old_Entries;
-- Look for the given URI in the vector
for K in 1 .. Natural (Downloads.Length) loop
Info := Downloads.Element (K);
if URI = To_String (Info.URI) then
Index := K;
exit;
end if;
end loop;
if Index = 0 then
-- Not found
Info := No_Information;
else
Info.Index := Index;
-- As this download was checked, update time-stamp
Info.Time_Stamp := Calendar.Clock;
Downloads.Replace_Element (Index, Info);
if Index <= Max_Concurrent_Download then
Info.Position := 0;
else
Info.Position :=
Waiting_Position (Index - Max_Concurrent_Download);
end if;
end if;
Download := Info;
Check_Queue;
end Get;
-------------
-- Get_UID --
-------------
procedure Get_UID (UID : out Positive) is
begin
Data_Manager.UID := Data_Manager.UID + 1;
UID := Data_Manager.UID;
end Get_UID;
-----------
-- Index --
-----------
function Index (Download : Download_Information) return Positive is
begin
-- Use Download.Index for fast lookup, this was the original position
-- for this item. The new position is either at the same index or in
-- a lower position in case some downloads have endded since we got
-- this item.
for K in reverse 1 .. Download.Index loop
if Download.URI = Downloads.Element (K).URI then
return K;
end if;
end loop;
raise Constraint_Error;
end Index;
------------
-- Insert --
------------
procedure Insert (Download : Download_Information) is
begin
Downloads.Append (Download);
Count := Count + 1;
end Insert;
-----------
-- Ready --
-----------
entry Ready when Socket_Present or else Closing is
begin
null;
end Ready;
-------------
-- Release --
-------------
procedure Release is
begin
Downloads.Clear;
Socket_Present := False;
Count := 0;
end Release;
------------
-- Remove --
------------
procedure Remove (Download : Download_Information) is
begin
Downloads.Delete (Index (Download));
Count := Count - 1;
Check_Queue;
end Remove;
------------------
-- Set_Shutdown --
------------------
procedure Set_Shutdown is
begin
Closing := True;
end Set_Shutdown;
--------------
-- Shutdown --
--------------
function Shutdown return Boolean is
begin
return Closing;
end Shutdown;
------------
-- Update --
------------
procedure Update (Download : Download_Information) is
use type Net.Socket_Access;
begin
-- Set Socket_Ready status if a socket is available
if Download.Socket /= null then
Socket_Present := True;
end if;
Downloads.Replace_Element (Index (Download), Download);
end Update;
end Data_Manager;
----------------------
-- Download_Manager --
----------------------
task body Download_Manager is
procedure Send_Header
(Socket_Set : in out Sock_Set.Socket_Set_Type;
N : Sock_Set.Socket_Count;
Info : in out Download_Information);
-- Send HTTP headers
procedure Send_Data
(Info : Download_Information;
Done : out Boolean);
-- Send some data for Info. Done is set to true if the download is
-- completed.
---------------
-- Send_Data --
---------------
procedure Send_Data
(Info : Download_Information;
Done : out Boolean)
is
Buffer_Size : constant := 4 * 1_024;
Buffer : Streams.Stream_Element_Array (1 .. Buffer_Size);
Last : Streams.Stream_Element_Offset;
begin
Resources.Streams.Read (Info.Stream.all, Buffer, Last);
Done := Last < Buffer'First;
if not Done then
Net.Buffered.Write (Info.Socket.all, Buffer (1 .. Last));
end if;
end Send_Data;
-----------------
-- Send_Header --
-----------------
procedure Send_Header
(Socket_Set : in out Sock_Set.Socket_Set_Type;
N : Sock_Set.Socket_Count;
Info : in out Download_Information)
is
pragma Unreferenced (Socket_Set, N);
Sock : constant Net.Socket_Type'Class := Info.Socket.all;
begin
Info.Header := True;
Data_Manager.Update (Info);
Net.Buffered.Put_Line (Sock, Messages.Status_Line (Messages.S200));
Net.Buffered.Put_Line
(Sock,
"Date: " & Messages.To_HTTP_Date (Utils.GMT_Clock));
-- Server
Net.Buffered.Put_Line
(Sock,
"Server: AWS (Ada Web Server) v" & Version);
Net.Buffered.Put_Line (Sock, Messages.Connection ("close"));
Net.Buffered.Put_Line
(Sock, Messages.Content_Length
(Resources.Streams.Size (Info.Stream.all)));
Net.Buffered.Put_Line
(Sock, Messages.Content_Type (MIME.Application_Octet_Stream));
Net.Buffered.Put_Line
(Sock, Messages.Content_Disposition
("attachment", To_String (Info.Name), To_String (Info.Name)));
Net.Buffered.New_Line (Sock);
Net.Buffered.Flush (Sock);
end Send_Header;
Socket_Set : Sock_Set.Socket_Set_Type;
Count : Sock_Set.Socket_Count;
Done : Boolean;
begin
Main : loop
Data_Manager.Ready;
exit Main when Data_Manager.Shutdown;
-- Some data are ready to be sent
Data_Manager.Create_Set (Socket_Set);
Sock_Set.Wait (Socket_Set, Net.Forever, Count);
-- For all write ready socket, send some data
for K in 1 .. Sock_Set.Count (Socket_Set) loop
Done := False;
declare
Info : Download_Information :=
Sock_Set.Get_Data (Socket_Set, K);
begin
if Sock_Set.Is_Write_Ready (Socket_Set, K) then
begin
if not Info.Header then
Send_Header (Socket_Set, K, Info);
end if;
Send_Data (Info, Done);
if Done then
Net.Buffered.Flush (Info.Socket.all);
Net.Shutdown (Info.Socket.all);
end if;
exception
when Net.Socket_Error =>
Done := True;
end;
if Done then
Resources.Streams.Close (Info.Stream.all);
end if;
elsif Sock_Set.Is_Error (Socket_Set, K) then
Done := True;
end if;
if Done then
-- Remove this socket from the server
Data_Manager.Remove (Info);
end if;
end;
end loop;
Sock_Set.Reset (Socket_Set);
end loop Main;
exception
when E : others =>
Text_IO.Put_Line
(Text_IO.Current_Error,
"Download manager bug detected: " & Exception_Information (E));
end Download_Manager;
-----------
-- Start --
-----------
procedure Start
(Server_Dispatcher : AWS.Dispatchers.Handler'Class;
Main_Dispatcher : out Services.Dispatchers.Linker.Handler;
Max_Concurrent_Download : Positive := Config.Max_Concurrent_Download) is
begin
Download.Max_Concurrent_Download := Max_Concurrent_Download;
-- Set the dispatcher
Dispatchers.URI.Register (DM_Handler, "/" & URI_Prefix, CB'Access, True);
Dispatchers.Linker.Register
(Main_Dispatcher, Server_Dispatcher, DM_Handler);
-- Start download manager task
DM := new Download_Manager;
end Start;
----------
-- Stop --
----------
procedure Stop is
procedure Unchecked_Free is new Unchecked_Deallocation
(Download_Manager, Download_Manager_Access);
begin
Dispatchers.URI.Unregister (DM_Handler, "/" & URI_Prefix);
Data_Manager.Set_Shutdown;
while not DM'Terminated loop
delay 0.1;
end loop;
Unchecked_Free (DM);
Data_Manager.Release;
end Stop;
end AWS.Services.Download;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.