hexsha
stringlengths 40
40
| size
int64 3
1.05M
| ext
stringclasses 163
values | lang
stringclasses 53
values | max_stars_repo_path
stringlengths 3
945
| max_stars_repo_name
stringlengths 4
112
| max_stars_repo_head_hexsha
stringlengths 40
78
| max_stars_repo_licenses
sequencelengths 1
10
| max_stars_count
float64 1
191k
⌀ | max_stars_repo_stars_event_min_datetime
stringlengths 24
24
⌀ | max_stars_repo_stars_event_max_datetime
stringlengths 24
24
⌀ | max_issues_repo_path
stringlengths 3
945
| max_issues_repo_name
stringlengths 4
113
| max_issues_repo_head_hexsha
stringlengths 40
78
| max_issues_repo_licenses
sequencelengths 1
10
| max_issues_count
float64 1
116k
⌀ | max_issues_repo_issues_event_min_datetime
stringlengths 24
24
⌀ | max_issues_repo_issues_event_max_datetime
stringlengths 24
24
⌀ | max_forks_repo_path
stringlengths 3
945
| max_forks_repo_name
stringlengths 4
113
| max_forks_repo_head_hexsha
stringlengths 40
78
| max_forks_repo_licenses
sequencelengths 1
10
| max_forks_count
float64 1
105k
⌀ | max_forks_repo_forks_event_min_datetime
stringlengths 24
24
⌀ | max_forks_repo_forks_event_max_datetime
stringlengths 24
24
⌀ | content
stringlengths 3
1.05M
| avg_line_length
float64 1
966k
| max_line_length
int64 1
977k
| alphanum_fraction
float64 0
1
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
20abe3ff93bcfa290b7c9420b7fe4b8e11cbfcf6 | 6,640 | adb | Ada | tools-src/gnu/gcc/gcc/ada/s-pack30.adb | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 80 | 2015-01-02T10:14:04.000Z | 2021-06-07T06:29:49.000Z | tools-src/gnu/gcc/gcc/ada/s-pack30.adb | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 9 | 2015-05-14T11:03:12.000Z | 2018-01-04T07:12:58.000Z | tools-src/gnu/gcc/gcc/ada/s-pack30.adb | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 69 | 2015-01-02T10:45:56.000Z | 2021-09-06T07:52:13.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 3 0 --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-1999 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 2, 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 COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Storage_Elements;
with System.Unsigned_Types;
with Unchecked_Conversion;
package body System.Pack_30 is
subtype Ofs is System.Storage_Elements.Storage_Offset;
subtype Uns is System.Unsigned_Types.Unsigned;
subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7;
use type System.Storage_Elements.Storage_Offset;
use type System.Unsigned_Types.Unsigned;
type Cluster is record
E0, E1, E2, E3, E4, E5, E6, E7 : Bits_30;
end record;
for Cluster use record
E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1;
E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1;
E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1;
E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1;
E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1;
E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1;
E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1;
E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1;
end record;
for Cluster'Size use Bits * 8;
for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment,
1 +
1 * Boolean'Pos (Bits mod 2 = 0) +
2 * Boolean'Pos (Bits mod 4 = 0));
-- Use maximum possible alignment, given the bit field size, since this
-- will result in the most efficient code possible for the field.
type Cluster_Ref is access Cluster;
function To_Ref is new
Unchecked_Conversion (System.Address, Cluster_Ref);
-- The following declarations are for the case where the address
-- passed to GetU_30 or SetU_30 is not guaranteed to be aligned.
-- These routines are used when the packed array is itself a
-- component of a packed record, and therefore may not be aligned.
type ClusterU is new Cluster;
for ClusterU'Alignment use 1;
type ClusterU_Ref is access ClusterU;
function To_Ref is new
Unchecked_Conversion (System.Address, ClusterU_Ref);
------------
-- Get_30 --
------------
function Get_30 (Arr : System.Address; N : Natural) return Bits_30 is
C : constant Cluster_Ref := To_Ref (Arr + Bits * Ofs (Uns (N) / 8));
begin
case N07 (Uns (N) mod 8) is
when 0 => return C.E0;
when 1 => return C.E1;
when 2 => return C.E2;
when 3 => return C.E3;
when 4 => return C.E4;
when 5 => return C.E5;
when 6 => return C.E6;
when 7 => return C.E7;
end case;
end Get_30;
-------------
-- GetU_30 --
-------------
function GetU_30 (Arr : System.Address; N : Natural) return Bits_30 is
C : constant ClusterU_Ref := To_Ref (Arr + Bits * Ofs (Uns (N) / 8));
begin
case N07 (Uns (N) mod 8) is
when 0 => return C.E0;
when 1 => return C.E1;
when 2 => return C.E2;
when 3 => return C.E3;
when 4 => return C.E4;
when 5 => return C.E5;
when 6 => return C.E6;
when 7 => return C.E7;
end case;
end GetU_30;
------------
-- Set_30 --
------------
procedure Set_30 (Arr : System.Address; N : Natural; E : Bits_30) is
C : constant Cluster_Ref := To_Ref (Arr + Bits * Ofs (Uns (N) / 8));
begin
case N07 (Uns (N) mod 8) is
when 0 => C.E0 := E;
when 1 => C.E1 := E;
when 2 => C.E2 := E;
when 3 => C.E3 := E;
when 4 => C.E4 := E;
when 5 => C.E5 := E;
when 6 => C.E6 := E;
when 7 => C.E7 := E;
end case;
end Set_30;
-------------
-- SetU_30 --
-------------
procedure SetU_30 (Arr : System.Address; N : Natural; E : Bits_30) is
C : constant ClusterU_Ref := To_Ref (Arr + Bits * Ofs (Uns (N) / 8));
begin
case N07 (Uns (N) mod 8) is
when 0 => C.E0 := E;
when 1 => C.E1 := E;
when 2 => C.E2 := E;
when 3 => C.E3 := E;
when 4 => C.E4 := E;
when 5 => C.E5 := E;
when 6 => C.E6 := E;
when 7 => C.E7 := E;
end case;
end SetU_30;
end System.Pack_30;
| 38.604651 | 78 | 0.485843 |
103276bb390ad9eb2a4e4de4cca0c4d96b823b17 | 2,780 | ads | Ada | tools/SPARK2005/preprocessor/src/context_processing.ads | michalkonecny/polypaver | 7a1541a85523f5ecbef44b7f5e09680d9a5c1ca6 | [
"BSD-3-Clause"
] | 1 | 2015-07-01T14:50:00.000Z | 2015-07-01T14:50:00.000Z | tools/SPARK2005/preprocessor/src/context_processing.ads | michalkonecny/polypaver | 7a1541a85523f5ecbef44b7f5e09680d9a5c1ca6 | [
"BSD-3-Clause"
] | null | null | null | tools/SPARK2005/preprocessor/src/context_processing.ads | michalkonecny/polypaver | 7a1541a85523f5ecbef44b7f5e09680d9a5c1ca6 | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- ASIS APPLICATION TEMPLATE COMPONENTS --
-- --
-- C O N T E X T _ P R O C E S S I N G --
-- --
-- S p e c --
-- --
-- Copyright (c) 2000, Free Software Foundation, Inc. --
-- --
-- ASIS Application Templates are free software; you can redistribute it --
-- and/or modify it under terms of the GNU General Public License as --
-- published by the Free Software Foundation; either version 2, or (at your --
-- option) any later version. ASIS Application Templates are distributed in --
-- the hope that they will be useful, but WITHOUT ANY WARRANTY; without --
-- even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR --
-- PURPOSE. See the GNU General Public License for more details. You should --
-- have received a copy of the GNU General Public License distributed with --
-- distributed with GNAT; see file COPYING. If not, write to the Free --
-- Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, --
-- USA. --
-- --
-- ASIS Application Templates were developed and are now maintained by Ada --
-- Core Technologies Inc (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
-- This package contains routines for high-level processing of
-- (terating through) an ASIS Context
with Asis;
package Context_Processing is
procedure Process_Context
(The_Context : Asis.Context;
Trace : Boolean := False;
Output_Path : String);
-- This procedure iterates through the whole content of its argument
-- Context and it calls a unit processing routine for those ASIS
-- Compilation Units which are of An_Application_Unit origin (that is,
-- user-defined units). If Trace parameter is set ON, it generate the
-- simple trace of the unit processing (consisting of the names of the
-- units in the Context being processed or skipped).
end Context_Processing;
| 59.148936 | 78 | 0.464748 |
0e91afc4381b0024216f80136bb1e41699f204a8 | 6,246 | adb | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-pack15.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-pack15.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-pack15.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 1 5 --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Storage_Elements;
with System.Unsigned_Types;
package body System.Pack_15 is
subtype Bit_Order is System.Bit_Order;
Reverse_Bit_Order : constant Bit_Order :=
Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order));
subtype Ofs is System.Storage_Elements.Storage_Offset;
subtype Uns is System.Unsigned_Types.Unsigned;
subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7;
use type System.Storage_Elements.Storage_Offset;
use type System.Unsigned_Types.Unsigned;
type Cluster is record
E0, E1, E2, E3, E4, E5, E6, E7 : Bits_15;
end record;
for Cluster use record
E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1;
E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1;
E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1;
E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1;
E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1;
E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1;
E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1;
E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1;
end record;
for Cluster'Size use Bits * 8;
for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment,
1 +
1 * Boolean'Pos (Bits mod 2 = 0) +
2 * Boolean'Pos (Bits mod 4 = 0));
-- Use maximum possible alignment, given the bit field size, since this
-- will result in the most efficient code possible for the field.
type Cluster_Ref is access Cluster;
type Rev_Cluster is new Cluster
with Bit_Order => Reverse_Bit_Order,
Scalar_Storage_Order => Reverse_Bit_Order;
type Rev_Cluster_Ref is access Rev_Cluster;
------------
-- Get_15 --
------------
function Get_15
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_15
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : Cluster_Ref with Address => A'Address, Import;
RC : Rev_Cluster_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => return RC.E0;
when 1 => return RC.E1;
when 2 => return RC.E2;
when 3 => return RC.E3;
when 4 => return RC.E4;
when 5 => return RC.E5;
when 6 => return RC.E6;
when 7 => return RC.E7;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => return C.E0;
when 1 => return C.E1;
when 2 => return C.E2;
when 3 => return C.E3;
when 4 => return C.E4;
when 5 => return C.E5;
when 6 => return C.E6;
when 7 => return C.E7;
end case;
end if;
end Get_15;
------------
-- Set_15 --
------------
procedure Set_15
(Arr : System.Address;
N : Natural;
E : Bits_15;
Rev_SSO : Boolean)
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : Cluster_Ref with Address => A'Address, Import;
RC : Rev_Cluster_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => RC.E0 := E;
when 1 => RC.E1 := E;
when 2 => RC.E2 := E;
when 3 => RC.E3 := E;
when 4 => RC.E4 := E;
when 5 => RC.E5 := E;
when 6 => RC.E6 := E;
when 7 => RC.E7 := E;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => C.E0 := E;
when 1 => C.E1 := E;
when 2 => C.E2 := E;
when 3 => C.E3 := E;
when 4 => C.E4 := E;
when 5 => C.E5 := E;
when 6 => C.E6 := E;
when 7 => C.E7 := E;
end case;
end if;
end Set_15;
end System.Pack_15;
| 39.531646 | 78 | 0.460775 |
df2235cb6eb7237298a51b062ece1eb966cf71fa | 811 | adb | Ada | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/bp_reset/pck.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | 3 | 2021-05-04T17:09:06.000Z | 2021-10-04T07:19:26.000Z | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/bp_reset/pck.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/bp_reset/pck.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2012-2020 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package body Pck is
procedure Do_Nothing is
begin
null;
end Do_Nothing;
end Pck;
| 36.863636 | 73 | 0.731196 |
0ed4e8b4b20af633f85ead39ad751a230e7f57b8 | 554 | ads | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/loop_optimization12.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/loop_optimization12.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/loop_optimization12.ads | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | package Loop_Optimization12 is
type Enum1 is (A, B, C, D, E, F, G, H, I, J);
type Enum2 is (A, B, C);
type Enum3 is (A, B, C, D, E, F);
type Enum4 is (A, B, C, D);
type Enum5 is (A, B, C, D, E);
type Arr is array (Enum3, Enum4, Enum4, Enum5, Enum5, Enum3,
Enum2, Enum3, Enum5, Enum3) of Natural;
type Arr_Ptr is access Arr;
type Ext_Arr is array (Enum1) of Arr_Ptr;
type Rec is record
F : Ext_Arr;
end record;
type Rec_Ptr is access Rec;
procedure Reset (S : Rec_Ptr);
end Loop_Optimization12;
| 19.785714 | 62 | 0.606498 |
2003437c4d62ceec711aed0f68ba7d0999f148b4 | 3,890 | ads | Ada | tools/scitools/conf/understand/ada/ada05/g-hesora.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | 1 | 2020-01-20T21:26:46.000Z | 2020-01-20T21:26:46.000Z | tools/scitools/conf/understand/ada/ada05/g-hesora.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | tools/scitools/conf/understand/ada/ada05/g-hesora.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- G N A T . H E A P _ S O R T _ A --
-- --
-- S p e c --
-- --
-- Copyright (C) 1995-2005, AdaCore --
-- --
-- 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 2, 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 COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
--
--
--
--
--
--
--
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Heapsort using access to procedure parameters
-- This package provides a heap sort routine that works with access to
-- subprogram parameters, so that it can be used with different types with
-- shared sorting code. It is considered obsoleted by GNAT.Heap_Sort which
-- offers a similar routine with a more convenient interface.
-- This heapsort algorithm uses approximately N*log(N) compares in the
-- worst case and is in place with no additional storage required. See
-- the body for exact details of the algorithm used.
package GNAT.Heap_Sort_A is
pragma Preelaborate;
-- The data to be sorted is assumed to be indexed by integer values from
-- 1 to N, where N is the number of items to be sorted. In addition, the
-- index value zero is used for a temporary location used during the sort.
type Move_Procedure is access procedure (From : Natural; To : Natural);
-- A pointer to a procedure that moves the data item with index From to
-- the data item with index To. An index value of zero is used for moves
-- from and to the single temporary location used by the sort.
type Lt_Function is access function (Op1, Op2 : Natural) return Boolean;
-- A pointer to a function that compares two items and returns True if
-- the item with index Op1 is less than the item with index Op2, and False
-- if the Op1 item is greater than or equal to the Op2 item.
procedure Sort (N : Natural; Move : Move_Procedure; Lt : Lt_Function);
-- This procedures sorts items in the range from 1 to N into ascending
-- order making calls to Lt to do required comparisons, and Move to move
-- items around. Note that, as described above, both Move and Lt use a
-- single temporary location with index value zero. This sort is not
-- stable, i.e. the order of equal elements in the input is not preserved.
end GNAT.Heap_Sort_A;
| 55.571429 | 78 | 0.538046 |
185301c3d25f4b975018f5e879d4be551bf49b1b | 4,483 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-stchop.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-stchop.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-stchop.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . S T A C K _ C H E C K I N G . O P E R A T I O N S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1999-2020, 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 package provides a implementation of stack checking operations using
-- comparison with stack base and limit.
pragma Restrictions (No_Elaboration_Code);
-- We want to guarantee the absence of elaboration code because the binder
-- does not handle references to this package.
with System.Storage_Elements;
package System.Stack_Checking.Operations is
pragma Preelaborate;
procedure Update_Stack_Cache (Stack : Stack_Access);
-- Set the stack cache for the current task. Note that this is only for
-- optimization purposes, nothing can be assumed about the contents of the
-- cache at any time, see Set_Stack_Info.
--
-- The stack cache should contain the bounds of the current task. But
-- because the RTS is not aware of task switches, the stack cache may be
-- incorrect. So when the stack pointer is not within the bounds of the
-- stack cache, Stack_Check first update the cache (which is a costly
-- operation hence the need of a cache).
procedure Invalidate_Stack_Cache (Any_Stack : Stack_Access);
-- Invalidate cache entries for the task T that owns Any_Stack. This causes
-- the Set_Stack_Info function to be called during the next stack check
-- done by T. This can be used to interrupt task T asynchronously.
-- Stack_Check should be called in loops for this to work reliably.
function Stack_Check (Stack_Address : System.Address) return Stack_Access;
-- This version of Stack_Check should not be inlined
procedure Notify_Stack_Attributes
(Initial_SP : System.Address;
Size : System.Storage_Elements.Storage_Offset);
-- Register Initial_SP as the initial stack pointer value for the current
-- task when it starts and Size as the associated stack area size. This
-- should be called once, after the soft-links have been initialized and
-- prior to the first "Stack_Check" call.
private
Cache : aliased Stack_Access := Null_Stack;
pragma Export (C, Cache, "_gnat_stack_cache");
pragma Export (C, Stack_Check, "_gnat_stack_check");
end System.Stack_Checking.Operations;
| 56.746835 | 79 | 0.549409 |
df3e4916acc1c283a911b39fd9355077405fad48 | 1,393 | ads | Ada | tools/scitools/conf/understand/ada/ada05/a-nlcefu.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | 1 | 2020-01-20T21:26:46.000Z | 2020-01-20T21:26:46.000Z | llvm-gcc-4.2-2.9/gcc/ada/a-nlcefu.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/a-nlcefu.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- ADA.NUMERICS.LONG_COMPLEX.ELEMENTARY_FUNCTIONS --
-- --
-- S p e c --
-- --
-- This specification is adapted from the Ada Reference Manual for use with --
-- GNAT. In accordance with the copyright of that document, you can freely --
-- copy and modify this specification, provided that if you redistribute a --
-- modified version, any changes that you have made are clearly indicated. --
-- --
------------------------------------------------------------------------------
with Ada.Numerics.Long_Complex_Types;
with Ada.Numerics.Generic_Complex_Elementary_Functions;
package Ada.Numerics.Long_Complex_Elementary_Functions is
new Ada.Numerics.Generic_Complex_Elementary_Functions
(Ada.Numerics.Long_Complex_Types);
| 63.318182 | 78 | 0.374731 |
2335817864163be259141fd3e783141dc27cd87f | 9,644 | adb | Ada | src/main.adb | T-Bone-Willson/SubmarinesFormalApproaches | 0a79bb2d15fcb0a061b64abe97d06360ddb85612 | [
"MIT"
] | null | null | null | src/main.adb | T-Bone-Willson/SubmarinesFormalApproaches | 0a79bb2d15fcb0a061b64abe97d06360ddb85612 | [
"MIT"
] | null | null | null | src/main.adb | T-Bone-Willson/SubmarinesFormalApproaches | 0a79bb2d15fcb0a061b64abe97d06360ddb85612 | [
"MIT"
] | null | null | null | with SubmarineSubSystem; use SubmarineSubSystem;
with Ada.Text_IO; use Ada.Text_IO;
procedure Main is
begin
StartSubmarine;
Put_Line("Nuclear Submarine is: ");
Put_Line(NuclearSubmarine.GoodToGo'Image);
Put_Line("Try Starting Submarine");
StartSubmarine;
Put_Line("Now Nuclear Submarine is: ");
Put_Line(NuclearSubmarine.GoodToGo'Image);
Put_Line("Can we Fire? ");
SubmarineAction;
Put_Line(NuclearSubmarine.OpTest'Image);
Put_Line("Need to Close Both Doors to be operational: ");
Put_Line("Airlock Door one is: ");
Put_Line(NuclearSubmarine.ClosingOne'Image);
Put_Line("Airlock Door two is: ");
Put_Line(NuclearSubmarine.ClosingTwo'Image);
Put_Line("TEST FOR BOTH DOORS CAN'T BE OPEN!");
D2Open;
Put_Line("Airlock Door one is: ");
Put_Line(NuclearSubmarine.ClosingOne'Image);
Put_Line("Airlock Door two is: ");
Put_Line(NuclearSubmarine.ClosingTwo'Image);
Put_Line("Airlock Door two cannot be Open if Airlock Door one is Open");
Put_Line("NOW TEST DOOR 1 & 2 OPEN/CLOSE IN VICE VERSA!");
D1Close;
D2Close;
D2Open;
D1Open;
Put_Line("Airlock Door one is: ");
Put_Line(NuclearSubmarine.ClosingOne'Image);
Put_Line("Airlock Door two is: ");
Put_Line(NuclearSubmarine.ClosingTwo'Image);
Put_Line("Airlock Door one cannot be Open if Airlock Door two is Open");
Put_Line("END OF TEST");
Put_Line("Closing Airlock Door one: ");
D1Close;
Put_Line("Airlock Door one is: ");
Put_Line(NuclearSubmarine.ClosingOne'Image);
Put_Line("Closing Airlock Door two: ");
D2Close;
Put_Line("Airlock Door two is: ");
Put_Line(NuclearSubmarine.ClosingTwo'Image);
Put_Line("Is Nuclear Submarin operational yet: ");
StartSubmarine;
Put_Line(NuclearSubmarine.GoodToGo'Image);
Put_Line("Can we Fire?");
SubmarineAction;
Put_Line(NuclearSubmarine.OpTest'Image);
Put_Line("Need to Lock Both Doors to be operational: ");
Put_Line("Priming for Airlock Door locking: ");
Put_Line("Airlock Door one lock is: ");
Put_Line(NuclearSubmarine.LockingOne'Image);
Put_Line("Airlock Door two lock is: ");
Put_Line(NuclearSubmarine.LockingTwo'Image);
Put_Line("Initiate Locking: ");
D1Lock;
D2Lock;
Put_Line("Airlock Door one is: ");
Put_Line(NuclearSubmarine.LockingOne'Image);
Put_Line("Airlock Door two is: ");
Put_Line(NuclearSubmarine.LockingTwo'Image);
Put_Line("Try Opening Airlock Door one: ");
D1Open;
Put_Line("Status of Airlock Door one: ");
Put_Line(NuclearSubmarine.ClosingOne'Image);
Put_Line(NuclearSubmarine.LockingOne'Image);
Put_Line("Lock secure!");
Put_Line("Try Opening Airlock Door Two: ");
D2Open;
Put_Line("Status of Airlock Door Two: ");
Put_Line(NuclearSubmarine.ClosingTwo'Image);
Put_Line(NuclearSubmarine.LockingTwo'Image);
Put_Line("Lock secure!");
Put_Line("Is Nuclear Submarine Operational: ");
StartSubmarine;
Put_Line(NuclearSubmarine.GoodToGo'Image);
Put_Line("Can we Fire?");
SubmarineAction;
Put_Line(NuclearSubmarine.OpTest'Image);
Put_Line("SUBMARINE IS NOW OPERATIONAL TO TEST ALL SYSTEMS!");
Put_Line("");
Put_Line("");
Put_Line("");
Put_Line("DIVE AND DEPTH CHECK TEST!");
Put_Line("Ready to Dive, Commence Divining");
DiveOrNot;
Put_Line(NuclearSubmarine.DDive'Image);
Put_Line("State of Dive?");
DepthMeterCheck;
Put_Line(NuclearSubmarine.DStage'Image);
Put_Line("Dive by 3!");
ChangeDepth;
Put_Line("Depth is now: ");
Put_Line(NuclearSubmarine.DLevel'Image);
Put("Submarine in Okay Depth Stage? "); -- Displays Submarine depth state while
DepthMeterCheck; -- This line is printed... Don't know why.
Put_Line(NuclearSubmarine.DStage'Image);
Put_Line("Dive by 3!");
ChangeDepth;
Put_Line("Depth is now: ");
Put_Line(NuclearSubmarine.DLevel'Image);
Put("Submarine in Okay Depth Stage? ");
DepthMeterCheck;
Put_Line(NuclearSubmarine.DStage'Image);
Put_Line("Dive by 3!");
ChangeDepth;
Put_Line("Depth is now: ");
Put_Line(NuclearSubmarine.DLevel'Image);
Put("Submarine in Okay Depth Stage? ");
DepthMeterCheck;
Put_Line(NuclearSubmarine.DStage'Image);
Put_Line("Dive by 3!");
ChangeDepth;
Put_Line("Depth is now: ");
Put_Line(NuclearSubmarine.DLevel'Image);
Put("Submarine in Okay Depth Stage? ");
DepthMeterCheck;
Put_Line(NuclearSubmarine.DStage'Image);
Put_Line("Cannot Dive any deeper!");
Put_Line("Taking Submarine back to Surface");
Resurface;
Put_Line("Submarine is: ");
Put_Line(NuclearSubmarine.DDive'Image);
Put_Line("Submarine Depth level is: ");
Put_Line(NuclearSubmarine.DLevel'Image);
Put_Line("TEST IF SUBMARINE CAN CHANGE DEPTH WHILE SURFACED");
ChangeDepth;
ChangeDepth;
ChangeDepth;
Put_Line(NuclearSubmarine.DLevel'Image);
Put_Line("IT CANNOT! TEST OVER");
Put_Line("");
Put_Line("");
Put_Line("");
Put_Line("DIVE AND USE OXYGEN TEST");
Put_Line("Submarine is: ");
Put_Line(NuclearSubmarine.DDive'Image);
Put_Line("Dive Submarine!");
DiveOrNot;
Put_Line("Submarine is: ");
Put_Line(NuclearSubmarine.DDive'Image);
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Submarine Oxygen Reserves are: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("State of Oxygen Tank is ");
OxygenReserveCheck;
Put_Line(NuclearSubmarine.OState'Image);
Put_Line("Use Oxygen: ");
ConsumeOxygen;
Put_Line("Is Submarine defently Surfaced? ");
Put_Line(NuclearSubmarine.DDive'Image);
Put_Line("Check if Oxygen Reserves have been restored by resurficing: ");
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("Can Oxygen be consumed while surfaced? ");
ConsumeOxygen;
Put_Line(NuclearSubmarine.OTank'Image);
Put_Line("No it cannot ");
Put_Line("THIS ENDS TESTING FOR OXYGEN SYSTEM!");
Put_Line("");
Put_Line("");
Put_Line("");
Put_Line("BEGIN TESTING REACTOR OVERHEATING SYSTEMS");
Put_Line("Submarin must Dive");
DiveOrNot;
Put_Line(NuclearSubmarine.DDive'Image);
Put_Line("Overheat Reactor: ");
ReactorOverheatRoutine;
Put_Line("Submarine state is still: ");
Put_Line(NuclearSubmarine.RTemp'Image);
Put_Line("Can we dive?");
DiveOrNot;
Put_Line(NuclearSubmarine.DDive'Image);
Put_Line("Submarine cannot diver because reactor is still: ");
Put_Line(NuclearSubmarine.RTemp'Image);
Put_Line("Intiate Cooling of the reactor: ");
CoolReactor;
Put_Line("Reactor is now: ");
Put_Line(NuclearSubmarine.RTemp'Image);
Put_Line("Can we dive?");
DiveOrNot;
Put_Line(NuclearSubmarine.DDive'Image);
Put_Line("THIS ENDS TESTING FOR REACTOR SUBSYSTEMS");
Put_Line("");
Put_Line("");
Put_Line("");
Put_Line("BEGIN TESTING TORPEDOES SYSTEM!");
Put_Line("Submariner: Errr... Admiral? We don't have any torpedoes. Or tubes for that matter.");
Put_Line("The Admiral looks deeply into the submariner's eyes, only witnessing the sheer shock of a submarine having no torpedo systems");
Put_Line("Admiral: ....Bugger!");
Put_Line("");
Put_Line("");
Put_Line("");
Put_Line("ALL FEATURES HAVE NOW BEEN TESTED! ENDING PROGRAM!");
Put_Line("");
end Main;
| 35.718519 | 141 | 0.712153 |
23dd91971565c8845c73aadb0f1e38ec0e04e17b | 19,734 | adb | Ada | gcc-gcc-7_3_0-release/gcc/ada/expander.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/ada/expander.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/ada/expander.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- E X P A N D E R --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2016, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Atree; use Atree;
with Debug; use Debug;
with Debug_A; use Debug_A;
with Exp_Aggr; use Exp_Aggr;
with Exp_SPARK; use Exp_SPARK;
with Exp_Attr; use Exp_Attr;
with Exp_Ch2; use Exp_Ch2;
with Exp_Ch3; use Exp_Ch3;
with Exp_Ch4; use Exp_Ch4;
with Exp_Ch5; use Exp_Ch5;
with Exp_Ch6; use Exp_Ch6;
with Exp_Ch7; use Exp_Ch7;
with Exp_Ch8; use Exp_Ch8;
with Exp_Ch9; use Exp_Ch9;
with Exp_Ch11; use Exp_Ch11;
with Exp_Ch12; use Exp_Ch12;
with Exp_Ch13; use Exp_Ch13;
with Exp_Prag; use Exp_Prag;
with Ghost; use Ghost;
with Opt; use Opt;
with Rtsfind; use Rtsfind;
with Sem; use Sem;
with Sem_Ch8; use Sem_Ch8;
with Sem_Util; use Sem_Util;
with Sinfo; use Sinfo;
with Table;
package body Expander is
----------------
-- Local Data --
----------------
-- The following table is used to save values of the Expander_Active flag
-- when they are saved by Expander_Mode_Save_And_Set. We use an extendible
-- table (which is a bit of overkill) because it is easier than figuring
-- out a maximum value or bothering with range checks.
package Expander_Flags is new Table.Table (
Table_Component_Type => Boolean,
Table_Index_Type => Int,
Table_Low_Bound => 0,
Table_Initial => 32,
Table_Increment => 200,
Table_Name => "Expander_Flags");
Abort_Bug_Box_Error : exception;
-- Arbitrary exception to raise for implementation of -gnatd.B. See "when
-- N_Abort_Statement" below. See also debug.adb.
------------
-- Expand --
------------
-- WARNING: This routine manages Ghost regions. Return statements must be
-- replaced by gotos which jump to the end of the routine and restore the
-- Ghost mode.
procedure Expand (N : Node_Id) is
Mode : Ghost_Mode_Type;
begin
-- If we were analyzing a default expression (or other spec expression)
-- the Full_Analysis flag must be off. If we are in expansion mode then
-- we must be performing a full analysis. If we are analyzing a generic
-- then Expansion must be off.
pragma Assert
(not (Full_Analysis and then In_Spec_Expression)
and then (Full_Analysis or else not Expander_Active)
and then not (Inside_A_Generic and then Expander_Active));
-- Establish the Ghost mode of the context to ensure that any generated
-- nodes during expansion are marked as Ghost.
Set_Ghost_Mode (N, Mode);
-- The GNATprove_Mode flag indicates that a light expansion for formal
-- verification should be used. This expansion is never done inside
-- generics, because otherwise, this breaks the name resolution
-- mechanism for generic instances.
if GNATprove_Mode then
if not Inside_A_Generic then
Expand_SPARK (N);
end if;
Set_Analyzed (N, Full_Analysis);
-- Regular expansion is normally followed by special handling for
-- transient scopes for unconstrained results, etc. but this is not
-- needed, and in general cannot be done correctly, in this mode, so
-- we are all done.
goto Leave;
-- There are three reasons for the Expander_Active flag to be false
-- The first is when are not generating code. In this mode the
-- Full_Analysis flag indicates whether we are performing a complete
-- analysis, in which case Full_Analysis = True or a pre-analysis in
-- which case Full_Analysis = False. See the spec of Sem for more info
-- on this.
-- The second reason for the Expander_Active flag to be False is that
-- we are performing a pre-analysis. During pre-analysis all expansion
-- activity is turned off to make sure nodes are semantically decorated
-- but no extra nodes are generated. This is for instance needed for
-- the first pass of aggregate semantic processing. Note that in this
-- case the Full_Analysis flag is set to False because the node will
-- subsequently be re-analyzed with expansion on (see the spec of sem).
-- Finally, expansion is turned off in a regular compilation if there
-- are serious errors. In that case there will be no further expansion,
-- but one cleanup action may be required: if a transient scope was
-- created (e.g. for a function that returns an unconstrained type) the
-- scope may still be on the stack, and must be removed explicitly,
-- given that the expansion actions that would normally process it will
-- not take place. This prevents cascaded errors due to stack mismatch.
elsif not Expander_Active then
Set_Analyzed (N, Full_Analysis);
if Serious_Errors_Detected > 0 and then Scope_Is_Transient then
Scope_Stack.Table
(Scope_Stack.Last).Actions_To_Be_Wrapped := (others => No_List);
Pop_Scope;
end if;
goto Leave;
else
begin
Debug_A_Entry ("expanding ", N);
-- Processing depends on node kind. For full details on the
-- expansion activity required in each case, see bodies of
-- corresponding expand routines.
case Nkind (N) is
when N_Abort_Statement =>
Expand_N_Abort_Statement (N);
-- If -gnatd.B switch was given, crash the compiler. See
-- debug.adb for explanation.
if Debug_Flag_Dot_BB then
raise Abort_Bug_Box_Error;
end if;
when N_Accept_Statement =>
Expand_N_Accept_Statement (N);
when N_Aggregate =>
Expand_N_Aggregate (N);
when N_Allocator =>
Expand_N_Allocator (N);
when N_And_Then =>
Expand_N_And_Then (N);
when N_Assignment_Statement =>
Expand_N_Assignment_Statement (N);
when N_Asynchronous_Select =>
Expand_N_Asynchronous_Select (N);
when N_Attribute_Definition_Clause =>
Expand_N_Attribute_Definition_Clause (N);
when N_Attribute_Reference =>
Expand_N_Attribute_Reference (N);
when N_Block_Statement =>
Expand_N_Block_Statement (N);
when N_Case_Expression =>
Expand_N_Case_Expression (N);
when N_Case_Statement =>
Expand_N_Case_Statement (N);
when N_Conditional_Entry_Call =>
Expand_N_Conditional_Entry_Call (N);
when N_Delay_Relative_Statement =>
Expand_N_Delay_Relative_Statement (N);
when N_Delay_Until_Statement =>
Expand_N_Delay_Until_Statement (N);
when N_Delta_Aggregate =>
Expand_N_Delta_Aggregate (N);
when N_Entry_Body =>
Expand_N_Entry_Body (N);
when N_Entry_Call_Statement =>
Expand_N_Entry_Call_Statement (N);
when N_Entry_Declaration =>
Expand_N_Entry_Declaration (N);
when N_Exception_Declaration =>
Expand_N_Exception_Declaration (N);
when N_Exception_Renaming_Declaration =>
Expand_N_Exception_Renaming_Declaration (N);
when N_Exit_Statement =>
Expand_N_Exit_Statement (N);
when N_Expanded_Name =>
Expand_N_Expanded_Name (N);
when N_Explicit_Dereference =>
Expand_N_Explicit_Dereference (N);
when N_Expression_With_Actions =>
Expand_N_Expression_With_Actions (N);
when N_Extended_Return_Statement =>
Expand_N_Extended_Return_Statement (N);
when N_Extension_Aggregate =>
Expand_N_Extension_Aggregate (N);
when N_Free_Statement =>
Expand_N_Free_Statement (N);
when N_Freeze_Entity =>
Expand_N_Freeze_Entity (N);
when N_Full_Type_Declaration =>
Expand_N_Full_Type_Declaration (N);
when N_Function_Call =>
Expand_N_Function_Call (N);
when N_Generic_Instantiation =>
Expand_N_Generic_Instantiation (N);
when N_Goto_Statement =>
Expand_N_Goto_Statement (N);
when N_Handled_Sequence_Of_Statements =>
Expand_N_Handled_Sequence_Of_Statements (N);
when N_Identifier =>
Expand_N_Identifier (N);
when N_If_Expression =>
Expand_N_If_Expression (N);
when N_Indexed_Component =>
Expand_N_Indexed_Component (N);
when N_If_Statement =>
Expand_N_If_Statement (N);
when N_In =>
Expand_N_In (N);
when N_Loop_Statement =>
Expand_N_Loop_Statement (N);
when N_Not_In =>
Expand_N_Not_In (N);
when N_Null =>
Expand_N_Null (N);
when N_Object_Declaration =>
Expand_N_Object_Declaration (N);
when N_Object_Renaming_Declaration =>
Expand_N_Object_Renaming_Declaration (N);
when N_Op_Add =>
Expand_N_Op_Add (N);
when N_Op_Abs =>
Expand_N_Op_Abs (N);
when N_Op_And =>
Expand_N_Op_And (N);
when N_Op_Concat =>
Expand_N_Op_Concat (N);
when N_Op_Divide =>
Expand_N_Op_Divide (N);
when N_Op_Eq =>
Expand_N_Op_Eq (N);
when N_Op_Expon =>
Expand_N_Op_Expon (N);
when N_Op_Ge =>
Expand_N_Op_Ge (N);
when N_Op_Gt =>
Expand_N_Op_Gt (N);
when N_Op_Le =>
Expand_N_Op_Le (N);
when N_Op_Lt =>
Expand_N_Op_Lt (N);
when N_Op_Minus =>
Expand_N_Op_Minus (N);
when N_Op_Mod =>
Expand_N_Op_Mod (N);
when N_Op_Multiply =>
Expand_N_Op_Multiply (N);
when N_Op_Ne =>
Expand_N_Op_Ne (N);
when N_Op_Not =>
Expand_N_Op_Not (N);
when N_Op_Or =>
Expand_N_Op_Or (N);
when N_Op_Plus =>
Expand_N_Op_Plus (N);
when N_Op_Rem =>
Expand_N_Op_Rem (N);
when N_Op_Rotate_Left =>
Expand_N_Op_Rotate_Left (N);
when N_Op_Rotate_Right =>
Expand_N_Op_Rotate_Right (N);
when N_Op_Shift_Left =>
Expand_N_Op_Shift_Left (N);
when N_Op_Shift_Right =>
Expand_N_Op_Shift_Right (N);
when N_Op_Shift_Right_Arithmetic =>
Expand_N_Op_Shift_Right_Arithmetic (N);
when N_Op_Subtract =>
Expand_N_Op_Subtract (N);
when N_Op_Xor =>
Expand_N_Op_Xor (N);
when N_Or_Else =>
Expand_N_Or_Else (N);
when N_Package_Body =>
Expand_N_Package_Body (N);
when N_Package_Declaration =>
Expand_N_Package_Declaration (N);
when N_Package_Renaming_Declaration =>
Expand_N_Package_Renaming_Declaration (N);
when N_Subprogram_Renaming_Declaration =>
Expand_N_Subprogram_Renaming_Declaration (N);
when N_Pragma =>
Expand_N_Pragma (N);
when N_Procedure_Call_Statement =>
Expand_N_Procedure_Call_Statement (N);
when N_Protected_Type_Declaration =>
Expand_N_Protected_Type_Declaration (N);
when N_Protected_Body =>
Expand_N_Protected_Body (N);
when N_Qualified_Expression =>
Expand_N_Qualified_Expression (N);
when N_Quantified_Expression =>
Expand_N_Quantified_Expression (N);
when N_Raise_Statement =>
Expand_N_Raise_Statement (N);
when N_Raise_Constraint_Error =>
Expand_N_Raise_Constraint_Error (N);
when N_Raise_Expression =>
Expand_N_Raise_Expression (N);
when N_Raise_Program_Error =>
Expand_N_Raise_Program_Error (N);
when N_Raise_Storage_Error =>
Expand_N_Raise_Storage_Error (N);
when N_Real_Literal =>
Expand_N_Real_Literal (N);
when N_Record_Representation_Clause =>
Expand_N_Record_Representation_Clause (N);
when N_Requeue_Statement =>
Expand_N_Requeue_Statement (N);
when N_Simple_Return_Statement =>
Expand_N_Simple_Return_Statement (N);
when N_Selected_Component =>
Expand_N_Selected_Component (N);
when N_Selective_Accept =>
Expand_N_Selective_Accept (N);
when N_Single_Protected_Declaration =>
Expand_N_Single_Protected_Declaration (N);
when N_Single_Task_Declaration =>
Expand_N_Single_Task_Declaration (N);
when N_Slice =>
Expand_N_Slice (N);
when N_Subtype_Indication =>
Expand_N_Subtype_Indication (N);
when N_Subprogram_Body =>
Expand_N_Subprogram_Body (N);
when N_Subprogram_Body_Stub =>
Expand_N_Subprogram_Body_Stub (N);
when N_Subprogram_Declaration =>
Expand_N_Subprogram_Declaration (N);
when N_Task_Body =>
Expand_N_Task_Body (N);
when N_Task_Type_Declaration =>
Expand_N_Task_Type_Declaration (N);
when N_Timed_Entry_Call =>
Expand_N_Timed_Entry_Call (N);
when N_Type_Conversion =>
Expand_N_Type_Conversion (N);
when N_Unchecked_Expression =>
Expand_N_Unchecked_Expression (N);
when N_Unchecked_Type_Conversion =>
Expand_N_Unchecked_Type_Conversion (N);
when N_Variant_Part =>
Expand_N_Variant_Part (N);
-- For all other node kinds, no expansion activity required
when others =>
null;
end case;
exception
when RE_Not_Available =>
goto Leave;
end;
-- Set result as analyzed and then do a possible transient wrap. The
-- transient wrap must be done after the Analyzed flag is set on, so
-- that we do not get a recursive attempt to expand the node N.
Set_Analyzed (N);
-- Deal with transient scopes
if Scope_Is_Transient and then N = Node_To_Be_Wrapped then
case Nkind (N) is
when N_Procedure_Call_Statement
| N_Statement_Other_Than_Procedure_Call
=>
Wrap_Transient_Statement (N);
when N_Object_Declaration
| N_Object_Renaming_Declaration
| N_Subtype_Declaration
=>
Wrap_Transient_Declaration (N);
when others =>
Wrap_Transient_Expression (N);
end case;
end if;
Debug_A_Exit ("expanding ", N, " (done)");
end if;
<<Leave>>
Restore_Ghost_Mode (Mode);
end Expand;
---------------------------
-- Expander_Mode_Restore --
---------------------------
procedure Expander_Mode_Restore is
begin
-- Not active (has no effect) in ASIS and GNATprove modes (see comments
-- in spec of Expander_Mode_Save_And_Set).
if ASIS_Mode or GNATprove_Mode then
return;
end if;
-- Otherwise restore the flag
Expander_Active := Expander_Flags.Table (Expander_Flags.Last);
Expander_Flags.Decrement_Last;
-- Keep expander off if serious errors detected. In this case we do not
-- need expansion, and continued expansion may cause cascaded errors or
-- compiler bombs.
if Serious_Errors_Detected /= 0 then
Expander_Active := False;
end if;
end Expander_Mode_Restore;
--------------------------------
-- Expander_Mode_Save_And_Set --
--------------------------------
procedure Expander_Mode_Save_And_Set (Status : Boolean) is
begin
-- Not active (has no effect) in ASIS and GNATprove modes (see comments
-- in spec of Expander_Mode_Save_And_Set).
if ASIS_Mode or GNATprove_Mode then
return;
end if;
-- Otherwise save and set the flag
Expander_Flags.Increment_Last;
Expander_Flags.Table (Expander_Flags.Last) := Expander_Active;
Expander_Active := Status;
end Expander_Mode_Save_And_Set;
end Expander;
| 33.849057 | 78 | 0.546823 |
20fee7434cd7a22d7c34f24c24d8acc32b26581d | 563,098 | ads | Ada | graph_output/kd.graph.out.ads | aasish/userIntentDataset | c5c43aaae3205d6444da7e8e78888b821a6f1b84 | [
"CC0-1.0"
] | 17 | 2016-10-12T09:37:01.000Z | 2020-07-31T07:35:43.000Z | graph_output/kd.graph.out.ads | aasish/userIntentDataset | c5c43aaae3205d6444da7e8e78888b821a6f1b84 | [
"CC0-1.0"
] | null | null | null | graph_output/kd.graph.out.ads | aasish/userIntentDataset | c5c43aaae3205d6444da7e8e78888b821a6f1b84 | [
"CC0-1.0"
] | 5 | 2017-02-18T14:10:19.000Z | 2022-01-19T07:27:28.000Z | 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
| 1,044.70872 | 1,183 | 0.810484 |
dfb6bb91e716e6f657bc39828e57ec134f7d4ed6 | 331 | adb | Ada | euler3.adb | kimtg/euler-ada | 9b12d59aefbb1e0da2d9b7308de463c8fc579294 | [
"Unlicense"
] | 7 | 2016-07-10T02:27:59.000Z | 2019-02-09T22:24:33.000Z | euler3.adb | kimtg/euler-ada | 9b12d59aefbb1e0da2d9b7308de463c8fc579294 | [
"Unlicense"
] | null | null | null | euler3.adb | kimtg/euler-ada | 9b12d59aefbb1e0da2d9b7308de463c8fc579294 | [
"Unlicense"
] | null | null | null | with ada.text_io;
use ada.text_io;
procedure euler3 is
num : long_long_integer := 600851475143;
p : long_long_integer := 2;
begin
loop
while num mod p = 0 loop
num := num / p;
end loop;
if num <= 1 then
put_line(long_long_integer'image(p));
exit;
end if;
p := p + 1;
end loop;
end euler3;
| 17.421053 | 42 | 0.616314 |
23ac73eb8ff4d83df2aa0edd1274b5f6a28a0673 | 2,558 | ads | Ada | tools/ayacc/src/lexical_analyzer.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | lib/ayacc/lexical_analyzer.ads | alvaromb/Compilemon | de5f88f084705868d38e301d95bb4a19a46a1156 | [
"MIT"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | lib/ayacc/lexical_analyzer.ads | alvaromb/Compilemon | de5f88f084705868d38e301d95bb4a19a46a1156 | [
"MIT"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | -- Copyright (c) 1990 Regents of the University of California.
-- All rights reserved.
--
-- The primary authors of ayacc were David Taback and Deepak Tolani.
-- Enhancements were made by Ronald J. Schmalz.
--
-- Send requests for ayacc information to [email protected]
-- Send bug reports for ayacc to [email protected]
--
-- Redistribution and use in source and binary forms are permitted
-- provided that the above copyright notice and this paragraph are
-- duplicated in all such forms and that any documentation,
-- advertising materials, and other materials related to such
-- distribution and use acknowledge that the software was developed
-- by the University of California, Irvine. The name of the
-- University may not be used to endorse or promote products derived
-- from this software without specific prior written permission.
-- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
-- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-- Module : lexical_analyzer.ada
-- Component of : ayacc
-- Version : 1.2
-- Date : 11/21/86 12:30:26
-- SCCS File : disk21~/rschm/hasee/sccs/ayacc/sccs/sxlexical_analyzer.ada
-- $Header: lexical_analyzer.a,v 0.1 86/04/01 15:05:14 ada Exp $
-- $Log: lexical_analyzer.a,v $
-- Revision 0.1 86/04/01 15:05:14 ada
-- This version fixes some minor bugs with empty grammars
-- and $$ expansion. It also uses vads5.1b enhancements
-- such as pragma inline.
--
--
-- Revision 0.0 86/02/19 18:36:57 ada
--
-- These files comprise the initial version of Ayacc
-- designed and implemented by David Taback and Deepak Tolani.
-- Ayacc has been compiled and tested under the Verdix Ada compiler
-- version 4.06 on a vax 11/750 running Unix 4.2BSD.
--
with Source_File;
package Lexical_Analyzer is
function Get_Lexeme_Text return String; -- Scanned text.
type Ayacc_Token is
(Token, Start,
Left, Right, Nonassoc, Prec,
With_Clause, Use_Clause,
Identifier, Character_Literal,
Comma, Colon, Semicolon, Vertical_Bar, Left_Brace,
Mark, Eof_Token);
function Get_Token return Ayacc_Token;
function Line_Number return Natural; -- Current line of source file
procedure Handle_Action(Rule, Rule_Length : Integer);
procedure Print_Context_Lines renames Source_File.Print_Context_Lines;
procedure Dump_Declarations;
Illegal_Token : exception;
end Lexical_Analyzer;
| 32.379747 | 76 | 0.72283 |
100af13758ea57652e26fcd85bf3627e0f24f688 | 2,990 | ads | Ada | tools/scitools/conf/understand/ada/ada05/s-imglli.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | 1 | 2020-01-20T21:26:46.000Z | 2020-01-20T21:26:46.000Z | tools/scitools/conf/understand/ada/ada05/s-imglli.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | tools/scitools/conf/understand/ada/ada05/s-imglli.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . I M G _ L L I --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2005 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 2, 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 COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
--
--
--
--
--
--
--
-- 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 routines for supporting the Image attribute for
-- signed integer types larger than Size Integer'Size, and also for conversion
-- operations required in Text_IO.Integer_IO for such types.
package System.Img_LLI is
pragma Preelaborate;
function Image_Long_Long_Integer (V : Long_Long_Integer) return String;
-- Computes Long_Long_Integer'Image (V) and returns the result.
procedure Set_Image_Long_Long_Integer
(V : Long_Long_Integer;
S : out String;
P : in out Natural);
-- Sets the image of V starting at S (P + 1) with no leading spaces (i.e.
-- Text_IO format where Width = 0), starting at S (P + 1), updating P
-- to point to the last character stored. The caller promises that the
-- buffer is large enough and no check is made for this (Constraint_Error
-- will not be necessarily raised if this is violated since it is perfectly
-- valid to compile this unit with checks off).
end System.Img_LLI;
| 53.392857 | 79 | 0.482609 |
cb03678e48cfafe1bc248fa1cd517e7cc004a64b | 3,597 | ads | Ada | src/sys/lzma/util-streams-buffered-lzma.ads | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 60 | 2015-01-18T23:05:34.000Z | 2022-03-20T18:56:30.000Z | src/sys/lzma/util-streams-buffered-lzma.ads | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 20 | 2016-09-15T16:41:30.000Z | 2022-03-29T22:02:32.000Z | src/sys/lzma/util-streams-buffered-lzma.ads | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 10 | 2015-02-13T04:00:45.000Z | 2022-03-20T18:57:54.000Z | -----------------------------------------------------------------------
-- util-streams-buffered-lzma -- LZMA streams
-- Copyright (C) 2018, 2019 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 Lzma.Base;
use Lzma;
package Util.Streams.Buffered.Lzma is
-- -----------------------
-- Compress stream
-- -----------------------
-- The <b>Compress_Stream</b> is an output stream which uses the LZMA encoder to
-- compress the data before writing it to the output.
type Compress_Stream is limited new Util.Streams.Buffered.Output_Buffer_Stream with private;
-- Initialize the stream to write on the given stream.
-- An internal buffer is allocated for writing the stream.
overriding
procedure Initialize (Stream : in out Compress_Stream;
Output : access Output_Stream'Class;
Size : in Positive);
-- Close the sink.
overriding
procedure Close (Stream : in out Compress_Stream);
-- Write the buffer array to the output stream.
overriding
procedure Write (Stream : in out Compress_Stream;
Buffer : in Ada.Streams.Stream_Element_Array);
-- Flush the buffer by writing on the output stream.
-- Raises Data_Error if there is no output stream.
overriding
procedure Flush (Stream : in out Compress_Stream);
-- -----------------------
-- Compress stream
-- -----------------------
-- The <b>Compress_Stream</b> is an output stream which uses the LZMA encoder to
-- compress the data before writing it to the output.
type Decompress_Stream is limited new Util.Streams.Buffered.Input_Buffer_Stream with private;
-- Initialize the stream to write on the given stream.
-- An internal buffer is allocated for writing the stream.
overriding
procedure Initialize (Stream : in out Decompress_Stream;
Input : access Input_Stream'Class;
Size : in Positive);
-- Write the buffer array to the output stream.
overriding
procedure Read (Stream : in out Decompress_Stream;
Into : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset);
private
type Compress_Stream is limited new Util.Streams.Buffered.Output_Buffer_Stream with record
Stream : aliased Base.lzma_stream := Base.LZMA_STREAM_INIT;
end record;
-- Flush the stream and release the buffer.
overriding
procedure Finalize (Object : in out Compress_Stream);
type Decompress_Stream is limited new Util.Streams.Buffered.Input_Buffer_Stream with record
Stream : aliased Base.lzma_stream := Base.LZMA_STREAM_INIT;
Action : Base.lzma_action := Base.LZMA_RUN;
end record;
-- Flush the stream and release the buffer.
overriding
procedure Finalize (Object : in out Decompress_Stream);
end Util.Streams.Buffered.Lzma;
| 39.527473 | 96 | 0.650264 |
2387b1c252688d4d048d8eda8dccaf59de5f29ca | 2,933 | adb | Ada | boards/NRF52_DK/src/nrf52_dk-leds.adb | aiunderstand/ADA-Nano33BLE | c67d13e8e2b7f4e1872e4175f859c937ad3f0549 | [
"MIT"
] | null | null | null | boards/NRF52_DK/src/nrf52_dk-leds.adb | aiunderstand/ADA-Nano33BLE | c67d13e8e2b7f4e1872e4175f859c937ad3f0549 | [
"MIT"
] | null | null | null | boards/NRF52_DK/src/nrf52_dk-leds.adb | aiunderstand/ADA-Nano33BLE | c67d13e8e2b7f4e1872e4175f859c937ad3f0549 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 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 body NRF52_DK.LEDs is
LEDs : array (1 .. 4) of GPIO_Point := (LED13, LED2, LED3, LED4);
procedure Initialize_LEDs is
Conf : GPIO_Configuration;
begin
Conf.Mode := Mode_Out;
Conf.Resistors := No_Pull;
for LED of LEDs loop
LED.Configure_IO (Conf);
LED.Set;
end loop;
end Initialize_LEDs;
procedure Turn_On (This : in out User_LED) is
begin
This.Clear;
end Turn_On;
procedure Turn_Off (This : in out User_LED) is
begin
This.Set;
end Turn_Off;
end NRF52_DK.LEDs;
| 50.568966 | 78 | 0.526423 |
df5dfc5ff3a8b340319d770d5023730d9e58c8fe | 39,354 | adb | Ada | src/ada/src/services/atbb/assignment_tree_branch_bound.adb | manthonyaiello/OpenUxAS | 552a2542c123d6c2488779ac80126cdf8d4809c8 | [
"NASA-1.3"
] | null | null | null | src/ada/src/services/atbb/assignment_tree_branch_bound.adb | manthonyaiello/OpenUxAS | 552a2542c123d6c2488779ac80126cdf8d4809c8 | [
"NASA-1.3"
] | null | null | null | src/ada/src/services/atbb/assignment_tree_branch_bound.adb | manthonyaiello/OpenUxAS | 552a2542c123d6c2488779ac80126cdf8d4809c8 | [
"NASA-1.3"
] | null | null | null | with Ada.Containers; use Ada.Containers;
with Ada.Containers.Formal_Ordered_Maps;
with Ada.Strings.Fixed; use Ada.Strings.Fixed;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Ada.Strings; use Ada.Strings;
with Ada.Text_IO; use Ada.Text_IO;
with Algebra;
use Algebra;
with Bounded_Stack;
package body Assignment_Tree_Branch_Bound with SPARK_Mode is
---------------------------------------------------
-- Types used in the computation of the solution --
---------------------------------------------------
type VehicleAssignmentCost is record
TotalTime : Int64;
Last_TaskOptionID : Int64;
end record
with Predicate => TotalTime >= 0;
package Int64_VehicleAssignmentCost_Maps is new Ada.Containers.Formal_Ordered_Maps
(Key_Type => Int64,
Element_Type => VehicleAssignmentCost);
use Int64_VehicleAssignmentCost_Maps;
subtype Int64_VAC_Map is Int64_VehicleAssignmentCost_Maps.Map (200);
type Assignment_Info is record
Assignment_Sequence : TaskAssignment_Sequence;
Vehicle_Assignments : Int64_VAC_Map;
end record;
package Assignment_Stack is new Bounded_Stack (Assignment_Info);
type Stack is new Assignment_Stack.Stack;
type Children_Arr is array (Positive range <>) of Assignment_Info;
package Int64_Unbounded_String_Maps is new Ada.Containers.Functional_Maps
(Key_Type => Int64,
Element_Type => Unbounded_String);
type Int64_Unbounded_String_Map is new Int64_Unbounded_String_Maps.Map;
-----------------------
-- Ghost subprograms --
-----------------------
function All_Actions_In_Map
(Algebra : not null access constant Algebra_Tree_Cell;
TaskPlanOptions_Map : Int64_TPO_Map)
return Boolean
with Ghost;
function TaskOptionId_In_Map
(TaskOptionId : Int64;
TaskPlanOptions_Map : Int64_TPO_Map)
return Boolean
with Ghost;
function Travel_In_CostMatrix
(VehicleId, InitTaskOptionId, DestTaskOptionId : Int64;
Assignment_Cost_Matrix : AssignmentCostMatrix)
return Boolean
with Ghost;
-----------------------
-- Local subprograms --
-----------------------
function Children
(Assignment : Assignment_Info;
Algebra : not null access constant Algebra_Tree_Cell;
TaskPlanOptions_Map : Int64_TPO_Map;
Assignment_Cost_Matrix : AssignmentCostMatrix)
return Children_Arr
with
Pre =>
Valid_AssignmentCostMatrix (Assignment_Cost_Matrix)
and then
Valid_TaskPlanOptions (TaskPlanOptions_Map)
and then
All_Actions_In_Map (Algebra, TaskPlanOptions_Map)
and then
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
Contains (Assignment.Vehicle_Assignments, TOC.VehicleID)),
Post =>
(for all Child of Children'Result =>
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
(Contains (Child.Vehicle_Assignments, TOC.VehicleID))));
-- Returns a sequence of Elements corresponding to all the possible
-- assignments considering Assignment.
function Corresponding_TaskOption
(TaskPlanOptions_Map : Int64_TPO_Map;
TaskOptionId : Int64)
return TaskOption
with
Pre =>
Valid_TaskPlanOptions (TaskPlanOptions_Map)
and then TaskOptionId_In_Map (TaskOptionId, TaskPlanOptions_Map),
Post =>
Corresponding_TaskOption'Result.TaskID = Get_TaskID (TaskOptionId)
and then Corresponding_TaskOption'Result.OptionID = Get_OptionID (TaskOptionId)
and then Corresponding_TaskOption'Result.Cost >= 0;
-- Returns the TaskOption corresponding to TaskOptionId in TaskPlanOptions_Map
function Corresponding_TaskOptionCost
(Assignment_Cost_Matrix : AssignmentCostMatrix;
VehicleId, InitTaskOptionId, DestTaskOptionId : Int64)
return TaskOptionCost
with
Pre =>
Valid_AssignmentCostMatrix (Assignment_Cost_Matrix)
and then Travel_In_CostMatrix (VehicleId, InitTaskOptionId, DestTaskOptionId, Assignment_Cost_Matrix),
Post =>
VehicleId = Corresponding_TaskOptionCost'Result.VehicleID
and then Get_TaskID (InitTaskOptionId) = Corresponding_TaskOptionCost'Result.InitialTaskID
and then Get_OptionID (InitTaskOptionId) = Corresponding_TaskOptionCost'Result.InitialTaskOption
and then Get_TaskID (DestTaskOptionId) = Corresponding_TaskOptionCost'Result.DestinationTaskID
and then Get_OptionID (DestTaskOptionId) = Corresponding_TaskOptionCost'Result.DestinationTaskOption
and then Corresponding_TaskOptionCost'Result.TimeToGo >= 0;
-- Returns the TaskOptionCost corresponding to VehicleId going from
-- InitTaskOptionId to DestTaskOptionId.
function Cost (Assignment : Assignment_Info; Cost_Function : Cost_Function_Kind) return Int64;
-- Returns the cost of an assignment. This function can be expanded to
-- support other cost functions.
function Greedy_Solution
(Data : Assignment_Tree_Branch_Bound_Configuration_Data;
Assignment_Cost_Matrix : AssignmentCostMatrix;
TaskPlanOptions_Map : Int64_TPO_Map;
Algebra : not null access constant Algebra_Tree_Cell)
return Assignment_Info
with
Pre =>
Valid_AssignmentCostMatrix (Assignment_Cost_Matrix)
and then
Valid_TaskPlanOptions (TaskPlanOptions_Map)
and then
(for all Id of TaskPlanOptions_Map =>
(for all TaskOption of Get (TaskPlanOptions_Map, Id).Options => TaskOption.TaskID = Id))
and then
All_Actions_In_Map (Algebra, TaskPlanOptions_Map),
Post =>
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
Contains (Greedy_Solution'Result.Vehicle_Assignments, TOC.VehicleID));
-- Returns an assignment computed by taking the the child that costs the
-- less at each iteration. It does not necessarily return the assignment
-- that minimizes the cost.
procedure Initialize_Algebra
(Automation_Request : UniqueAutomationRequest;
TaskPlanOptions_Map : Int64_TPO_Map;
Algebra : out not null Algebra_Tree)
with Post => All_Actions_In_Map (Algebra, TaskPlanOptions_Map);
-- Returns the algebra tree corresponding to the formulas stored in
-- Automation_Request and the several TaskPlanOptions.
function Initialize_AssignmentVehicle
(Assignment_Cost_Matrix : AssignmentCostMatrix)
return Int64_VAC_Map
with
Post =>
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
Contains (Initialize_AssignmentVehicle'Result, TOC.VehicleID));
-- Returns the initialized AssignmentVehicle attribute. The keys are the
-- VehicleIds from the Assignment_Cost_Matrix, and the elements are
-- - TotalTime = 0
-- - LastTaskOptionId = VehicleId (travels between the initial location of
-- a vehicle to a task are stored with InitialTaskOption = VehicleId in
-- Assignment_Cost_Matrix).
function New_Assignment
(Assignment : Assignment_Info;
VehicleId, TaskOptionId : Int64;
Assignment_Cost_Matrix : AssignmentCostMatrix;
TaskPlanOptions_Map : Int64_TPO_Map)
return Assignment_Info
with
Pre =>
Valid_AssignmentCostMatrix (Assignment_Cost_Matrix)
and then
Valid_TaskPlanOptions (TaskPlanOptions_Map)
and then
(for some TOC of Assignment_Cost_Matrix.CostMatrix =>
TOC.VehicleID = VehicleId)
and then
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
Contains (Assignment.Vehicle_Assignments, TOC.VehicleID))
and then
TaskOptionId_In_Map (TaskOptionId, TaskPlanOptions_Map)
and then
Travel_In_CostMatrix (VehicleId,
Element (Assignment.Vehicle_Assignments, VehicleId).Last_TaskOptionID,
TaskOptionId,
Assignment_Cost_Matrix),
Post =>
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
(Contains (New_Assignment'Result.Vehicle_Assignments, TOC.VehicleID)));
-- This function returns a new Element. It assigns the TaskOptionId to
-- VehicleId in the enclosing assignment, and computes the new totalTime
-- of VehicleId.
------------------------
-- All_Actions_In_Map --
------------------------
function All_Actions_In_Map
(Algebra : not null access constant Algebra_Tree_Cell;
TaskPlanOptions_Map : Int64_TPO_Map)
return Boolean
is
(case Algebra.all.Node_Kind is
when Action =>
TaskOptionId_In_Map (Algebra.all.TaskOptionId, TaskPlanOptions_Map),
when Operator =>
(for all J in 1 .. Algebra.all.Collection.Num_Children =>
(All_Actions_In_Map (Algebra.all.Collection.Children (J), TaskPlanOptions_Map))),
when Undefined => False);
----------------------------
-- Check_Assignment_Ready --
----------------------------
procedure Check_Assignment_Ready
(Mailbox : in out Assignment_Tree_Branch_Bound_Mailbox;
Data : Assignment_Tree_Branch_Bound_Configuration_Data;
State : in out Assignment_Tree_Branch_Bound_State;
ReqId : Int64)
is
begin
if not Contains (State.m_uniqueAutomationRequests, ReqId)
or else not Contains (State.m_assignmentCostMatrixes, ReqId)
or else not Contains (State.m_taskPlanOptions, ReqId)
or else
(for some TaskId of Element (State.m_uniqueAutomationRequests, ReqId).TaskList =>
not Has_Key (Element (State.m_taskPlanOptions, ReqId), TaskId))
then
return;
end if;
Send_TaskAssignmentSummary (Mailbox, Data, State, ReqId);
end Check_Assignment_Ready;
--------------
-- Children --
--------------
function Children
(Assignment : Assignment_Info;
Algebra : not null access constant Algebra_Tree_Cell;
TaskPlanOptions_Map : Int64_TPO_Map;
Assignment_Cost_Matrix : AssignmentCostMatrix)
return Children_Arr
is
function To_Sequence_Of_TaskOptionId
(Assignment : Assignment_Info)
return Int64_Seq;
function To_Sequence_Of_TaskOptionId
(Assignment : Assignment_Info)
return Int64_Seq
is
Result : Int64_Seq;
begin
for TaskAssignment of Assignment.Assignment_Sequence loop
Result :=
Add (Result,
Get_TaskOptionID
(TaskAssignment.TaskID,
TaskAssignment.OptionID));
end loop;
return Result;
end To_Sequence_Of_TaskOptionId;
Result : Children_Arr (1 .. 1000);
Children_Nb : Natural := 0;
Objectives_IDs : constant Int64_Seq :=
Get_Next_Objectives_Ids
(To_Sequence_Of_TaskOptionId (Assignment),
Algebra);
TaskOpt : TaskOption;
-- List of TaskOptionIds to be assigned for the next iteration
begin
for Objective_ID of Objectives_IDs loop
pragma Assert (TaskOptionId_In_Map (Objective_ID, TaskPlanOptions_Map));
TaskOpt := Corresponding_TaskOption (TaskPlanOptions_Map, Objective_ID);
-- We add a new Assignment to Result for each eligible entity
-- for Objective_Id.
for EntityId of TaskOpt.EligibleEntities loop
pragma Assume (Children_Nb < 1000);
Children_Nb := Children_Nb + 1;
pragma Assert
(Contains (Assignment.Vehicle_Assignments, EntityId));
pragma Assert
(Travel_In_CostMatrix
(EntityId,
Element (Assignment.Vehicle_Assignments, EntityId).Last_TaskOptionID,
Objective_ID,
Assignment_Cost_Matrix));
Result (Children_Nb) := New_Assignment (Assignment, EntityId, Objective_ID, Assignment_Cost_Matrix, TaskPlanOptions_Map);
pragma Loop_Invariant (Children_Nb <= 1000);
pragma Loop_Invariant
(for all J in 1 .. Children_Nb =>
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
(Contains (Result (J).Vehicle_Assignments, TOC.VehicleID))));
end loop;
pragma Loop_Invariant (Children_Nb <= 1000);
pragma Loop_Invariant
(for all J in 1 .. Children_Nb =>
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
(Contains (Result (J).Vehicle_Assignments, TOC.VehicleID))));
end loop;
return Result (1 .. Children_Nb);
end Children;
------------------------------
-- Corresponding_TaskOption --
------------------------------
function Corresponding_TaskOption
(TaskPlanOptions_Map : Int64_TPO_Map;
TaskOptionId : Int64)
return TaskOption
is
TaskId : constant Int64 := Get_TaskID (TaskOptionId);
OptionId : constant Int64 := Get_OptionID (TaskOptionId);
Associated_TPO : constant TaskPlanOptions := Get (TaskPlanOptions_Map, TaskId);
begin
for Pos in TO_Sequences.First .. Last (Associated_TPO.Options) loop
if Get (Associated_TPO.Options, Pos).OptionID = OptionId then
return Get (Associated_TPO.Options, Pos);
end if;
pragma Loop_Invariant
(for all J in TO_Sequences.First .. Pos => Get (Associated_TPO.Options, J).OptionID /= OptionId);
end loop;
raise Program_Error;
end Corresponding_TaskOption;
----------------------------------
-- Corresponding_TaskOptionCost --
----------------------------------
function Corresponding_TaskOptionCost
(Assignment_Cost_Matrix : AssignmentCostMatrix;
VehicleId, InitTaskOptionId, DestTaskOptionId : Int64)
return TaskOptionCost
is
InitialTaskId : constant Int64 := Get_TaskID (InitTaskOptionId);
InitialTaskOption : constant Int64 := Get_OptionID (InitTaskOptionId);
DestinationTaskId : constant Int64 := Get_TaskID (DestTaskOptionId);
DestinationTaskOption : constant Int64 := Get_OptionID (DestTaskOptionId);
begin
for Pos in TOC_Sequences.First .. Last (Assignment_Cost_Matrix.CostMatrix) loop
pragma Loop_Invariant
(for all J in TOC_Sequences.First .. Pos - 1 =>
(VehicleId /= Get (Assignment_Cost_Matrix.CostMatrix, J).VehicleID
or else InitialTaskId /= Get (Assignment_Cost_Matrix.CostMatrix, J).InitialTaskID
or else InitialTaskOption /= Get (Assignment_Cost_Matrix.CostMatrix, J).InitialTaskOption
or else DestinationTaskId /= Get (Assignment_Cost_Matrix.CostMatrix, J).DestinationTaskID
or else DestinationTaskOption /= Get (Assignment_Cost_Matrix.CostMatrix, J).DestinationTaskOption));
declare
TOC : constant TaskOptionCost := Get (Assignment_Cost_Matrix.CostMatrix, Pos);
begin
if
VehicleId = TOC.VehicleID
and then InitialTaskId = TOC.InitialTaskID
and then InitialTaskOption = TOC.InitialTaskOption
and then DestinationTaskId = TOC.DestinationTaskID
and then DestinationTaskOption = TOC.DestinationTaskOption
then
return TOC;
end if;
end;
end loop;
raise Program_Error;
end Corresponding_TaskOptionCost;
----------
-- Cost --
----------
function Cost (Assignment : Assignment_Info; Cost_Function : Cost_Function_Kind) return Int64 is
Result : Int64 := 0;
begin
case Cost_Function is
when Minmax =>
for VehicleID of Assignment.Vehicle_Assignments loop
declare
TotalTime : constant Int64 := Element (Assignment.Vehicle_Assignments, VehicleID).TotalTime;
begin
if TotalTime > Result then
Result := TotalTime;
end if;
end;
end loop;
when Cumulative =>
for VehicleId of Assignment.Vehicle_Assignments loop
pragma Assume (Result < Int64'Last - Element (Assignment.Vehicle_Assignments, VehicleId).TotalTime);
Result := Result + Element (Assignment.Vehicle_Assignments, VehicleId).TotalTime;
end loop;
end case;
return Result;
end Cost;
---------------------
-- Greedy_Solution --
---------------------
function Greedy_Solution
(Data : Assignment_Tree_Branch_Bound_Configuration_Data;
Assignment_Cost_Matrix : AssignmentCostMatrix;
TaskPlanOptions_Map : Int64_TPO_Map;
Algebra : not null access constant Algebra_Tree_Cell)
return Assignment_Info
is
Empty_TA_Seq : TaskAssignment_Sequence;
Result : Assignment_Info :=
(Empty_TA_Seq,
Initialize_AssignmentVehicle (Assignment_Cost_Matrix));
Result_Cost : Int64;
begin
while True loop
pragma Loop_Invariant
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
Contains (Result.Vehicle_Assignments, TOC.VehicleID));
-- All computed costs will be greater than the current Cost, so
-- it is assigned to Int64'Last to actually find the Assignment that
-- minimizes the cost.
Result_Cost := Int64'Last;
declare
Children_A : constant Children_Arr :=
Children (Result, Algebra, TaskPlanOptions_Map, Assignment_Cost_Matrix);
begin
if Children_A'Length = 0 then
exit;
else
for Child of Children_A loop
pragma Loop_Invariant
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
Contains (Result.Vehicle_Assignments, TOC.VehicleID));
declare
Current_Cost : constant Int64 := Cost (Child, Data.Cost_Function);
begin
if Current_Cost <= Result_Cost then
Result := Child;
Result_Cost := Current_Cost;
end if;
end;
end loop;
end if;
end;
end loop;
return Result;
end Greedy_Solution;
-----------------------------------
-- Handle_Assignment_Cost_Matrix --
-----------------------------------
procedure Handle_Assignment_Cost_Matrix
(Mailbox : in out Assignment_Tree_Branch_Bound_Mailbox;
Data : Assignment_Tree_Branch_Bound_Configuration_Data;
State : in out Assignment_Tree_Branch_Bound_State;
Matrix : AssignmentCostMatrix)
is
begin
pragma Assume (Length (State.m_assignmentCostMatrixes) < Capacity (State.m_assignmentCostMatrixes));
Insert (State.m_assignmentCostMatrixes, Matrix.CorrespondingAutomationRequestID, Matrix);
Check_Assignment_Ready (Mailbox, Data, State, Matrix.CorrespondingAutomationRequestID);
end Handle_Assignment_Cost_Matrix;
------------------------------
-- Handle_Task_Plan_Options --
------------------------------
procedure Handle_Task_Plan_Options
(Mailbox : in out Assignment_Tree_Branch_Bound_Mailbox;
Data : Assignment_Tree_Branch_Bound_Configuration_Data;
State : in out Assignment_Tree_Branch_Bound_State;
Options : TaskPlanOptions)
is
ReqId : constant Int64 := Options.CorrespondingAutomationRequestID;
procedure Add_TaskPlanOption
(Int64_TPO_Map_Map : in out Int64_TaskPlanOptions_Map_Map)
with
Pre =>
(for all Id of Int64_TPO_Map_Map => Valid_TaskPlanOptions (Element (Int64_TPO_Map_Map, Id)))
and then Contains (Int64_TPO_Map_Map, ReqId)
and then not Has_Key (Element (Int64_TPO_Map_Map, ReqId), Options.TaskID)
and then
(for all TaskOption of Options.Options =>
(TaskOption.Cost >= 0
and then Options.TaskID = TaskOption.TaskID)),
Post => (for all Id of Int64_TPO_Map_Map => Valid_TaskPlanOptions (Element (Int64_TPO_Map_Map, Id)));
procedure Insert_Empty_TPO_Map
(Int64_TPO_Map_Map : in out Int64_TaskPlanOptions_Map_Map)
with
Pre =>
(for all Id of Int64_TPO_Map_Map => Valid_TaskPlanOptions (Element (Int64_TPO_Map_Map, Id)))
and then not Contains (Int64_TPO_Map_Map, ReqId),
Post =>
(for all Id of Int64_TPO_Map_Map => Valid_TaskPlanOptions (Element (Int64_TPO_Map_Map, Id)))
and then Contains (Int64_TPO_Map_Map, ReqId)
and then not Has_Key (Element (Int64_TPO_Map_Map, ReqId), Options.TaskID);
------------------------
-- Add_TaskPlanOption --
------------------------
procedure Add_TaskPlanOption
(Int64_TPO_Map_Map : in out Int64_TaskPlanOptions_Map_Map)
is
New_Int64_TPO_Map : Int64_TPO_Map;
begin
pragma Assert (Valid_TaskPlanOptions (Element (Int64_TPO_Map_Map, ReqId)));
pragma Assume (Length (Element (Int64_TPO_Map_Map, ReqId)) < Count_Type'Last);
New_Int64_TPO_Map := Add (Element (Int64_TPO_Map_Map, ReqId), Options.TaskID, Options);
pragma Assert (Valid_TaskPlanOptions (New_Int64_TPO_Map));
Replace
(Int64_TPO_Map_Map,
ReqId,
New_Int64_TPO_Map);
pragma Assert
(for all Id of Int64_TPO_Map_Map =>
(if Id /= ReqId then Valid_TaskPlanOptions (Element (Int64_TPO_Map_Map, Id))));
end Add_TaskPlanOption;
--------------------------
-- Insert_Empty_TPO_Map --
--------------------------
procedure Insert_Empty_TPO_Map
(Int64_TPO_Map_Map : in out Int64_TaskPlanOptions_Map_Map)
is
Empty_Int64_TPO_Map : Int64_TPO_Map;
begin
pragma Assume (Length (Int64_TPO_Map_Map) < Capacity (Int64_TPO_Map_Map));
Insert (Int64_TPO_Map_Map, ReqId, Empty_Int64_TPO_Map);
end Insert_Empty_TPO_Map;
begin
if not Contains (State.m_taskPlanOptions, ReqId) then
Insert_Empty_TPO_Map (State.m_taskPlanOptions);
end if;
Add_TaskPlanOption (State.m_taskPlanOptions);
Check_Assignment_Ready (Mailbox, Data, State, Options.CorrespondingAutomationRequestID);
end Handle_Task_Plan_Options;
--------------------------------------
-- Handle_Unique_Automation_Request --
--------------------------------------
procedure Handle_Unique_Automation_Request
(Mailbox : in out Assignment_Tree_Branch_Bound_Mailbox;
Data : Assignment_Tree_Branch_Bound_Configuration_Data;
State : in out Assignment_Tree_Branch_Bound_State;
Areq : UniqueAutomationRequest)
is
begin
pragma Assume (Length (State.m_uniqueAutomationRequests) < Capacity (State.m_uniqueAutomationRequests));
Insert (State.m_uniqueAutomationRequests, Areq.RequestID, Areq);
Check_Assignment_Ready (Mailbox, Data, State, Areq.RequestID);
end Handle_Unique_Automation_Request;
------------------------
-- Initialize_Algebra --
------------------------
procedure Initialize_Algebra
(Automation_Request : UniqueAutomationRequest;
TaskPlanOptions_Map : Int64_TPO_Map;
Algebra : out not null Algebra_Tree)
with SPARK_Mode => Off
is
package Unb renames Ada.Strings.Unbounded;
taskIdVsAlgebraString : Int64_Unbounded_String_Map;
algebraString : Unbounded_String := To_Unbounded_String ("");
begin
for taskId of TaskPlanOptions_Map loop
declare
compositionString : Unbounded_String :=
Get (TaskPlanOptions_Map, taskId).Composition;
algebraCompositionTaskOptionId : Unbounded_String :=
To_Unbounded_String ("");
isFinished : Boolean := False;
begin
while not isFinished loop
if Length (compositionString) > 0 then
declare
position : Natural := Unb.Index (compositionString, "p");
begin
if position > 0 then
algebraCompositionTaskOptionId :=
algebraCompositionTaskOptionId
& Slice (compositionString, 1, position);
position := position + 1;
declare
positionAfterId : Natural;
positionSpace : constant Natural :=
Unb.Index (compositionString, " ", position);
positionParen : constant Natural :=
Unb.Index (compositionString, ")", position);
begin
if positionSpace /= 0 and then positionParen /= 0 then
positionAfterId := Natural'Min (positionSpace, positionParen);
else
positionAfterId := Natural'Max (positionSpace, positionParen) - 1;
end if;
declare
optionId : constant Int64 :=
Int64'Value (Slice (compositionString, position, positionAfterId));
taskOptionId : constant Int64 :=
Get_TaskOptionID (taskId, optionId);
begin
algebraCompositionTaskOptionId :=
algebraCompositionTaskOptionId & Trim (taskOptionId'Image, Side => Left);
Delete (compositionString, 1, positionAfterId - 1);
end;
end;
else
algebraCompositionTaskOptionId :=
algebraCompositionTaskOptionId & compositionString;
taskIdVsAlgebraString :=
Add (taskIdVsAlgebraString, taskId, algebraCompositionTaskOptionId);
isFinished := True;
end if;
end;
else
isFinished := True;
end if;
end loop;
end;
end loop;
if Length (Automation_Request.TaskRelationships) > 0 then
declare
isFinished : Boolean := False;
TaskRelationShips : Unbounded_String := Automation_Request.TaskRelationships;
begin
while not isFinished loop
if Length (TaskRelationShips) > 0 then
declare
position : Natural := Unb.Index (TaskRelationShips, "p");
begin
if position > 0 then
algebraString :=
algebraString &
Slice (TaskRelationShips, 1, position - 1);
position := position + 1;
declare
positionAfterId : Natural;
positionSpace : constant Natural :=
Unb.Index (TaskRelationShips, " ", position);
positionParen : constant Natural :=
Unb.Index (TaskRelationShips, ")", position);
begin
if positionSpace /= 0 and then positionParen /= 0 then
positionAfterId := Natural'Min (positionSpace, positionParen);
else
positionAfterId := Natural'Max (positionSpace, positionParen);
end if;
declare
taskId : constant Int64 :=
Int64'Value (Slice (TaskRelationShips, position, positionAfterId - 1));
begin
if Has_Key (taskIdVsAlgebraString, taskId) then
algebraString :=
algebraString & Get (taskIdVsAlgebraString, taskId);
else
isFinished := True;
end if;
Delete (TaskRelationShips, 1, positionAfterId - 1);
end;
end;
else
algebraString := algebraString & TaskRelationShips;
isFinished := True;
end if;
end;
else
isFinished := True;
end if;
end loop;
end;
else
algebraString := algebraString & "|(";
for taskID of taskIdVsAlgebraString loop
algebraString :=
algebraString
& Get (taskIdVsAlgebraString, taskID)
& " ";
end loop;
algebraString := algebraString & ")";
end if;
Put_Line ("AlgebraString: " & To_String (algebraString));
Parse_Formula (algebraString, Algebra);
end Initialize_Algebra;
----------------------------------
-- Initialize_AssignmentVehicle --
----------------------------------
function Initialize_AssignmentVehicle
(Assignment_Cost_Matrix : AssignmentCostMatrix)
return Int64_VAC_Map
is
Result : Int64_VAC_Map;
TOC : TaskOptionCost;
begin
for Index in 1 .. Last (Assignment_Cost_Matrix.CostMatrix) loop
TOC := Get (Assignment_Cost_Matrix.CostMatrix, Index);
-- TOC may have several occurences of the same VehicleId
if not Contains (Result, TOC.VehicleID) then
pragma Assume (Length (Result) < Result.Capacity);
Insert (Result, TOC.VehicleID, (0, 0));
end if;
pragma Loop_Invariant (for all J in 1 .. Index => Contains (Result, Get (Assignment_Cost_Matrix.CostMatrix, J).VehicleID));
end loop;
return Result;
end Initialize_AssignmentVehicle;
--------------------
-- New_Assignment --
--------------------
function New_Assignment
(Assignment : Assignment_Info;
VehicleId, TaskOptionId : Int64;
Assignment_Cost_Matrix : AssignmentCostMatrix;
TaskPlanOptions_Map : Int64_TPO_Map)
return Assignment_Info
is
Result : Assignment_Info;
Vehicle_Assignment : constant VehicleAssignmentCost :=
Element (Assignment.Vehicle_Assignments, VehicleId);
pragma Assume
(Vehicle_Assignment.TotalTime
<= Int64'Last - Corresponding_TaskOptionCost (Assignment_Cost_Matrix,
VehicleId,
Vehicle_Assignment.Last_TaskOptionID,
TaskOptionId).TimeToGo);
TimeThreshold : constant Int64 :=
Vehicle_Assignment.TotalTime
+ Corresponding_TaskOptionCost
(Assignment_Cost_Matrix,
VehicleId,
Vehicle_Assignment.Last_TaskOptionID,
TaskOptionId).TimeToGo;
pragma Assume
(TimeThreshold <= Int64'Last - Corresponding_TaskOption (TaskPlanOptions_Map,
TaskOptionId).Cost);
TimeTaskCompleted : constant Int64 :=
TimeThreshold
+ Corresponding_TaskOption
(TaskPlanOptions_Map,
TaskOptionId).Cost;
begin
-- The assignment sequence is the enclosing assignment sequence with
-- the new TaskAssignment added at the end.
pragma Assume (Length (Assignment.Assignment_Sequence) < Count_Type'Last);
Result.Assignment_Sequence :=
Add (Assignment.Assignment_Sequence,
(Get_TaskID (TaskOptionId),
Get_OptionID (TaskOptionId),
VehicleId,
TimeThreshold,
TimeTaskCompleted));
-- Create the new Vehicle_Assignments map
Result.Vehicle_Assignments := Assignment.Vehicle_Assignments;
pragma Assert
(for all VehicleID of Assignment.Vehicle_Assignments =>
Contains (Result.Vehicle_Assignments, VehicleID));
pragma Assert
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
(Contains (Result.Vehicle_Assignments, TOC.VehicleID)));
-- Only the TimeTotal for VehicleId is modified
Replace (Result.Vehicle_Assignments, VehicleId, (TimeTaskCompleted, TaskOptionId));
return Result;
end New_Assignment;
------------------------------
-- Run_Calculate_Assignment --
------------------------------
procedure Run_Calculate_Assignment
(Data : Assignment_Tree_Branch_Bound_Configuration_Data;
Automation_Request : UniqueAutomationRequest;
Assignment_Cost_Matrix : AssignmentCostMatrix;
TaskPlanOptions_Map : Int64_TPO_Map;
Summary : out TaskAssignmentSummary)
is
Algebra : Algebra_Tree;
Min : Assignment_Info;
Min_Cost : Int64;
Search_Stack : Stack;
Current_Element : Assignment_Info;
Empty_TA_Seq : TaskAssignment_Sequence;
Nodes_Visited : Int64 := 0;
begin
Initialize_Algebra (Automation_Request, TaskPlanOptions_Map, Algebra);
Min := Greedy_Solution (Data, Assignment_Cost_Matrix, TaskPlanOptions_Map, Algebra);
Min_Cost := Cost (Min, Data.Cost_Function);
Put_Line ("Algebra Tree:");
Print_Tree (Algebra);
-- The first element is a null assignment
Push (Search_Stack,
(Empty_TA_Seq,
Initialize_AssignmentVehicle (Assignment_Cost_Matrix)));
while Size (Search_Stack) /= 0 and Nodes_Visited < Data.Number_Nodes_Maximum loop
pragma Loop_Invariant
(for all J in 1 .. Size (Search_Stack) =>
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
Contains (Element (Search_Stack, J).Vehicle_Assignments, TOC.VehicleID)));
-- The element at the top of the stack is popped
Pop (Search_Stack, Current_Element);
pragma Assert
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
Contains (Current_Element.Vehicle_Assignments, TOC.VehicleID));
declare
Children_A : constant Children_Arr :=
Children (Current_Element,
Algebra,
TaskPlanOptions_Map,
Assignment_Cost_Matrix);
Current_Cost : constant Int64 := Cost (Current_Element, Data.Cost_Function);
begin
-- If this element has no children, it means that this node
-- has assigned every task, so we compare it to the current
-- assignment that minimizes the cost.
if Children_A'Length = 0 then
if Current_Cost < Min_Cost then
Min := Current_Element;
Min_Cost := Current_Cost;
end if;
-- Else, we compute the cost for every child and push them into the
-- stack if their cost is lower than the current minimal cost.
else
for J in reverse Children_A'Range loop
pragma Loop_Invariant
(for all J in 1 .. Size (Search_Stack) =>
(for all TOC of Assignment_Cost_Matrix.CostMatrix =>
Contains (Element (Search_Stack, J).Vehicle_Assignments, TOC.VehicleID)));
declare
Child : constant Assignment_Info := Children_A (J);
begin
if Cost (Child, Data.Cost_Function) < Min_Cost then
pragma Assume (Size (Search_Stack) < Assignment_Stack.Capacity, "we have space for another child");
Push (Search_Stack, Child);
end if;
end;
end loop;
end if;
end;
Nodes_Visited := Nodes_Visited + 1;
end loop;
Summary.CorrespondingAutomationRequestID := Automation_Request.RequestID;
Summary.OperatingRegion := Automation_Request.OperatingRegion;
Summary.TaskList := Min.Assignment_Sequence;
end Run_Calculate_Assignment;
---------------------------------
-- Send_TaskAssignmentSummary --
---------------------------------
procedure Send_TaskAssignmentSummary
(Mailbox : in out Assignment_Tree_Branch_Bound_Mailbox;
Data : Assignment_Tree_Branch_Bound_Configuration_Data;
State : in out Assignment_Tree_Branch_Bound_State;
ReqId : Int64)
is
Summary : TaskAssignmentSummary;
begin
Run_Calculate_Assignment
(Data,
Element (State.m_uniqueAutomationRequests, ReqId),
Element (State.m_assignmentCostMatrixes, ReqId),
Element (State.m_taskPlanOptions, ReqId),
Summary);
sendBroadcastMessage (Mailbox, Summary);
Delete (State.m_uniqueAutomationRequests, ReqId);
Delete (State.m_assignmentCostMatrixes, ReqId);
pragma Assert (for all Id of State.m_taskPlanOptions => Valid_TaskPlanOptions (Element (State.m_taskPlanOptions, Id)));
Delete (State.m_taskPlanOptions, ReqId);
pragma Assert (for all Id of State.m_taskPlanOptions => Valid_TaskPlanOptions (Element (State.m_taskPlanOptions, Id)));
end Send_TaskAssignmentSummary;
-------------------------
-- TaskOptionId_In_Map --
-------------------------
function TaskOptionId_In_Map
(TaskOptionId : Int64;
TaskPlanOptions_Map : Int64_TPO_Map)
return Boolean
is
(for some TaskId of TaskPlanOptions_Map =>
(for some TaskOption of Get (TaskPlanOptions_Map, TaskId).Options =>
(TaskId = TaskOption.TaskID
and then TaskOption.TaskID = Get_TaskID (TaskOptionId)
and then TaskOption.OptionID = Get_OptionID (TaskOptionId))));
function Travel_In_CostMatrix
(VehicleId, InitTaskOptionId, DestTaskOptionId : Int64;
Assignment_Cost_Matrix : AssignmentCostMatrix)
return Boolean
is
(for some TOC of Assignment_Cost_Matrix.CostMatrix =>
(VehicleId = TOC.VehicleID
and then Get_TaskID (InitTaskOptionId) = TOC.InitialTaskID
and then Get_OptionID (InitTaskOptionId) = TOC.InitialTaskOption
and then Get_TaskID (DestTaskOptionId) = TOC.DestinationTaskID
and then Get_OptionID (DestTaskOptionId) = TOC.DestinationTaskOption));
end Assignment_Tree_Branch_Bound;
| 40.781347 | 133 | 0.603014 |
0e9a2a2f33f9d04715c0665dbc04c6633cd1190d | 8,874 | ads | Ada | src/gnat/elists.ads | Letractively/ada-gen | d06d03821057f9177f2350e32dd09e467df08612 | [
"Apache-2.0"
] | null | null | null | src/gnat/elists.ads | Letractively/ada-gen | d06d03821057f9177f2350e32dd09e467df08612 | [
"Apache-2.0"
] | null | null | null | src/gnat/elists.ads | Letractively/ada-gen | d06d03821057f9177f2350e32dd09e467df08612 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- E L I S T S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides facilities for manipulating lists of nodes (see
-- package Atree for format and implementation of tree nodes). Separate list
-- elements are allocated to represent elements of these lists, so it is
-- possible for a given node to be on more than one element list at a time.
-- See also package Nlists, which provides another form that is threaded
-- through the nodes themselves (using the Link field), which is more time
-- and space efficient, but a node can be only one such list.
with Types; use Types;
with System;
package Elists is
-- An element list is represented by a header that is allocated in the
-- Elist header table. This header contains pointers to the first and
-- last elements in the list, or to No_Elmt if the list is empty.
-- The elements in the list each contain a pointer to the next element
-- and a pointer to the referenced node. Putting a node into an element
-- list causes no change at all to the node itself, so a node may be
-- included in multiple element lists, and the nodes thus included may
-- or may not be elements of node lists (see package Nlists).
procedure Initialize;
-- Initialize allocation of element list tables. Called at the start of
-- compiling each new main source file. Note that Initialize must not be
-- called if Tree_Read is used.
procedure Lock;
-- Lock tables used for element lists before calling backend
procedure Unlock;
-- Unlock list tables, in cases where the back end needs to modify them
procedure Tree_Read;
-- Initializes internal tables from current tree file using the relevant
-- Table.Tree_Read routines. Note that Initialize should not be called if
-- Tree_Read is used. Tree_Read includes all necessary initialization.
procedure Tree_Write;
-- Writes out internal tables to current tree file using the relevant
-- Table.Tree_Write routines.
function Last_Elist_Id return Elist_Id;
-- Returns Id of last allocated element list header
function Elists_Address return System.Address;
-- Return address of Elists table (used in Back_End for Gigi call)
function Num_Elists return Nat;
-- Number of currently allocated element lists
function Last_Elmt_Id return Elmt_Id;
-- Returns Id of last allocated list element
function Elmts_Address return System.Address;
-- Return address of Elmts table (used in Back_End for Gigi call)
function Node (Elmt : Elmt_Id) return Node_Or_Entity_Id;
pragma Inline (Node);
-- Returns the value of a given list element. Returns Empty if Elmt
-- is set to No_Elmt.
function New_Elmt_List return Elist_Id;
-- Creates a new empty element list. Typically this is used to initialize
-- a field in some other node which points to an element list where the
-- list is then subsequently filled in using Append calls.
function First_Elmt (List : Elist_Id) return Elmt_Id;
pragma Inline (First_Elmt);
-- Obtains the first element of the given element list or, if the list has
-- no items, then No_Elmt is returned.
function Last_Elmt (List : Elist_Id) return Elmt_Id;
pragma Inline (Last_Elmt);
-- Obtains the last element of the given element list or, if the list has
-- no items, then No_Elmt is returned.
function Next_Elmt (Elmt : Elmt_Id) return Elmt_Id;
pragma Inline (Next_Elmt);
-- This function returns the next element on an element list. The argument
-- must be a list element other than No_Elmt. Returns No_Elmt if the given
-- element is the last element of the list.
procedure Next_Elmt (Elmt : in out Elmt_Id);
pragma Inline (Next_Elmt);
-- Next_Elmt (Elmt) is equivalent to Elmt := Next_Elmt (Elmt)
function Is_Empty_Elmt_List (List : Elist_Id) return Boolean;
pragma Inline (Is_Empty_Elmt_List);
-- This function determines if a given tree id references an element list
-- that contains no items.
procedure Append_Elmt (N : Node_Or_Entity_Id; To : Elist_Id);
-- Appends N at the end of To, allocating a new element. N must be a
-- non-empty node or entity Id, and To must be an Elist (not No_Elist).
procedure Append_Unique_Elmt (N : Node_Or_Entity_Id; To : Elist_Id);
-- Like Append_Elmt, except that a check is made to see if To already
-- contains N and if so the call has no effect.
procedure Prepend_Elmt (N : Node_Or_Entity_Id; To : Elist_Id);
-- Appends N at the beginning of To, allocating a new element
procedure Insert_Elmt_After (N : Node_Or_Entity_Id; Elmt : Elmt_Id);
-- Add a new element (N) right after the pre-existing element Elmt
-- It is invalid to call this subprogram with Elmt = No_Elmt.
procedure Replace_Elmt (Elmt : Elmt_Id; New_Node : Node_Or_Entity_Id);
pragma Inline (Replace_Elmt);
-- Causes the given element of the list to refer to New_Node, the node
-- which was previously referred to by Elmt is effectively removed from
-- the list and replaced by New_Node.
procedure Remove_Elmt (List : Elist_Id; Elmt : Elmt_Id);
-- Removes Elmt from the given list. The node itself is not affected,
-- but the space used by the list element may be (but is not required
-- to be) freed for reuse in a subsequent Append_Elmt call.
procedure Remove_Last_Elmt (List : Elist_Id);
-- Removes the last element of the given list. The node itself is not
-- affected, but the space used by the list element may be (but is not
-- required to be) freed for reuse in a subsequent Append_Elmt call.
function No (List : Elist_Id) return Boolean;
pragma Inline (No);
-- Tests given Id for equality with No_Elist. This allows notations like
-- "if No (Statements)" as opposed to "if Statements = No_Elist".
function Present (List : Elist_Id) return Boolean;
pragma Inline (Present);
-- Tests given Id for inequality with No_Elist. This allows notations like
-- "if Present (Statements)" as opposed to "if Statements /= No_Elist".
function No (Elmt : Elmt_Id) return Boolean;
pragma Inline (No);
-- Tests given Id for equality with No_Elmt. This allows notations like
-- "if No (Operation)" as opposed to "if Operation = No_Elmt".
function Present (Elmt : Elmt_Id) return Boolean;
pragma Inline (Present);
-- Tests given Id for inequality with No_Elmt. This allows notations like
-- "if Present (Operation)" as opposed to "if Operation /= No_Elmt".
end Elists;
| 50.135593 | 78 | 0.626437 |
10fc4b49826c6a4719a945acf6f967aa687f6b30 | 3,956 | adb | Ada | src/tests/tensortests.adb | sebsgit/textproc | 2f12d6a030425e937ee0c6a67dcff6828fc1331f | [
"MIT"
] | null | null | null | src/tests/tensortests.adb | sebsgit/textproc | 2f12d6a030425e937ee0c6a67dcff6828fc1331f | [
"MIT"
] | null | null | null | src/tests/tensortests.adb | sebsgit/textproc | 2f12d6a030425e937ee0c6a67dcff6828fc1331f | [
"MIT"
] | null | null | null | with AUnit.Assertions; use AUnit.Assertions;
with Ada.Text_IO;
with System;
with System.Address_To_Access_Conversions;
with Tensor; use Tensor;
package body TensorTests is
procedure Register_Tests (T: in out TestCase) is
use AUnit.Test_Cases.Registration;
begin
Register_Routine (T, testTensor'Access, "tensor API");
Register_Routine (T, testFlatten'Access, "tensor API: Flatten");
Register_Routine (T, testDataGetter'Access, "tensor API: Data");
Register_Routine (T, testDot'Access, "tensor API: Dot");
Register_Routine (T, testPlus'Access, "tensor API: +");
Register_Routine (T, testMinus'Access, "tensor API: -");
end Register_Tests;
function Name(T: TestCase) return Test_String is
begin
return Format("Tensor Tests");
end Name;
procedure testTensor(T : in out Test_Cases.Test_Case'Class) is
t0: constant Tensor.Var := Tensor.Variable(values => (1.0, 2.0, 3.0));
m0: constant Tensor.Var := Tensor.Matrix(row_length => 2,
values => (1.0, 2.0, 3.0, 4.0, 5.0, 6.0));
begin
Assert(t0.Dimension_Count = 1, "");
Assert(t0.Dimension(1) = 3, "");
Assert(m0.Dimension_Count = 2, "");
Assert(m0.Dimension(1) = 3, "");
Assert(m0.Dimension(2) = 2, "");
end testTensor;
procedure testFlatten(T : in out Test_Cases.Test_Case'Class) is
m0: constant Tensor.Var := Tensor.Matrix(row_length => 2,
values => (1.0, 2.0, 3.0, 4.0, 5.0, 6.0));
m0_flat: constant Tensor.Var := m0.Flatten;
begin
Assert(m0.Dimension_Count = 2, "");
Assert(m0.Dimension(1) = 3, "");
Assert(m0.Dimension(2) = 2, "");
Assert(m0_flat.Dimension_Count = 1, "");
Assert(m0_flat.Dimension(1) = 6, "");
end testFlatten;
procedure testDataGetter(T : in out Test_Cases.Test_Case'Class) is
m0: constant Tensor.Var := Tensor.Matrix(row_length => 2,
values => (1.0, 2.0, 3.0, 4.0, 5.0, 6.0));
begin
Assert(m0.Element(1, 1) = 1.0, "");
Assert(m0.Element(1, 2) = 2.0, "");
Assert(m0.Element(2, 1) = 3.0, "");
Assert(m0.Element(2, 2) = 4.0, "");
Assert(m0.Element(3, 1) = 5.0, "");
Assert(m0.Element(3, 2) = 6.0, "");
end testDataGetter;
procedure testDot(T : in out Test_Cases.Test_Case'Class) is
A: constant Tensor.Var := Tensor.Matrix(row_length => 2,
values => (1.0, 2.0, 3.0, 4.0, 5.0, 6.0));
x: constant Tensor.Var := Tensor.Variable(values => (10.0, 20.0));
xx: constant Tensor.Var := x.Dot(x);
Ax: constant Tensor.Var := A.Dot(x);
begin
Assert(xx.Dimension_Count = 1, "");
Assert(xx.Dimension(1) = 1, "");
Assert(xx.Element(1, 1) = 500.0, "");
Assert(Ax.Dimension_Count = 1, "");
Assert(Ax.Dimension(1) = 3, "");
Assert(Ax.Data.Element(1) = 50.0, "");
Assert(Ax.Data.Element(2) = 110.0, "");
Assert(Ax.Data.Element(3) = 170.0, "");
end testDot;
procedure testPlus(T : in out Test_Cases.Test_Case'Class) is
x: constant Tensor.Var := Tensor.Variable(values => (10.0, 20.0));
x2: constant Tensor.Var := x + x;
begin
Assert(x2.Dimension_Count = 1, "");
Assert(x2.Dimension(1) = 2, "");
Assert(x2.Data.Element(1) = 20.0, "");
Assert(x2.Data.Element(2) = 40.0, "");
end testPlus;
procedure testMinus(T : in out Test_Cases.Test_Case'Class) is
x: constant Tensor.Var := Tensor.Variable(values => (10.0, 20.0));
y: constant Tensor.Var := Tensor.Variable(values => (1.0, 2.0));
yx: constant Tensor.Var := y - x;
begin
Assert(yx.Dimension_Count = 1, "");
Assert(yx.Dimension(1) = 2, "");
Assert(yx.Data.Element(1) = -9.0, "");
Assert(yx.Data.Element(2) = -18.0, "");
end testMinus;
end TensorTests;
| 37.67619 | 93 | 0.573812 |
237300a7d1fb9533b93370bb861069a714dabb39 | 4,466 | ads | Ada | tools/scitools/conf/understand/ada/ada12/g-regpat.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | 1 | 2020-01-20T21:26:46.000Z | 2020-01-20T21:26:46.000Z | tools/scitools/conf/understand/ada/ada12/g-regpat.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | tools/scitools/conf/understand/ada/ada12/g-regpat.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . R E G P A T --
-- --
-- S p e c --
-- --
-- Copyright (C) 1986 by University of Toronto. --
-- Copyright (C) 1996-2010, AdaCore --
-- --
-- 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 implements roughly the same set of regular expressions as
-- are available in the Perl or Python programming languages.
-- This is an extension of the original V7 style regular expression library
-- written in C by Henry Spencer. Apart from the translation to Ada, the
-- interface has been considerably changed to use the Ada String type
-- instead of C-style nul-terminated strings.
-- See file s-regpat.ads for full documentation of the interface
------------------------------------------------------------
-- Summary of Pattern Matching Packages in GNAT Hierarchy --
------------------------------------------------------------
-- There are three related packages that perform pattern matching functions.
-- the following is an outline of these packages, to help you determine
-- which is best for your needs.
-- GNAT.Regexp (files g-regexp.ads/s-regexp.ads/s-regexp.adb)
-- This is a simple package providing Unix-style regular expression
-- matching with the restriction that it matches entire strings. It
-- is particularly useful for file name matching, and in particular
-- it provides "globbing patterns" that are useful in implementing
-- unix or DOS style wild card matching for file names.
-- GNAT.Regpat (files g-regpat.ads/s-regpat.ads/s-regpat.adb)
-- This is a more complete implementation of Unix-style regular
-- expressions, copied from the Perl regular expression engine,
-- written originally in C by Henry Spencer. It is functionally the
-- same as that library.
-- GNAT.Spitbol.Patterns (files g-spipat.ads/g-spipat.adb)
-- This is a completely general pattern matching package based on the
-- pattern language of SNOBOL4, as implemented in SPITBOL. The pattern
-- language is modeled on context free grammars, with context sensitive
-- extensions that provide full (type 0) computational capabilities.
with System.Regpat;
package GNAT.Regpat renames System.Regpat;
| 61.178082 | 78 | 0.472235 |
d0154865b4615e3487dcb16f5459d88c47c250b1 | 14,403 | ads | Ada | src/vulkan-math/genmatrix/vulkan-math-genfmatrix.ads | zrmyers/VulkanAda | ed8c46d923bc8936db3a5d55d36afebb928a9ede | [
"MIT"
] | 1 | 2021-01-29T21:10:45.000Z | 2021-01-29T21:10:45.000Z | src/vulkan-math/genmatrix/vulkan-math-genfmatrix.ads | zrmyers/VulkanAda | ed8c46d923bc8936db3a5d55d36afebb928a9ede | [
"MIT"
] | 8 | 2020-04-22T14:55:20.000Z | 2021-11-22T03:58:08.000Z | src/vulkan-math/genmatrix/vulkan-math-genfmatrix.ads | zrmyers/VulkanAda | ed8c46d923bc8936db3a5d55d36afebb928a9ede | [
"MIT"
] | 1 | 2021-04-05T13:19:21.000Z | 2021-04-05T13:19:21.000Z | --------------------------------------------------------------------------------
-- MIT License
--
-- Copyright (c) 2020 Zane Myers
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in all
-- copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-- SOFTWARE.
--------------------------------------------------------------------------------
with Vulkan.Math.GenMatrix;
with Vulkan.Math.GenFType;
use Vulkan.Math.GenFType;
--------------------------------------------------------------------------------
--< @group Vulkan Math GenMatrix
--------------------------------------------------------------------------------
--< @summary
--< This provides an instantiation of a generic matrix for the Vkm_Float type.
--<
--< @description
--< The Vkm_Matrix type is a generic floating point matrix that can contain up to
--< 4 rows and 4 columns.
--------------------------------------------------------------------------------
package Vulkan.Math.GenFMatrix is
pragma Preelaborate;
pragma Pure;
--< @private
--< GFM is an instantiation of the GenMatrix package for the Vkm_Float type.
package GFM is new Vulkan.Math.GenMatrix(
Base_Type => Vkm_Float,
Base_Vector_Type => Vkm_GenFType,
x => GFT.x,
y => GFT.y,
z => GFT.z,
w => GFT.w,
Make_GenType => GFT.Make_GenType,
Image => GFT.Image,
Set => GFT.Component,
Get => GFT.Component);
--< The Vkm_GenFMatrix is a subtype of Vkm_GenMatrix from the instantiated GFM
--< package.
subtype Vkm_Mat is GFM.Vkm_GenMatrix;
----------------------------------------------------------------------------
--< @summary
--< Get the image of the Vkm_Mat matrix.
--<
--< @param instance
--< The instance of matrix to get the image of.
--<
--< @return
--< The image of the matrix.
----------------------------------------------------------------------------
function Image (instance : in Vkm_Mat) return String is
(GFM.Image(instance)) with inline;
----------------------------------------------------------------------------
--< @summary
--< Equality operator for two Vkm_Mat2x2 matrices.
--<
--< @description
--< Determine whether two matrices are equal.
--<
--< @param left
--< The left operator argument.
--<
--< @param right
--< The right operator argument.
--<
--< @return
--< True if the two matrices are equal. Otherwise false.
----------------------------------------------------------------------------
function "=" (left, right : in Vkm_Mat) return Vkm_Bool renames GFM.Op_Is_Equal;
----------------------------------------------------------------------------
--< @summary
--< Unary plus operator for a Vkm_Mat matrix.
--<
--< @description
--< Return the matrix unchanged.
--<
--< @param right
--< The value to apply the unary operator to.
--<
--< @return
--< The result of the operator on the matrix.
----------------------------------------------------------------------------
function "+" (right : in Vkm_Mat) return Vkm_Mat is
(right) with Inline;
----------------------------------------------------------------------------
--< @summary
--< Unary minus operator for a Vkm_Mat matrix.
--<
--< @description
--< Return the matrix negated.
----------------------------------------------------------------------------
function "-" is new GFM.Apply_Func_IM_RM("-");
----------------------------------------------------------------------------
--< @summary
--< Unary Absolute Value operator for a Vkm_Mat matrix.
--<
--< @description
--< Return a matrix of the absolute values of each element of the input matrix.
----------------------------------------------------------------------------
function "abs" is new GFM.Apply_Func_IM_RM("abs");
----------------------------------------------------------------------------
--< @summary
--< Modulo operator for two Vkm_Mat matrices.
--<
--< @description
--< Perform Modulo component-wise on two Vkm_Mat matrices.
----------------------------------------------------------------------------
function "mod" is new GFM.Apply_Func_IM_IM_RM("mod");
----------------------------------------------------------------------------
--< @summary
--< Modulo operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Modulo component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "mod" is new GFM.Apply_Func_IM_IS_RM("mod");
----------------------------------------------------------------------------
--< @summary
--< Modulo operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Modulo component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "mod" is new GFM.Apply_Func_IS_IM_RM("mod");
----------------------------------------------------------------------------
--< @summary
--< Power operator for two Vkm_Mat matrices.
--<
--< @description
--< Perform Power component-wise on two Vkm_Mat matrices.
----------------------------------------------------------------------------
function "**" is new GFM.Apply_Func_IM_IM_RM("**");
----------------------------------------------------------------------------
--< @summary
--< Power operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Power component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "**" is new GFM.Apply_Func_IM_IS_RM("**");
----------------------------------------------------------------------------
--< @summary
--< Power operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Power component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "**" is new GFM.Apply_Func_IS_IM_RM("**");
----------------------------------------------------------------------------
--< @summary
--< Addition operator for two Vkm_Mat matrices.
--<
--< @description
--< Perform Addition component-wise on two Vkm_Mat matrices.
----------------------------------------------------------------------------
function "+" is new GFM.Apply_Func_IM_IM_RM("+");
----------------------------------------------------------------------------
--< @summary
--< Addition operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Addition component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "+" is new GFM.Apply_Func_IM_IS_RM("+");
----------------------------------------------------------------------------
--< @summary
--< Addition operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Addition component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "+" is new GFM.Apply_Func_IS_IM_RM("+");
----------------------------------------------------------------------------
--< @summary
--< Subtraction operator for two Vkm_Mat matrices.
--<
--< @description
--< Perform Subtraction component-wise on two Vkm_Mat matrices.
----------------------------------------------------------------------------
function "-" is new GFM.Apply_Func_IM_IM_RM("-");
----------------------------------------------------------------------------
--< @summary
--< Subtraction operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Subtraction component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "-" is new GFM.Apply_Func_IM_IS_RM("-");
----------------------------------------------------------------------------
--< @summary
--< Subtraction operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Subtraction component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "-" is new GFM.Apply_Func_IS_IM_RM("-");
----------------------------------------------------------------------------
--< @summary
--< Remainder operator for two Vkm_Mat matrices.
--<
--< @description
--< Perform Remainder component-wise on two Vkm_Mat matrices.
----------------------------------------------------------------------------
function "rem" is new GFM.Apply_Func_IM_IM_RM(Vkm_Float'Remainder);
----------------------------------------------------------------------------
--< @summary
--< Remainder operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Remainder component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "rem" is new GFM.Apply_Func_IM_IS_RM(Vkm_Float'Remainder);
----------------------------------------------------------------------------
--< @summary
--< Remainder operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Remainder component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "rem" is new GFM.Apply_Func_IS_IM_RM(Vkm_Float'Remainder);
----------------------------------------------------------------------------
--< @summary
--< Division operator for two Vkm_Mat matrices.
--<
--< @description
--< Perform Division component-wise on two Vkm_Mat matrices.
----------------------------------------------------------------------------
function "/" is new GFM.Apply_Func_IM_IM_RM("/");
----------------------------------------------------------------------------
--< @summary
--< Division operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Division component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "/" is new GFM.Apply_Func_IM_IS_RM("/");
----------------------------------------------------------------------------
--< @summary
--< Division operator for a Vkm_Mat matrix and a Vkm_Float value.
--<
--< @description
--< Perform Division component-wise on the matrix and scalar.
----------------------------------------------------------------------------
function "/" is new GFM.Apply_Func_IS_IM_RM("/");
----------------------------------------------------------------------------
--< @summary
--< Linear Algebraic Multiplication for two Vkm_Mat matrices.
--<
--< @description
--< Perform Linear Algebraic Multiplication of the left Vkm_Mat by the right
--< Vkm_Mat matrix.
--<
--< @param left
--< The left operator argument.
--<
--< @param right
--< The right operator argument.
--<
--< @return
--< The result of the component-wise operator on the arguments.
----------------------------------------------------------------------------
function "*" (left, right : in Vkm_Mat) return Vkm_Mat renames GFM.Op_Matrix_Mult_Matrix;
----------------------------------------------------------------------------
--< @summary
--< Multiplication operator for a Vkm_GenMatrix matrix and a Vkm_GenFType value.
--<
--< @description
--< Perform Multiplication component-wise on the matrix and vector.
--<
--< @param left
--< The matrix that is multiplied with the vector.
--<
--< @param right
--< The vector that is multiplied by the matrix.
--<
--< @return
--< The product of the matrix with the vector.
----------------------------------------------------------------------------
function "*" (
left : in Vkm_Mat;
right : in Vkm_GenFType ) return Vkm_GenFType renames GFM.Op_Matrix_Mult_Vector;
----------------------------------------------------------------------------
--< @summary
--< Multiplication operator for a Vkm_GenMatrix matrix and a Vkm_GenFType value.
--<
--< @description
--< Perform Multiplication component-wise on the matrix and vector.
--<
--< @param left
--< The vector that is multiplied with the matrix.
--<
--< @param right
--< The matrix that is multiplied by the vector.
--<
--< @return
--< The product of the vector with the matrix.
----------------------------------------------------------------------------
function "*" (
left : in Vkm_GenFType;
right : in Vkm_Mat ) return Vkm_GenFType renames GFM.Op_Vector_Mult_Matrix;
end Vulkan.Math.GenFMatrix;
| 38.305851 | 97 | 0.432757 |
d0cc201ac384730a871d746b14b202e557879086 | 213 | ads | Ada | day04/src/password.ads | jwarwick/aoc_2019_ada | 2168249071d235ec76d8424967811d03e9415f5c | [
"MIT"
] | null | null | null | day04/src/password.ads | jwarwick/aoc_2019_ada | 2168249071d235ec76d8424967811d03e9415f5c | [
"MIT"
] | null | null | null | day04/src/password.ads | jwarwick/aoc_2019_ada | 2168249071d235ec76d8424967811d03e9415f5c | [
"MIT"
] | null | null | null | -- Elf Password class
package Password is
function part1_count(first : in Natural; last : in Natural) return Natural;
function part2_count(first : in Natural; last : in Natural) return Natural;
end Password;
| 30.428571 | 77 | 0.760563 |
1015c1e293c9cd9a7217dc293905aa62490b5cec | 2,492 | ads | Ada | tools/xml2ayacc/encoding/auto/encodings-maps-iso_8859_8.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | 4 | 2016-02-05T15:51:56.000Z | 2022-03-25T20:38:32.000Z | tools/xml2ayacc/encoding/auto/encodings-maps-iso_8859_8.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | tools/xml2ayacc/encoding/auto/encodings-maps-iso_8859_8.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | -- Auto generated file. Don't edit
-- Read copyright and license at the end of this file
package Encodings.Maps.ISO_8859_8 is
function Decode (Char : Character) return Wide_Character;
pragma Inline (Decode);
procedure Encode
(Text : in Wide_String;
Text_Last : out Natural;
Result : out Raw_String;
Result_Last : out Natural;
Map : in Encoding := Encodings.ISO_8859_8);
procedure Decode
(Text : in Raw_String;
Text_Last : out Natural;
Result : out Wide_String;
Result_Last : out Natural;
Map : in Encoding := Encodings.ISO_8859_8);
end Encodings.Maps.ISO_8859_8;
------------------------------------------------------------------------------
-- Copyright (c) 2006-2013, Maxim Reznik
-- 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 Maxim Reznik, 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 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.
------------------------------------------------------------------------------
| 46.148148 | 79 | 0.660112 |
10926bd2b2ce9a7511d208e8ded48958aec99fc3 | 26,033 | adb | Ada | src/missions.adb | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 80 | 2017-04-08T23:14:07.000Z | 2022-02-10T22:30:51.000Z | src/missions.adb | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 89 | 2017-06-24T08:18:26.000Z | 2021-11-12T04:37:36.000Z | src/missions.adb | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 9 | 2018-04-14T16:37:25.000Z | 2020-03-21T14:33:49.000Z | -- Copyright 2016-2021 Bartek thindil Jasicki
--
-- This file is part of Steam Sky.
--
-- Steam Sky 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.
--
-- Steam Sky 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 Steam Sky. If not, see <http://www.gnu.org/licenses/>.
with Ada.Numerics.Elementary_Functions; use Ada.Numerics.Elementary_Functions;
with Ada.Exceptions; use Ada.Exceptions;
with Ships; use Ships;
with Ships.Cargo; use Ships.Cargo;
with Ships.Crew; use Ships.Crew;
with Ships.Movement; use Ships.Movement;
with Maps; use Maps;
with Items; use Items;
with Bases; use Bases;
with Messages; use Messages;
with Crew; use Crew;
with Statistics; use Statistics;
with Utils; use Utils;
with Config; use Config;
with Events; use Events;
with Goals; use Goals;
with Factions; use Factions;
package body Missions is
procedure GenerateMissions is
BaseIndex: constant Natural :=
SkyMap(Player_Ship.Sky_X, Player_Ship.Sky_Y).BaseIndex;
MissionX, MissionY: Positive range 1 .. 1_024;
MissionsAmount: Positive range 1 .. 26;
TmpBaseIndex: Bases_Range;
Mission: Mission_Data;
MissionsItems: UnboundedString_Container.Vector;
BasesInRange: Positive_Container.Vector;
MinX, MinY, MaxX, MaxY: Integer;
Enemies: UnboundedString_Container.Vector;
MType: Missions_Types;
DiffX, DiffY: Natural;
QualitiesArray: constant array(1 .. 10) of Positive :=
(1, 11, 21, 31, 41, 51, 61, 71, 81, 91);
begin
if Days_Difference(Sky_Bases(BaseIndex).Missions_Date) < 7 or
Sky_Bases(BaseIndex).Population = 0 then
return;
end if;
MissionsAmount :=
(case Sky_Bases(BaseIndex).Population is
when 1 .. 149 => Get_Random(1, 5),
when 150 .. 299 => Get_Random(1, 10),
when others => Get_Random(1, 15));
MissionsAmount :=
(case Sky_Bases(BaseIndex).Reputation(1) is
when 1 .. 25 => MissionsAmount + 1,
when 26 .. 50 => MissionsAmount + 3,
when 51 .. 75 => MissionsAmount + 5,
when 76 .. 100 => MissionsAmount + 10,
when others => MissionsAmount);
for I in Items_List.Iterate loop
if Items_List(I).IType = Mission_Items_Type then
MissionsItems.Append(New_Item => Objects_Container.Key(I));
end if;
end loop;
MinX := Player_Ship.Sky_X - 100;
NormalizeCoord(MinX);
MaxX := Player_Ship.Sky_X + 100;
NormalizeCoord(MaxX);
MinY := Player_Ship.Sky_Y - 100;
NormalizeCoord(MinY, False);
MaxY := Player_Ship.Sky_Y + 100;
NormalizeCoord(MaxY, False);
Find_Bases_In_Range_Loop :
for I in Sky_Bases'Range loop
if I /= BaseIndex and Sky_Bases(I).Sky_X in MinX .. MaxX and
Sky_Bases(I).Sky_Y in MinY .. MaxY and
Sky_Bases(I).Population > 0 then
BasesInRange.Append(New_Item => I);
end if;
end loop Find_Bases_In_Range_Loop;
Get_Random_Bases_Loop :
while MissionsAmount > Positive(BasesInRange.Length) loop
TmpBaseIndex := Get_Random(1, 1_024);
if BasesInRange.Find_Index(Item => TmpBaseIndex) =
Positive_Container.No_Index and
Sky_Bases(TmpBaseIndex).Population > 0 then
BasesInRange.Append(New_Item => TmpBaseIndex);
end if;
end loop Get_Random_Bases_Loop;
Sky_Bases(BaseIndex).Missions.Clear;
GenerateEnemies(Enemies);
Generate_Missions_Loop :
for I in 1 .. MissionsAmount loop
<<Start_Of_Loop>>
MType :=
Missions_Types'Val
(Get_Random(0, Missions_Types'Pos(Missions_Types'Last)));
case MType is
when Deliver =>
Mission :=
(MType => Deliver, Time => 1, TargetX => 0, TargetY => 0,
Reward => 1, StartBase => 1, Finished => False,
ItemIndex =>
MissionsItems
(Get_Random(1, Positive(MissionsItems.Length))),
Multiplier => 1.0);
when Destroy =>
Mission :=
(MType => Destroy, Time => 1, TargetX => 0, TargetY => 0,
Reward => 1, StartBase => 1, Finished => False,
Multiplier => 1.0,
ShipIndex =>
Enemies
(Get_Random(Enemies.First_Index, Enemies.Last_Index)));
Find_Mission_Location_Loop :
loop
MissionX := Get_Random(MinX, MaxX);
MissionY := Get_Random(MinY, MaxY);
exit Find_Mission_Location_Loop when SkyMap
(MissionX, MissionY)
.BaseIndex =
0 and
MissionX /= Player_Ship.Sky_X and
MissionY /= Player_Ship.Sky_Y;
end loop Find_Mission_Location_Loop;
when Patrol =>
Mission :=
(MType => Patrol, Time => 1, TargetX => 0, TargetY => 0,
Reward => 1, StartBase => 1, Finished => False,
Multiplier => 1.0, Target => 1);
Find_Patrol_Mission_Location_Loop :
for J in 1 .. 10 loop
MissionX := Get_Random(MinX, MaxX);
MissionY := Get_Random(MinY, MaxY);
if SkyMap(MissionX, MissionY).Visited and
SkyMap(MissionX, MissionY).BaseIndex = 0 then
Mission.Target := 0;
exit Find_Patrol_Mission_Location_Loop;
end if;
end loop Find_Patrol_Mission_Location_Loop;
if Mission.Target = 1 then
goto Start_Of_Loop;
end if;
when Explore =>
Mission :=
(MType => Explore, Time => 1, TargetX => 0, TargetY => 0,
Reward => 1, StartBase => 1, Finished => False,
Multiplier => 1.0, Target => 1);
Find_Explore_Location_Loop :
for J in 1 .. 10 loop
MissionX := Get_Random(MinX, MaxX);
MissionY := Get_Random(MinY, MaxY);
if not SkyMap(MissionX, MissionY).Visited and
SkyMap(MissionX, MissionY).BaseIndex = 0 then
Mission.Target := 0;
exit Find_Explore_Location_Loop;
end if;
end loop Find_Explore_Location_Loop;
if Mission.Target = 1 then
goto Start_Of_Loop;
end if;
when Passenger =>
Mission :=
(MType => Passenger, Time => 1, TargetX => 0, TargetY => 0,
Reward => 1, StartBase => 1, Finished => False,
Multiplier => 1.0,
Data =>
QualitiesArray
(Get_Random(QualitiesArray'First, QualitiesArray'Last)));
end case;
if Mission.MType in Deliver | Passenger then
Find_Base_Mission_Loop :
loop
TmpBaseIndex :=
Get_Random(BasesInRange.First_Index, BasesInRange.Last_Index);
MissionX := Sky_Bases(BasesInRange(TmpBaseIndex)).Sky_X;
MissionY := Sky_Bases(BasesInRange(TmpBaseIndex)).Sky_Y;
exit Find_Base_Mission_Loop when MissionX /=
Player_Ship.Sky_X and
MissionY /= Player_Ship.Sky_Y;
end loop Find_Base_Mission_Loop;
end if;
Mission.TargetX := MissionX;
Mission.TargetY := MissionY;
DiffX := abs (Player_Ship.Sky_X - MissionX);
DiffY := abs (Player_Ship.Sky_Y - MissionY);
case Mission.MType is
when Deliver =>
Mission.Time :=
Positive(80.0 * Sqrt(Float((DiffX**2) + (DiffY**2))));
Mission.Reward := (Mission.Time / 4);
when Destroy | Passenger =>
Mission.Time :=
Positive(180.0 * Sqrt(Float((DiffX**2) + (DiffY**2))));
Mission.Reward := (Mission.Time / 4);
when Patrol | Explore =>
Mission.Time :=
Positive(180.0 * Sqrt(Float((DiffX**2) + (DiffY**2))));
Mission.Reward := (Mission.Time / 5);
end case;
Mission.StartBase := BaseIndex;
Mission.Finished := False;
Sky_Bases(BaseIndex).Missions.Append(New_Item => Mission);
end loop Generate_Missions_Loop;
Sky_Bases(BaseIndex).Missions_Date := Game_Date;
end GenerateMissions;
procedure AcceptMission(MissionIndex: Positive) is
BaseIndex: constant Bases_Range :=
SkyMap(Player_Ship.Sky_X, Player_Ship.Sky_Y).BaseIndex;
Mission: Mission_Data := Sky_Bases(BaseIndex).Missions(MissionIndex);
AcceptMessage: Unbounded_String;
TraderIndex: constant Crew_Container.Extended_Index := FindMember(Talk);
begin
if Sky_Bases(BaseIndex).Reputation(1) < 0 then
raise Missions_Accepting_Error
with "Your reputation in this base is too low to receive any mission.";
end if;
declare
MissionsLimit: Integer :=
(case Sky_Bases(BaseIndex).Reputation(1) is when 0 .. 25 => 1,
when 26 .. 50 => 3, when 51 .. 75 => 5, when 76 .. 100 => 10,
when others => 0);
begin
Count_Missions_Limit_Loop :
for Mission of AcceptedMissions loop
if Mission.StartBase = BaseIndex then
MissionsLimit := MissionsLimit - 1;
end if;
exit Count_Missions_Limit_Loop when MissionsLimit <= 0;
end loop Count_Missions_Limit_Loop;
if MissionsLimit < 1 then
raise Missions_Accepting_Error
with "You can't take any more missions from this base. ";
end if;
end;
if Mission.MType = Deliver
and then FreeCargo((0 - Items_List(Mission.ItemIndex).Weight)) < 0 then
raise Missions_Accepting_Error
with "You don't have enough cargo space for take this mission.";
end if;
if Mission.MType = Passenger then
declare
HaveCabin: Boolean := False;
begin
Modules_Loop :
for Module of Player_Ship.Modules loop
if (Module.M_Type = CABIN and not HaveCabin)
and then Module.Quality >= Mission.Data then
HaveCabin := False;
Cabin_Owner_Loop :
for Owner of Module.Owner loop
if Owner = 0 then
HaveCabin := True;
exit Cabin_Owner_Loop;
end if;
end loop Cabin_Owner_Loop;
exit Modules_Loop when HaveCabin;
end if;
end loop Modules_Loop;
if not HaveCabin then
raise Missions_Accepting_Error
with "You don't have proper (or free) cabin for this passenger.";
end if;
end;
end if;
Mission.StartBase := BaseIndex;
Mission.Finished := False;
AcceptMessage := To_Unbounded_String("You accepted the mission to ");
case Mission.MType is
when Deliver =>
Append
(AcceptMessage,
"'Deliver " & To_String(Items_List(Mission.ItemIndex).Name) &
"'.");
UpdateCargo(Player_Ship, Mission.ItemIndex, 1);
when Destroy =>
Append
(AcceptMessage,
"'Destroy " &
To_String(Proto_Ships_List(Mission.ShipIndex).Name) & "'.");
when Patrol =>
Append(AcceptMessage, "'Patrol selected area'.");
when Explore =>
Append(AcceptMessage, "'Explore selected area'.");
when Passenger =>
Append(AcceptMessage, "'Transport passenger to base'.");
declare
PassengerBase: Bases_Range;
Gender: Character;
Skills: Skills_Container.Vector;
Inventory: Inventory_Container.Vector;
MaxAttributeLevel, Morale: Integer;
Attributes: Mob_Attributes
(1 ..
Positive
(AttributesData_Container.Length
(Container => Attributes_List)));
begin
PassengerBase :=
(if Get_Random(1, 100) < 60 then BaseIndex
else Get_Random(Sky_Bases'First, Sky_Bases'Last));
if not Factions_List(Sky_Bases(PassengerBase).Owner).Flags
.Contains
(To_Unbounded_String("nogender")) then
Gender := (if Get_Random(1, 2) = 1 then 'M' else 'F');
else
Gender := 'M';
end if;
if Factions_List(Sky_Bases(PassengerBase).Owner).Flags.Contains
(To_Unbounded_String("nomorale")) then
Morale := 50;
else
Morale := 50 + Sky_Bases(PassengerBase).Reputation(1);
if Morale < 50 then
Morale := 50;
end if;
end if;
MaxAttributeLevel := Sky_Bases(BaseIndex).Reputation(1);
if MaxAttributeLevel < 10 then
MaxAttributeLevel := 10;
end if;
if Get_Random(1, 100) > 90 then
MaxAttributeLevel := Get_Random(MaxAttributeLevel, 100);
end if;
if MaxAttributeLevel > 50 then
MaxAttributeLevel := 50;
end if;
for J in 1 .. Attributes_Amount loop
Attributes(J) := (Get_Random(3, MaxAttributeLevel), 0);
end loop;
Player_Ship.Crew.Append
(New_Item =>
(Amount_Of_Attributes => Attributes_Amount,
Name =>
GenerateMemberName
(Gender, Sky_Bases(PassengerBase).Owner),
Amount_Of_Skills => Skills_Amount, Gender => Gender,
Health => 100, Tired => 0, Skills => Skills, Hunger => 0,
Thirst => 0, Order => Rest, PreviousOrder => Rest,
OrderTime => 15, Orders => (others => 0),
Attributes => Attributes, Inventory => Inventory,
Equipment => (others => 0), Payment => (others => 0),
ContractLength => Mission.Time, Morale => (Morale, 0),
Loyalty => Morale, HomeBase => PassengerBase,
Faction => Sky_Bases(PassengerBase).Owner));
end;
Find_Cabin_Loop :
for Module of Player_Ship.Modules loop
if Module.M_Type = CABIN
and then
(Module.Quality >= Mission.Data and Module.Owner(1) = 0) then
Module.Owner(1) := Player_Ship.Crew.Last_Index;
exit Find_Cabin_Loop;
end if;
end loop Find_Cabin_Loop;
Mission.Data := Player_Ship.Crew.Last_Index;
end case;
Sky_Bases(BaseIndex).Missions.Delete(Index => MissionIndex);
AcceptedMissions.Append(New_Item => Mission);
SkyMap(Mission.TargetX, Mission.TargetY).MissionIndex :=
AcceptedMissions.Last_Index;
AddMessage(To_String(AcceptMessage), MissionMessage);
GainExp(1, Talking_Skill, TraderIndex);
GameStats.AcceptedMissions := GameStats.AcceptedMissions + 1;
Update_Game(5);
end AcceptMission;
procedure UpdateMissions(Minutes: Positive) is
Time: Integer;
I: Mission_Container.Extended_Index := AcceptedMissions.First_Index;
begin
Update_Missions_Loop :
while I <= AcceptedMissions.Last_Index loop
Time := AcceptedMissions(I).Time - Minutes;
if Time < 1 then
DeleteMission(I);
else
AcceptedMissions(I).Time := Time;
I := I + 1;
end if;
end loop Update_Missions_Loop;
end UpdateMissions;
procedure FinishMission(MissionIndex: Positive) is
Message: Unbounded_String;
MissionsAmount: constant Positive := Positive(AcceptedMissions.Length);
begin
if Player_Ship.Speed /= DOCKED then
Message := To_Unbounded_String(DockShip(True));
if Length(Message) > 0 then
raise Missions_Finishing_Error with To_String(Message);
end if;
end if;
Update_Game(5);
if MissionsAmount > Natural(AcceptedMissions.Length) then
return;
end if;
case AcceptedMissions(MissionIndex).MType is
when Deliver =>
AddMessage
("You finished mission 'Deliver " &
To_String
(Items_List(AcceptedMissions(MissionIndex).ItemIndex).Name) &
"'.",
MissionMessage, GREEN);
when Destroy =>
AddMessage
("You finished mission 'Destroy " &
To_String
(Proto_Ships_List(AcceptedMissions(MissionIndex).ShipIndex)
.Name) &
"'.",
MissionMessage);
when Patrol =>
AddMessage
("You finished mission 'Patrol selected area'.", MissionMessage,
GREEN);
when Explore =>
AddMessage
("You finished mission 'Explore selected area'.", MissionMessage,
GREEN);
when Passenger =>
AddMessage
("You finished mission 'Transport passenger to base'.",
MissionMessage, GREEN);
end case;
UpdateGoal
(MISSION,
To_Unbounded_String
(Missions_Types'Image(AcceptedMissions(MissionIndex).MType)));
UpdateFinishedMissions
(To_Unbounded_String
(Natural'Image
(Missions_Types'Pos(AcceptedMissions(MissionIndex).MType))));
DeleteMission(MissionIndex, False);
end FinishMission;
procedure DeleteMission(MissionIndex: Positive; Failed: Boolean := True) is
MessageText: Unbounded_String :=
To_Unbounded_String("You failed your mission to ");
Mission: constant Mission_Data := AcceptedMissions(MissionIndex);
Reputation: Natural;
begin
Reputation := Mission.Reward / 50;
if Reputation < 2 then
Reputation := 2;
end if;
Reputation :=
Natural
(Float(Reputation) +
(Float(Reputation) * Float(Mission.Multiplier - 1.0)));
if Failed then
Gain_Rep(Mission.StartBase, -Reputation);
UpdateMorale(Player_Ship, 1, Get_Random(-10, -5));
case Mission.MType is
when Deliver =>
Append
(MessageText,
"'Deliver " & To_String(Items_List(Mission.ItemIndex).Name) &
"'.");
when Destroy =>
Append
(MessageText,
"'Destroy " &
To_String(Proto_Ships_List(Mission.ShipIndex).Name) & "'.");
when Patrol =>
Append(MessageText, "'Patrol selected area'.");
when Explore =>
Append(MessageText, "'Explore selected area'.");
when Passenger =>
Append(MessageText, "'Transport passenger to base'.");
end case;
AddMessage(To_String(MessageText), MissionMessage, RED);
else
if Mission.MType in Deliver | Passenger then
Gain_Rep
(SkyMap(Player_Ship.Sky_X, Player_Ship.Sky_Y).BaseIndex,
(Reputation / 2));
Gain_Rep(Mission.StartBase, (Reputation / 2));
else
Gain_Rep(Mission.StartBase, Reputation);
end if;
UpdateMorale(Player_Ship, 1, 1);
declare
FreeSpace: Integer;
TraderIndex: constant Natural := FindMember(Talk);
RewardAmount: Natural :=
Natural(Float(Mission.Reward) * Float(Mission.Multiplier));
begin
Count_Price(RewardAmount, TraderIndex, False);
if TraderIndex > 0 then
GainExp(1, Talking_Skill, TraderIndex);
end if;
FreeSpace := FreeCargo((0 - RewardAmount));
if FreeSpace < 0 then
RewardAmount := RewardAmount + FreeSpace;
end if;
if RewardAmount > 0 then
AddMessage
("You received" & Integer'Image(RewardAmount) & " " &
To_String(Money_Name) & " for finishing your mission.",
MissionMessage);
UpdateCargo(Player_Ship, Money_Index, RewardAmount);
end if;
end;
end if;
SkyMap(Mission.TargetX, Mission.TargetY).MissionIndex := 0;
SkyMap
(Sky_Bases(Mission.StartBase).Sky_X,
Sky_Bases(Mission.StartBase).Sky_Y)
.MissionIndex :=
0;
AcceptedMissions.Delete(Index => MissionIndex);
if Mission.MType = Deliver then
UpdateCargo(Player_Ship, Mission.ItemIndex, -1);
elsif Mission.MType = Passenger
and then Mission.Data <= Positive(Player_Ship.Crew.Length) then
DeleteMember(Mission.Data, Player_Ship);
end if;
Update_Map_Loop :
for I in AcceptedMissions.First_Index .. AcceptedMissions.Last_Index loop
if AcceptedMissions(I).Finished then
SkyMap
(Sky_Bases(AcceptedMissions(I).StartBase).Sky_X,
Sky_Bases(AcceptedMissions(I).StartBase).Sky_Y)
.MissionIndex :=
I;
else
SkyMap(AcceptedMissions(I).TargetX, AcceptedMissions(I).TargetY)
.MissionIndex :=
I;
end if;
end loop Update_Map_Loop;
end DeleteMission;
procedure UpdateMission(MissionIndex: Positive) is
Mission: constant Mission_Data := AcceptedMissions(MissionIndex);
MessageText: Unbounded_String :=
To_Unbounded_String("Return to ") & Sky_Bases(Mission.StartBase).Name &
To_Unbounded_String(" to finish mission ");
begin
SkyMap(Mission.TargetX, Mission.TargetY).MissionIndex := 0;
AcceptedMissions(MissionIndex).Finished := True;
SkyMap
(Sky_Bases(Mission.StartBase).Sky_X,
Sky_Bases(Mission.StartBase).Sky_Y)
.MissionIndex :=
MissionIndex;
case AcceptedMissions(MissionIndex).MType is
when Deliver =>
Append
(MessageText,
"'Deliver " &
To_String
(Items_List(AcceptedMissions(MissionIndex).ItemIndex).Name) &
"'.");
when Destroy =>
Append
(MessageText,
"'Destroy " &
To_String
(Proto_Ships_List(AcceptedMissions(MissionIndex).ShipIndex)
.Name) &
"'.");
when Patrol =>
Append(MessageText, "'Patrol selected area'.");
when Explore =>
Append(MessageText, "'Explore selected area'.");
when Passenger =>
Append(MessageText, "'Transport passenger to base'.");
end case;
AddMessage(To_String(MessageText), MissionMessage);
if Game_Settings.Auto_Return then
Player_Ship.Destination_X := Sky_Bases(Mission.StartBase).Sky_X;
Player_Ship.Destination_Y := Sky_Bases(Mission.StartBase).Sky_Y;
AddMessage
("You set the travel destination for your ship.", OrderMessage);
end if;
end UpdateMission;
function AutoFinishMissions return String is
BaseIndex: constant Natural :=
SkyMap(Player_Ship.Sky_X, Player_Ship.Sky_Y).BaseIndex;
I: Natural := AcceptedMissions.First_Index;
begin
if BaseIndex = 0 then
return "";
end if;
if SkyMap(Player_Ship.Sky_X, Player_Ship.Sky_Y).EventIndex > 0
and then
Events_List(SkyMap(Player_Ship.Sky_X, Player_Ship.Sky_Y).EventIndex)
.EType /=
DoublePrice then
return "";
end if;
if FindMember(Talk) = 0 then
return "";
end if;
Finish_Missions_Loop :
while I <= AcceptedMissions.Last_Index loop
if
(AcceptedMissions(I).Finished and
AcceptedMissions(I).StartBase = BaseIndex) or
(AcceptedMissions(I).TargetX = Player_Ship.Sky_X and
AcceptedMissions(I).TargetY = Player_Ship.Sky_Y) then
FinishMission(I);
I := I - 1;
end if;
I := I + 1;
end loop Finish_Missions_Loop;
return "";
exception
when An_Exception : Missions_Finishing_Error =>
return Exception_Message(An_Exception);
end AutoFinishMissions;
function Get_Mission_Type(MType: Missions_Types) return String is
begin
case MType is
when Deliver =>
return "Deliver item to base";
when Patrol =>
return "Patrol area";
when Destroy =>
return "Destroy ship";
when Explore =>
return "Explore area";
when Passenger =>
return "Transport passenger to base";
end case;
end Get_Mission_Type;
end Missions;
| 40.36124 | 82 | 0.561096 |
0ebe68ec2b5582dc2c3a5990139f9cc368c397bb | 3,734 | ads | Ada | llvm-gcc-4.2-2.9/gcc/ada/s-chepoo.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 1 | 2016-04-09T02:58:13.000Z | 2016-04-09T02:58:13.000Z | llvm-gcc-4.2-2.9/gcc/ada/s-chepoo.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/s-chepoo.ads | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . C H E C K E D _ P O O L S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2006, 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 2, 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 COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Storage_Elements;
with System.Storage_Pools;
package System.Checked_Pools is
type Checked_Pool is abstract
new System.Storage_Pools.Root_Storage_Pool with private;
-- Equivalent of storage pools with the addition that Dereference is
-- called on each implicit or explicit dereference of a pointer which
-- has such a storage pool
procedure Dereference
(Pool : in out Checked_Pool;
Storage_Address : Address;
Size_In_Storage_Elements : System.Storage_Elements.Storage_Count;
Alignment : System.Storage_Elements.Storage_Count)
is abstract;
-- Called implicitly each time a pointer to a checked pool is dereferenced
-- All parameters in the profile are compatible with the profile of
-- Allocate/Deallocate: the Storage_Address corresponds to the address of
-- the dereferenced object, Size_in_Storage_Elements is its dynamic size
-- (and thus may involve an implicit dispatching call to size) and
-- Alignment is the alignment of the object.
private
type Checked_Pool is abstract
new System.Storage_Pools.Root_Storage_Pool with null record;
end System.Checked_Pools;
| 61.213115 | 78 | 0.516069 |
201bdc1ac0ffa2bac25efd5af65be081d4936994 | 2,487 | ads | Ada | resources/scripts/api/ipinfo.ads | marcostolosa/Amass | 7a48ddae82eeac76fd6447de908f6b27002eace7 | [
"Apache-2.0"
] | 7,053 | 2018-07-13T09:40:12.000Z | 2022-03-31T15:26:10.000Z | resources/scripts/api/ipinfo.ads | marcostolosa/Amass | 7a48ddae82eeac76fd6447de908f6b27002eace7 | [
"Apache-2.0"
] | 624 | 2018-07-17T12:01:23.000Z | 2022-03-28T13:59:17.000Z | resources/scripts/api/ipinfo.ads | marcostolosa/Amass | 7a48ddae82eeac76fd6447de908f6b27002eace7 | [
"Apache-2.0"
] | 1,470 | 2018-07-17T06:01:21.000Z | 2022-03-31T18:02:17.000Z | -- Copyright 2021 Jeff Foley. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
local json = require("json")
name = "IPinfo"
type = "api"
function start()
set_rate_limit(1)
end
function check()
local c
local cfg = datasrc_config()
if cfg ~= nil then
c = cfg.credentials
end
if (c ~= nil and c.key ~= nil and c.key ~= "") then
return true
end
return false
end
function asn(ctx, addr, asn)
local c
local cfg = datasrc_config()
if cfg ~= nil then
c = cfg.credentials
end
if (c == nil or c.key == nil or c.key == "") then
return
end
local prefix
if (asn == 0) then
if (addr == "") then
return
end
asn, prefix = get_asn(ctx, addr, cfg.ttl, c.key)
if (asn == 0) then
return
end
end
local a = as_info(ctx, asn, cfg.ttl, c.key)
if (a == nil) then
return
end
new_asn(ctx, {
['addr']=addr,
['asn']=asn,
['prefix']=prefix,
['cc']=a.cc,
['registry']=a.registry,
['desc']=a.desc,
['netblocks']=a.netblocks,
})
end
function get_asn(ctx, addr, ttl, token)
local u = "https://ipinfo.io/" .. addr .. "/asn?token=" .. token
local resp, err = request(ctx, {['url']=u})
if (err ~= nil and err ~= "") then
log(ctx, "get_asn request to service failed: " .. err)
return 0, ""
end
local j = json.decode(resp)
if (j == nil or j.error ~= nil or j.asn == nil) then
return 0, ""
end
return tonumber(string.sub(j.asn, 3)), j.route
end
function as_info(ctx, asn, ttl, token)
local strasn = "AS" .. tostring(asn)
local u = "https://ipinfo.io/" .. strasn .. "/json?token=" .. token
local resp, err = request(ctx, {['url']=u})
if (err ~= nil and err ~= "") then
log(ctx, "as_info request to service failed: " .. err)
return nil
end
local j = json.decode(resp)
if (j == nil or j.asn == nil or j.asn ~= strasn) then
return nil
end
local netblocks = {}
for _, p in pairs(j.prefixes) do
table.insert(netblocks, p.netblock)
end
for _, p in pairs(j.prefixes6) do
table.insert(netblocks, p.netblock)
end
return {
['desc']=j.name,
['cc']=j.country,
['registry']=j.registry,
['netblocks']=netblocks,
}
end
| 22.609091 | 97 | 0.54041 |
188379d24e807c5af094284119e6c19a65d1eeb0 | 790 | ads | Ada | src/generic_quaternions.ads | simonjwright/Quaternions | 24ee177d826a9792e5a596570f03dbdadbe1d1b0 | [
"Apache-2.0"
] | 1 | 2020-12-09T17:32:30.000Z | 2020-12-09T17:32:30.000Z | src/generic_quaternions.ads | simonjwright/Quaternions | 24ee177d826a9792e5a596570f03dbdadbe1d1b0 | [
"Apache-2.0"
] | null | null | null | src/generic_quaternions.ads | simonjwright/Quaternions | 24ee177d826a9792e5a596570f03dbdadbe1d1b0 | [
"Apache-2.0"
] | null | null | null | generic
type Real is digits <>;
package Generic_Quaternions is
type Quaternion is record
W : Real;
X : Real;
Y : Real;
Z : Real;
end record;
function "-" (Q : Quaternion) return Quaternion;
function "+" (L, R : Quaternion) return Quaternion;
function "-" (L, R : Quaternion) return Quaternion;
function "*" (L : Quaternion; R : Real) return Quaternion;
function "*" (L : Real; R : Quaternion) return Quaternion;
function "*" (L : Quaternion; R : Quaternion) return Quaternion;
function "/" (L : Quaternion; R : Real) return Quaternion;
function Conjugate (Q : Quaternion) return Quaternion;
function Norm (Q : Quaternion) return Real;
function Normalize (Q : Quaternion) return Quaternion;
end Generic_Quaternions;
| 23.939394 | 67 | 0.655696 |
182ade8415aa0ab26cf387f79041126017a93f0d | 13,806 | adb | Ada | llvm-gcc-4.2-2.9/gcc/ada/s-tpoben.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 1 | 2016-04-09T02:58:13.000Z | 2016-04-09T02:58:13.000Z | llvm-gcc-4.2-2.9/gcc/ada/s-tpoben.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/s-tpoben.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . T A S K I N G . P R O T E C T E D _ O B J E C T S . --
-- E N T R I E S --
-- --
-- B o d y --
-- --
-- Copyright (C) 1998-2005, 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 2, or (at your option) any later ver- --
-- sion. GNARL 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 GNARL; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains all the simple primitives related to protected
-- objects with entries (i.e init, lock, unlock).
-- The handling of protected objects with no entries is done in
-- System.Tasking.Protected_Objects, the complex routines for protected
-- objects with entries in System.Tasking.Protected_Objects.Operations.
-- The split between Entries and Operations is needed to break circular
-- dependencies inside the run time.
-- Note: the compiler generates direct calls to this interface, via Rtsfind
with Ada.Exceptions;
-- Used for Exception_Occurrence_Access
-- Raise_Exception
with System.Task_Primitives.Operations;
-- Used for Initialize_Lock
-- Write_Lock
-- Unlock
-- Get_Priority
-- Wakeup
with System.Tasking.Initialization;
-- Used for Defer_Abort,
-- Undefer_Abort,
-- Change_Base_Priority
pragma Elaborate_All (System.Tasking.Initialization);
-- This insures that tasking is initialized if any protected objects are
-- created.
with System.Parameters;
-- Used for Single_Lock
package body System.Tasking.Protected_Objects.Entries is
package STPO renames System.Task_Primitives.Operations;
use Parameters;
use Task_Primitives.Operations;
use Ada.Exceptions;
----------------
-- Local Data --
----------------
Locking_Policy : Character;
pragma Import (C, Locking_Policy, "__gl_locking_policy");
--------------
-- Finalize --
--------------
procedure Finalize (Object : in out Protection_Entries) is
Entry_Call : Entry_Call_Link;
Caller : Task_Id;
Ceiling_Violation : Boolean;
Self_ID : constant Task_Id := STPO.Self;
Old_Base_Priority : System.Any_Priority;
begin
if Object.Finalized then
return;
end if;
STPO.Write_Lock (Object.L'Unrestricted_Access, Ceiling_Violation);
if Single_Lock then
Lock_RTS;
end if;
if Ceiling_Violation then
-- Dip our own priority down to ceiling of lock. See similar code in
-- Tasking.Entry_Calls.Lock_Server.
STPO.Write_Lock (Self_ID);
Old_Base_Priority := Self_ID.Common.Base_Priority;
Self_ID.New_Base_Priority := Object.Ceiling;
Initialization.Change_Base_Priority (Self_ID);
STPO.Unlock (Self_ID);
if Single_Lock then
Unlock_RTS;
end if;
STPO.Write_Lock (Object.L'Unrestricted_Access, Ceiling_Violation);
if Ceiling_Violation then
Raise_Exception (Program_Error'Identity, "Ceiling Violation");
end if;
if Single_Lock then
Lock_RTS;
end if;
Object.Old_Base_Priority := Old_Base_Priority;
Object.Pending_Action := True;
end if;
-- Send program_error to all tasks still queued on this object
for E in Object.Entry_Queues'Range loop
Entry_Call := Object.Entry_Queues (E).Head;
while Entry_Call /= null loop
Caller := Entry_Call.Self;
Entry_Call.Exception_To_Raise := Program_Error'Identity;
STPO.Write_Lock (Caller);
Initialization.Wakeup_Entry_Caller (Self_ID, Entry_Call, Done);
STPO.Unlock (Caller);
exit when Entry_Call = Object.Entry_Queues (E).Tail;
Entry_Call := Entry_Call.Next;
end loop;
end loop;
Object.Finalized := True;
if Single_Lock then
Unlock_RTS;
end if;
STPO.Unlock (Object.L'Unrestricted_Access);
STPO.Finalize_Lock (Object.L'Unrestricted_Access);
end Finalize;
-------------------------------------
-- Has_Interrupt_Or_Attach_Handler --
-------------------------------------
function Has_Interrupt_Or_Attach_Handler
(Object : Protection_Entries_Access)
return Boolean
is
pragma Warnings (Off, Object);
begin
return False;
end Has_Interrupt_Or_Attach_Handler;
-----------------------------------
-- Initialize_Protection_Entries --
-----------------------------------
procedure Initialize_Protection_Entries
(Object : Protection_Entries_Access;
Ceiling_Priority : Integer;
Compiler_Info : System.Address;
Entry_Bodies : Protected_Entry_Body_Access;
Find_Body_Index : Find_Body_Index_Access)
is
Init_Priority : Integer := Ceiling_Priority;
Self_ID : constant Task_Id := STPO.Self;
begin
if Init_Priority = Unspecified_Priority then
Init_Priority := System.Priority'Last;
end if;
if Locking_Policy = 'C'
and then Has_Interrupt_Or_Attach_Handler (Object)
and then Init_Priority not in System.Interrupt_Priority
then
-- Required by C.3.1(11)
raise Program_Error;
end if;
Initialization.Defer_Abort (Self_ID);
Initialize_Lock (Init_Priority, Object.L'Access);
Initialization.Undefer_Abort (Self_ID);
Object.Ceiling := System.Any_Priority (Init_Priority);
Object.Owner := Null_Task;
Object.Compiler_Info := Compiler_Info;
Object.Pending_Action := False;
Object.Call_In_Progress := null;
Object.Entry_Bodies := Entry_Bodies;
Object.Find_Body_Index := Find_Body_Index;
for E in Object.Entry_Queues'Range loop
Object.Entry_Queues (E).Head := null;
Object.Entry_Queues (E).Tail := null;
end loop;
end Initialize_Protection_Entries;
------------------
-- Lock_Entries --
------------------
procedure Lock_Entries
(Object : Protection_Entries_Access; Ceiling_Violation : out Boolean)
is
begin
if Object.Finalized then
Raise_Exception
(Program_Error'Identity, "Protected Object is finalized");
end if;
-- If pragma Detect_Blocking is active then, as described in the ARM
-- 9.5.1, par. 15, we must check whether this is an external call on a
-- protected subprogram with the same target object as that of the
-- protected action that is currently in progress (i.e., if the caller
-- is already the protected object's owner). If this is the case hence
-- Program_Error must be raised.
if Detect_Blocking and then Object.Owner = Self then
raise Program_Error;
end if;
-- The lock is made without defering abort
-- Therefore the abort has to be deferred before calling this routine.
-- This means that the compiler has to generate a Defer_Abort call
-- before the call to Lock.
-- The caller is responsible for undeferring abort, and compiler
-- generated calls must be protected with cleanup handlers to ensure
-- that abort is undeferred in all cases.
pragma Assert (STPO.Self.Deferral_Level > 0);
Write_Lock (Object.L'Access, Ceiling_Violation);
-- We are entering in a protected action, so that we increase the
-- protected object nesting level (if pragma Detect_Blocking is
-- active), and update the protected object's owner.
if Detect_Blocking then
declare
Self_Id : constant Task_Id := Self;
begin
-- Update the protected object's owner
Object.Owner := Self_Id;
-- Increase protected object nesting level
Self_Id.Common.Protected_Action_Nesting :=
Self_Id.Common.Protected_Action_Nesting + 1;
end;
end if;
end Lock_Entries;
procedure Lock_Entries (Object : Protection_Entries_Access) is
Ceiling_Violation : Boolean;
begin
Lock_Entries (Object, Ceiling_Violation);
if Ceiling_Violation then
Raise_Exception (Program_Error'Identity, "Ceiling Violation");
end if;
end Lock_Entries;
----------------------------
-- Lock_Read_Only_Entries --
----------------------------
procedure Lock_Read_Only_Entries (Object : Protection_Entries_Access) is
Ceiling_Violation : Boolean;
begin
if Object.Finalized then
Raise_Exception
(Program_Error'Identity, "Protected Object is finalized");
end if;
-- If pragma Detect_Blocking is active then, as described in the ARM
-- 9.5.1, par. 15, we must check whether this is an external call on a
-- protected subprogram with the same target object as that of the
-- protected action that is currently in progress (i.e., if the caller
-- is already the protected object's owner). If this is the case hence
-- Program_Error must be raised.
-- Note that in this case (getting read access), several tasks may
-- have read ownership of the protected object, so that this method of
-- storing the (single) protected object's owner does not work
-- reliably for read locks. However, this is the approach taken for two
-- major reasosn: first, this function is not currently being used (it
-- is provided for possible future use), and second, it largely
-- simplifies the implementation.
if Detect_Blocking and then Object.Owner = Self then
raise Program_Error;
end if;
Read_Lock (Object.L'Access, Ceiling_Violation);
if Ceiling_Violation then
Raise_Exception (Program_Error'Identity, "Ceiling Violation");
end if;
-- We are entering in a protected action, so that we increase the
-- protected object nesting level (if pragma Detect_Blocking is
-- active), and update the protected object's owner.
if Detect_Blocking then
declare
Self_Id : constant Task_Id := Self;
begin
-- Update the protected object's owner
Object.Owner := Self_Id;
-- Increase protected object nesting level
Self_Id.Common.Protected_Action_Nesting :=
Self_Id.Common.Protected_Action_Nesting + 1;
end;
end if;
end Lock_Read_Only_Entries;
--------------------
-- Unlock_Entries --
--------------------
procedure Unlock_Entries (Object : Protection_Entries_Access) is
begin
-- We are exiting from a protected action, so that we decrease the
-- protected object nesting level (if pragma Detect_Blocking is
-- active), and remove ownership of the protected object.
if Detect_Blocking then
declare
Self_Id : constant Task_Id := Self;
begin
-- Calls to this procedure can only take place when being within
-- a protected action and when the caller is the protected
-- object's owner.
pragma Assert (Self_Id.Common.Protected_Action_Nesting > 0
and then Object.Owner = Self_Id);
-- Remove ownership of the protected object
Object.Owner := Null_Task;
Self_Id.Common.Protected_Action_Nesting :=
Self_Id.Common.Protected_Action_Nesting - 1;
end;
end if;
Unlock (Object.L'Access);
end Unlock_Entries;
end System.Tasking.Protected_Objects.Entries;
| 35.674419 | 78 | 0.594162 |
239b28c41d1d604b37fe32ec6837dcc8fc4ead80 | 2,562 | ads | Ada | stm32f0/stm32gd-gpio.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | 1 | 2021-04-06T07:57:56.000Z | 2021-04-06T07:57:56.000Z | stm32f0/stm32gd-gpio.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | null | null | null | stm32f0/stm32gd-gpio.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | 2 | 2018-05-29T13:59:31.000Z | 2019-02-03T19:48:08.000Z | with STM32_SVD.GPIO;
with STM32_SVD; use STM32_SVD;
package STM32GD.GPIO is
pragma Preelaborate;
type GPIO_Port is (Port_A, Port_B, Port_C, Port_D, Port_F);
for GPIO_Port use (Port_A => 0, Port_B => 1, Port_C => 2, Port_D => 3, Port_F => 5);
type GPIO_Pin is
(Pin_0, Pin_1, Pin_2, Pin_3, Pin_4, Pin_5, Pin_6, Pin_7,
Pin_8, Pin_9, Pin_10, Pin_11, Pin_12, Pin_13, Pin_14, Pin_15);
for GPIO_Pin use
(Pin_0 => 16#0001#,
Pin_1 => 16#0002#,
Pin_2 => 16#0004#,
Pin_3 => 16#0008#,
Pin_4 => 16#0010#,
Pin_5 => 16#0020#,
Pin_6 => 16#0040#,
Pin_7 => 16#0080#,
Pin_8 => 16#0100#,
Pin_9 => 16#0200#,
Pin_10 => 16#0400#,
Pin_11 => 16#0800#,
Pin_12 => 16#1000#,
Pin_13 => 16#2000#,
Pin_14 => 16#4000#,
Pin_15 => 16#8000#);
for GPIO_Pin'Size use 16;
-- for compatibility with hardware registers
type GPIO_Pins is array (Positive range <>) of GPIO_Pin;
-- Note that, in addition to aggregates, the language-defined catenation
-- operator "&" is available for types GPIO_Pin and GPIO_Pins, allowing one
-- to construct GPIO_Pins values conveniently
All_Pins : constant GPIO_Pins :=
(Pin_0, Pin_1, Pin_2, Pin_3, Pin_4, Pin_5, Pin_6, Pin_7,
Pin_8, Pin_9, Pin_10, Pin_11, Pin_12, Pin_13, Pin_14, Pin_15);
type Pin_IO_Modes is (Mode_In, Mode_Out, Mode_AF, Mode_Analog)
with Size => 2;
for Pin_IO_Modes use
(Mode_In => 0,
Mode_Out => 1,
Mode_AF => 2,
Mode_Analog => 3);
type Pin_Output_Types is (Push_Pull, Open_Drain)
with Size => 1;
for Pin_Output_Types use (Push_Pull => 0, Open_Drain => 1);
type Pin_Output_Speeds is (Speed_2MHz, Speed_25MHz, Speed_50MHz, Speed_100MHz)
with Size => 2;
for Pin_Output_Speeds use
(Speed_2MHz => 0, -- low
Speed_25MHz => 1, -- medium
Speed_50MHz => 2, -- high
Speed_100MHz => 3); -- very high
Speed_Low : Pin_Output_Speeds renames Speed_2MHz;
Speed_Medium : Pin_Output_Speeds renames Speed_25MHz;
Speed_High : Pin_Output_Speeds renames Speed_50MHz;
Speed_Very_High : Pin_Output_Speeds renames Speed_100MHz;
type Internal_Pin_Resistors is (Floating, Pull_Up, Pull_Down)
with Size => 2;
for Internal_Pin_Resistors use (Floating => 0,
Pull_Up => 1,
Pull_Down => 2);
type GPIO_Alternate_Function is new UInt4;
end STM32GD.GPIO;
| 30.141176 | 87 | 0.610851 |
20e630db692fdd72d99cff59524d23be7411fefc | 493 | ads | Ada | tests/mobs-test_data-tests-protomobs_container-test_data-tests.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 80 | 2017-04-08T23:14:07.000Z | 2022-02-10T22:30:51.000Z | tests/mobs-test_data-tests-protomobs_container-test_data-tests.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 89 | 2017-06-24T08:18:26.000Z | 2021-11-12T04:37:36.000Z | tests/mobs-test_data-tests-protomobs_container-test_data-tests.ads | thindil/steamsky | d5d7fea622f7994c91017c4cd7ba5e188153556c | [
"TCL",
"MIT"
] | 9 | 2018-04-14T16:37:25.000Z | 2020-03-21T14:33:49.000Z | -- This package has been generated automatically by GNATtest.
-- Do not edit any part of it, see GNATtest documentation for more details.
-- begin read only
with Gnattest_Generated;
package Mobs.Test_Data.Tests.ProtoMobs_Container.Test_Data.Tests is
type Test is new GNATtest_Generated.GNATtest_Standard.Mobs.Test_Data.Tests
.ProtoMobs_Container
.Test_Data
.New_Test with
null record;
end Mobs.Test_Data.Tests.ProtoMobs_Container.Test_Data.Tests;
-- end read only
| 29 | 77 | 0.778905 |
c5ec83a66ebee81282c4640b238b3bacd6b3d2fb | 905 | ads | Ada | 1-base/lace/source/events/concrete/lace-observer-deferred.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 1-base/lace/source/events/concrete/lace-observer-deferred.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 1-base/lace/source/events/concrete/lace-observer-deferred.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | with
lace.make_Observer.deferred,
lace.Any;
private
with
ada.Strings.unbounded;
package lace.Observer.deferred
--
-- Provides a concrete deferred event observer.
--
is
type Item is limited new Any.limited_item
and Observer .item with private;
type View is access all Item'Class;
package Forge
is
function to_Observer (Name : in event.observer_Name) return Item;
function new_Observer (Name : in event.observer_Name) return View;
end Forge;
overriding
function Name (Self : in Item) return event.observer_Name;
private
use ada.Strings.unbounded;
package Observer is new lace.make_Observer (Any.limited_item);
package Deferred is new Observer.deferred (Observer.item);
type Item is limited new Deferred.item with
record
Name : unbounded_String;
end record;
end lace.Observer.deferred;
| 21.046512 | 72 | 0.696133 |
cb7c08460b45a1afd71a1444b7468561f2ccb385 | 23,248 | ads | Ada | source/xml/sax/xml/xml-sax-simple_readers-parser-tables.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/xml/sax/xml/xml-sax-simple_readers-parser-tables.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/xml/sax/xml/xml-sax-simple_readers-parser-tables.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- XML Processor --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2010-2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
pragma Style_Checks ("-t");
-- GNAT: Disable check for token separation rules, because format of the
-- tables is not compatible with them.
private package XML.SAX.Simple_Readers.Parser.Tables is
type Goto_Entry is record
Nonterm : Integer;
Newstate : Integer;
end record;
type Shift_Reduce_Entry is record
T : Integer;
Act : Integer;
end record;
YY_Default : constant := -1;
YY_First_Shift_Entry : constant := 0;
YY_Accept_Code : constant := -3001;
YY_Error_Code : constant := -3000;
YY_Goto_Matrix : constant array (-1 .. 175) of Goto_Entry :=
(( -1, -1), ( -3, 1), ( -2, 2), ( -13, 9),
( -12, 7), ( -7, 6), ( -6, 4), ( -5, 3),
( -4, 11), ( -13, 9), ( -12, 7), ( -7, 6),
( -6, 13), ( -13, 9), ( -12, 17), ( -8, 16),
( -19, 23), ( -14, 22), ( -9, 25), ( -15, 29),
( -16, 31), ( -54, 32), ( -13, 9), ( -12, 7),
( -7, 33), ( -10, 36), ( -16, 38), ( -26, 44),
( -25, 43), ( -24, 42), ( -23, 41), ( -22, 40),
( -21, 39), ( -13, 46), ( -11, 47), ( -56, 56),
( -55, 58), ( -13, 9), ( -12, 17), ( -26, 44),
( -25, 43), ( -24, 42), ( -23, 41), ( -22, 40),
( -21, 62), ( -17, 63), ( -13, 46), ( -11, 47),
( -26, 44), ( -25, 43), ( -24, 42), ( -23, 41),
( -22, 65), ( -13, 46), ( -11, 47), ( -26, 44),
( -25, 43), ( -24, 42), ( -23, 41), ( -22, 40),
( -21, 62), ( -17, 66), ( -13, 46), ( -11, 47),
( -26, 44), ( -25, 43), ( -24, 42), ( -23, 41),
( -22, 40), ( -21, 67), ( -13, 46), ( -11, 47),
( -20, 76), ( -62, 80), ( -26, 44), ( -25, 43),
( -24, 42), ( -23, 41), ( -22, 65), ( -13, 46),
( -11, 47), ( -26, 44), ( -25, 43), ( -24, 42),
( -23, 41), ( -22, 65), ( -13, 46), ( -11, 47),
( -27, 87), ( -14, 88), ( -29, 90), ( -39, 91),
( -13, 9), ( -12, 7), ( -7, 96), ( -57, 97),
( -61, 98), ( -10, 100), ( -18, 101), ( -28, 102),
( -27, 107), ( -14, 108), ( -34, 115), ( -33, 114),
( -32, 112), ( -31, 111), ( -30, 116), ( -41, 118),
( -40, 117), ( -13, 9), ( -12, 17), ( -59, 126),
( -58, 125), ( -13, 131), ( -11, 132), ( -9, 127),
( -13, 9), ( -12, 7), ( -7, 137), ( -37, 146),
( -35, 147), ( -34, 145), ( -33, 144), ( -41, 158),
( -53, 168), ( -59, 173), ( -13, 131), ( -11, 132),
( -9, 127), ( -59, 126), ( -58, 176), ( -13, 131),
( -11, 132), ( -9, 127), ( -13, 9), ( -12, 17),
( -36, 190), ( -37, 146), ( -35, 147), ( -34, 145),
( -33, 144), ( -38, 192), ( -42, 194), ( -44, 195),
( -45, 196), ( -46, 197), ( -47, 198), ( -48, 199),
( -49, 200), ( -50, 201), ( -51, 202), ( -60, 206),
( -59, 173), ( -13, 131), ( -11, 132), ( -9, 127),
( -35, 208), ( -34, 145), ( -33, 144), ( -35, 211),
( -34, 145), ( -33, 144), ( -43, 219), ( -43, 220),
( -43, 221), ( -43, 222), ( -43, 223), ( -43, 224),
( -43, 225), ( -43, 226), ( -52, 228), ( -35, 241),
( -34, 145), ( -33, 144), ( -52, 245), ( -43, 250),
( -43, 261));
YY_Goto_Offset : constant array (0 .. 261) of Integer :=
( 0, 2, 8, 8, 12, 12, 12, 15,
15, 15, 15, 15, 15, 15, 15, 15,
17, 18, 18, 18, 18, 18, 18, 19,
20, 21, 24, 25, 25, 25, 26, 34,
34, 36, 38, 38, 38, 38, 38, 47,
54, 54, 54, 54, 54, 54, 54, 54,
54, 63, 71, 71, 71, 71, 71, 71,
72, 72, 73, 73, 73, 73, 73, 80,
80, 80, 80, 80, 87, 89, 89, 90,
91, 91, 91, 91, 91, 94, 95, 95,
96, 96, 96, 97, 98, 98, 98, 99,
99, 99, 101, 106, 108, 108, 108, 108,
108, 110, 115, 115, 115, 115, 118, 118,
118, 118, 118, 118, 118, 118, 118, 118,
118, 118, 122, 122, 122, 122, 123, 123,
124, 124, 124, 124, 124, 124, 128, 128,
128, 128, 128, 128, 128, 128, 133, 133,
133, 133, 135, 135, 135, 135, 135, 135,
135, 135, 135, 135, 136, 140, 141, 141,
141, 141, 141, 141, 141, 141, 141, 141,
142, 143, 144, 145, 146, 147, 148, 149,
150, 150, 150, 150, 150, 150, 150, 151,
151, 155, 155, 155, 155, 155, 155, 155,
155, 155, 155, 155, 155, 155, 158, 158,
161, 161, 161, 162, 163, 164, 165, 166,
167, 168, 169, 169, 170, 170, 170, 170,
170, 170, 170, 173, 173, 173, 173, 173,
173, 173, 173, 173, 173, 173, 173, 173,
173, 173, 173, 173, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 175,
175, 175, 176, 176, 176, 176, 176, 176,
176, 176, 176, 176, 176, 176);
YY_Rule_Length : constant array (0 .. 161) of Integer :=
( 2, 0, 2, 2, 1, 4, 9, 6,
8, 5, 3, 0, 2, 1, 0, 1,
1, 2, 0, 0, 8, 0, 0, 6,
0, 2, 3, 1, 3, 0, 2, 1,
0, 1, 1, 1, 1, 1, 1, 1,
3, 3, 4, 4, 5, 4, 4, 6,
5, 5, 3, 2, 1, 0, 0, 5,
1, 1, 1, 1, 2, 2, 2, 1,
2, 2, 2, 1, 4, 3, 3, 2,
3, 1, 2, 2, 2, 1, 2, 2,
2, 1, 2, 2, 2, 1, 5, 4,
3, 2, 0, 0, 5, 2, 1, 0,
0, 4, 0, 4, 0, 4, 0, 4,
0, 4, 0, 4, 0, 4, 0, 4,
0, 7, 0, 6, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 2, 1, 0, 3, 0, 6,
2, 2, 1, 0, 1, 1, 0, 4,
2, 1, 1, 1, 3, 0, 5, 0,
4, 0);
YY_Get_LHS_Rule : constant array (0 .. 161) of Integer :=
( -1, -3, -2, -4, -4, -6, -5, -5,
-11, -11, -10, -10, -7, -7, -7, -12,
-12, -13, -15, -18, -8, -19, -20, -8,
-8, -14, -14, -17, -16, -16, -21, -21,
-21, -22, -22, -22, -22, -22, -22, -22,
-22, -22, -26, -26, -26, -23, -23, -23,
-23, -23, -27, -28, -28, -28, -29, -24,
-30, -30, -30, -30, -32, -32, -32, -32,
-32, -32, -32, -32, -33, -34, -36, -36,
-37, -37, -35, -35, -35, -35, -35, -35,
-35, -35, -35, -35, -35, -35, -31, -31,
-38, -38, -38, -39, -25, -40, -40, -40,
-42, -41, -44, -41, -45, -41, -46, -41,
-47, -41, -48, -41, -49, -41, -50, -41,
-51, -41, -53, -41, -52, -52, -52, -52,
-52, -52, -52, -52, -52, -52, -52, -52,
-52, -52, -52, -52, -52, -52, -52, -52,
-43, -43, -43, -43, -54, -9, -57, -55,
-55, -58, -58, -58, -59, -59, -60, -59,
-59, -59, -59, -59, -59, -61, -56, -62,
-56, -56);
YY_Shift_Reduce_Matrix : constant array (-1 .. 583) of Shift_Reduce_Entry :=
(( -1, -1), ( -1, -1), ( 3, 5), ( 4, 10),
( 24, 8), ( -1, -14), ( 0, -3001), ( -1, -3000),
( 4, 10), ( 24, 8), ( -1, -14), ( -1, -4),
( 29, 14), ( -1, -3000), ( 4, 10), ( 7, 15),
( 24, 8), ( -1, -24), ( -1, -13), ( -1, -15),
( -1, -16), ( 5, 18), ( -1, -3000), ( -1, -2),
( -1, -3000), ( -1, -3), ( 26, 19), ( -1, -3000),
( 13, 20), ( 14, 21), ( -1, -21), ( 25, 24),
( -1, -3000), ( -1, -12), ( -1, -17), ( 22, 26),
( -1, -3000), ( 15, 27), ( -1, -3000), ( 16, 28),
( -1, -3000), ( -1, -18), ( 17, 30), ( -1, -29),
( -1, -140), ( 4, 10), ( 24, 8), ( -1, -14),
( 30, 35), ( 31, 34), ( -1, -11), ( -1, -25),
( 15, 37), ( -1, -3000), ( 17, 30), ( -1, -29),
( 3, 54), ( 4, 10), ( 8, 50), ( 9, 51),
( 10, 53), ( 24, 45), ( 42, 52), ( 55, 49),
( 57, 48), ( -1, -32), ( 11, 55), ( -1, -3000),
( 12, 57), ( -1, -161), ( 4, 10), ( 24, 8),
( -1, -5), ( 26, 59), ( -1, -3000), ( 26, 60),
( -1, -3000), ( 5, 61), ( -1, -3000), ( -1, -26),
( 3, 54), ( 4, 10), ( 8, 50), ( 9, 51),
( 10, 53), ( 24, 45), ( 42, 52), ( 55, 49),
( 57, 48), ( -1, -32), ( 3, 54), ( 4, 10),
( 8, 50), ( 9, 51), ( 10, 53), ( 18, 64),
( 24, 45), ( 42, 52), ( 55, 49), ( 57, 48),
( -1, -3000), ( -1, -31), ( -1, -33), ( -1, -34),
( -1, -35), ( -1, -36), ( -1, -37), ( -1, -38),
( -1, -39), ( 3, 54), ( 4, 10), ( 8, 50),
( 9, 51), ( 10, 53), ( 24, 45), ( 42, 52),
( 55, 49), ( 57, 48), ( -1, -32), ( 3, 54),
( 4, 10), ( 8, 50), ( 9, 51), ( 10, 53),
( 24, 45), ( 42, 52), ( 55, 49), ( 57, 48),
( -1, -32), ( 12, 68), ( 19, 69), ( -1, -3000),
( 12, 70), ( -1, -3000), ( 12, 71), ( -1, -3000),
( 13, 72), ( 14, 73), ( -1, -3000), ( 29, 74),
( 30, 75), ( -1, -3000), ( -1, -22), ( 11, 77),
( 12, 79), ( 28, 78), ( -1, -3000), ( -1, -159),
( -1, -141), ( 22, 81), ( -1, -3000), ( 22, 82),
( -1, -3000), ( -1, -7), ( 3, 54), ( 4, 10),
( 8, 50), ( 9, 51), ( 10, 53), ( 24, 45),
( 42, 52), ( 55, 49), ( 57, 48), ( -1, -27),
( 11, 83), ( -1, -3000), ( -1, -28), ( -1, -30),
( 58, 84), ( -1, -3000), ( 3, 54), ( 4, 10),
( 8, 50), ( 9, 51), ( 10, 53), ( 24, 45),
( 42, 52), ( 55, 49), ( 56, 85), ( 57, 48),
( -1, -3000), ( 13, 20), ( 14, 21), ( 20, 86),
( -1, -3000), ( 12, 89), ( -1, -3000), ( -1, -54),
( -1, -91), ( 15, 92), ( -1, -3000), ( 16, 93),
( -1, -3000), ( 26, 94), ( -1, -3000), ( 26, 95),
( -1, -3000), ( 4, 10), ( 24, 8), ( -1, -14),
( -1, -142), ( -1, -144), ( -1, -157), ( 26, 99),
( -1, -3000), ( -1, -10), ( 31, 34), ( -1, -11),
( -1, -19), ( -1, -40), ( -1, -41), ( 22, 103),
( -1, -53), ( 11, 104), ( -1, -3000), ( 11, 105),
( 23, 106), ( -1, -3000), ( 13, 20), ( 14, 21),
( 20, 86), ( -1, -3000), ( 32, 109), ( 33, 110),
( 34, 113), ( -1, -3000), ( 12, 119), ( -1, -95),
( 11, 120), ( -1, -3000), ( 11, 121), ( 15, 122),
( -1, -3000), ( 22, 123), ( -1, -3000), ( 22, 124),
( -1, -3000), ( 4, 10), ( 24, 8), ( -1, -23),
( 3, 54), ( 4, 10), ( 22, 128), ( 24, 130),
( 25, 24), ( 55, 133), ( 59, 129), ( -1, -147),
( 26, 134), ( -1, -3000), ( 22, 135), ( -1, -3000),
( 5, 136), ( -1, -3000), ( 4, 10), ( 24, 8),
( -1, -14), ( 21, 138), ( 22, 139), ( -1, -3000),
( -1, -52), ( -1, -45), ( -1, -46), ( 12, 140),
( -1, -3000), ( 11, 141), ( -1, -3000), ( 11, 142),
( -1, -3000), ( -1, -56), ( -1, -57), ( -1, -58),
( -1, -59), ( 12, 143), ( 34, 148), ( 41, 149),
( -1, -3000), ( 38, 150), ( 39, 151), ( 40, 152),
( -1, -63), ( 38, 153), ( 39, 154), ( 40, 155),
( -1, -67), ( 11, 156), ( -1, -3000), ( 11, 157),
( 12, 119), ( -1, -3000), ( -1, -94), ( 43, 159),
( 44, 160), ( 45, 161), ( 46, 162), ( 47, 163),
( 48, 164), ( 49, 165), ( 50, 166), ( 51, 167),
( -1, -114), ( -1, -42), ( -1, -43), ( 11, 169),
( -1, -3000), ( 30, 170), ( -1, -3000), ( 5, 171),
( -1, -3000), ( 3, 54), ( 4, 10), ( 22, 128),
( 24, 130), ( 25, 24), ( 27, 172), ( 55, 133),
( 59, 129), ( -1, -3000), ( -1, -146), ( -1, -148),
( -1, -149), ( 22, 174), ( 60, 175), ( -1, -3000),
( -1, -153), ( -1, -154), ( -1, -155), ( 3, 54),
( 4, 10), ( 22, 128), ( 24, 130), ( 25, 24),
( 55, 133), ( 59, 129), ( -1, -147), ( 22, 177),
( -1, -3000), ( -1, -160), ( -1, -6), ( 4, 10),
( 24, 8), ( -1, -20), ( -1, -50), ( -1, -51),
( 11, 178), ( -1, -3000), ( -1, -48), ( -1, -49),
( 38, 179), ( 39, 180), ( 40, 181), ( -1, -77),
( 38, 182), ( 39, 183), ( 40, 184), ( -1, -81),
( 38, 185), ( 39, 186), ( 40, 187), ( -1, -85),
( 35, 188), ( 37, 189), ( -1, -3000), ( 36, 191),
( -1, -73), ( 12, 143), ( 34, 148), ( -1, -3000),
( 36, 193), ( -1, -90), ( -1, -60), ( -1, -61),
( -1, -62), ( -1, -64), ( -1, -65), ( -1, -66),
( -1, -55), ( -1, -92), ( -1, -93), ( -1, -96),
( -1, -98), ( -1, -100), ( -1, -102), ( -1, -104),
( -1, -106), ( -1, -108), ( -1, -110), ( -1, -112),
( 34, 203), ( -1, -3000), ( -1, -44), ( 26, 204),
( -1, -3000), ( -1, -9), ( 11, 205), ( -1, -3000),
( -1, -145), ( -1, -150), ( -1, -152), ( 3, 54),
( 4, 10), ( 22, 128), ( 24, 130), ( 25, 24),
( 55, 133), ( 56, 207), ( 59, 129), ( -1, -3000),
( -1, -158), ( -1, -47), ( -1, -74), ( -1, -75),
( -1, -76), ( -1, -78), ( -1, -79), ( -1, -80),
( -1, -82), ( -1, -83), ( -1, -84), ( -1, -69),
( 12, 143), ( 34, 148), ( -1, -3000), ( 35, 209),
( 36, 210), ( -1, -3000), ( 12, 143), ( 34, 148),
( -1, -3000), ( 35, 212), ( 36, 213), ( -1, -3000),
( 12, 214), ( -1, -3000), ( 22, 218), ( 52, 215),
( 53, 216), ( 54, 217), ( -1, -3000), ( 22, 218),
( 52, 215), ( 53, 216), ( 54, 217), ( -1, -3000),
( 22, 218), ( 52, 215), ( 53, 216), ( 54, 217),
( -1, -3000), ( 22, 218), ( 52, 215), ( 53, 216),
( 54, 217), ( -1, -3000), ( 22, 218), ( 52, 215),
( 53, 216), ( 54, 217), ( -1, -3000), ( 22, 218),
( 52, 215), ( 53, 216), ( 54, 217), ( -1, -3000),
( 22, 218), ( 52, 215), ( 53, 216), ( 54, 217),
( -1, -3000), ( 22, 218), ( 52, 215), ( 53, 216),
( 54, 217), ( -1, -3000), ( 34, 227), ( -1, -3000),
( 12, 229), ( 43, 230), ( 44, 231), ( 45, 232),
( 46, 233), ( 47, 234), ( 48, 235), ( 49, 236),
( 50, 237), ( 51, 238), ( -1, -3000), ( 22, 239),
( -1, -3000), ( -1, -143), ( 60, 240), ( -1, -3000),
( -1, -156), ( -1, -72), ( -1, -68), ( 12, 143),
( 34, 148), ( -1, -3000), ( -1, -71), ( 39, 242),
( -1, -87), ( 12, 243), ( -1, -3000), ( -1, -89),
( -1, -136), ( -1, -137), ( 22, 244), ( -1, -3000),
( -1, -139), ( -1, -97), ( -1, -99), ( -1, -101),
( -1, -103), ( -1, -105), ( -1, -107), ( -1, -109),
( -1, -111), ( 12, 229), ( 43, 230), ( 44, 231),
( 45, 232), ( 46, 233), ( 47, 234), ( 48, 235),
( 49, 236), ( 50, 237), ( 51, 238), ( -1, -3000),
( 35, 246), ( 36, 247), ( -1, -3000), ( -1, -126),
( -1, -127), ( -1, -128), ( -1, -129), ( -1, -130),
( -1, -131), ( -1, -132), ( -1, -133), ( -1, -134),
( -1, -135), ( 5, 248), ( -1, -3000), ( -1, -151),
( -1, -70), ( -1, -86), ( -1, -88), ( -1, -138),
( 35, 249), ( 36, 247), ( -1, -3000), ( 22, 218),
( 52, 215), ( 53, 216), ( 54, 217), ( -1, -3000),
( 12, 251), ( 43, 252), ( 44, 253), ( 45, 254),
( 46, 255), ( 47, 256), ( 48, 257), ( 49, 258),
( 50, 259), ( 51, 260), ( -1, -3000), ( -1, -8),
( 22, 218), ( 52, 215), ( 53, 216), ( 54, 217),
( -1, -3000), ( -1, -115), ( -1, -116), ( -1, -117),
( -1, -118), ( -1, -119), ( -1, -120), ( -1, -121),
( -1, -122), ( -1, -123), ( -1, -124), ( -1, -125),
( -1, -113));
YY_Shift_Reduce_Offset : constant array (0 .. 261) of Integer :=
( 0, 1, 5, 7, 10, 11, 13, 17,
18, 19, 20, 22, 23, 24, 25, 27,
30, 32, 33, 34, 36, 38, 40, 41,
43, 44, 47, 50, 51, 53, 55, 65,
67, 69, 72, 74, 76, 78, 79, 89,
100, 101, 102, 103, 104, 105, 106, 107,
108, 118, 128, 131, 133, 135, 138, 141,
142, 146, 147, 148, 150, 152, 153, 163,
165, 166, 167, 169, 180, 184, 186, 187,
188, 190, 192, 194, 196, 199, 200, 201,
202, 204, 205, 207, 208, 209, 210, 212,
214, 217, 221, 225, 227, 229, 232, 234,
236, 239, 247, 249, 251, 253, 256, 259,
260, 261, 262, 264, 266, 268, 269, 270,
271, 272, 276, 280, 284, 286, 289, 290,
300, 301, 302, 304, 306, 308, 317, 318,
319, 320, 323, 324, 325, 326, 334, 336,
337, 338, 341, 342, 343, 345, 346, 347,
351, 355, 359, 362, 364, 367, 369, 370,
371, 372, 373, 374, 375, 376, 377, 378,
379, 380, 381, 382, 383, 384, 385, 386,
387, 389, 390, 392, 393, 395, 396, 397,
398, 407, 408, 409, 410, 411, 412, 413,
414, 415, 416, 417, 418, 419, 422, 425,
428, 431, 433, 438, 443, 448, 453, 458,
463, 468, 473, 475, 486, 488, 489, 491,
492, 493, 494, 497, 498, 500, 502, 503,
504, 505, 507, 508, 509, 510, 511, 512,
513, 514, 515, 516, 527, 530, 531, 532,
533, 534, 535, 536, 537, 538, 539, 540,
542, 543, 544, 545, 546, 547, 550, 555,
566, 567, 572, 573, 574, 575, 576, 577,
578, 579, 580, 581, 582, 583);
end XML.SAX.Simple_Readers.Parser.Tables;
| 61.502646 | 79 | 0.302908 |
39037a6d50c63565fc0eee6b41059aac0f03e843 | 306,467 | ads | Ada | src/sqlite/sqlite3_h.ads | Letractively/ada-ado | f0863c6975ae1a2c5349daee1e98a04fe11ba11e | [
"Apache-2.0"
] | null | null | null | src/sqlite/sqlite3_h.ads | Letractively/ada-ado | f0863c6975ae1a2c5349daee1e98a04fe11ba11e | [
"Apache-2.0"
] | null | null | null | src/sqlite/sqlite3_h.ads | Letractively/ada-ado | f0863c6975ae1a2c5349daee1e98a04fe11ba11e | [
"Apache-2.0"
] | null | null | null | with Interfaces.C; use Interfaces.C;
with Interfaces.C.Strings;
-- with Interfaces.C.Extensions;
with System;
package Sqlite3_H is
pragma Preelaborate;
pragma Warnings (Off);
pragma Warnings (Off, "*style*");
-- unsupported macro: SQLITE_EXTERN extern
SQLITE_VERSION : aliased constant String := "3.6.22" & ASCII.NUL; -- /usr/include/sqlite3.h:110
SQLITE_VERSION_NUMBER : constant := 3006022; -- /usr/include/sqlite3.h:111
SQLITE_SOURCE_ID : aliased constant String := "2010-01-05 15:30:36 28d0d7710761114a44a1a3a425a6883c661f06e7" & ASCII.NUL; -- /usr/include/sqlite3.h:112
SQLITE_OK : constant := 0; -- /usr/include/sqlite3.h:353
SQLITE_ERROR : constant := 1; -- /usr/include/sqlite3.h:355
SQLITE_INTERNAL : constant := 2; -- /usr/include/sqlite3.h:356
SQLITE_PERM : constant := 3; -- /usr/include/sqlite3.h:357
SQLITE_ABORT : constant := 4; -- /usr/include/sqlite3.h:358
SQLITE_BUSY : constant := 5; -- /usr/include/sqlite3.h:359
SQLITE_LOCKED : constant := 6; -- /usr/include/sqlite3.h:360
SQLITE_NOMEM : constant := 7; -- /usr/include/sqlite3.h:361
SQLITE_READONLY : constant := 8; -- /usr/include/sqlite3.h:362
SQLITE_INTERRUPT : constant := 9; -- /usr/include/sqlite3.h:363
SQLITE_IOERR : constant := 10; -- /usr/include/sqlite3.h:364
SQLITE_CORRUPT : constant := 11; -- /usr/include/sqlite3.h:365
SQLITE_NOTFOUND : constant := 12; -- /usr/include/sqlite3.h:366
SQLITE_FULL : constant := 13; -- /usr/include/sqlite3.h:367
SQLITE_CANTOPEN : constant := 14; -- /usr/include/sqlite3.h:368
SQLITE_PROTOCOL : constant := 15; -- /usr/include/sqlite3.h:369
SQLITE_EMPTY : constant := 16; -- /usr/include/sqlite3.h:370
SQLITE_SCHEMA : constant := 17; -- /usr/include/sqlite3.h:371
SQLITE_TOOBIG : constant := 18; -- /usr/include/sqlite3.h:372
SQLITE_CONSTRAINT : constant := 19; -- /usr/include/sqlite3.h:373
SQLITE_MISMATCH : constant := 20; -- /usr/include/sqlite3.h:374
SQLITE_MISUSE : constant := 21; -- /usr/include/sqlite3.h:375
SQLITE_NOLFS : constant := 22; -- /usr/include/sqlite3.h:376
SQLITE_AUTH : constant := 23; -- /usr/include/sqlite3.h:377
SQLITE_FORMAT : constant := 24; -- /usr/include/sqlite3.h:378
SQLITE_RANGE : constant := 25; -- /usr/include/sqlite3.h:379
SQLITE_NOTADB : constant := 26; -- /usr/include/sqlite3.h:380
SQLITE_ROW : constant := 100; -- /usr/include/sqlite3.h:381
SQLITE_DONE : constant := 101; -- /usr/include/sqlite3.h:382
-- unsupported macro: SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8))
-- unsupported macro: SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8))
-- unsupported macro: SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8))
-- unsupported macro: SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8))
-- unsupported macro: SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8))
-- unsupported macro: SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8))
-- unsupported macro: SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8))
-- unsupported macro: SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8))
-- unsupported macro: SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8))
-- unsupported macro: SQLITE_IOERR_DELETE (SQLITE_IOERR | (10<<8))
-- unsupported macro: SQLITE_IOERR_BLOCKED (SQLITE_IOERR | (11<<8))
-- unsupported macro: SQLITE_IOERR_NOMEM (SQLITE_IOERR | (12<<8))
-- unsupported macro: SQLITE_IOERR_ACCESS (SQLITE_IOERR | (13<<8))
-- unsupported macro: SQLITE_IOERR_CHECKRESERVEDLOCK (SQLITE_IOERR | (14<<8))
-- unsupported macro: SQLITE_IOERR_LOCK (SQLITE_IOERR | (15<<8))
-- unsupported macro: SQLITE_IOERR_CLOSE (SQLITE_IOERR | (16<<8))
-- unsupported macro: SQLITE_IOERR_DIR_CLOSE (SQLITE_IOERR | (17<<8))
-- unsupported macro: SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8) )
SQLITE_OPEN_READONLY : constant := 16#00000001#; -- /usr/include/sqlite3.h:435
SQLITE_OPEN_READWRITE : constant := 16#00000002#; -- /usr/include/sqlite3.h:436
SQLITE_OPEN_CREATE : constant := 16#00000004#; -- /usr/include/sqlite3.h:437
SQLITE_OPEN_DELETEONCLOSE : constant := 16#00000008#; -- /usr/include/sqlite3.h:438
SQLITE_OPEN_EXCLUSIVE : constant := 16#00000010#; -- /usr/include/sqlite3.h:439
SQLITE_OPEN_MAIN_DB : constant := 16#00000100#; -- /usr/include/sqlite3.h:440
SQLITE_OPEN_TEMP_DB : constant := 16#00000200#; -- /usr/include/sqlite3.h:441
SQLITE_OPEN_TRANSIENT_DB : constant := 16#00000400#; -- /usr/include/sqlite3.h:442
SQLITE_OPEN_MAIN_JOURNAL : constant := 16#00000800#; -- /usr/include/sqlite3.h:443
SQLITE_OPEN_TEMP_JOURNAL : constant := 16#00001000#; -- /usr/include/sqlite3.h:444
SQLITE_OPEN_SUBJOURNAL : constant := 16#00002000#; -- /usr/include/sqlite3.h:445
SQLITE_OPEN_MASTER_JOURNAL : constant := 16#00004000#; -- /usr/include/sqlite3.h:446
SQLITE_OPEN_NOMUTEX : constant := 16#00008000#; -- /usr/include/sqlite3.h:447
SQLITE_OPEN_FULLMUTEX : constant := 16#00010000#; -- /usr/include/sqlite3.h:448
SQLITE_OPEN_SHAREDCACHE : constant := 16#00020000#; -- /usr/include/sqlite3.h:449
SQLITE_OPEN_PRIVATECACHE : constant := 16#00040000#; -- /usr/include/sqlite3.h:450
SQLITE_IOCAP_ATOMIC : constant := 16#00000001#; -- /usr/include/sqlite3.h:472
SQLITE_IOCAP_ATOMIC512 : constant := 16#00000002#; -- /usr/include/sqlite3.h:473
SQLITE_IOCAP_ATOMIC1K : constant := 16#00000004#; -- /usr/include/sqlite3.h:474
SQLITE_IOCAP_ATOMIC2K : constant := 16#00000008#; -- /usr/include/sqlite3.h:475
SQLITE_IOCAP_ATOMIC4K : constant := 16#00000010#; -- /usr/include/sqlite3.h:476
SQLITE_IOCAP_ATOMIC8K : constant := 16#00000020#; -- /usr/include/sqlite3.h:477
SQLITE_IOCAP_ATOMIC16K : constant := 16#00000040#; -- /usr/include/sqlite3.h:478
SQLITE_IOCAP_ATOMIC32K : constant := 16#00000080#; -- /usr/include/sqlite3.h:479
SQLITE_IOCAP_ATOMIC64K : constant := 16#00000100#; -- /usr/include/sqlite3.h:480
SQLITE_IOCAP_SAFE_APPEND : constant := 16#00000200#; -- /usr/include/sqlite3.h:481
SQLITE_IOCAP_SEQUENTIAL : constant := 16#00000400#; -- /usr/include/sqlite3.h:482
SQLITE_LOCK_NONE : constant := 0; -- /usr/include/sqlite3.h:491
SQLITE_LOCK_SHARED : constant := 1; -- /usr/include/sqlite3.h:492
SQLITE_LOCK_RESERVED : constant := 2; -- /usr/include/sqlite3.h:493
SQLITE_LOCK_PENDING : constant := 3; -- /usr/include/sqlite3.h:494
SQLITE_LOCK_EXCLUSIVE : constant := 4; -- /usr/include/sqlite3.h:495
SQLITE_SYNC_NORMAL : constant := 16#00002#; -- /usr/include/sqlite3.h:511
SQLITE_SYNC_FULL : constant := 16#00003#; -- /usr/include/sqlite3.h:512
SQLITE_SYNC_DATAONLY : constant := 16#00010#; -- /usr/include/sqlite3.h:513
SQLITE_FCNTL_LOCKSTATE : constant := 1; -- /usr/include/sqlite3.h:651
SQLITE_GET_LOCKPROXYFILE : constant := 2; -- /usr/include/sqlite3.h:652
SQLITE_SET_LOCKPROXYFILE : constant := 3; -- /usr/include/sqlite3.h:653
SQLITE_LAST_ERRNO : constant := 4; -- /usr/include/sqlite3.h:654
SQLITE_ACCESS_EXISTS : constant := 0; -- /usr/include/sqlite3.h:835
SQLITE_ACCESS_READWRITE : constant := 1; -- /usr/include/sqlite3.h:836
SQLITE_ACCESS_READ : constant := 2; -- /usr/include/sqlite3.h:837
SQLITE_CONFIG_SINGLETHREAD : constant := 1; -- /usr/include/sqlite3.h:1247
SQLITE_CONFIG_MULTITHREAD : constant := 2; -- /usr/include/sqlite3.h:1248
SQLITE_CONFIG_SERIALIZED : constant := 3; -- /usr/include/sqlite3.h:1249
SQLITE_CONFIG_MALLOC : constant := 4; -- /usr/include/sqlite3.h:1250
SQLITE_CONFIG_GETMALLOC : constant := 5; -- /usr/include/sqlite3.h:1251
SQLITE_CONFIG_SCRATCH : constant := 6; -- /usr/include/sqlite3.h:1252
SQLITE_CONFIG_PAGECACHE : constant := 7; -- /usr/include/sqlite3.h:1253
SQLITE_CONFIG_HEAP : constant := 8; -- /usr/include/sqlite3.h:1254
SQLITE_CONFIG_MEMSTATUS : constant := 9; -- /usr/include/sqlite3.h:1255
SQLITE_CONFIG_MUTEX : constant := 10; -- /usr/include/sqlite3.h:1256
SQLITE_CONFIG_GETMUTEX : constant := 11; -- /usr/include/sqlite3.h:1257
SQLITE_CONFIG_LOOKASIDE : constant := 13; -- /usr/include/sqlite3.h:1259
SQLITE_CONFIG_PCACHE : constant := 14; -- /usr/include/sqlite3.h:1260
SQLITE_CONFIG_GETPCACHE : constant := 15; -- /usr/include/sqlite3.h:1261
SQLITE_DBCONFIG_LOOKASIDE : constant := 1001; -- /usr/include/sqlite3.h:1296
SQLITE_DENY : constant := 1; -- /usr/include/sqlite3.h:1982
SQLITE_IGNORE : constant := 2; -- /usr/include/sqlite3.h:1983
SQLITE_CREATE_INDEX : constant := 1; -- /usr/include/sqlite3.h:2005
SQLITE_CREATE_TABLE : constant := 2; -- /usr/include/sqlite3.h:2006
SQLITE_CREATE_TEMP_INDEX : constant := 3; -- /usr/include/sqlite3.h:2007
SQLITE_CREATE_TEMP_TABLE : constant := 4; -- /usr/include/sqlite3.h:2008
SQLITE_CREATE_TEMP_TRIGGER : constant := 5; -- /usr/include/sqlite3.h:2009
SQLITE_CREATE_TEMP_VIEW : constant := 6; -- /usr/include/sqlite3.h:2010
SQLITE_CREATE_TRIGGER : constant := 7; -- /usr/include/sqlite3.h:2011
SQLITE_CREATE_VIEW : constant := 8; -- /usr/include/sqlite3.h:2012
SQLITE_DELETE : constant := 9; -- /usr/include/sqlite3.h:2013
SQLITE_DROP_INDEX : constant := 10; -- /usr/include/sqlite3.h:2014
SQLITE_DROP_TABLE : constant := 11; -- /usr/include/sqlite3.h:2015
SQLITE_DROP_TEMP_INDEX : constant := 12; -- /usr/include/sqlite3.h:2016
SQLITE_DROP_TEMP_TABLE : constant := 13; -- /usr/include/sqlite3.h:2017
SQLITE_DROP_TEMP_TRIGGER : constant := 14; -- /usr/include/sqlite3.h:2018
SQLITE_DROP_TEMP_VIEW : constant := 15; -- /usr/include/sqlite3.h:2019
SQLITE_DROP_TRIGGER : constant := 16; -- /usr/include/sqlite3.h:2020
SQLITE_DROP_VIEW : constant := 17; -- /usr/include/sqlite3.h:2021
SQLITE_INSERT : constant := 18; -- /usr/include/sqlite3.h:2022
SQLITE_PRAGMA : constant := 19; -- /usr/include/sqlite3.h:2023
SQLITE_READ : constant := 20; -- /usr/include/sqlite3.h:2024
SQLITE_SELECT : constant := 21; -- /usr/include/sqlite3.h:2025
SQLITE_TRANSACTION : constant := 22; -- /usr/include/sqlite3.h:2026
SQLITE_UPDATE : constant := 23; -- /usr/include/sqlite3.h:2027
SQLITE_ATTACH : constant := 24; -- /usr/include/sqlite3.h:2028
SQLITE_DETACH : constant := 25; -- /usr/include/sqlite3.h:2029
SQLITE_ALTER_TABLE : constant := 26; -- /usr/include/sqlite3.h:2030
SQLITE_REINDEX : constant := 27; -- /usr/include/sqlite3.h:2031
SQLITE_ANALYZE : constant := 28; -- /usr/include/sqlite3.h:2032
SQLITE_CREATE_VTABLE : constant := 29; -- /usr/include/sqlite3.h:2033
SQLITE_DROP_VTABLE : constant := 30; -- /usr/include/sqlite3.h:2034
SQLITE_FUNCTION : constant := 31; -- /usr/include/sqlite3.h:2035
SQLITE_SAVEPOINT : constant := 32; -- /usr/include/sqlite3.h:2036
SQLITE_COPY : constant := 0; -- /usr/include/sqlite3.h:2037
SQLITE_LIMIT_LENGTH : constant := 0; -- /usr/include/sqlite3.h:2337
SQLITE_LIMIT_SQL_LENGTH : constant := 1; -- /usr/include/sqlite3.h:2338
SQLITE_LIMIT_COLUMN : constant := 2; -- /usr/include/sqlite3.h:2339
SQLITE_LIMIT_EXPR_DEPTH : constant := 3; -- /usr/include/sqlite3.h:2340
SQLITE_LIMIT_COMPOUND_SELECT : constant := 4; -- /usr/include/sqlite3.h:2341
SQLITE_LIMIT_VDBE_OP : constant := 5; -- /usr/include/sqlite3.h:2342
SQLITE_LIMIT_FUNCTION_ARG : constant := 6; -- /usr/include/sqlite3.h:2343
SQLITE_LIMIT_ATTACHED : constant := 7; -- /usr/include/sqlite3.h:2344
SQLITE_LIMIT_LIKE_PATTERN_LENGTH : constant := 8; -- /usr/include/sqlite3.h:2345
SQLITE_LIMIT_VARIABLE_NUMBER : constant := 9; -- /usr/include/sqlite3.h:2346
SQLITE_LIMIT_TRIGGER_DEPTH : constant := 10; -- /usr/include/sqlite3.h:2347
SQLITE_INTEGER : constant := 1; -- /usr/include/sqlite3.h:2895
SQLITE_FLOAT : constant := 2; -- /usr/include/sqlite3.h:2896
SQLITE_BLOB : constant := 4; -- /usr/include/sqlite3.h:2897
SQLITE_NULL : constant := 5; -- /usr/include/sqlite3.h:2898
SQLITE_TEXT : constant := 3; -- /usr/include/sqlite3.h:2902
SQLITE3_TEXT : constant := 3; -- /usr/include/sqlite3.h:2904
SQLITE_UTF8 : constant := 1; -- /usr/include/sqlite3.h:3222
SQLITE_UTF16LE : constant := 2; -- /usr/include/sqlite3.h:3223
SQLITE_UTF16BE : constant := 3; -- /usr/include/sqlite3.h:3224
SQLITE_UTF16 : constant := 4; -- /usr/include/sqlite3.h:3225
SQLITE_ANY : constant := 5; -- /usr/include/sqlite3.h:3226
SQLITE_UTF16_ALIGNED : constant := 8; -- /usr/include/sqlite3.h:3227
-- unsupported macro: SQLITE_STATIC ((sqlite3_destructor_type)0)
-- unsupported macro: SQLITE_TRANSIENT ((sqlite3_destructor_type)-1)
SQLITE_INDEX_CONSTRAINT_EQ : constant := 2; -- /usr/include/sqlite3.h:4255
SQLITE_INDEX_CONSTRAINT_GT : constant := 4; -- /usr/include/sqlite3.h:4256
SQLITE_INDEX_CONSTRAINT_LE : constant := 8; -- /usr/include/sqlite3.h:4257
SQLITE_INDEX_CONSTRAINT_LT : constant := 16; -- /usr/include/sqlite3.h:4258
SQLITE_INDEX_CONSTRAINT_GE : constant := 32; -- /usr/include/sqlite3.h:4259
SQLITE_INDEX_CONSTRAINT_MATCH : constant := 64; -- /usr/include/sqlite3.h:4260
SQLITE_MUTEX_FAST : constant := 0; -- /usr/include/sqlite3.h:4852
SQLITE_MUTEX_RECURSIVE : constant := 1; -- /usr/include/sqlite3.h:4853
SQLITE_MUTEX_STATIC_MASTER : constant := 2; -- /usr/include/sqlite3.h:4854
SQLITE_MUTEX_STATIC_MEM : constant := 3; -- /usr/include/sqlite3.h:4855
SQLITE_MUTEX_STATIC_MEM2 : constant := 4; -- /usr/include/sqlite3.h:4856
SQLITE_MUTEX_STATIC_OPEN : constant := 4; -- /usr/include/sqlite3.h:4857
SQLITE_MUTEX_STATIC_PRNG : constant := 5; -- /usr/include/sqlite3.h:4858
SQLITE_MUTEX_STATIC_LRU : constant := 6; -- /usr/include/sqlite3.h:4859
SQLITE_MUTEX_STATIC_LRU2 : constant := 7; -- /usr/include/sqlite3.h:4860
SQLITE_TESTCTRL_FIRST : constant := 5; -- /usr/include/sqlite3.h:4931
SQLITE_TESTCTRL_PRNG_SAVE : constant := 5; -- /usr/include/sqlite3.h:4932
SQLITE_TESTCTRL_PRNG_RESTORE : constant := 6; -- /usr/include/sqlite3.h:4933
SQLITE_TESTCTRL_PRNG_RESET : constant := 7; -- /usr/include/sqlite3.h:4934
SQLITE_TESTCTRL_BITVEC_TEST : constant := 8; -- /usr/include/sqlite3.h:4935
SQLITE_TESTCTRL_FAULT_INSTALL : constant := 9; -- /usr/include/sqlite3.h:4936
SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS : constant := 10; -- /usr/include/sqlite3.h:4937
SQLITE_TESTCTRL_PENDING_BYTE : constant := 11; -- /usr/include/sqlite3.h:4938
SQLITE_TESTCTRL_ASSERT : constant := 12; -- /usr/include/sqlite3.h:4939
SQLITE_TESTCTRL_ALWAYS : constant := 13; -- /usr/include/sqlite3.h:4940
SQLITE_TESTCTRL_RESERVE : constant := 14; -- /usr/include/sqlite3.h:4941
SQLITE_TESTCTRL_OPTIMIZATIONS : constant := 15; -- /usr/include/sqlite3.h:4942
SQLITE_TESTCTRL_ISKEYWORD : constant := 16; -- /usr/include/sqlite3.h:4943
SQLITE_TESTCTRL_LAST : constant := 16; -- /usr/include/sqlite3.h:4944
SQLITE_STATUS_MEMORY_USED : constant := 0; -- /usr/include/sqlite3.h:5056
SQLITE_STATUS_PAGECACHE_USED : constant := 1; -- /usr/include/sqlite3.h:5057
SQLITE_STATUS_PAGECACHE_OVERFLOW : constant := 2; -- /usr/include/sqlite3.h:5058
SQLITE_STATUS_SCRATCH_USED : constant := 3; -- /usr/include/sqlite3.h:5059
SQLITE_STATUS_SCRATCH_OVERFLOW : constant := 4; -- /usr/include/sqlite3.h:5060
SQLITE_STATUS_MALLOC_SIZE : constant := 5; -- /usr/include/sqlite3.h:5061
SQLITE_STATUS_PARSER_STACK : constant := 6; -- /usr/include/sqlite3.h:5062
SQLITE_STATUS_PAGECACHE_SIZE : constant := 7; -- /usr/include/sqlite3.h:5063
SQLITE_STATUS_SCRATCH_SIZE : constant := 8; -- /usr/include/sqlite3.h:5064
SQLITE_DBSTATUS_LOOKASIDE_USED : constant := 0; -- /usr/include/sqlite3.h:5105
SQLITE_STMTSTATUS_FULLSCAN_STEP : constant := 1; -- /usr/include/sqlite3.h:5156
SQLITE_STMTSTATUS_SORT : constant := 2; -- /usr/include/sqlite3.h:5157
--** 2001 September 15
--**
--** The author disclaims copyright to this source code. In place of
--** a legal notice, here is a blessing:
--**
--** May you do good and not evil.
--** May you find forgiveness for yourself and forgive others.
--** May you share freely, never taking more than you give.
--**
--*************************************************************************
--** This header file defines the interface that the SQLite library
--** presents to client programs. If a C-function, structure, datatype,
--** or constant definition does not appear in this file, then it is
--** not a published API of SQLite, is subject to change without
--** notice, and should not be referenced by programs that use SQLite.
--**
--** Some of the definitions that are in this file are marked as
--** "experimental". Experimental interfaces are normally new
--** features recently added to SQLite. We do not anticipate changes
--** to experimental interfaces but reserve the right to make minor changes
--** if experience from use "in the wild" suggest such changes are prudent.
--**
--** The official C-language API documentation for SQLite is derived
--** from comments in this file. This file is the authoritative source
--** on how SQLite interfaces are suppose to operate.
--**
--** The name of this file under configuration management is "sqlite.h.in".
--** The makefile makes some minor changes to this file (such as inserting
--** the version number) and changes its name to "sqlite3.h" as
--** part of the build process.
--
-- Needed for the definition of va_list
--** Make sure we can call this stuff from C++.
--
--** Add the ability to override 'extern'
--
--** These no-op macros are used in front of interfaces to mark those
--** interfaces as either deprecated or experimental. New applications
--** should not use deprecated interfaces - they are support for backwards
--** compatibility only. Application writers should be aware that
--** experimental interfaces are subject to change in point releases.
--**
--** These macros used to resolve to various kinds of compiler magic that
--** would generate warning messages when they were used. But that
--** compiler magic ended up generating such a flurry of bug reports
--** that we have taken it all out and gone back to using simple
--** noop macros.
--
--** Ensure these symbols were not defined by some previous header file.
--
--** CAPI3REF: Compile-Time Library Version Numbers
--**
--** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
--** evaluates to a string literal that is the SQLite version in the
--** format "X.Y.Z" where X is the major version number (always 3 for
--** SQLite3) and Y is the minor version number and Z is the release number.)^
--** ^(The [SQLITE_VERSION_NUMBER] C preprocessor macro resolves to an integer
--** with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same
--** numbers used in [SQLITE_VERSION].)^
--** The SQLITE_VERSION_NUMBER for any given release of SQLite will also
--** be larger than the release from which it is derived. Either Y will
--** be held constant and Z will be incremented or else Y will be incremented
--** and Z will be reset to zero.
--**
--** Since version 3.6.18, SQLite source code has been stored in the
--** <a href="http://www.fossil-scm.org/">Fossil configuration management
--** system</a>. ^The SQLITE_SOURCE_ID macro evalutes to
--** a string which identifies a particular check-in of SQLite
--** within its configuration management system. ^The SQLITE_SOURCE_ID
--** string contains the date and time of the check-in (UTC) and an SHA1
--** hash of the entire source tree.
--**
--** See also: [sqlite3_libversion()],
--** [sqlite3_libversion_number()], [sqlite3_sourceid()],
--** [sqlite_version()] and [sqlite_source_id()].
--
--** CAPI3REF: Run-Time Library Version Numbers
--** KEYWORDS: sqlite3_version
--**
--** These interfaces provide the same information as the [SQLITE_VERSION],
--** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros
--** but are associated with the library instead of the header file. ^(Cautious
--** programmers might include assert() statements in their application to
--** verify that values returned by these interfaces match the macros in
--** the header, and thus insure that the application is
--** compiled with matching library and header files.
--**
--** <blockquote><pre>
--** assert( sqlite3_libversion_number()==SQLITE_VERSION_NUMBER );
--** assert( strcmp(sqlite3_sourceid(),SQLITE_SOURCE_ID)==0 );
--** assert( strcmp(sqlite3_libversion(),SQLITE_VERSION)==0 );
--** </pre></blockquote>)^
--**
--** ^The sqlite3_version[] string constant contains the text of [SQLITE_VERSION]
--** macro. ^The sqlite3_libversion() function returns a pointer to the
--** to the sqlite3_version[] string constant. The sqlite3_libversion()
--** function is provided for use in DLLs since DLL users usually do not have
--** direct access to string constants within the DLL. ^The
--** sqlite3_libversion_number() function returns an integer equal to
--** [SQLITE_VERSION_NUMBER]. ^The sqlite3_sourceid() function a pointer
--** to a string constant whose value is the same as the [SQLITE_SOURCE_ID]
--** C preprocessor macro.
--**
--** See also: [sqlite_version()] and [sqlite_source_id()].
--
sqlite3_version : aliased array (0 .. int'Last) of aliased char; -- /usr/include/sqlite3.h:144:37
pragma Import (C, sqlite3_version, "sqlite3_version");
function sqlite3_libversion return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:145:24
pragma Import (C, sqlite3_libversion, "sqlite3_libversion");
function sqlite3_sourceid return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:146:24
pragma Import (C, sqlite3_sourceid, "sqlite3_sourceid");
function sqlite3_libversion_number return int; -- /usr/include/sqlite3.h:147:16
pragma Import (C, sqlite3_libversion_number, "sqlite3_libversion_number");
--** CAPI3REF: Test To See If The Library Is Threadsafe
--**
--** ^The sqlite3_threadsafe() function returns zero if and only if
--** SQLite was compiled mutexing code omitted due to the
--** [SQLITE_THREADSAFE] compile-time option being set to 0.
--**
--** SQLite can be compiled with or without mutexes. When
--** the [SQLITE_THREADSAFE] C preprocessor macro is 1 or 2, mutexes
--** are enabled and SQLite is threadsafe. When the
--** [SQLITE_THREADSAFE] macro is 0,
--** the mutexes are omitted. Without the mutexes, it is not safe
--** to use SQLite concurrently from more than one thread.
--**
--** Enabling mutexes incurs a measurable performance penalty.
--** So if speed is of utmost importance, it makes sense to disable
--** the mutexes. But for maximum safety, mutexes should be enabled.
--** ^The default behavior is for mutexes to be enabled.
--**
--** This interface can be used by an application to make sure that the
--** version of SQLite that it is linking against was compiled with
--** the desired setting of the [SQLITE_THREADSAFE] macro.
--**
--** This interface only reports on the compile-time mutex setting
--** of the [SQLITE_THREADSAFE] flag. If SQLite is compiled with
--** SQLITE_THREADSAFE=1 or =2 then mutexes are enabled by default but
--** can be fully or partially disabled using a call to [sqlite3_config()]
--** with the verbs [SQLITE_CONFIG_SINGLETHREAD], [SQLITE_CONFIG_MULTITHREAD],
--** or [SQLITE_CONFIG_MUTEX]. ^(The return value of the
--** sqlite3_threadsafe() function shows only the compile-time setting of
--** thread safety, not any run-time changes to that setting made by
--** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
--** is unchanged by calls to sqlite3_config().)^
--**
--** See the [threading mode] documentation for additional information.
--
function sqlite3_threadsafe return int; -- /usr/include/sqlite3.h:185:16
pragma Import (C, sqlite3_threadsafe, "sqlite3_threadsafe");
--** CAPI3REF: Database Connection Handle
--** KEYWORDS: {database connection} {database connections}
--**
--** Each open SQLite database is represented by a pointer to an instance of
--** the opaque structure named "sqlite3". It is useful to think of an sqlite3
--** pointer as an object. The [sqlite3_open()], [sqlite3_open16()], and
--** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
--** is its destructor. There are many other interfaces (such as
--** [sqlite3_prepare_v2()], [sqlite3_create_function()], and
--** [sqlite3_busy_timeout()] to name but three) that are methods on an
--** sqlite3 object.
--
-- skipped empty struct sqlite3
--** CAPI3REF: 64-Bit Integer Types
--** KEYWORDS: sqlite_int64 sqlite_uint64
--**
--** Because there is no cross-platform way to specify 64-bit integer types
--** SQLite includes typedefs for 64-bit signed and unsigned integers.
--**
--** The sqlite3_int64 and sqlite3_uint64 are the preferred type definitions.
--** The sqlite_int64 and sqlite_uint64 types are supported for backwards
--** compatibility only.
--**
--** ^The sqlite3_int64 and sqlite_int64 types can store integer values
--** between -9223372036854775808 and +9223372036854775807 inclusive. ^The
--** sqlite3_uint64 and sqlite_uint64 types can store integer values
--** between 0 and +18446744073709551615 inclusive.
--
subtype sqlite_int64 is Long_Long_Integer; -- /usr/include/sqlite3.h:225:25
-- subtype sqlite_uint64 is Extensions.unsigned_long_long; -- /usr/include/sqlite3.h:226:34
subtype sqlite_uint64 is Long_Long_Integer;
subtype sqlite3_int64 is sqlite_int64; -- /usr/include/sqlite3.h:228:22
subtype sqlite3_uint64 is sqlite_uint64; -- /usr/include/sqlite3.h:229:23
--** If compiling for a processor that lacks floating point support,
--** substitute integer for floating-point.
--
--** CAPI3REF: Closing A Database Connection
--**
--** ^The sqlite3_close() routine is the destructor for the [sqlite3] object.
--** ^Calls to sqlite3_close() return SQLITE_OK if the [sqlite3] object is
--** successfullly destroyed and all associated resources are deallocated.
--**
--** Applications must [sqlite3_finalize | finalize] all [prepared statements]
--** and [sqlite3_blob_close | close] all [BLOB handles] associated with
--** the [sqlite3] object prior to attempting to close the object. ^If
--** sqlite3_close() is called on a [database connection] that still has
--** outstanding [prepared statements] or [BLOB handles], then it returns
--** SQLITE_BUSY.
--**
--** ^If [sqlite3_close()] is invoked while a transaction is open,
--** the transaction is automatically rolled back.
--**
--** The C parameter to [sqlite3_close(C)] must be either a NULL
--** pointer or an [sqlite3] object pointer obtained
--** from [sqlite3_open()], [sqlite3_open16()], or
--** [sqlite3_open_v2()], and not previously closed.
--** ^Calling sqlite3_close() with a NULL pointer argument is a
--** harmless no-op.
--
function sqlite3_close (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:263:16
pragma Import (C, sqlite3_close, "sqlite3_close");
--** The type for a callback function.
--** This is legacy and deprecated. It is included for historical
--** compatibility and is not documented.
--
type sqlite3_callback is access function
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address;
arg4 : System.Address) return int; -- /usr/include/sqlite3.h:270:15
--** CAPI3REF: One-Step Query Execution Interface
--**
--** The sqlite3_exec() interface is a convenience wrapper around
--** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
--** that allows an application to run multiple statements of SQL
--** without having to use a lot of C code.
--**
--** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded,
--** semicolon-separate SQL statements passed into its 2nd argument,
--** in the context of the [database connection] passed in as its 1st
--** argument. ^If the callback function of the 3rd argument to
--** sqlite3_exec() is not NULL, then it is invoked for each result row
--** coming out of the evaluated SQL statements. ^The 4th argument to
--** to sqlite3_exec() is relayed through to the 1st argument of each
--** callback invocation. ^If the callback pointer to sqlite3_exec()
--** is NULL, then no callback is ever invoked and result rows are
--** ignored.
--**
--** ^If an error occurs while evaluating the SQL statements passed into
--** sqlite3_exec(), then execution of the current statement stops and
--** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec()
--** is not NULL then any error message is written into memory obtained
--** from [sqlite3_malloc()] and passed back through the 5th parameter.
--** To avoid memory leaks, the application should invoke [sqlite3_free()]
--** on error message strings returned through the 5th parameter of
--** of sqlite3_exec() after the error message string is no longer needed.
--** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors
--** occur, then sqlite3_exec() sets the pointer in its 5th parameter to
--** NULL before returning.
--**
--** ^If an sqlite3_exec() callback returns non-zero, the sqlite3_exec()
--** routine returns SQLITE_ABORT without invoking the callback again and
--** without running any subsequent SQL statements.
--**
--** ^The 2nd argument to the sqlite3_exec() callback function is the
--** number of columns in the result. ^The 3rd argument to the sqlite3_exec()
--** callback is an array of pointers to strings obtained as if from
--** [sqlite3_column_text()], one for each column. ^If an element of a
--** result row is NULL then the corresponding string pointer for the
--** sqlite3_exec() callback is a NULL pointer. ^The 4th argument to the
--** sqlite3_exec() callback is an array of pointers to strings where each
--** entry represents the name of corresponding result column as obtained
--** from [sqlite3_column_name()].
--**
--** ^If the 2nd parameter to sqlite3_exec() is a NULL pointer, a pointer
--** to an empty string, or a pointer that contains only whitespace and/or
--** SQL comments, then no SQL statements are evaluated and the database
--** is not changed.
--**
--** Restrictions:
--**
--** <ul>
--** <li> The application must insure that the 1st parameter to sqlite3_exec()
--** is a valid and open [database connection].
--** <li> The application must not close [database connection] specified by
--** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running.
--** <li> The application must not modify the SQL statement text passed into
--** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running.
--** </ul>
--
function sqlite3_exec
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : access function
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address;
arg4 : System.Address) return int;
arg4 : System.Address;
arg5 : System.Address) return int; -- /usr/include/sqlite3.h:333:16
pragma Import (C, sqlite3_exec, "sqlite3_exec");
-- An open database
-- SQL to be evaluated
-- Callback function
-- 1st argument to callback
-- Error msg written here
--** CAPI3REF: Result Codes
--** KEYWORDS: SQLITE_OK {error code} {error codes}
--** KEYWORDS: {result code} {result codes}
--**
--** Many SQLite functions return an integer result code from the set shown
--** here in order to indicates success or failure.
--**
--** New error codes may be added in future versions of SQLite.
--**
--** See also: [SQLITE_IOERR_READ | extended result codes]
--
-- beginning-of-error-codes
-- end-of-error-codes
--** CAPI3REF: Extended Result Codes
--** KEYWORDS: {extended error code} {extended error codes}
--** KEYWORDS: {extended result code} {extended result codes}
--**
--** In its default configuration, SQLite API routines return one of 26 integer
--** [SQLITE_OK | result codes]. However, experience has shown that many of
--** these result codes are too coarse-grained. They do not provide as
--** much information about problems as programmers might like. In an effort to
--** address this, newer versions of SQLite (version 3.3.8 and later) include
--** support for additional result codes that provide more detailed information
--** about errors. The extended result codes are enabled or disabled
--** on a per database connection basis using the
--** [sqlite3_extended_result_codes()] API.
--**
--** Some of the available extended result codes are listed here.
--** One may expect the number of extended result codes will be expand
--** over time. Software that uses extended result codes should expect
--** to see new result codes in future releases of SQLite.
--**
--** The SQLITE_OK result code will never be extended. It will always
--** be exactly zero.
--
--** CAPI3REF: Flags For File Open Operations
--**
--** These bit values are intended for use in the
--** 3rd parameter to the [sqlite3_open_v2()] interface and
--** in the 4th parameter to the xOpen method of the
--** [sqlite3_vfs] object.
--
--** CAPI3REF: Device Characteristics
--**
--** The xDeviceCapabilities method of the [sqlite3_io_methods]
--** object returns an integer which is a vector of the these
--** bit values expressing I/O characteristics of the mass storage
--** device that holds the file that the [sqlite3_io_methods]
--** refers to.
--**
--** The SQLITE_IOCAP_ATOMIC property means that all writes of
--** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values
--** mean that writes of blocks that are nnn bytes in size and
--** are aligned to an address which is an integer multiple of
--** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means
--** that when data is appended to a file, the data is appended
--** first then the size of the file is extended, never the other
--** way around. The SQLITE_IOCAP_SEQUENTIAL property means that
--** information is written to disk in the same order as calls
--** to xWrite().
--
--** CAPI3REF: File Locking Levels
--**
--** SQLite uses one of these integer values as the second
--** argument to calls it makes to the xLock() and xUnlock() methods
--** of an [sqlite3_io_methods] object.
--
--** CAPI3REF: Synchronization Type Flags
--**
--** When SQLite invokes the xSync() method of an
--** [sqlite3_io_methods] object it uses a combination of
--** these integer values as the second argument.
--**
--** When the SQLITE_SYNC_DATAONLY flag is used, it means that the
--** sync operation only needs to flush data to mass storage. Inode
--** information need not be flushed. If the lower four bits of the flag
--** equal SQLITE_SYNC_NORMAL, that means to use normal fsync() semantics.
--** If the lower four bits equal SQLITE_SYNC_FULL, that means
--** to use Mac OS X style fullsync instead of fsync().
--
--** CAPI3REF: OS Interface Open File Handle
--**
--** An [sqlite3_file] object represents an open file in the
--** [sqlite3_vfs | OS interface layer]. Individual OS interface
--** implementations will
--** want to subclass this object by appending additional fields
--** for their own use. The pMethods entry is a pointer to an
--** [sqlite3_io_methods] object that defines methods for performing
--** I/O operations on the open file.
--
-- Methods for an open file
type sqlite3_file is record
pMethods : System.Address; -- /usr/include/sqlite3.h:528:36
end record;
pragma Convention (C, sqlite3_file); -- /usr/include/sqlite3.h:526:16
--** CAPI3REF: OS Interface File Virtual Methods Object
--**
--** Every file opened by the [sqlite3_vfs] xOpen method populates an
--** [sqlite3_file] object (or, more commonly, a subclass of the
--** [sqlite3_file] object) with a pointer to an instance of this object.
--** This object defines the methods used to perform various operations
--** against the open file represented by the [sqlite3_file] object.
--**
--** If the xOpen method sets the sqlite3_file.pMethods element
--** to a non-NULL pointer, then the sqlite3_io_methods.xClose method
--** may be invoked even if the xOpen reported that it failed. The
--** only way to prevent a call to xClose following a failed xOpen
--** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
--**
--** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or
--** [SQLITE_SYNC_FULL]. The first choice is the normal fsync().
--** The second choice is a Mac OS X style fullsync. The [SQLITE_SYNC_DATAONLY]
--** flag may be ORed in to indicate that only the data of the file
--** and not its inode needs to be synced.
--**
--** The integer values to xLock() and xUnlock() are one of
--** <ul>
--** <li> [SQLITE_LOCK_NONE],
--** <li> [SQLITE_LOCK_SHARED],
--** <li> [SQLITE_LOCK_RESERVED],
--** <li> [SQLITE_LOCK_PENDING], or
--** <li> [SQLITE_LOCK_EXCLUSIVE].
--** </ul>
--** xLock() increases the lock. xUnlock() decreases the lock.
--** The xCheckReservedLock() method checks whether any database connection,
--** either in this process or in some other process, is holding a RESERVED,
--** PENDING, or EXCLUSIVE lock on the file. It returns true
--** if such a lock exists and false otherwise.
--**
--** The xFileControl() method is a generic interface that allows custom
--** VFS implementations to directly control an open file using the
--** [sqlite3_file_control()] interface. The second "op" argument is an
--** integer opcode. The third argument is a generic pointer intended to
--** point to a structure that may contain arguments or space in which to
--** write return values. Potential uses for xFileControl() might be
--** functions to enable blocking locks with timeouts, to change the
--** locking strategy (for example to use dot-file locks), to inquire
--** about the status of a lock, or to break stale locks. The SQLite
--** core reserves all opcodes less than 100 for its own use.
--** A [SQLITE_FCNTL_LOCKSTATE | list of opcodes] less than 100 is available.
--** Applications that define a custom xFileControl method should use opcodes
--** greater than 100 to avoid conflicts.
--**
--** The xSectorSize() method returns the sector size of the
--** device that underlies the file. The sector size is the
--** minimum write that can be performed without disturbing
--** other bytes in the file. The xDeviceCharacteristics()
--** method returns a bit vector describing behaviors of the
--** underlying device:
--**
--** <ul>
--** <li> [SQLITE_IOCAP_ATOMIC]
--** <li> [SQLITE_IOCAP_ATOMIC512]
--** <li> [SQLITE_IOCAP_ATOMIC1K]
--** <li> [SQLITE_IOCAP_ATOMIC2K]
--** <li> [SQLITE_IOCAP_ATOMIC4K]
--** <li> [SQLITE_IOCAP_ATOMIC8K]
--** <li> [SQLITE_IOCAP_ATOMIC16K]
--** <li> [SQLITE_IOCAP_ATOMIC32K]
--** <li> [SQLITE_IOCAP_ATOMIC64K]
--** <li> [SQLITE_IOCAP_SAFE_APPEND]
--** <li> [SQLITE_IOCAP_SEQUENTIAL]
--** </ul>
--**
--** The SQLITE_IOCAP_ATOMIC property means that all writes of
--** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values
--** mean that writes of blocks that are nnn bytes in size and
--** are aligned to an address which is an integer multiple of
--** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means
--** that when data is appended to a file, the data is appended
--** first then the size of the file is extended, never the other
--** way around. The SQLITE_IOCAP_SEQUENTIAL property means that
--** information is written to disk in the same order as calls
--** to xWrite().
--**
--** If xRead() returns SQLITE_IOERR_SHORT_READ it must also fill
--** in the unread portions of the buffer with zeros. A VFS that
--** fails to zero-fill short reads might seem to work. However,
--** failure to zero-fill short reads will eventually lead to
--** database corruption.
--
type sqlite3_io_methods is record
iVersion : aliased int; -- /usr/include/sqlite3.h:620:7
xClose : access function (arg1 : access sqlite3_file) return int; -- /usr/include/sqlite3.h:621:9
xRead : access function
(arg1 : access sqlite3_file;
arg2 : System.Address;
arg3 : int;
arg4 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:622:9
xWrite : access function
(arg1 : access sqlite3_file;
arg2 : System.Address;
arg3 : int;
arg4 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:623:9
xTruncate : access function (arg1 : access sqlite3_file; arg2 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:624:9
xSync : access function (arg1 : access sqlite3_file; arg2 : int) return int; -- /usr/include/sqlite3.h:625:9
xFileSize : access function (arg1 : access sqlite3_file; arg2 : access sqlite3_int64) return int; -- /usr/include/sqlite3.h:626:9
xLock : access function (arg1 : access sqlite3_file; arg2 : int) return int; -- /usr/include/sqlite3.h:627:9
xUnlock : access function (arg1 : access sqlite3_file; arg2 : int) return int; -- /usr/include/sqlite3.h:628:9
xCheckReservedLock : access function (arg1 : access sqlite3_file; arg2 : access int) return int; -- /usr/include/sqlite3.h:629:9
xFileControl : access function
(arg1 : access sqlite3_file;
arg2 : int;
arg3 : System.Address) return int; -- /usr/include/sqlite3.h:630:9
xSectorSize : access function (arg1 : access sqlite3_file) return int; -- /usr/include/sqlite3.h:631:9
xDeviceCharacteristics : access function (arg1 : access sqlite3_file) return int; -- /usr/include/sqlite3.h:632:9
end record;
pragma Convention (C, sqlite3_io_methods); -- /usr/include/sqlite3.h:528:16
-- Additional methods may be added in future releases
--** CAPI3REF: Standard File Control Opcodes
--**
--** These integer constants are opcodes for the xFileControl method
--** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()]
--** interface.
--**
--** The [SQLITE_FCNTL_LOCKSTATE] opcode is used for debugging. This
--** opcode causes the xFileControl method to write the current state of
--** the lock (one of [SQLITE_LOCK_NONE], [SQLITE_LOCK_SHARED],
--** [SQLITE_LOCK_RESERVED], [SQLITE_LOCK_PENDING], or [SQLITE_LOCK_EXCLUSIVE])
--** into an integer that the pArg argument points to. This capability
--** is used during testing and only needs to be supported when SQLITE_TEST
--** is defined.
--
--** CAPI3REF: Mutex Handle
--**
--** The mutex module within SQLite defines [sqlite3_mutex] to be an
--** abstract type for a mutex object. The SQLite core never looks
--** at the internal representation of an [sqlite3_mutex]. It only
--** deals with pointers to the [sqlite3_mutex] object.
--**
--** Mutexes are created using [sqlite3_mutex_alloc()].
--
-- skipped empty struct sqlite3_mutex
--** CAPI3REF: OS Interface Object
--**
--** An instance of the sqlite3_vfs object defines the interface between
--** the SQLite core and the underlying operating system. The "vfs"
--** in the name of the object stands for "virtual file system".
--**
--** The value of the iVersion field is initially 1 but may be larger in
--** future versions of SQLite. Additional fields may be appended to this
--** object when the iVersion value is increased. Note that the structure
--** of the sqlite3_vfs object changes in the transaction between
--** SQLite version 3.5.9 and 3.6.0 and yet the iVersion field was not
--** modified.
--**
--** The szOsFile field is the size of the subclassed [sqlite3_file]
--** structure used by this VFS. mxPathname is the maximum length of
--** a pathname in this VFS.
--**
--** Registered sqlite3_vfs objects are kept on a linked list formed by
--** the pNext pointer. The [sqlite3_vfs_register()]
--** and [sqlite3_vfs_unregister()] interfaces manage this list
--** in a thread-safe way. The [sqlite3_vfs_find()] interface
--** searches the list. Neither the application code nor the VFS
--** implementation should use the pNext pointer.
--**
--** The pNext field is the only field in the sqlite3_vfs
--** structure that SQLite will ever modify. SQLite will only access
--** or modify this field while holding a particular static mutex.
--** The application should never modify anything within the sqlite3_vfs
--** object once the object has been registered.
--**
--** The zName field holds the name of the VFS module. The name must
--** be unique across all VFS modules.
--**
--** SQLite will guarantee that the zFilename parameter to xOpen
--** is either a NULL pointer or string obtained
--** from xFullPathname(). SQLite further guarantees that
--** the string will be valid and unchanged until xClose() is
--** called. Because of the previous sentence,
--** the [sqlite3_file] can safely store a pointer to the
--** filename if it needs to remember the filename for some reason.
--** If the zFilename parameter is xOpen is a NULL pointer then xOpen
--** must invent its own temporary name for the file. Whenever the
--** xFilename parameter is NULL it will also be the case that the
--** flags parameter will include [SQLITE_OPEN_DELETEONCLOSE].
--**
--** The flags argument to xOpen() includes all bits set in
--** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()]
--** or [sqlite3_open16()] is used, then flags includes at least
--** [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE].
--** If xOpen() opens a file read-only then it sets *pOutFlags to
--** include [SQLITE_OPEN_READONLY]. Other bits in *pOutFlags may be set.
--**
--** SQLite will also add one of the following flags to the xOpen()
--** call, depending on the object being opened:
--**
--** <ul>
--** <li> [SQLITE_OPEN_MAIN_DB]
--** <li> [SQLITE_OPEN_MAIN_JOURNAL]
--** <li> [SQLITE_OPEN_TEMP_DB]
--** <li> [SQLITE_OPEN_TEMP_JOURNAL]
--** <li> [SQLITE_OPEN_TRANSIENT_DB]
--** <li> [SQLITE_OPEN_SUBJOURNAL]
--** <li> [SQLITE_OPEN_MASTER_JOURNAL]
--** </ul>
--**
--** The file I/O implementation can use the object type flags to
--** change the way it deals with files. For example, an application
--** that does not care about crash recovery or rollback might make
--** the open of a journal file a no-op. Writes to this journal would
--** also be no-ops, and any attempt to read the journal would return
--** SQLITE_IOERR. Or the implementation might recognize that a database
--** file will be doing page-aligned sector reads and writes in a random
--** order and set up its I/O subsystem accordingly.
--**
--** SQLite might also add one of the following flags to the xOpen method:
--**
--** <ul>
--** <li> [SQLITE_OPEN_DELETEONCLOSE]
--** <li> [SQLITE_OPEN_EXCLUSIVE]
--** </ul>
--**
--** The [SQLITE_OPEN_DELETEONCLOSE] flag means the file should be
--** deleted when it is closed. The [SQLITE_OPEN_DELETEONCLOSE]
--** will be set for TEMP databases, journals and for subjournals.
--**
--** The [SQLITE_OPEN_EXCLUSIVE] flag is always used in conjunction
--** with the [SQLITE_OPEN_CREATE] flag, which are both directly
--** analogous to the O_EXCL and O_CREAT flags of the POSIX open()
--** API. The SQLITE_OPEN_EXCLUSIVE flag, when paired with the
--** SQLITE_OPEN_CREATE, is used to indicate that file should always
--** be created, and that it is an error if it already exists.
--** It is <i>not</i> used to indicate the file should be opened
--** for exclusive access.
--**
--** At least szOsFile bytes of memory are allocated by SQLite
--** to hold the [sqlite3_file] structure passed as the third
--** argument to xOpen. The xOpen method does not have to
--** allocate the structure; it should just fill it in. Note that
--** the xOpen method must set the sqlite3_file.pMethods to either
--** a valid [sqlite3_io_methods] object or to NULL. xOpen must do
--** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
--** element will be valid after xOpen returns regardless of the success
--** or failure of the xOpen call.
--**
--** The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS]
--** to test for the existence of a file, or [SQLITE_ACCESS_READWRITE] to
--** test whether a file is readable and writable, or [SQLITE_ACCESS_READ]
--** to test whether a file is at least readable. The file can be a
--** directory.
--**
--** SQLite will always allocate at least mxPathname+1 bytes for the
--** output buffer xFullPathname. The exact size of the output buffer
--** is also passed as a parameter to both methods. If the output buffer
--** is not large enough, [SQLITE_CANTOPEN] should be returned. Since this is
--** handled as a fatal error by SQLite, vfs implementations should endeavor
--** to prevent this by setting mxPathname to a sufficiently large value.
--**
--** The xRandomness(), xSleep(), and xCurrentTime() interfaces
--** are not strictly a part of the filesystem, but they are
--** included in the VFS structure for completeness.
--** The xRandomness() function attempts to return nBytes bytes
--** of good-quality randomness into zOut. The return value is
--** the actual number of bytes of randomness obtained.
--** The xSleep() method causes the calling thread to sleep for at
--** least the number of microseconds given. The xCurrentTime()
--** method returns a Julian Day Number for the current date and time.
--**
--
-- Structure version number
type sqlite3_vfs is record
iVersion : aliased int; -- /usr/include/sqlite3.h:799:7
szOsFile : aliased int; -- /usr/include/sqlite3.h:800:7
mxPathname : aliased int; -- /usr/include/sqlite3.h:801:7
pNext : access sqlite3_vfs; -- /usr/include/sqlite3.h:802:16
zName : Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:803:15
pAppData : System.Address; -- /usr/include/sqlite3.h:804:9
xOpen : access function
(arg1 : access sqlite3_vfs;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : access sqlite3_file;
arg4 : int;
arg5 : access int) return int; -- /usr/include/sqlite3.h:805:9
xDelete : access function
(arg1 : access sqlite3_vfs;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int) return int; -- /usr/include/sqlite3.h:807:9
xAccess : access function
(arg1 : access sqlite3_vfs;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int;
arg4 : access int) return int; -- /usr/include/sqlite3.h:808:9
xFullPathname : access function
(arg1 : access sqlite3_vfs;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int;
arg4 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:809:9
xDlOpen : access function (arg1 : access sqlite3_vfs; arg2 : Interfaces.C.Strings.chars_ptr) return System.Address; -- /usr/include/sqlite3.h:810:11
xDlError : access procedure
(arg1 : access sqlite3_vfs;
arg2 : int;
arg3 : Interfaces.C.Strings.chars_ptr); -- /usr/include/sqlite3.h:811:10
xDlSym : access function
(arg1 : access sqlite3_vfs;
arg2 : System.Address;
arg3 : Interfaces.C.Strings.chars_ptr) return access procedure; -- /usr/include/sqlite3.h:812:12
xDlClose : access procedure (arg1 : access sqlite3_vfs; arg2 : System.Address); -- /usr/include/sqlite3.h:813:10
xRandomness : access function
(arg1 : access sqlite3_vfs;
arg2 : int;
arg3 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:814:9
xSleep : access function (arg1 : access sqlite3_vfs; arg2 : int) return int; -- /usr/include/sqlite3.h:815:9
xCurrentTime : access function (arg1 : access sqlite3_vfs; arg2 : access double) return int; -- /usr/include/sqlite3.h:816:9
xGetLastError : access function
(arg1 : access sqlite3_vfs;
arg2 : int;
arg3 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:817:9
end record;
pragma Convention (C, sqlite3_vfs); -- /usr/include/sqlite3.h:797:16
-- Size of subclassed sqlite3_file
-- Maximum file pathname length
-- Next registered VFS
-- Name of this virtual file system
-- Pointer to application-specific data
-- New fields may be appended in figure versions. The iVersion
-- ** value will increment whenever this happens.
--** CAPI3REF: Flags for the xAccess VFS method
--**
--** These integer constants can be used as the third parameter to
--** the xAccess method of an [sqlite3_vfs] object. They determine
--** what kind of permissions the xAccess method is looking for.
--** With SQLITE_ACCESS_EXISTS, the xAccess method
--** simply checks whether the file exists.
--** With SQLITE_ACCESS_READWRITE, the xAccess method
--** checks whether the file is both readable and writable.
--** With SQLITE_ACCESS_READ, the xAccess method
--** checks whether the file is readable.
--
--** CAPI3REF: Initialize The SQLite Library
--**
--** ^The sqlite3_initialize() routine initializes the
--** SQLite library. ^The sqlite3_shutdown() routine
--** deallocates any resources that were allocated by sqlite3_initialize().
--** These routines are designed to aid in process initialization and
--** shutdown on embedded systems. Workstation applications using
--** SQLite normally do not need to invoke either of these routines.
--**
--** A call to sqlite3_initialize() is an "effective" call if it is
--** the first time sqlite3_initialize() is invoked during the lifetime of
--** the process, or if it is the first time sqlite3_initialize() is invoked
--** following a call to sqlite3_shutdown(). ^(Only an effective call
--** of sqlite3_initialize() does any initialization. All other calls
--** are harmless no-ops.)^
--**
--** A call to sqlite3_shutdown() is an "effective" call if it is the first
--** call to sqlite3_shutdown() since the last sqlite3_initialize(). ^(Only
--** an effective call to sqlite3_shutdown() does any deinitialization.
--** All other valid calls to sqlite3_shutdown() are harmless no-ops.)^
--**
--** The sqlite3_initialize() interface is threadsafe, but sqlite3_shutdown()
--** is not. The sqlite3_shutdown() interface must only be called from a
--** single thread. All open [database connections] must be closed and all
--** other SQLite resources must be deallocated prior to invoking
--** sqlite3_shutdown().
--**
--** Among other things, ^sqlite3_initialize() will invoke
--** sqlite3_os_init(). Similarly, ^sqlite3_shutdown()
--** will invoke sqlite3_os_end().
--**
--** ^The sqlite3_initialize() routine returns [SQLITE_OK] on success.
--** ^If for some reason, sqlite3_initialize() is unable to initialize
--** the library (perhaps it is unable to allocate a needed resource such
--** as a mutex) it returns an [error code] other than [SQLITE_OK].
--**
--** ^The sqlite3_initialize() routine is called internally by many other
--** SQLite interfaces so that an application usually does not need to
--** invoke sqlite3_initialize() directly. For example, [sqlite3_open()]
--** calls sqlite3_initialize() so the SQLite library will be automatically
--** initialized when [sqlite3_open()] is called if it has not be initialized
--** already. ^However, if SQLite is compiled with the [SQLITE_OMIT_AUTOINIT]
--** compile-time option, then the automatic calls to sqlite3_initialize()
--** are omitted and the application must call sqlite3_initialize() directly
--** prior to using any other SQLite interface. For maximum portability,
--** it is recommended that applications always invoke sqlite3_initialize()
--** directly prior to using any other SQLite interface. Future releases
--** of SQLite may require this. In other words, the behavior exhibited
--** when SQLite is compiled with [SQLITE_OMIT_AUTOINIT] might become the
--** default behavior in some future release of SQLite.
--**
--** The sqlite3_os_init() routine does operating-system specific
--** initialization of the SQLite library. The sqlite3_os_end()
--** routine undoes the effect of sqlite3_os_init(). Typical tasks
--** performed by these routines include allocation or deallocation
--** of static resources, initialization of global variables,
--** setting up a default [sqlite3_vfs] module, or setting up
--** a default configuration using [sqlite3_config()].
--**
--** The application should never invoke either sqlite3_os_init()
--** or sqlite3_os_end() directly. The application should only invoke
--** sqlite3_initialize() and sqlite3_shutdown(). The sqlite3_os_init()
--** interface is called automatically by sqlite3_initialize() and
--** sqlite3_os_end() is called by sqlite3_shutdown(). Appropriate
--** implementations for sqlite3_os_init() and sqlite3_os_end()
--** are built into SQLite when it is compiled for Unix, Windows, or OS/2.
--** When [custom builds | built for other platforms]
--** (using the [SQLITE_OS_OTHER=1] compile-time
--** option) the application must supply a suitable implementation for
--** sqlite3_os_init() and sqlite3_os_end(). An application-supplied
--** implementation of sqlite3_os_init() or sqlite3_os_end()
--** must return [SQLITE_OK] on success and some other [error code] upon
--** failure.
--
function sqlite3_initialize return int; -- /usr/include/sqlite3.h:914:16
pragma Import (C, sqlite3_initialize, "sqlite3_initialize");
function sqlite3_shutdown return int; -- /usr/include/sqlite3.h:915:16
pragma Import (C, sqlite3_shutdown, "sqlite3_shutdown");
function sqlite3_os_init return int; -- /usr/include/sqlite3.h:916:16
pragma Import (C, sqlite3_os_init, "sqlite3_os_init");
function sqlite3_os_end return int; -- /usr/include/sqlite3.h:917:16
pragma Import (C, sqlite3_os_end, "sqlite3_os_end");
--** CAPI3REF: Configuring The SQLite Library
--** EXPERIMENTAL
--**
--** The sqlite3_config() interface is used to make global configuration
--** changes to SQLite in order to tune SQLite to the specific needs of
--** the application. The default configuration is recommended for most
--** applications and so this routine is usually not necessary. It is
--** provided to support rare applications with unusual needs.
--**
--** The sqlite3_config() interface is not threadsafe. The application
--** must insure that no other SQLite interfaces are invoked by other
--** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
--** may only be invoked prior to library initialization using
--** [sqlite3_initialize()] or after shutdown by [sqlite3_shutdown()].
--** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
--** [sqlite3_shutdown()] then it will return SQLITE_MISUSE.
--** Note, however, that ^sqlite3_config() can be called as part of the
--** implementation of an application-defined [sqlite3_os_init()].
--**
--** The first argument to sqlite3_config() is an integer
--** [SQLITE_CONFIG_SINGLETHREAD | configuration option] that determines
--** what property of SQLite is to be configured. Subsequent arguments
--** vary depending on the [SQLITE_CONFIG_SINGLETHREAD | configuration option]
--** in the first argument.
--**
--** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK].
--** ^If the option is unknown or SQLite is unable to set the option
--** then this routine returns a non-zero [error code].
--
function sqlite3_config (arg1 : int -- , ...
) return int; -- /usr/include/sqlite3.h:949:36
pragma Import (C, sqlite3_config, "sqlite3_config");
--** CAPI3REF: Configure database connections
--** EXPERIMENTAL
--**
--** The sqlite3_db_config() interface is used to make configuration
--** changes to a [database connection]. The interface is similar to
--** [sqlite3_config()] except that the changes apply to a single
--** [database connection] (specified in the first argument). The
--** sqlite3_db_config() interface should only be used immediately after
--** the database connection is created using [sqlite3_open()],
--** [sqlite3_open16()], or [sqlite3_open_v2()].
--**
--** The second argument to sqlite3_db_config(D,V,...) is the
--** configuration verb - an integer code that indicates what
--** aspect of the [database connection] is being configured.
--** The only choice for this value is [SQLITE_DBCONFIG_LOOKASIDE].
--** New verbs are likely to be added in future releases of SQLite.
--** Additional arguments depend on the verb.
--**
--** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if
--** the call is considered successful.
--
function sqlite3_db_config (arg1 : System.Address; arg2 : int -- , ...
) return int; -- /usr/include/sqlite3.h:973:36
pragma Import (C, sqlite3_db_config, "sqlite3_db_config");
--** CAPI3REF: Memory Allocation Routines
--** EXPERIMENTAL
--**
--** An instance of this object defines the interface between SQLite
--** and low-level memory allocation routines.
--**
--** This object is used in only one place in the SQLite interface.
--** A pointer to an instance of this object is the argument to
--** [sqlite3_config()] when the configuration option is
--** [SQLITE_CONFIG_MALLOC] or [SQLITE_CONFIG_GETMALLOC].
--** By creating an instance of this object
--** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC])
--** during configuration, an application can specify an alternative
--** memory allocation subsystem for SQLite to use for all of its
--** dynamic memory needs.
--**
--** Note that SQLite comes with several [built-in memory allocators]
--** that are perfectly adequate for the overwhelming majority of applications
--** and that this object is only useful to a tiny minority of applications
--** with specialized memory allocation requirements. This object is
--** also used during testing of SQLite in order to specify an alternative
--** memory allocator that simulates memory out-of-memory conditions in
--** order to verify that SQLite recovers gracefully from such
--** conditions.
--**
--** The xMalloc and xFree methods must work like the
--** malloc() and free() functions from the standard C library.
--** The xRealloc method must work like realloc() from the standard C library
--** with the exception that if the second argument to xRealloc is zero,
--** xRealloc must be a no-op - it must not perform any allocation or
--** deallocation. ^SQLite guarantees that the second argument to
--** xRealloc is always a value returned by a prior call to xRoundup.
--** And so in cases where xRoundup always returns a positive number,
--** xRealloc can perform exactly as the standard library realloc() and
--** still be in compliance with this specification.
--**
--** xSize should return the allocated size of a memory allocation
--** previously obtained from xMalloc or xRealloc. The allocated size
--** is always at least as big as the requested size but may be larger.
--**
--** The xRoundup method returns what would be the allocated size of
--** a memory allocation given a particular requested size. Most memory
--** allocators round up memory allocations at least to the next multiple
--** of 8. Some allocators round up to a larger multiple or to a power of 2.
--** Every memory allocation request coming in through [sqlite3_malloc()]
--** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
--** that causes the corresponding memory allocation to fail.
--**
--** The xInit method initializes the memory allocator. (For example,
--** it might allocate any require mutexes or initialize internal data
--** structures. The xShutdown method is invoked (indirectly) by
--** [sqlite3_shutdown()] and should deallocate any resources acquired
--** by xInit. The pAppData pointer is used as the only parameter to
--** xInit and xShutdown.
--**
--** SQLite holds the [SQLITE_MUTEX_STATIC_MASTER] mutex when it invokes
--** the xInit method, so the xInit method need not be threadsafe. The
--** xShutdown method is only called from [sqlite3_shutdown()] so it does
--** not need to be threadsafe either. For all other methods, SQLite
--** holds the [SQLITE_MUTEX_STATIC_MEM] mutex as long as the
--** [SQLITE_CONFIG_MEMSTATUS] configuration option is turned on (which
--** it is by default) and so the methods are automatically serialized.
--** However, if [SQLITE_CONFIG_MEMSTATUS] is disabled, then the other
--** methods must be threadsafe or else make their own arrangements for
--** serialization.
--**
--** SQLite will never invoke xInit() more than once without an intervening
--** call to xShutdown().
--
-- Memory allocation function
type sqlite3_mem_methods is record
xMalloc : access function (arg1 : int) return System.Address; -- /usr/include/sqlite3.h:1047:11
xFree : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:1048:10
xRealloc : access function (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:1049:11
xSize : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:1050:9
xRoundup : access function (arg1 : int) return int; -- /usr/include/sqlite3.h:1051:9
xInit : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:1052:9
xShutdown : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:1053:10
pAppData : System.Address; -- /usr/include/sqlite3.h:1054:9
end record;
pragma Convention (C, sqlite3_mem_methods); -- /usr/include/sqlite3.h:1045:16
-- Free a prior allocation
-- Resize an allocation
-- Return the size of an allocation
-- Round up request size to allocation size
-- Initialize the memory allocator
-- Deinitialize the memory allocator
-- Argument to xInit() and xShutdown()
--** CAPI3REF: Configuration Options
--** EXPERIMENTAL
--**
--** These constants are the available integer configuration options that
--** can be passed as the first argument to the [sqlite3_config()] interface.
--**
--** New configuration options may be added in future releases of SQLite.
--** Existing configuration options might be discontinued. Applications
--** should check the return code from [sqlite3_config()] to make sure that
--** the call worked. The [sqlite3_config()] interface will return a
--** non-zero [error code] if a discontinued or unsupported configuration option
--** is invoked.
--**
--** <dl>
--** <dt>SQLITE_CONFIG_SINGLETHREAD</dt>
--** <dd>There are no arguments to this option. ^This option sets the
--** [threading mode] to Single-thread. In other words, it disables
--** all mutexing and puts SQLite into a mode where it can only be used
--** by a single thread. ^If SQLite is compiled with
--** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then
--** it is not possible to change the [threading mode] from its default
--** value of Single-thread and so [sqlite3_config()] will return
--** [SQLITE_ERROR] if called with the SQLITE_CONFIG_SINGLETHREAD
--** configuration option.</dd>
--**
--** <dt>SQLITE_CONFIG_MULTITHREAD</dt>
--** <dd>There are no arguments to this option. ^This option sets the
--** [threading mode] to Multi-thread. In other words, it disables
--** mutexing on [database connection] and [prepared statement] objects.
--** The application is responsible for serializing access to
--** [database connections] and [prepared statements]. But other mutexes
--** are enabled so that SQLite will be safe to use in a multi-threaded
--** environment as long as no two threads attempt to use the same
--** [database connection] at the same time. ^If SQLite is compiled with
--** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then
--** it is not possible to set the Multi-thread [threading mode] and
--** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
--** SQLITE_CONFIG_MULTITHREAD configuration option.</dd>
--**
--** <dt>SQLITE_CONFIG_SERIALIZED</dt>
--** <dd>There are no arguments to this option. ^This option sets the
--** [threading mode] to Serialized. In other words, this option enables
--** all mutexes including the recursive
--** mutexes on [database connection] and [prepared statement] objects.
--** In this mode (which is the default when SQLite is compiled with
--** [SQLITE_THREADSAFE=1]) the SQLite library will itself serialize access
--** to [database connections] and [prepared statements] so that the
--** application is free to use the same [database connection] or the
--** same [prepared statement] in different threads at the same time.
--** ^If SQLite is compiled with
--** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then
--** it is not possible to set the Serialized [threading mode] and
--** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
--** SQLITE_CONFIG_SERIALIZED configuration option.</dd>
--**
--** <dt>SQLITE_CONFIG_MALLOC</dt>
--** <dd> ^(This option takes a single argument which is a pointer to an
--** instance of the [sqlite3_mem_methods] structure. The argument specifies
--** alternative low-level memory allocation routines to be used in place of
--** the memory allocation routines built into SQLite.)^ ^SQLite makes
--** its own private copy of the content of the [sqlite3_mem_methods] structure
--** before the [sqlite3_config()] call returns.</dd>
--**
--** <dt>SQLITE_CONFIG_GETMALLOC</dt>
--** <dd> ^(This option takes a single argument which is a pointer to an
--** instance of the [sqlite3_mem_methods] structure. The [sqlite3_mem_methods]
--** structure is filled with the currently defined memory allocation routines.)^
--** This option can be used to overload the default memory allocation
--** routines with a wrapper that simulations memory allocation failure or
--** tracks memory usage, for example. </dd>
--**
--** <dt>SQLITE_CONFIG_MEMSTATUS</dt>
--** <dd> ^This option takes single argument of type int, interpreted as a
--** boolean, which enables or disables the collection of memory allocation
--** statistics. ^(When memory allocation statistics are disabled, the
--** following SQLite interfaces become non-operational:
--** <ul>
--** <li> [sqlite3_memory_used()]
--** <li> [sqlite3_memory_highwater()]
--** <li> [sqlite3_soft_heap_limit()]
--** <li> [sqlite3_status()]
--** </ul>)^
--** ^Memory allocation statistics are enabled by default unless SQLite is
--** compiled with [SQLITE_DEFAULT_MEMSTATUS]=0 in which case memory
--** allocation statistics are disabled by default.
--** </dd>
--**
--** <dt>SQLITE_CONFIG_SCRATCH</dt>
--** <dd> ^This option specifies a static memory buffer that SQLite can use for
--** scratch memory. There are three arguments: A pointer an 8-byte
--** aligned memory buffer from which the scrach allocations will be
--** drawn, the size of each scratch allocation (sz),
--** and the maximum number of scratch allocations (N). The sz
--** argument must be a multiple of 16. The sz parameter should be a few bytes
--** larger than the actual scratch space required due to internal overhead.
--** The first argument must be a pointer to an 8-byte aligned buffer
--** of at least sz*N bytes of memory.
--** ^SQLite will use no more than one scratch buffer per thread. So
--** N should be set to the expected maximum number of threads. ^SQLite will
--** never require a scratch buffer that is more than 6 times the database
--** page size. ^If SQLite needs needs additional scratch memory beyond
--** what is provided by this configuration option, then
--** [sqlite3_malloc()] will be used to obtain the memory needed.</dd>
--**
--** <dt>SQLITE_CONFIG_PAGECACHE</dt>
--** <dd> ^This option specifies a static memory buffer that SQLite can use for
--** the database page cache with the default page cache implemenation.
--** This configuration should not be used if an application-define page
--** cache implementation is loaded using the SQLITE_CONFIG_PCACHE option.
--** There are three arguments to this option: A pointer to 8-byte aligned
--** memory, the size of each page buffer (sz), and the number of pages (N).
--** The sz argument should be the size of the largest database page
--** (a power of two between 512 and 32768) plus a little extra for each
--** page header. ^The page header size is 20 to 40 bytes depending on
--** the host architecture. ^It is harmless, apart from the wasted memory,
--** to make sz a little too large. The first
--** argument should point to an allocation of at least sz*N bytes of memory.
--** ^SQLite will use the memory provided by the first argument to satisfy its
--** memory needs for the first N pages that it adds to cache. ^If additional
--** page cache memory is needed beyond what is provided by this option, then
--** SQLite goes to [sqlite3_malloc()] for the additional storage space.
--** ^The implementation might use one or more of the N buffers to hold
--** memory accounting information. The pointer in the first argument must
--** be aligned to an 8-byte boundary or subsequent behavior of SQLite
--** will be undefined.</dd>
--**
--** <dt>SQLITE_CONFIG_HEAP</dt>
--** <dd> ^This option specifies a static memory buffer that SQLite will use
--** for all of its dynamic memory allocation needs beyond those provided
--** for by [SQLITE_CONFIG_SCRATCH] and [SQLITE_CONFIG_PAGECACHE].
--** There are three arguments: An 8-byte aligned pointer to the memory,
--** the number of bytes in the memory buffer, and the minimum allocation size.
--** ^If the first pointer (the memory pointer) is NULL, then SQLite reverts
--** to using its default memory allocator (the system malloc() implementation),
--** undoing any prior invocation of [SQLITE_CONFIG_MALLOC]. ^If the
--** memory pointer is not NULL and either [SQLITE_ENABLE_MEMSYS3] or
--** [SQLITE_ENABLE_MEMSYS5] are defined, then the alternative memory
--** allocator is engaged to handle all of SQLites memory allocation needs.
--** The first pointer (the memory pointer) must be aligned to an 8-byte
--** boundary or subsequent behavior of SQLite will be undefined.</dd>
--**
--** <dt>SQLITE_CONFIG_MUTEX</dt>
--** <dd> ^(This option takes a single argument which is a pointer to an
--** instance of the [sqlite3_mutex_methods] structure. The argument specifies
--** alternative low-level mutex routines to be used in place
--** the mutex routines built into SQLite.)^ ^SQLite makes a copy of the
--** content of the [sqlite3_mutex_methods] structure before the call to
--** [sqlite3_config()] returns. ^If SQLite is compiled with
--** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then
--** the entire mutexing subsystem is omitted from the build and hence calls to
--** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will
--** return [SQLITE_ERROR].</dd>
--**
--** <dt>SQLITE_CONFIG_GETMUTEX</dt>
--** <dd> ^(This option takes a single argument which is a pointer to an
--** instance of the [sqlite3_mutex_methods] structure. The
--** [sqlite3_mutex_methods]
--** structure is filled with the currently defined mutex routines.)^
--** This option can be used to overload the default mutex allocation
--** routines with a wrapper used to track mutex usage for performance
--** profiling or testing, for example. ^If SQLite is compiled with
--** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then
--** the entire mutexing subsystem is omitted from the build and hence calls to
--** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will
--** return [SQLITE_ERROR].</dd>
--**
--** <dt>SQLITE_CONFIG_LOOKASIDE</dt>
--** <dd> ^(This option takes two arguments that determine the default
--** memory allocation for the lookaside memory allocator on each
--** [database connection]. The first argument is the
--** size of each lookaside buffer slot and the second is the number of
--** slots allocated to each database connection.)^ ^(This option sets the
--** <i>default</i> lookaside size. The [SQLITE_DBCONFIG_LOOKASIDE]
--** verb to [sqlite3_db_config()] can be used to change the lookaside
--** configuration on individual connections.)^ </dd>
--**
--** <dt>SQLITE_CONFIG_PCACHE</dt>
--** <dd> ^(This option takes a single argument which is a pointer to
--** an [sqlite3_pcache_methods] object. This object specifies the interface
--** to a custom page cache implementation.)^ ^SQLite makes a copy of the
--** object and uses it for page cache memory allocations.</dd>
--**
--** <dt>SQLITE_CONFIG_GETPCACHE</dt>
--** <dd> ^(This option takes a single argument which is a pointer to an
--** [sqlite3_pcache_methods] object. SQLite copies of the current
--** page cache implementation into that object.)^ </dd>
--**
--** </dl>
--
-- previously SQLITE_CONFIG_CHUNKALLOC 12 which is now unused.
--** CAPI3REF: Configuration Options
--** EXPERIMENTAL
--**
--** These constants are the available integer configuration options that
--** can be passed as the second argument to the [sqlite3_db_config()] interface.
--**
--** New configuration options may be added in future releases of SQLite.
--** Existing configuration options might be discontinued. Applications
--** should check the return code from [sqlite3_db_config()] to make sure that
--** the call worked. ^The [sqlite3_db_config()] interface will return a
--** non-zero [error code] if a discontinued or unsupported configuration option
--** is invoked.
--**
--** <dl>
--** <dt>SQLITE_DBCONFIG_LOOKASIDE</dt>
--** <dd> ^This option takes three additional arguments that determine the
--** [lookaside memory allocator] configuration for the [database connection].
--** ^The first argument (the third parameter to [sqlite3_db_config()] is a
--** pointer to an memory buffer to use for lookaside memory.
--** ^The first argument after the SQLITE_DBCONFIG_LOOKASIDE verb
--** may be NULL in which case SQLite will allocate the
--** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the
--** size of each lookaside buffer slot. ^The third argument is the number of
--** slots. The size of the buffer in the first argument must be greater than
--** or equal to the product of the second and third arguments. The buffer
--** must be aligned to an 8-byte boundary. ^If the second argument to
--** SQLITE_DBCONFIG_LOOKASIDE is not a multiple of 8, it is internally
--** rounded down to the next smaller
--** multiple of 8. See also: [SQLITE_CONFIG_LOOKASIDE]</dd>
--**
--** </dl>
--
--** CAPI3REF: Enable Or Disable Extended Result Codes
--**
--** ^The sqlite3_extended_result_codes() routine enables or disables the
--** [extended result codes] feature of SQLite. ^The extended result
--** codes are disabled by default for historical compatibility.
--
function sqlite3_extended_result_codes (arg1 : System.Address; arg2 : int) return int; -- /usr/include/sqlite3.h:1306:16
pragma Import (C, sqlite3_extended_result_codes, "sqlite3_extended_result_codes");
--** CAPI3REF: Last Insert Rowid
--**
--** ^Each entry in an SQLite table has a unique 64-bit signed
--** integer key called the [ROWID | "rowid"]. ^The rowid is always available
--** as an undeclared column named ROWID, OID, or _ROWID_ as long as those
--** names are not also used by explicitly declared columns. ^If
--** the table has a column of type [INTEGER PRIMARY KEY] then that column
--** is another alias for the rowid.
--**
--** ^This routine returns the [rowid] of the most recent
--** successful [INSERT] into the database from the [database connection]
--** in the first argument. ^If no successful [INSERT]s
--** have ever occurred on that database connection, zero is returned.
--**
--** ^(If an [INSERT] occurs within a trigger, then the [rowid] of the inserted
--** row is returned by this routine as long as the trigger is running.
--** But once the trigger terminates, the value returned by this routine
--** reverts to the last value inserted before the trigger fired.)^
--**
--** ^An [INSERT] that fails due to a constraint violation is not a
--** successful [INSERT] and does not change the value returned by this
--** routine. ^Thus INSERT OR FAIL, INSERT OR IGNORE, INSERT OR ROLLBACK,
--** and INSERT OR ABORT make no changes to the return value of this
--** routine when their insertion fails. ^(When INSERT OR REPLACE
--** encounters a constraint violation, it does not fail. The
--** INSERT continues to completion after deleting rows that caused
--** the constraint problem so INSERT OR REPLACE will always change
--** the return value of this interface.)^
--**
--** ^For the purposes of this routine, an [INSERT] is considered to
--** be successful even if it is subsequently rolled back.
--**
--** This function is accessible to SQL statements via the
--** [last_insert_rowid() SQL function].
--**
--** If a separate thread performs a new [INSERT] on the same
--** database connection while the [sqlite3_last_insert_rowid()]
--** function is running and thus changes the last insert [rowid],
--** then the value returned by [sqlite3_last_insert_rowid()] is
--** unpredictable and might not equal either the old or the new
--** last insert [rowid].
--
function sqlite3_last_insert_rowid (arg1 : System.Address) return sqlite3_int64; -- /usr/include/sqlite3.h:1351:26
pragma Import (C, sqlite3_last_insert_rowid, "sqlite3_last_insert_rowid");
--** CAPI3REF: Count The Number Of Rows Modified
--**
--** ^This function returns the number of database rows that were changed
--** or inserted or deleted by the most recently completed SQL statement
--** on the [database connection] specified by the first parameter.
--** ^(Only changes that are directly specified by the [INSERT], [UPDATE],
--** or [DELETE] statement are counted. Auxiliary changes caused by
--** triggers or [foreign key actions] are not counted.)^ Use the
--** [sqlite3_total_changes()] function to find the total number of changes
--** including changes caused by triggers and foreign key actions.
--**
--** ^Changes to a view that are simulated by an [INSTEAD OF trigger]
--** are not counted. Only real table changes are counted.
--**
--** ^(A "row change" is a change to a single row of a single table
--** caused by an INSERT, DELETE, or UPDATE statement. Rows that
--** are changed as side effects of [REPLACE] constraint resolution,
--** rollback, ABORT processing, [DROP TABLE], or by any other
--** mechanisms do not count as direct row changes.)^
--**
--** A "trigger context" is a scope of execution that begins and
--** ends with the script of a [CREATE TRIGGER | trigger].
--** Most SQL statements are
--** evaluated outside of any trigger. This is the "top level"
--** trigger context. If a trigger fires from the top level, a
--** new trigger context is entered for the duration of that one
--** trigger. Subtriggers create subcontexts for their duration.
--**
--** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
--** not create a new trigger context.
--**
--** ^This function returns the number of direct row changes in the
--** most recent INSERT, UPDATE, or DELETE statement within the same
--** trigger context.
--**
--** ^Thus, when called from the top level, this function returns the
--** number of changes in the most recent INSERT, UPDATE, or DELETE
--** that also occurred at the top level. ^(Within the body of a trigger,
--** the sqlite3_changes() interface can be called to find the number of
--** changes in the most recently completed INSERT, UPDATE, or DELETE
--** statement within the body of the same trigger.
--** However, the number returned does not include changes
--** caused by subtriggers since those have their own context.)^
--**
--** See also the [sqlite3_total_changes()] interface, the
--** [count_changes pragma], and the [changes() SQL function].
--**
--** If a separate thread makes changes on the same database connection
--** while [sqlite3_changes()] is running then the value returned
--** is unpredictable and not meaningful.
--
function sqlite3_changes (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:1405:16
pragma Import (C, sqlite3_changes, "sqlite3_changes");
--** CAPI3REF: Total Number Of Rows Modified
--**
--** ^This function returns the number of row changes caused by [INSERT],
--** [UPDATE] or [DELETE] statements since the [database connection] was opened.
--** ^(The count returned by sqlite3_total_changes() includes all changes
--** from all [CREATE TRIGGER | trigger] contexts and changes made by
--** [foreign key actions]. However,
--** the count does not include changes used to implement [REPLACE] constraints,
--** do rollbacks or ABORT processing, or [DROP TABLE] processing. The
--** count does not include rows of views that fire an [INSTEAD OF trigger],
--** though if the INSTEAD OF trigger makes changes of its own, those changes
--** are counted.)^
--** ^The sqlite3_total_changes() function counts the changes as soon as
--** the statement that makes them is completed (when the statement handle
--** is passed to [sqlite3_reset()] or [sqlite3_finalize()]).
--**
--** See also the [sqlite3_changes()] interface, the
--** [count_changes pragma], and the [total_changes() SQL function].
--**
--** If a separate thread makes changes on the same database connection
--** while [sqlite3_total_changes()] is running then the value
--** returned is unpredictable and not meaningful.
--
function sqlite3_total_changes (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:1431:16
pragma Import (C, sqlite3_total_changes, "sqlite3_total_changes");
--** CAPI3REF: Interrupt A Long-Running Query
--**
--** ^This function causes any pending database operation to abort and
--** return at its earliest opportunity. This routine is typically
--** called in response to a user action such as pressing "Cancel"
--** or Ctrl-C where the user wants a long query operation to halt
--** immediately.
--**
--** ^It is safe to call this routine from a thread different from the
--** thread that is currently running the database operation. But it
--** is not safe to call this routine with a [database connection] that
--** is closed or might close before sqlite3_interrupt() returns.
--**
--** ^If an SQL operation is very nearly finished at the time when
--** sqlite3_interrupt() is called, then it might not have an opportunity
--** to be interrupted and might continue to completion.
--**
--** ^An SQL operation that is interrupted will return [SQLITE_INTERRUPT].
--** ^If the interrupted SQL operation is an INSERT, UPDATE, or DELETE
--** that is inside an explicit transaction, then the entire transaction
--** will be rolled back automatically.
--**
--** ^The sqlite3_interrupt(D) call is in effect until all currently running
--** SQL statements on [database connection] D complete. ^Any new SQL statements
--** that are started after the sqlite3_interrupt() call and before the
--** running statements reaches zero are interrupted as if they had been
--** running prior to the sqlite3_interrupt() call. ^New SQL statements
--** that are started after the running statement count reaches zero are
--** not effected by the sqlite3_interrupt().
--** ^A call to sqlite3_interrupt(D) that occurs when there are no running
--** SQL statements is a no-op and has no effect on SQL statements
--** that are started after the sqlite3_interrupt() call returns.
--**
--** If the database connection closes while [sqlite3_interrupt()]
--** is running then bad things will likely happen.
--
procedure sqlite3_interrupt (arg1 : System.Address); -- /usr/include/sqlite3.h:1470:17
pragma Import (C, sqlite3_interrupt, "sqlite3_interrupt");
--** CAPI3REF: Determine If An SQL Statement Is Complete
--**
--** These routines are useful during command-line input to determine if the
--** currently entered text seems to form a complete SQL statement or
--** if additional input is needed before sending the text into
--** SQLite for parsing. ^These routines return 1 if the input string
--** appears to be a complete SQL statement. ^A statement is judged to be
--** complete if it ends with a semicolon token and is not a prefix of a
--** well-formed CREATE TRIGGER statement. ^Semicolons that are embedded within
--** string literals or quoted identifier names or comments are not
--** independent tokens (they are part of the token in which they are
--** embedded) and thus do not count as a statement terminator. ^Whitespace
--** and comments that follow the final semicolon are ignored.
--**
--** ^These routines return 0 if the statement is incomplete. ^If a
--** memory allocation fails, then SQLITE_NOMEM is returned.
--**
--** ^These routines do not parse the SQL statements thus
--** will not detect syntactically incorrect SQL.
--**
--** ^(If SQLite has not been initialized using [sqlite3_initialize()] prior
--** to invoking sqlite3_complete16() then sqlite3_initialize() is invoked
--** automatically by sqlite3_complete16(). If that initialization fails,
--** then the return value from sqlite3_complete16() will be non-zero
--** regardless of whether or not the input SQL is complete.)^
--**
--** The input to [sqlite3_complete()] must be a zero-terminated
--** UTF-8 string.
--**
--** The input to [sqlite3_complete16()] must be a zero-terminated
--** UTF-16 string in native byte order.
--
function sqlite3_complete (arg1 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:1505:16
pragma Import (C, sqlite3_complete, "sqlite3_complete");
function sqlite3_complete16 (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:1506:16
pragma Import (C, sqlite3_complete16, "sqlite3_complete16");
--** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors
--**
--** ^This routine sets a callback function that might be invoked whenever
--** an attempt is made to open a database table that another thread
--** or process has locked.
--**
--** ^If the busy callback is NULL, then [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED]
--** is returned immediately upon encountering the lock. ^If the busy callback
--** is not NULL, then the callback might be invoked with two arguments.
--**
--** ^The first argument to the busy handler is a copy of the void* pointer which
--** is the third argument to sqlite3_busy_handler(). ^The second argument to
--** the busy handler callback is the number of times that the busy handler has
--** been invoked for this locking event. ^If the
--** busy callback returns 0, then no additional attempts are made to
--** access the database and [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED] is returned.
--** ^If the callback returns non-zero, then another attempt
--** is made to open the database for reading and the cycle repeats.
--**
--** The presence of a busy handler does not guarantee that it will be invoked
--** when there is lock contention. ^If SQLite determines that invoking the busy
--** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY]
--** or [SQLITE_IOERR_BLOCKED] instead of invoking the busy handler.
--** Consider a scenario where one process is holding a read lock that
--** it is trying to promote to a reserved lock and
--** a second process is holding a reserved lock that it is trying
--** to promote to an exclusive lock. The first process cannot proceed
--** because it is blocked by the second and the second process cannot
--** proceed because it is blocked by the first. If both processes
--** invoke the busy handlers, neither will make any progress. Therefore,
--** SQLite returns [SQLITE_BUSY] for the first process, hoping that this
--** will induce the first process to release its read lock and allow
--** the second process to proceed.
--**
--** ^The default busy callback is NULL.
--**
--** ^The [SQLITE_BUSY] error is converted to [SQLITE_IOERR_BLOCKED]
--** when SQLite is in the middle of a large transaction where all the
--** changes will not fit into the in-memory cache. SQLite will
--** already hold a RESERVED lock on the database file, but it needs
--** to promote this lock to EXCLUSIVE so that it can spill cache
--** pages into the database file without harm to concurrent
--** readers. ^If it is unable to promote the lock, then the in-memory
--** cache will be left in an inconsistent state and so the error
--** code is promoted from the relatively benign [SQLITE_BUSY] to
--** the more severe [SQLITE_IOERR_BLOCKED]. ^This error code promotion
--** forces an automatic rollback of the changes. See the
--** <a href="/cvstrac/wiki?p=CorruptionFollowingBusyError">
--** CorruptionFollowingBusyError</a> wiki page for a discussion of why
--** this is important.
--**
--** ^(There can only be a single busy handler defined for each
--** [database connection]. Setting a new busy handler clears any
--** previously set handler.)^ ^Note that calling [sqlite3_busy_timeout()]
--** will also set or clear the busy handler.
--**
--** The busy callback should not take any actions which modify the
--** database connection that invoked the busy handler. Any such actions
--** result in undefined behavior.
--**
--** A busy handler must not close the database connection
--** or [prepared statement] that invoked the busy handler.
--
function sqlite3_busy_handler
(arg1 : System.Address;
arg2 : access function (arg1 : System.Address; arg2 : int) return int;
arg3 : System.Address) return int; -- /usr/include/sqlite3.h:1572:16
pragma Import (C, sqlite3_busy_handler, "sqlite3_busy_handler");
--** CAPI3REF: Set A Busy Timeout
--**
--** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps
--** for a specified amount of time when a table is locked. ^The handler
--** will sleep multiple times until at least "ms" milliseconds of sleeping
--** have accumulated. ^After at least "ms" milliseconds of sleeping,
--** the handler returns 0 which causes [sqlite3_step()] to return
--** [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED].
--**
--** ^Calling this routine with an argument less than or equal to zero
--** turns off all busy handlers.
--**
--** ^(There can only be a single busy handler for a particular
--** [database connection] any any given moment. If another busy handler
--** was defined (using [sqlite3_busy_handler()]) prior to calling
--** this routine, that other busy handler is cleared.)^
--
function sqlite3_busy_timeout (arg1 : System.Address; arg2 : int) return int; -- /usr/include/sqlite3.h:1592:16
pragma Import (C, sqlite3_busy_timeout, "sqlite3_busy_timeout");
--** CAPI3REF: Convenience Routines For Running Queries
--**
--** Definition: A <b>result table</b> is memory data structure created by the
--** [sqlite3_get_table()] interface. A result table records the
--** complete query results from one or more queries.
--**
--** The table conceptually has a number of rows and columns. But
--** these numbers are not part of the result table itself. These
--** numbers are obtained separately. Let N be the number of rows
--** and M be the number of columns.
--**
--** A result table is an array of pointers to zero-terminated UTF-8 strings.
--** There are (N+1)*M elements in the array. The first M pointers point
--** to zero-terminated strings that contain the names of the columns.
--** The remaining entries all point to query results. NULL values result
--** in NULL pointers. All other values are in their UTF-8 zero-terminated
--** string representation as returned by [sqlite3_column_text()].
--**
--** A result table might consist of one or more memory allocations.
--** It is not safe to pass a result table directly to [sqlite3_free()].
--** A result table should be deallocated using [sqlite3_free_table()].
--**
--** As an example of the result table format, suppose a query result
--** is as follows:
--**
--** <blockquote><pre>
--** Name | Age
--** -----------------------
--** Alice | 43
--** Bob | 28
--** Cindy | 21
--** </pre></blockquote>
--**
--** There are two column (M==2) and three rows (N==3). Thus the
--** result table has 8 entries. Suppose the result table is stored
--** in an array names azResult. Then azResult holds this content:
--**
--** <blockquote><pre>
--** azResult[0] = "Name";
--** azResult[1] = "Age";
--** azResult[2] = "Alice";
--** azResult[3] = "43";
--** azResult[4] = "Bob";
--** azResult[5] = "28";
--** azResult[6] = "Cindy";
--** azResult[7] = "21";
--** </pre></blockquote>
--**
--** ^The sqlite3_get_table() function evaluates one or more
--** semicolon-separated SQL statements in the zero-terminated UTF-8
--** string of its 2nd parameter and returns a result table to the
--** pointer given in its 3rd parameter.
--**
--** After the application has finished with the result from sqlite3_get_table(),
--** it should pass the result table pointer to sqlite3_free_table() in order to
--** release the memory that was malloced. Because of the way the
--** [sqlite3_malloc()] happens within sqlite3_get_table(), the calling
--** function must not try to call [sqlite3_free()] directly. Only
--** [sqlite3_free_table()] is able to release the memory properly and safely.
--**
--** ^(The sqlite3_get_table() interface is implemented as a wrapper around
--** [sqlite3_exec()]. The sqlite3_get_table() routine does not have access
--** to any internal data structures of SQLite. It uses only the public
--** interface defined here. As a consequence, errors that occur in the
--** wrapper layer outside of the internal [sqlite3_exec()] call are not
--** reflected in subsequent calls to [sqlite3_errcode()] or
--** [sqlite3_errmsg()].)^
--
function sqlite3_get_table
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : System.Address;
arg4 : access int;
arg5 : access int;
arg6 : System.Address) return int; -- /usr/include/sqlite3.h:1663:16
pragma Import (C, sqlite3_get_table, "sqlite3_get_table");
-- An open database
-- SQL to be evaluated
-- Results of the query
-- Number of result rows written here
-- Number of result columns written here
-- Error msg written here
procedure sqlite3_free_table (arg1 : System.Address); -- /usr/include/sqlite3.h:1671:17
pragma Import (C, sqlite3_free_table, "sqlite3_free_table");
--** CAPI3REF: Formatted String Printing Functions
--**
--** These routines are work-alikes of the "printf()" family of functions
--** from the standard C library.
--**
--** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their
--** results into memory obtained from [sqlite3_malloc()].
--** The strings returned by these two routines should be
--** released by [sqlite3_free()]. ^Both routines return a
--** NULL pointer if [sqlite3_malloc()] is unable to allocate enough
--** memory to hold the resulting string.
--**
--** ^(In sqlite3_snprintf() routine is similar to "snprintf()" from
--** the standard C library. The result is written into the
--** buffer supplied as the second parameter whose size is given by
--** the first parameter. Note that the order of the
--** first two parameters is reversed from snprintf().)^ This is an
--** historical accident that cannot be fixed without breaking
--** backwards compatibility. ^(Note also that sqlite3_snprintf()
--** returns a pointer to its buffer instead of the number of
--** characters actually written into the buffer.)^ We admit that
--** the number of characters written would be a more useful return
--** value but we cannot change the implementation of sqlite3_snprintf()
--** now without breaking compatibility.
--**
--** ^As long as the buffer size is greater than zero, sqlite3_snprintf()
--** guarantees that the buffer is always zero-terminated. ^The first
--** parameter "n" is the total size of the buffer, including space for
--** the zero terminator. So the longest string that can be completely
--** written will be n-1 characters.
--**
--** These routines all implement some additional formatting
--** options that are useful for constructing SQL statements.
--** All of the usual printf() formatting options apply. In addition, there
--** is are "%q", "%Q", and "%z" options.
--**
--** ^(The %q option works like %s in that it substitutes a null-terminated
--** string from the argument list. But %q also doubles every '\'' character.
--** %q is designed for use inside a string literal.)^ By doubling each '\''
--** character it escapes that character and allows it to be inserted into
--** the string.
--**
--** For example, assume the string variable zText contains text as follows:
--**
--** <blockquote><pre>
--** char *zText = "It's a happy day!";
--** </pre></blockquote>
--**
--** One can use this text in an SQL statement as follows:
--**
--** <blockquote><pre>
--** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES('%q')", zText);
--** sqlite3_exec(db, zSQL, 0, 0, 0);
--** sqlite3_free(zSQL);
--** </pre></blockquote>
--**
--** Because the %q format string is used, the '\'' character in zText
--** is escaped and the SQL generated is as follows:
--**
--** <blockquote><pre>
--** INSERT INTO table1 VALUES('It''s a happy day!')
--** </pre></blockquote>
--**
--** This is correct. Had we used %s instead of %q, the generated SQL
--** would have looked like this:
--**
--** <blockquote><pre>
--** INSERT INTO table1 VALUES('It's a happy day!');
--** </pre></blockquote>
--**
--** This second example is an SQL syntax error. As a general rule you should
--** always use %q instead of %s when inserting text into a string literal.
--**
--** ^(The %Q option works like %q except it also adds single quotes around
--** the outside of the total string. Additionally, if the parameter in the
--** argument list is a NULL pointer, %Q substitutes the text "NULL" (without
--** single quotes).)^ So, for example, one could say:
--**
--** <blockquote><pre>
--** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES(%Q)", zText);
--** sqlite3_exec(db, zSQL, 0, 0, 0);
--** sqlite3_free(zSQL);
--** </pre></blockquote>
--**
--** The code above will render a correct SQL statement in the zSQL
--** variable even if the zText variable is a NULL pointer.
--**
--** ^(The "%z" formatting option works like "%s" but with the
--** addition that after the string has been read and copied into
--** the result, [sqlite3_free()] is called on the input string.)^
--
function sqlite3_mprintf (arg1 : Interfaces.C.Strings.chars_ptr -- , ...
) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:1765:18
pragma Import (C, sqlite3_mprintf, "sqlite3_mprintf");
--
-- function sqlite3_vmprintf (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : stdarg_h.va_list) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:1766:18
-- pragma Import (C, sqlite3_vmprintf, "sqlite3_vmprintf");
--
-- function sqlite3_snprintf
-- (arg1 : int;
-- arg2 : Interfaces.C.Strings.chars_ptr;
-- arg3 : Interfaces.C.Strings.chars_ptr -- , ...
-- ) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:1767:18
-- pragma Import (C, sqlite3_snprintf, "sqlite3_snprintf");
--** CAPI3REF: Memory Allocation Subsystem
--**
--** The SQLite core uses these three routines for all of its own
--** internal memory allocation needs. "Core" in the previous sentence
--** does not include operating-system specific VFS implementation. The
--** Windows VFS uses native malloc() and free() for some operations.
--**
--** ^The sqlite3_malloc() routine returns a pointer to a block
--** of memory at least N bytes in length, where N is the parameter.
--** ^If sqlite3_malloc() is unable to obtain sufficient free
--** memory, it returns a NULL pointer. ^If the parameter N to
--** sqlite3_malloc() is zero or negative then sqlite3_malloc() returns
--** a NULL pointer.
--**
--** ^Calling sqlite3_free() with a pointer previously returned
--** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
--** that it might be reused. ^The sqlite3_free() routine is
--** a no-op if is called with a NULL pointer. Passing a NULL pointer
--** to sqlite3_free() is harmless. After being freed, memory
--** should neither be read nor written. Even reading previously freed
--** memory might result in a segmentation fault or other severe error.
--** Memory corruption, a segmentation fault, or other severe error
--** might result if sqlite3_free() is called with a non-NULL pointer that
--** was not obtained from sqlite3_malloc() or sqlite3_realloc().
--**
--** ^(The sqlite3_realloc() interface attempts to resize a
--** prior memory allocation to be at least N bytes, where N is the
--** second parameter. The memory allocation to be resized is the first
--** parameter.)^ ^ If the first parameter to sqlite3_realloc()
--** is a NULL pointer then its behavior is identical to calling
--** sqlite3_malloc(N) where N is the second parameter to sqlite3_realloc().
--** ^If the second parameter to sqlite3_realloc() is zero or
--** negative then the behavior is exactly the same as calling
--** sqlite3_free(P) where P is the first parameter to sqlite3_realloc().
--** ^sqlite3_realloc() returns a pointer to a memory allocation
--** of at least N bytes in size or NULL if sufficient memory is unavailable.
--** ^If M is the size of the prior allocation, then min(N,M) bytes
--** of the prior allocation are copied into the beginning of buffer returned
--** by sqlite3_realloc() and the prior allocation is freed.
--** ^If sqlite3_realloc() returns NULL, then the prior allocation
--** is not freed.
--**
--** ^The memory returned by sqlite3_malloc() and sqlite3_realloc()
--** is always aligned to at least an 8 byte boundary.
--**
--** In SQLite version 3.5.0 and 3.5.1, it was possible to define
--** the SQLITE_OMIT_MEMORY_ALLOCATION which would cause the built-in
--** implementation of these routines to be omitted. That capability
--** is no longer provided. Only built-in memory allocators can be used.
--**
--** The Windows OS interface layer calls
--** the system malloc() and free() directly when converting
--** filenames between the UTF-8 encoding used by SQLite
--** and whatever filename encoding is used by the particular Windows
--** installation. Memory allocation errors are detected, but
--** they are reported back as [SQLITE_CANTOPEN] or
--** [SQLITE_IOERR] rather than [SQLITE_NOMEM].
--**
--** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()]
--** must be either NULL or else pointers obtained from a prior
--** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have
--** not yet been released.
--**
--** The application must not read or write any part of
--** a block of memory after it has been released using
--** [sqlite3_free()] or [sqlite3_realloc()].
--
function sqlite3_malloc (arg1 : int) return System.Address; -- /usr/include/sqlite3.h:1837:18
pragma Import (C, sqlite3_malloc, "sqlite3_malloc");
function sqlite3_realloc (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:1838:18
pragma Import (C, sqlite3_realloc, "sqlite3_realloc");
procedure sqlite3_free (arg1 : System.Address); -- /usr/include/sqlite3.h:1839:17
pragma Import (C, sqlite3_free, "sqlite3_free");
--** CAPI3REF: Memory Allocator Statistics
--**
--** SQLite provides these two interfaces for reporting on the status
--** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()]
--** routines, which form the built-in memory allocation subsystem.
--**
--** ^The [sqlite3_memory_used()] routine returns the number of bytes
--** of memory currently outstanding (malloced but not freed).
--** ^The [sqlite3_memory_highwater()] routine returns the maximum
--** value of [sqlite3_memory_used()] since the high-water mark
--** was last reset. ^The values returned by [sqlite3_memory_used()] and
--** [sqlite3_memory_highwater()] include any overhead
--** added by SQLite in its implementation of [sqlite3_malloc()],
--** but not overhead added by the any underlying system library
--** routines that [sqlite3_malloc()] may call.
--**
--** ^The memory high-water mark is reset to the current value of
--** [sqlite3_memory_used()] if and only if the parameter to
--** [sqlite3_memory_highwater()] is true. ^The value returned
--** by [sqlite3_memory_highwater(1)] is the high-water mark
--** prior to the reset.
--
function sqlite3_memory_used return sqlite3_int64; -- /usr/include/sqlite3.h:1864:26
pragma Import (C, sqlite3_memory_used, "sqlite3_memory_used");
function sqlite3_memory_highwater (arg1 : int) return sqlite3_int64; -- /usr/include/sqlite3.h:1865:26
pragma Import (C, sqlite3_memory_highwater, "sqlite3_memory_highwater");
--** CAPI3REF: Pseudo-Random Number Generator
--**
--** SQLite contains a high-quality pseudo-random number generator (PRNG) used to
--** select random [ROWID | ROWIDs] when inserting new records into a table that
--** already uses the largest possible [ROWID]. The PRNG is also used for
--** the build-in random() and randomblob() SQL functions. This interface allows
--** applications to access the same PRNG for other purposes.
--**
--** ^A call to this routine stores N bytes of randomness into buffer P.
--**
--** ^The first time this routine is invoked (either internally or by
--** the application) the PRNG is seeded using randomness obtained
--** from the xRandomness method of the default [sqlite3_vfs] object.
--** ^On all subsequent invocations, the pseudo-randomness is generated
--** internally and without recourse to the [sqlite3_vfs] xRandomness
--** method.
--
procedure sqlite3_randomness (arg1 : int; arg2 : System.Address); -- /usr/include/sqlite3.h:1885:17
pragma Import (C, sqlite3_randomness, "sqlite3_randomness");
--** CAPI3REF: Compile-Time Authorization Callbacks
--**
--** ^This routine registers a authorizer callback with a particular
--** [database connection], supplied in the first argument.
--** ^The authorizer callback is invoked as SQL statements are being compiled
--** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()],
--** [sqlite3_prepare16()] and [sqlite3_prepare16_v2()]. ^At various
--** points during the compilation process, as logic is being created
--** to perform various actions, the authorizer callback is invoked to
--** see if those actions are allowed. ^The authorizer callback should
--** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the
--** specific action but allow the SQL statement to continue to be
--** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be
--** rejected with an error. ^If the authorizer callback returns
--** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
--** then the [sqlite3_prepare_v2()] or equivalent call that triggered
--** the authorizer will fail with an error message.
--**
--** When the callback returns [SQLITE_OK], that means the operation
--** requested is ok. ^When the callback returns [SQLITE_DENY], the
--** [sqlite3_prepare_v2()] or equivalent call that triggered the
--** authorizer will fail with an error message explaining that
--** access is denied.
--**
--** ^The first parameter to the authorizer callback is a copy of the third
--** parameter to the sqlite3_set_authorizer() interface. ^The second parameter
--** to the callback is an integer [SQLITE_COPY | action code] that specifies
--** the particular action to be authorized. ^The third through sixth parameters
--** to the callback are zero-terminated strings that contain additional
--** details about the action to be authorized.
--**
--** ^If the action code is [SQLITE_READ]
--** and the callback returns [SQLITE_IGNORE] then the
--** [prepared statement] statement is constructed to substitute
--** a NULL value in place of the table column that would have
--** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE]
--** return can be used to deny an untrusted user access to individual
--** columns of a table.
--** ^If the action code is [SQLITE_DELETE] and the callback returns
--** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the
--** [truncate optimization] is disabled and all rows are deleted individually.
--**
--** An authorizer is used when [sqlite3_prepare | preparing]
--** SQL statements from an untrusted source, to ensure that the SQL statements
--** do not try to access data they are not allowed to see, or that they do not
--** try to execute malicious statements that damage the database. For
--** example, an application may allow a user to enter arbitrary
--** SQL queries for evaluation by a database. But the application does
--** not want the user to be able to make arbitrary changes to the
--** database. An authorizer could then be put in place while the
--** user-entered SQL is being [sqlite3_prepare | prepared] that
--** disallows everything except [SELECT] statements.
--**
--** Applications that need to process SQL from untrusted sources
--** might also consider lowering resource limits using [sqlite3_limit()]
--** and limiting database size using the [max_page_count] [PRAGMA]
--** in addition to using an authorizer.
--**
--** ^(Only a single authorizer can be in place on a database connection
--** at a time. Each call to sqlite3_set_authorizer overrides the
--** previous call.)^ ^Disable the authorizer by installing a NULL callback.
--** The authorizer is disabled by default.
--**
--** The authorizer callback must not do anything that will modify
--** the database connection that invoked the authorizer callback.
--** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
--** database connections for the meaning of "modify" in this paragraph.
--**
--** ^When [sqlite3_prepare_v2()] is used to prepare a statement, the
--** statement might be re-prepared during [sqlite3_step()] due to a
--** schema change. Hence, the application should ensure that the
--** correct authorizer callback remains in place during the [sqlite3_step()].
--**
--** ^Note that the authorizer callback is invoked only during
--** [sqlite3_prepare()] or its variants. Authorization is not
--** performed during statement evaluation in [sqlite3_step()], unless
--** as stated in the previous paragraph, sqlite3_step() invokes
--** sqlite3_prepare_v2() to reprepare a statement after a schema change.
--
function sqlite3_set_authorizer
(arg1 : System.Address;
arg2 : access function
(arg1 : System.Address;
arg2 : int;
arg3 : Interfaces.C.Strings.chars_ptr;
arg4 : Interfaces.C.Strings.chars_ptr;
arg5 : Interfaces.C.Strings.chars_ptr;
arg6 : Interfaces.C.Strings.chars_ptr) return int;
arg3 : System.Address) return int; -- /usr/include/sqlite3.h:1967:16
pragma Import (C, sqlite3_set_authorizer, "sqlite3_set_authorizer");
--** CAPI3REF: Authorizer Return Codes
--**
--** The [sqlite3_set_authorizer | authorizer callback function] must
--** return either [SQLITE_OK] or one of these two constants in order
--** to signal SQLite whether or not the action is permitted. See the
--** [sqlite3_set_authorizer | authorizer documentation] for additional
--** information.
--
--** CAPI3REF: Authorizer Action Codes
--**
--** The [sqlite3_set_authorizer()] interface registers a callback function
--** that is invoked to authorize certain SQL statement actions. The
--** second parameter to the callback is an integer code that specifies
--** what action is being authorized. These are the integer action codes that
--** the authorizer callback may be passed.
--**
--** These action code values signify what kind of operation is to be
--** authorized. The 3rd and 4th parameters to the authorization
--** callback function will be parameters or NULL depending on which of these
--** codes is used as the second parameter. ^(The 5th parameter to the
--** authorizer callback is the name of the database ("main", "temp",
--** etc.) if applicable.)^ ^The 6th parameter to the authorizer callback
--** is the name of the inner-most trigger or view that is responsible for
--** the access attempt or NULL if this access attempt is directly from
--** top-level SQL code.
--
--****************************************** 3rd ************ 4th **********
--** CAPI3REF: Tracing And Profiling Functions
--** EXPERIMENTAL
--**
--** These routines register callback functions that can be used for
--** tracing and profiling the execution of SQL statements.
--**
--** ^The callback function registered by sqlite3_trace() is invoked at
--** various times when an SQL statement is being run by [sqlite3_step()].
--** ^The sqlite3_trace() callback is invoked with a UTF-8 rendering of the
--** SQL statement text as the statement first begins executing.
--** ^(Additional sqlite3_trace() callbacks might occur
--** as each triggered subprogram is entered. The callbacks for triggers
--** contain a UTF-8 SQL comment that identifies the trigger.)^
--**
--** ^The callback function registered by sqlite3_profile() is invoked
--** as each SQL statement finishes. ^The profile callback contains
--** the original statement text and an estimate of wall-clock time
--** of how long that statement took to run.
--
function sqlite3_trace
(arg1 : System.Address;
arg2 : access procedure (arg1 : System.Address; arg2 : Interfaces.C.Strings.chars_ptr);
arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:2059:38
pragma Import (C, sqlite3_trace, "sqlite3_trace");
function sqlite3_profile
(arg1 : System.Address;
arg2 : access procedure
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : sqlite3_uint64);
arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:2060:38
pragma Import (C, sqlite3_profile, "sqlite3_profile");
--** CAPI3REF: Query Progress Callbacks
--**
--** ^This routine configures a callback function - the
--** progress callback - that is invoked periodically during long
--** running calls to [sqlite3_exec()], [sqlite3_step()] and
--** [sqlite3_get_table()]. An example use for this
--** interface is to keep a GUI updated during a large query.
--**
--** ^If the progress callback returns non-zero, the operation is
--** interrupted. This feature can be used to implement a
--** "Cancel" button on a GUI progress dialog box.
--**
--** The progress handler must not do anything that will modify
--** the database connection that invoked the progress handler.
--** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
--** database connections for the meaning of "modify" in this paragraph.
--**
--
procedure sqlite3_progress_handler
(arg1 : System.Address;
arg2 : int;
arg3 : access function (arg1 : System.Address) return int;
arg4 : System.Address); -- /usr/include/sqlite3.h:2082:17
pragma Import (C, sqlite3_progress_handler, "sqlite3_progress_handler");
--** CAPI3REF: Opening A New Database Connection
--**
--** ^These routines open an SQLite database file whose name is given by the
--** filename argument. ^The filename argument is interpreted as UTF-8 for
--** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte
--** order for sqlite3_open16(). ^(A [database connection] handle is usually
--** returned in *ppDb, even if an error occurs. The only exception is that
--** if SQLite is unable to allocate memory to hold the [sqlite3] object,
--** a NULL will be written into *ppDb instead of a pointer to the [sqlite3]
--** object.)^ ^(If the database is opened (and/or created) successfully, then
--** [SQLITE_OK] is returned. Otherwise an [error code] is returned.)^ ^The
--** [sqlite3_errmsg()] or [sqlite3_errmsg16()] routines can be used to obtain
--** an English language description of the error following a failure of any
--** of the sqlite3_open() routines.
--**
--** ^The default encoding for the database will be UTF-8 if
--** sqlite3_open() or sqlite3_open_v2() is called and
--** UTF-16 in the native byte order if sqlite3_open16() is used.
--**
--** Whether or not an error occurs when it is opened, resources
--** associated with the [database connection] handle should be released by
--** passing it to [sqlite3_close()] when it is no longer required.
--**
--** The sqlite3_open_v2() interface works like sqlite3_open()
--** except that it accepts two additional parameters for additional control
--** over the new database connection. ^(The flags parameter to
--** sqlite3_open_v2() can take one of
--** the following three values, optionally combined with the
--** [SQLITE_OPEN_NOMUTEX], [SQLITE_OPEN_FULLMUTEX], [SQLITE_OPEN_SHAREDCACHE],
--** and/or [SQLITE_OPEN_PRIVATECACHE] flags:)^
--**
--** <dl>
--** ^(<dt>[SQLITE_OPEN_READONLY]</dt>
--** <dd>The database is opened in read-only mode. If the database does not
--** already exist, an error is returned.</dd>)^
--**
--** ^(<dt>[SQLITE_OPEN_READWRITE]</dt>
--** <dd>The database is opened for reading and writing if possible, or reading
--** only if the file is write protected by the operating system. In either
--** case the database must already exist, otherwise an error is returned.</dd>)^
--**
--** ^(<dt>[SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]</dt>
--** <dd>The database is opened for reading and writing, and is creates it if
--** it does not already exist. This is the behavior that is always used for
--** sqlite3_open() and sqlite3_open16().</dd>)^
--** </dl>
--**
--** If the 3rd parameter to sqlite3_open_v2() is not one of the
--** combinations shown above or one of the combinations shown above combined
--** with the [SQLITE_OPEN_NOMUTEX], [SQLITE_OPEN_FULLMUTEX],
--** [SQLITE_OPEN_SHAREDCACHE] and/or [SQLITE_OPEN_SHAREDCACHE] flags,
--** then the behavior is undefined.
--**
--** ^If the [SQLITE_OPEN_NOMUTEX] flag is set, then the database connection
--** opens in the multi-thread [threading mode] as long as the single-thread
--** mode has not been set at compile-time or start-time. ^If the
--** [SQLITE_OPEN_FULLMUTEX] flag is set then the database connection opens
--** in the serialized [threading mode] unless single-thread was
--** previously selected at compile-time or start-time.
--** ^The [SQLITE_OPEN_SHAREDCACHE] flag causes the database connection to be
--** eligible to use [shared cache mode], regardless of whether or not shared
--** cache is enabled using [sqlite3_enable_shared_cache()]. ^The
--** [SQLITE_OPEN_PRIVATECACHE] flag causes the database connection to not
--** participate in [shared cache mode] even if it is enabled.
--**
--** ^If the filename is ":memory:", then a private, temporary in-memory database
--** is created for the connection. ^This in-memory database will vanish when
--** the database connection is closed. Future versions of SQLite might
--** make use of additional special filenames that begin with the ":" character.
--** It is recommended that when a database filename actually does begin with
--** a ":" character you should prefix the filename with a pathname such as
--** "./" to avoid ambiguity.
--**
--** ^If the filename is an empty string, then a private, temporary
--** on-disk database will be created. ^This private database will be
--** automatically deleted as soon as the database connection is closed.
--**
--** ^The fourth parameter to sqlite3_open_v2() is the name of the
--** [sqlite3_vfs] object that defines the operating system interface that
--** the new database connection should use. ^If the fourth parameter is
--** a NULL pointer then the default [sqlite3_vfs] object is used.
--**
--** <b>Note to Windows users:</b> The encoding used for the filename argument
--** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever
--** codepage is currently defined. Filenames containing international
--** characters must be converted to UTF-8 prior to passing them into
--** sqlite3_open() or sqlite3_open_v2().
--
function sqlite3_open (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : access System.Address) return int; -- /usr/include/sqlite3.h:2173:16
pragma Import (C, sqlite3_open, "sqlite3_open");
-- Database filename (UTF-8)
-- OUT: SQLite db handle
function sqlite3_open16 (arg1 : System.Address; arg2 : System.Address) return int; -- /usr/include/sqlite3.h:2177:16
pragma Import (C, sqlite3_open16, "sqlite3_open16");
-- Database filename (UTF-16)
-- OUT: SQLite db handle
function sqlite3_open_v2
(arg1 : Interfaces.C.Strings.chars_ptr;
arg2 : access System.Address;
arg3 : int;
arg4 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:2181:16
pragma Import (C, sqlite3_open_v2, "sqlite3_open_v2");
-- Database filename (UTF-8)
-- OUT: SQLite db handle
-- Flags
-- Name of VFS module to use
--** CAPI3REF: Error Codes And Messages
--**
--** ^The sqlite3_errcode() interface returns the numeric [result code] or
--** [extended result code] for the most recent failed sqlite3_* API call
--** associated with a [database connection]. If a prior API call failed
--** but the most recent API call succeeded, the return value from
--** sqlite3_errcode() is undefined. ^The sqlite3_extended_errcode()
--** interface is the same except that it always returns the
--** [extended result code] even when extended result codes are
--** disabled.
--**
--** ^The sqlite3_errmsg() and sqlite3_errmsg16() return English-language
--** text that describes the error, as either UTF-8 or UTF-16 respectively.
--** ^(Memory to hold the error message string is managed internally.
--** The application does not need to worry about freeing the result.
--** However, the error string might be overwritten or deallocated by
--** subsequent calls to other SQLite interface functions.)^
--**
--** When the serialized [threading mode] is in use, it might be the
--** case that a second error occurs on a separate thread in between
--** the time of the first error and the call to these interfaces.
--** When that happens, the second error will be reported since these
--** interfaces always report the most recent result. To avoid
--** this, each thread can obtain exclusive use of the [database connection] D
--** by invoking [sqlite3_mutex_enter]([sqlite3_db_mutex](D)) before beginning
--** to use D and invoking [sqlite3_mutex_leave]([sqlite3_db_mutex](D)) after
--** all calls to the interfaces listed here are completed.
--**
--** If an interface fails with SQLITE_MISUSE, that means the interface
--** was invoked incorrectly by the application. In that case, the
--** error code and message may or may not be set.
--
function sqlite3_errcode (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:2221:16
pragma Import (C, sqlite3_errcode, "sqlite3_errcode");
function sqlite3_extended_errcode (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:2222:16
pragma Import (C, sqlite3_extended_errcode, "sqlite3_extended_errcode");
function sqlite3_errmsg (arg1 : System.Address) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2223:24
pragma Import (C, sqlite3_errmsg, "sqlite3_errmsg");
function sqlite3_errmsg16 (arg1 : System.Address) return System.Address; -- /usr/include/sqlite3.h:2224:24
pragma Import (C, sqlite3_errmsg16, "sqlite3_errmsg16");
--** CAPI3REF: SQL Statement Object
--** KEYWORDS: {prepared statement} {prepared statements}
--**
--** An instance of this object represents a single SQL statement.
--** This object is variously known as a "prepared statement" or a
--** "compiled SQL statement" or simply as a "statement".
--**
--** The life of a statement object goes something like this:
--**
--** <ol>
--** <li> Create the object using [sqlite3_prepare_v2()] or a related
--** function.
--** <li> Bind values to [host parameters] using the sqlite3_bind_*()
--** interfaces.
--** <li> Run the SQL by calling [sqlite3_step()] one or more times.
--** <li> Reset the statement using [sqlite3_reset()] then go back
--** to step 2. Do this zero or more times.
--** <li> Destroy the object using [sqlite3_finalize()].
--** </ol>
--**
--** Refer to documentation on individual methods above for additional
--** information.
--
-- skipped empty struct sqlite3_stmt
--** CAPI3REF: Run-time Limits
--**
--** ^(This interface allows the size of various constructs to be limited
--** on a connection by connection basis. The first parameter is the
--** [database connection] whose limit is to be set or queried. The
--** second parameter is one of the [limit categories] that define a
--** class of constructs to be size limited. The third parameter is the
--** new limit for that construct. The function returns the old limit.)^
--**
--** ^If the new limit is a negative number, the limit is unchanged.
--** ^(For the limit category of SQLITE_LIMIT_XYZ there is a
--** [limits | hard upper bound]
--** set by a compile-time C preprocessor macro named
--** [limits | SQLITE_MAX_XYZ].
--** (The "_LIMIT_" in the name is changed to "_MAX_".))^
--** ^Attempts to increase a limit above its hard upper bound are
--** silently truncated to the hard upper bound.
--**
--** Run-time limits are intended for use in applications that manage
--** both their own internal database and also databases that are controlled
--** by untrusted external sources. An example application might be a
--** web browser that has its own databases for storing history and
--** separate databases controlled by JavaScript applications downloaded
--** off the Internet. The internal databases can be given the
--** large, default limits. Databases managed by external sources can
--** be given much smaller limits designed to prevent a denial of service
--** attack. Developers might also want to use the [sqlite3_set_authorizer()]
--** interface to further control untrusted SQL. The size of the database
--** created by an untrusted script can be contained using the
--** [max_page_count] [PRAGMA].
--**
--** New run-time limit categories may be added in future releases.
--
function sqlite3_limit
(arg1 : System.Address;
arg2 : int;
arg3 : int) return int; -- /usr/include/sqlite3.h:2286:16
pragma Import (C, sqlite3_limit, "sqlite3_limit");
--** CAPI3REF: Run-Time Limit Categories
--** KEYWORDS: {limit category} {*limit categories}
--**
--** These constants define various performance limits
--** that can be lowered at run-time using [sqlite3_limit()].
--** The synopsis of the meanings of the various limits is shown below.
--** Additional information is available at [limits | Limits in SQLite].
--**
--** <dl>
--** ^(<dt>SQLITE_LIMIT_LENGTH</dt>
--** <dd>The maximum size of any string or BLOB or table row.<dd>)^
--**
--** ^(<dt>SQLITE_LIMIT_SQL_LENGTH</dt>
--** <dd>The maximum length of an SQL statement, in bytes.</dd>)^
--**
--** ^(<dt>SQLITE_LIMIT_COLUMN</dt>
--** <dd>The maximum number of columns in a table definition or in the
--** result set of a [SELECT] or the maximum number of columns in an index
--** or in an ORDER BY or GROUP BY clause.</dd>)^
--**
--** ^(<dt>SQLITE_LIMIT_EXPR_DEPTH</dt>
--** <dd>The maximum depth of the parse tree on any expression.</dd>)^
--**
--** ^(<dt>SQLITE_LIMIT_COMPOUND_SELECT</dt>
--** <dd>The maximum number of terms in a compound SELECT statement.</dd>)^
--**
--** ^(<dt>SQLITE_LIMIT_VDBE_OP</dt>
--** <dd>The maximum number of instructions in a virtual machine program
--** used to implement an SQL statement.</dd>)^
--**
--** ^(<dt>SQLITE_LIMIT_FUNCTION_ARG</dt>
--** <dd>The maximum number of arguments on a function.</dd>)^
--**
--** ^(<dt>SQLITE_LIMIT_ATTACHED</dt>
--** <dd>The maximum number of [ATTACH | attached databases].)^</dd>
--**
--** ^(<dt>SQLITE_LIMIT_LIKE_PATTERN_LENGTH</dt>
--** <dd>The maximum length of the pattern argument to the [LIKE] or
--** [GLOB] operators.</dd>)^
--**
--** ^(<dt>SQLITE_LIMIT_VARIABLE_NUMBER</dt>
--** <dd>The maximum number of variables in an SQL statement that can
--** be bound.</dd>)^
--**
--** ^(<dt>SQLITE_LIMIT_TRIGGER_DEPTH</dt>
--** <dd>The maximum depth of recursion for triggers.</dd>)^
--** </dl>
--
--** CAPI3REF: Compiling An SQL Statement
--** KEYWORDS: {SQL statement compiler}
--**
--** To execute an SQL query, it must first be compiled into a byte-code
--** program using one of these routines.
--**
--** The first argument, "db", is a [database connection] obtained from a
--** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or
--** [sqlite3_open16()]. The database connection must not have been closed.
--**
--** The second argument, "zSql", is the statement to be compiled, encoded
--** as either UTF-8 or UTF-16. The sqlite3_prepare() and sqlite3_prepare_v2()
--** interfaces use UTF-8, and sqlite3_prepare16() and sqlite3_prepare16_v2()
--** use UTF-16.
--**
--** ^If the nByte argument is less than zero, then zSql is read up to the
--** first zero terminator. ^If nByte is non-negative, then it is the maximum
--** number of bytes read from zSql. ^When nByte is non-negative, the
--** zSql string ends at either the first '\000' or '\u0000' character or
--** the nByte-th byte, whichever comes first. If the caller knows
--** that the supplied string is nul-terminated, then there is a small
--** performance advantage to be gained by passing an nByte parameter that
--** is equal to the number of bytes in the input string <i>including</i>
--** the nul-terminator bytes.
--**
--** ^If pzTail is not NULL then *pzTail is made to point to the first byte
--** past the end of the first SQL statement in zSql. These routines only
--** compile the first statement in zSql, so *pzTail is left pointing to
--** what remains uncompiled.
--**
--** ^*ppStmt is left pointing to a compiled [prepared statement] that can be
--** executed using [sqlite3_step()]. ^If there is an error, *ppStmt is set
--** to NULL. ^If the input text contains no SQL (if the input is an empty
--** string or a comment) then *ppStmt is set to NULL.
--** The calling procedure is responsible for deleting the compiled
--** SQL statement using [sqlite3_finalize()] after it has finished with it.
--** ppStmt may not be NULL.
--**
--** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK];
--** otherwise an [error code] is returned.
--**
--** The sqlite3_prepare_v2() and sqlite3_prepare16_v2() interfaces are
--** recommended for all new programs. The two older interfaces are retained
--** for backwards compatibility, but their use is discouraged.
--** ^In the "v2" interfaces, the prepared statement
--** that is returned (the [sqlite3_stmt] object) contains a copy of the
--** original SQL text. This causes the [sqlite3_step()] interface to
--** behave differently in three ways:
--**
--** <ol>
--** <li>
--** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it
--** always used to do, [sqlite3_step()] will automatically recompile the SQL
--** statement and try to run it again. ^If the schema has changed in
--** a way that makes the statement no longer valid, [sqlite3_step()] will still
--** return [SQLITE_SCHEMA]. But unlike the legacy behavior, [SQLITE_SCHEMA] is
--** now a fatal error. Calling [sqlite3_prepare_v2()] again will not make the
--** error go away. Note: use [sqlite3_errmsg()] to find the text
--** of the parsing error that results in an [SQLITE_SCHEMA] return.
--** </li>
--**
--** <li>
--** ^When an error occurs, [sqlite3_step()] will return one of the detailed
--** [error codes] or [extended error codes]. ^The legacy behavior was that
--** [sqlite3_step()] would only return a generic [SQLITE_ERROR] result code
--** and the application would have to make a second call to [sqlite3_reset()]
--** in order to find the underlying cause of the problem. With the "v2" prepare
--** interfaces, the underlying reason for the error is returned immediately.
--** </li>
--**
--** <li>
--** ^If the value of a [parameter | host parameter] in the WHERE clause might
--** change the query plan for a statement, then the statement may be
--** automatically recompiled (as if there had been a schema change) on the first
--** [sqlite3_step()] call following any change to the
--** [sqlite3_bind_text | bindings] of the [parameter].
--** </li>
--** </ol>
--
function sqlite3_prepare
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int;
arg4 : System.Address;
arg5 : System.Address) return int; -- /usr/include/sqlite3.h:2429:16
pragma Import (C, sqlite3_prepare, "sqlite3_prepare");
-- Database handle
-- SQL statement, UTF-8 encoded
-- Maximum length of zSql in bytes.
-- OUT: Statement handle
-- OUT: Pointer to unused portion of zSql
function sqlite3_prepare_v2
(db : System.Address;
zSql : Interfaces.C.Strings.chars_ptr;
nByte : int;
ppStmt : System.Address;
pzTail : System.Address) return int; -- /usr/include/sqlite3.h:2436:16
pragma Import (C, sqlite3_prepare_v2, "sqlite3_prepare_v2");
-- Database handle
-- SQL statement, UTF-8 encoded
-- Maximum length of zSql in bytes.
-- OUT: Statement handle
-- OUT: Pointer to unused portion of zSql
function sqlite3_prepare16
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : System.Address;
arg5 : System.Address) return int; -- /usr/include/sqlite3.h:2443:16
pragma Import (C, sqlite3_prepare16, "sqlite3_prepare16");
-- Database handle
-- SQL statement, UTF-16 encoded
-- Maximum length of zSql in bytes.
-- OUT: Statement handle
-- OUT: Pointer to unused portion of zSql
function sqlite3_prepare16_v2
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : System.Address;
arg5 : System.Address) return int; -- /usr/include/sqlite3.h:2450:16
pragma Import (C, sqlite3_prepare16_v2, "sqlite3_prepare16_v2");
-- Database handle
-- SQL statement, UTF-16 encoded
-- Maximum length of zSql in bytes.
-- OUT: Statement handle
-- OUT: Pointer to unused portion of zSql
--** CAPI3REF: Retrieving Statement SQL
--**
--** ^This interface can be used to retrieve a saved copy of the original
--** SQL text used to create a [prepared statement] if that statement was
--** compiled using either [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()].
--
function sqlite3_sql (arg1 : System.Address) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2465:24
pragma Import (C, sqlite3_sql, "sqlite3_sql");
--** CAPI3REF: Dynamically Typed Value Object
--** KEYWORDS: {protected sqlite3_value} {unprotected sqlite3_value}
--**
--** SQLite uses the sqlite3_value object to represent all values
--** that can be stored in a database table. SQLite uses dynamic typing
--** for the values it stores. ^Values stored in sqlite3_value objects
--** can be integers, floating point values, strings, BLOBs, or NULL.
--**
--** An sqlite3_value object may be either "protected" or "unprotected".
--** Some interfaces require a protected sqlite3_value. Other interfaces
--** will accept either a protected or an unprotected sqlite3_value.
--** Every interface that accepts sqlite3_value arguments specifies
--** whether or not it requires a protected sqlite3_value.
--**
--** The terms "protected" and "unprotected" refer to whether or not
--** a mutex is held. A internal mutex is held for a protected
--** sqlite3_value object but no mutex is held for an unprotected
--** sqlite3_value object. If SQLite is compiled to be single-threaded
--** (with [SQLITE_THREADSAFE=0] and with [sqlite3_threadsafe()] returning 0)
--** or if SQLite is run in one of reduced mutex modes
--** [SQLITE_CONFIG_SINGLETHREAD] or [SQLITE_CONFIG_MULTITHREAD]
--** then there is no distinction between protected and unprotected
--** sqlite3_value objects and they can be used interchangeably. However,
--** for maximum code portability it is recommended that applications
--** still make the distinction between between protected and unprotected
--** sqlite3_value objects even when not strictly required.
--**
--** ^The sqlite3_value objects that are passed as parameters into the
--** implementation of [application-defined SQL functions] are protected.
--** ^The sqlite3_value object returned by
--** [sqlite3_column_value()] is unprotected.
--** Unprotected sqlite3_value objects may only be used with
--** [sqlite3_result_value()] and [sqlite3_bind_value()].
--** The [sqlite3_value_blob | sqlite3_value_type()] family of
--** interfaces require protected sqlite3_value objects.
--
-- skipped empty struct Mem
-- skipped empty struct sqlite3_value
--** CAPI3REF: SQL Function Context Object
--**
--** The context in which an SQL function executes is stored in an
--** sqlite3_context object. ^A pointer to an sqlite3_context object
--** is always first parameter to [application-defined SQL functions].
--** The application-defined SQL function implementation will pass this
--** pointer through into calls to [sqlite3_result_int | sqlite3_result()],
--** [sqlite3_aggregate_context()], [sqlite3_user_data()],
--** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()],
--** and/or [sqlite3_set_auxdata()].
--
-- skipped empty struct sqlite3_context
--** CAPI3REF: Binding Values To Prepared Statements
--** KEYWORDS: {host parameter} {host parameters} {host parameter name}
--** KEYWORDS: {SQL parameter} {SQL parameters} {parameter binding}
--**
--** ^(In the SQL statement text input to [sqlite3_prepare_v2()] and its variants,
--** literals may be replaced by a [parameter] that matches one of following
--** templates:
--**
--** <ul>
--** <li> ?
--** <li> ?NNN
--** <li> :VVV
--** <li> @VVV
--** <li> $VVV
--** </ul>
--**
--** In the templates above, NNN represents an integer literal,
--** and VVV represents an alphanumeric identifer.)^ ^The values of these
--** parameters (also called "host parameter names" or "SQL parameters")
--** can be set using the sqlite3_bind_*() routines defined here.
--**
--** ^The first argument to the sqlite3_bind_*() routines is always
--** a pointer to the [sqlite3_stmt] object returned from
--** [sqlite3_prepare_v2()] or its variants.
--**
--** ^The second argument is the index of the SQL parameter to be set.
--** ^The leftmost SQL parameter has an index of 1. ^When the same named
--** SQL parameter is used more than once, second and subsequent
--** occurrences have the same index as the first occurrence.
--** ^The index for named parameters can be looked up using the
--** [sqlite3_bind_parameter_index()] API if desired. ^The index
--** for "?NNN" parameters is the value of NNN.
--** ^The NNN value must be between 1 and the [sqlite3_limit()]
--** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 999).
--**
--** ^The third argument is the value to bind to the parameter.
--**
--** ^(In those routines that have a fourth argument, its value is the
--** number of bytes in the parameter. To be clear: the value is the
--** number of <u>bytes</u> in the value, not the number of characters.)^
--** ^If the fourth parameter is negative, the length of the string is
--** the number of bytes up to the first zero terminator.
--**
--** ^The fifth argument to sqlite3_bind_blob(), sqlite3_bind_text(), and
--** sqlite3_bind_text16() is a destructor used to dispose of the BLOB or
--** string after SQLite has finished with it. ^If the fifth argument is
--** the special value [SQLITE_STATIC], then SQLite assumes that the
--** information is in static, unmanaged space and does not need to be freed.
--** ^If the fifth argument has the value [SQLITE_TRANSIENT], then
--** SQLite makes its own private copy of the data immediately, before
--** the sqlite3_bind_*() routine returns.
--**
--** ^The sqlite3_bind_zeroblob() routine binds a BLOB of length N that
--** is filled with zeroes. ^A zeroblob uses a fixed amount of memory
--** (just an integer to hold its size) while it is being processed.
--** Zeroblobs are intended to serve as placeholders for BLOBs whose
--** content is later written using
--** [sqlite3_blob_open | incremental BLOB I/O] routines.
--** ^A negative value for the zeroblob results in a zero-length BLOB.
--**
--** ^If any of the sqlite3_bind_*() routines are called with a NULL pointer
--** for the [prepared statement] or with a prepared statement for which
--** [sqlite3_step()] has been called more recently than [sqlite3_reset()],
--** then the call will return [SQLITE_MISUSE]. If any sqlite3_bind_()
--** routine is passed a [prepared statement] that has been finalized, the
--** result is undefined and probably harmful.
--**
--** ^Bindings are not cleared by the [sqlite3_reset()] routine.
--** ^Unbound parameters are interpreted as NULL.
--**
--** ^The sqlite3_bind_* routines return [SQLITE_OK] on success or an
--** [error code] if anything goes wrong.
--** ^[SQLITE_RANGE] is returned if the parameter
--** index is out of range. ^[SQLITE_NOMEM] is returned if malloc() fails.
--**
--** See also: [sqlite3_bind_parameter_count()],
--** [sqlite3_bind_parameter_name()], and [sqlite3_bind_parameter_index()].
--
function sqlite3_bind_blob
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address;
arg4 : int;
arg5 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:2599:16
pragma Import (C, sqlite3_bind_blob, "sqlite3_bind_blob");
function sqlite3_bind_double
(arg1 : System.Address;
arg2 : int;
arg3 : double) return int; -- /usr/include/sqlite3.h:2600:16
pragma Import (C, sqlite3_bind_double, "sqlite3_bind_double");
function sqlite3_bind_int
(arg1 : System.Address;
arg2 : int;
arg3 : int) return int; -- /usr/include/sqlite3.h:2601:16
pragma Import (C, sqlite3_bind_int, "sqlite3_bind_int");
function sqlite3_bind_int64
(arg1 : System.Address;
arg2 : int;
arg3 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:2602:16
pragma Import (C, sqlite3_bind_int64, "sqlite3_bind_int64");
function sqlite3_bind_null (arg1 : System.Address; arg2 : int) return int; -- /usr/include/sqlite3.h:2603:16
pragma Import (C, sqlite3_bind_null, "sqlite3_bind_null");
function sqlite3_bind_text
(arg1 : System.Address;
arg2 : int;
arg3 : Interfaces.C.Strings.chars_ptr;
arg4 : int;
arg5 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:2604:16
pragma Import (C, sqlite3_bind_text, "sqlite3_bind_text");
function sqlite3_bind_text16
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address;
arg4 : int;
arg5 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:2605:16
pragma Import (C, sqlite3_bind_text16, "sqlite3_bind_text16");
function sqlite3_bind_value
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address) return int; -- /usr/include/sqlite3.h:2606:16
pragma Import (C, sqlite3_bind_value, "sqlite3_bind_value");
function sqlite3_bind_zeroblob
(arg1 : System.Address;
arg2 : int;
arg3 : int) return int; -- /usr/include/sqlite3.h:2607:16
pragma Import (C, sqlite3_bind_zeroblob, "sqlite3_bind_zeroblob");
--** CAPI3REF: Number Of SQL Parameters
--**
--** ^This routine can be used to find the number of [SQL parameters]
--** in a [prepared statement]. SQL parameters are tokens of the
--** form "?", "?NNN", ":AAA", "$AAA", or "@AAA" that serve as
--** placeholders for values that are [sqlite3_bind_blob | bound]
--** to the parameters at a later time.
--**
--** ^(This routine actually returns the index of the largest (rightmost)
--** parameter. For all forms except ?NNN, this will correspond to the
--** number of unique parameters. If parameters of the ?NNN form are used,
--** there may be gaps in the list.)^
--**
--** See also: [sqlite3_bind_blob|sqlite3_bind()],
--** [sqlite3_bind_parameter_name()], and
--** [sqlite3_bind_parameter_index()].
--
function sqlite3_bind_parameter_count (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:2627:16
pragma Import (C, sqlite3_bind_parameter_count, "sqlite3_bind_parameter_count");
--** CAPI3REF: Name Of A Host Parameter
--**
--** ^The sqlite3_bind_parameter_name(P,N) interface returns
--** the name of the N-th [SQL parameter] in the [prepared statement] P.
--** ^(SQL parameters of the form "?NNN" or ":AAA" or "@AAA" or "$AAA"
--** have a name which is the string "?NNN" or ":AAA" or "@AAA" or "$AAA"
--** respectively.
--** In other words, the initial ":" or "$" or "@" or "?"
--** is included as part of the name.)^
--** ^Parameters of the form "?" without a following integer have no name
--** and are referred to as "nameless" or "anonymous parameters".
--**
--** ^The first host parameter has an index of 1, not 0.
--**
--** ^If the value N is out of range or if the N-th parameter is
--** nameless, then NULL is returned. ^The returned string is
--** always in UTF-8 encoding even if the named parameter was
--** originally specified as UTF-16 in [sqlite3_prepare16()] or
--** [sqlite3_prepare16_v2()].
--**
--** See also: [sqlite3_bind_blob|sqlite3_bind()],
--** [sqlite3_bind_parameter_count()], and
--** [sqlite3_bind_parameter_index()].
--
function sqlite3_bind_parameter_name (arg1 : System.Address; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2654:24
pragma Import (C, sqlite3_bind_parameter_name, "sqlite3_bind_parameter_name");
--** CAPI3REF: Index Of A Parameter With A Given Name
--**
--** ^Return the index of an SQL parameter given its name. ^The
--** index value returned is suitable for use as the second
--** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero
--** is returned if no matching parameter is found. ^The parameter
--** name must be given in UTF-8 even if the original statement
--** was prepared from UTF-16 text using [sqlite3_prepare16_v2()].
--**
--** See also: [sqlite3_bind_blob|sqlite3_bind()],
--** [sqlite3_bind_parameter_count()], and
--** [sqlite3_bind_parameter_index()].
--
function sqlite3_bind_parameter_index (arg1 : System.Address; arg2 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:2670:16
pragma Import (C, sqlite3_bind_parameter_index, "sqlite3_bind_parameter_index");
--** CAPI3REF: Reset All Bindings On A Prepared Statement
--**
--** ^Contrary to the intuition of many, [sqlite3_reset()] does not reset
--** the [sqlite3_bind_blob | bindings] on a [prepared statement].
--** ^Use this routine to reset all host parameters to NULL.
--
function sqlite3_clear_bindings (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:2679:16
pragma Import (C, sqlite3_clear_bindings, "sqlite3_clear_bindings");
--** CAPI3REF: Number Of Columns In A Result Set
--**
--** ^Return the number of columns in the result set returned by the
--** [prepared statement]. ^This routine returns 0 if pStmt is an SQL
--** statement that does not return data (for example an [UPDATE]).
--
function sqlite3_column_count (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:2688:16
pragma Import (C, sqlite3_column_count, "sqlite3_column_count");
--** CAPI3REF: Column Names In A Result Set
--**
--** ^These routines return the name assigned to a particular column
--** in the result set of a [SELECT] statement. ^The sqlite3_column_name()
--** interface returns a pointer to a zero-terminated UTF-8 string
--** and sqlite3_column_name16() returns a pointer to a zero-terminated
--** UTF-16 string. ^The first parameter is the [prepared statement]
--** that implements the [SELECT] statement. ^The second parameter is the
--** column number. ^The leftmost column is number 0.
--**
--** ^The returned string pointer is valid until either the [prepared statement]
--** is destroyed by [sqlite3_finalize()] or until the next call to
--** sqlite3_column_name() or sqlite3_column_name16() on the same column.
--**
--** ^If sqlite3_malloc() fails during the processing of either routine
--** (for example during a conversion from UTF-8 to UTF-16) then a
--** NULL pointer is returned.
--**
--** ^The name of a result column is the value of the "AS" clause for
--** that column, if there is an AS clause. If there is no AS clause
--** then the name of the column is unspecified and may change from
--** one release of SQLite to the next.
--
function sqlite3_column_name (arg1 : System.Address; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2714:24
pragma Import (C, sqlite3_column_name, "sqlite3_column_name");
function sqlite3_column_name16 (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:2715:24
pragma Import (C, sqlite3_column_name16, "sqlite3_column_name16");
--** CAPI3REF: Source Of Data In A Query Result
--**
--** ^These routines provide a means to determine the database, table, and
--** table column that is the origin of a particular result column in
--** [SELECT] statement.
--** ^The name of the database or table or column can be returned as
--** either a UTF-8 or UTF-16 string. ^The _database_ routines return
--** the database name, the _table_ routines return the table name, and
--** the origin_ routines return the column name.
--** ^The returned string is valid until the [prepared statement] is destroyed
--** using [sqlite3_finalize()] or until the same information is requested
--** again in a different encoding.
--**
--** ^The names returned are the original un-aliased names of the
--** database, table, and column.
--**
--** ^The first argument to these interfaces is a [prepared statement].
--** ^These functions return information about the Nth result column returned by
--** the statement, where N is the second function argument.
--** ^The left-most column is column 0 for these routines.
--**
--** ^If the Nth column returned by the statement is an expression or
--** subquery and is not a column value, then all of these functions return
--** NULL. ^These routine might also return NULL if a memory allocation error
--** occurs. ^Otherwise, they return the name of the attached database, table,
--** or column that query result column was extracted from.
--**
--** ^As with all other SQLite APIs, those whose names end with "16" return
--** UTF-16 encoded strings and the other functions return UTF-8.
--**
--** ^These APIs are only available if the library was compiled with the
--** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol.
--**
--** If two or more threads call one or more of these routines against the same
--** prepared statement and column at the same time then the results are
--** undefined.
--**
--** If two or more threads call one or more
--** [sqlite3_column_database_name | column metadata interfaces]
--** for the same [prepared statement] and result column
--** at the same time then the results are undefined.
--
function sqlite3_column_database_name (arg1 : System.Address; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2760:24
pragma Import (C, sqlite3_column_database_name, "sqlite3_column_database_name");
function sqlite3_column_database_name16 (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:2761:24
pragma Import (C, sqlite3_column_database_name16, "sqlite3_column_database_name16");
function sqlite3_column_table_name (arg1 : System.Address; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2762:24
pragma Import (C, sqlite3_column_table_name, "sqlite3_column_table_name");
function sqlite3_column_table_name16 (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:2763:24
pragma Import (C, sqlite3_column_table_name16, "sqlite3_column_table_name16");
function sqlite3_column_origin_name (arg1 : System.Address; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2764:24
pragma Import (C, sqlite3_column_origin_name, "sqlite3_column_origin_name");
function sqlite3_column_origin_name16 (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:2765:24
pragma Import (C, sqlite3_column_origin_name16, "sqlite3_column_origin_name16");
--** CAPI3REF: Declared Datatype Of A Query Result
--**
--** ^(The first parameter is a [prepared statement].
--** If this statement is a [SELECT] statement and the Nth column of the
--** returned result set of that [SELECT] is a table column (not an
--** expression or subquery) then the declared type of the table
--** column is returned.)^ ^If the Nth column of the result set is an
--** expression or subquery, then a NULL pointer is returned.
--** ^The returned string is always UTF-8 encoded.
--**
--** ^(For example, given the database schema:
--**
--** CREATE TABLE t1(c1 VARIANT);
--**
--** and the following statement to be compiled:
--**
--** SELECT c1 + 1, c1 FROM t1;
--**
--** this routine would return the string "VARIANT" for the second result
--** column (i==1), and a NULL pointer for the first result column (i==0).)^
--**
--** ^SQLite uses dynamic run-time typing. ^So just because a column
--** is declared to contain a particular type does not mean that the
--** data stored in that column is of the declared type. SQLite is
--** strongly typed, but the typing is dynamic not static. ^Type
--** is associated with individual values, not with the containers
--** used to hold those values.
--
function sqlite3_column_decltype (arg1 : System.Address; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2796:24
pragma Import (C, sqlite3_column_decltype, "sqlite3_column_decltype");
function sqlite3_column_decltype16 (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:2797:24
pragma Import (C, sqlite3_column_decltype16, "sqlite3_column_decltype16");
--** CAPI3REF: Evaluate An SQL Statement
--**
--** After a [prepared statement] has been prepared using either
--** [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()] or one of the legacy
--** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function
--** must be called one or more times to evaluate the statement.
--**
--** The details of the behavior of the sqlite3_step() interface depend
--** on whether the statement was prepared using the newer "v2" interface
--** [sqlite3_prepare_v2()] and [sqlite3_prepare16_v2()] or the older legacy
--** interface [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the
--** new "v2" interface is recommended for new applications but the legacy
--** interface will continue to be supported.
--**
--** ^In the legacy interface, the return value will be either [SQLITE_BUSY],
--** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
--** ^With the "v2" interface, any of the other [result codes] or
--** [extended result codes] might be returned as well.
--**
--** ^[SQLITE_BUSY] means that the database engine was unable to acquire the
--** database locks it needs to do its job. ^If the statement is a [COMMIT]
--** or occurs outside of an explicit transaction, then you can retry the
--** statement. If the statement is not a [COMMIT] and occurs within a
--** explicit transaction then you should rollback the transaction before
--** continuing.
--**
--** ^[SQLITE_DONE] means that the statement has finished executing
--** successfully. sqlite3_step() should not be called again on this virtual
--** machine without first calling [sqlite3_reset()] to reset the virtual
--** machine back to its initial state.
--**
--** ^If the SQL statement being executed returns any data, then [SQLITE_ROW]
--** is returned each time a new row of data is ready for processing by the
--** caller. The values may be accessed using the [column access functions].
--** sqlite3_step() is called again to retrieve the next row of data.
--**
--** ^[SQLITE_ERROR] means that a run-time error (such as a constraint
--** violation) has occurred. sqlite3_step() should not be called again on
--** the VM. More information may be found by calling [sqlite3_errmsg()].
--** ^With the legacy interface, a more specific error code (for example,
--** [SQLITE_INTERRUPT], [SQLITE_SCHEMA], [SQLITE_CORRUPT], and so forth)
--** can be obtained by calling [sqlite3_reset()] on the
--** [prepared statement]. ^In the "v2" interface,
--** the more specific error code is returned directly by sqlite3_step().
--**
--** [SQLITE_MISUSE] means that the this routine was called inappropriately.
--** Perhaps it was called on a [prepared statement] that has
--** already been [sqlite3_finalize | finalized] or on one that had
--** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could
--** be the case that the same database connection is being used by two or
--** more threads at the same moment in time.
--**
--** <b>Goofy Interface Alert:</b> In the legacy interface, the sqlite3_step()
--** API always returns a generic error code, [SQLITE_ERROR], following any
--** error other than [SQLITE_BUSY] and [SQLITE_MISUSE]. You must call
--** [sqlite3_reset()] or [sqlite3_finalize()] in order to find one of the
--** specific [error codes] that better describes the error.
--** We admit that this is a goofy design. The problem has been fixed
--** with the "v2" interface. If you prepare all of your SQL statements
--** using either [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()] instead
--** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces,
--** then the more specific [error codes] are returned directly
--** by sqlite3_step(). The use of the "v2" interface is recommended.
--
function sqlite3_step (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:2864:16
pragma Import (C, sqlite3_step, "sqlite3_step");
--** CAPI3REF: Number of columns in a result set
--**
--** ^The sqlite3_data_count(P) the number of columns in the
--** of the result set of [prepared statement] P.
--
function sqlite3_data_count (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:2872:16
pragma Import (C, sqlite3_data_count, "sqlite3_data_count");
--** CAPI3REF: Fundamental Datatypes
--** KEYWORDS: SQLITE_TEXT
--**
--** ^(Every value in SQLite has one of five fundamental datatypes:
--**
--** <ul>
--** <li> 64-bit signed integer
--** <li> 64-bit IEEE floating point number
--** <li> string
--** <li> BLOB
--** <li> NULL
--** </ul>)^
--**
--** These constants are codes for each of those types.
--**
--** Note that the SQLITE_TEXT constant was also used in SQLite version 2
--** for a completely different meaning. Software that links against both
--** SQLite version 2 and SQLite version 3 should use SQLITE3_TEXT, not
--** SQLITE_TEXT.
--
--** CAPI3REF: Result Values From A Query
--** KEYWORDS: {column access functions}
--**
--** These routines form the "result set" interface.
--**
--** ^These routines return information about a single column of the current
--** result row of a query. ^In every case the first argument is a pointer
--** to the [prepared statement] that is being evaluated (the [sqlite3_stmt*]
--** that was returned from [sqlite3_prepare_v2()] or one of its variants)
--** and the second argument is the index of the column for which information
--** should be returned. ^The leftmost column of the result set has the index 0.
--** ^The number of columns in the result can be determined using
--** [sqlite3_column_count()].
--**
--** If the SQL statement does not currently point to a valid row, or if the
--** column index is out of range, the result is undefined.
--** These routines may only be called when the most recent call to
--** [sqlite3_step()] has returned [SQLITE_ROW] and neither
--** [sqlite3_reset()] nor [sqlite3_finalize()] have been called subsequently.
--** If any of these routines are called after [sqlite3_reset()] or
--** [sqlite3_finalize()] or after [sqlite3_step()] has returned
--** something other than [SQLITE_ROW], the results are undefined.
--** If [sqlite3_step()] or [sqlite3_reset()] or [sqlite3_finalize()]
--** are called from a different thread while any of these routines
--** are pending, then the results are undefined.
--**
--** ^The sqlite3_column_type() routine returns the
--** [SQLITE_INTEGER | datatype code] for the initial data type
--** of the result column. ^The returned value is one of [SQLITE_INTEGER],
--** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL]. The value
--** returned by sqlite3_column_type() is only meaningful if no type
--** conversions have occurred as described below. After a type conversion,
--** the value returned by sqlite3_column_type() is undefined. Future
--** versions of SQLite may change the behavior of sqlite3_column_type()
--** following a type conversion.
--**
--** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes()
--** routine returns the number of bytes in that BLOB or string.
--** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts
--** the string to UTF-8 and then returns the number of bytes.
--** ^If the result is a numeric value then sqlite3_column_bytes() uses
--** [sqlite3_snprintf()] to convert that value to a UTF-8 string and returns
--** the number of bytes in that string.
--** ^The value returned does not include the zero terminator at the end
--** of the string. ^For clarity: the value returned is the number of
--** bytes in the string, not the number of characters.
--**
--** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(),
--** even empty strings, are always zero terminated. ^The return
--** value from sqlite3_column_blob() for a zero-length BLOB is an arbitrary
--** pointer, possibly even a NULL pointer.
--**
--** ^The sqlite3_column_bytes16() routine is similar to sqlite3_column_bytes()
--** but leaves the result in UTF-16 in native byte order instead of UTF-8.
--** ^The zero terminator is not included in this count.
--**
--** ^The object returned by [sqlite3_column_value()] is an
--** [unprotected sqlite3_value] object. An unprotected sqlite3_value object
--** may only be used with [sqlite3_bind_value()] and [sqlite3_result_value()].
--** If the [unprotected sqlite3_value] object returned by
--** [sqlite3_column_value()] is used in any other way, including calls
--** to routines like [sqlite3_value_int()], [sqlite3_value_text()],
--** or [sqlite3_value_bytes()], then the behavior is undefined.
--**
--** These routines attempt to convert the value where appropriate. ^For
--** example, if the internal representation is FLOAT and a text result
--** is requested, [sqlite3_snprintf()] is used internally to perform the
--** conversion automatically. ^(The following table details the conversions
--** that are applied:
--**
--** <blockquote>
--** <table border="1">
--** <tr><th> Internal<br>Type <th> Requested<br>Type <th> Conversion
--**
--** <tr><td> NULL <td> INTEGER <td> Result is 0
--** <tr><td> NULL <td> FLOAT <td> Result is 0.0
--** <tr><td> NULL <td> TEXT <td> Result is NULL pointer
--** <tr><td> NULL <td> BLOB <td> Result is NULL pointer
--** <tr><td> INTEGER <td> FLOAT <td> Convert from integer to float
--** <tr><td> INTEGER <td> TEXT <td> ASCII rendering of the integer
--** <tr><td> INTEGER <td> BLOB <td> Same as INTEGER->TEXT
--** <tr><td> FLOAT <td> INTEGER <td> Convert from float to integer
--** <tr><td> FLOAT <td> TEXT <td> ASCII rendering of the float
--** <tr><td> FLOAT <td> BLOB <td> Same as FLOAT->TEXT
--** <tr><td> TEXT <td> INTEGER <td> Use atoi()
--** <tr><td> TEXT <td> FLOAT <td> Use atof()
--** <tr><td> TEXT <td> BLOB <td> No change
--** <tr><td> BLOB <td> INTEGER <td> Convert to TEXT then use atoi()
--** <tr><td> BLOB <td> FLOAT <td> Convert to TEXT then use atof()
--** <tr><td> BLOB <td> TEXT <td> Add a zero terminator if needed
--** </table>
--** </blockquote>)^
--**
--** The table above makes reference to standard C library functions atoi()
--** and atof(). SQLite does not really use these functions. It has its
--** own equivalent internal routines. The atoi() and atof() names are
--** used in the table for brevity and because they are familiar to most
--** C programmers.
--**
--** ^Note that when type conversions occur, pointers returned by prior
--** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or
--** sqlite3_column_text16() may be invalidated.
--** ^(Type conversions and pointer invalidations might occur
--** in the following cases:
--**
--** <ul>
--** <li> The initial content is a BLOB and sqlite3_column_text() or
--** sqlite3_column_text16() is called. A zero-terminator might
--** need to be added to the string.</li>
--** <li> The initial content is UTF-8 text and sqlite3_column_bytes16() or
--** sqlite3_column_text16() is called. The content must be converted
--** to UTF-16.</li>
--** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or
--** sqlite3_column_text() is called. The content must be converted
--** to UTF-8.</li>
--** </ul>)^
--**
--** ^Conversions between UTF-16be and UTF-16le are always done in place and do
--** not invalidate a prior pointer, though of course the content of the buffer
--** that the prior pointer points to will have been modified. Other kinds
--** of conversion are done in place when it is possible, but sometimes they
--** are not possible and in those cases prior pointers are invalidated.
--**
--** ^(The safest and easiest to remember policy is to invoke these routines
--** in one of the following ways:
--**
--** <ul>
--** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
--** <li>sqlite3_column_blob() followed by sqlite3_column_bytes()</li>
--** <li>sqlite3_column_text16() followed by sqlite3_column_bytes16()</li>
--** </ul>)^
--**
--** In other words, you should call sqlite3_column_text(),
--** sqlite3_column_blob(), or sqlite3_column_text16() first to force the result
--** into the desired format, then invoke sqlite3_column_bytes() or
--** sqlite3_column_bytes16() to find the size of the result. Do not mix calls
--** to sqlite3_column_text() or sqlite3_column_blob() with calls to
--** sqlite3_column_bytes16(), and do not mix calls to sqlite3_column_text16()
--** with calls to sqlite3_column_bytes().
--**
--** ^The pointers returned are valid until a type conversion occurs as
--** described above, or until [sqlite3_step()] or [sqlite3_reset()] or
--** [sqlite3_finalize()] is called. ^The memory space used to hold strings
--** and BLOBs is freed automatically. Do <b>not</b> pass the pointers returned
--** [sqlite3_column_blob()], [sqlite3_column_text()], etc. into
--** [sqlite3_free()].
--**
--** ^(If a memory allocation error occurs during the evaluation of any
--** of these routines, a default value is returned. The default value
--** is either the integer 0, the floating point number 0.0, or a NULL
--** pointer. Subsequent calls to [sqlite3_errcode()] will return
--** [SQLITE_NOMEM].)^
--
function sqlite3_column_blob (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:3060:24
pragma Import (C, sqlite3_column_blob, "sqlite3_column_blob");
function sqlite3_column_bytes (arg1 : System.Address; arg2 : int) return int; -- /usr/include/sqlite3.h:3061:16
pragma Import (C, sqlite3_column_bytes, "sqlite3_column_bytes");
function sqlite3_column_bytes16 (arg1 : System.Address; arg2 : int) return int; -- /usr/include/sqlite3.h:3062:16
pragma Import (C, sqlite3_column_bytes16, "sqlite3_column_bytes16");
function sqlite3_column_double (arg1 : System.Address; arg2 : int) return double; -- /usr/include/sqlite3.h:3063:19
pragma Import (C, sqlite3_column_double, "sqlite3_column_double");
function sqlite3_column_int (arg1 : System.Address; arg2 : int) return int; -- /usr/include/sqlite3.h:3064:16
pragma Import (C, sqlite3_column_int, "sqlite3_column_int");
function sqlite3_column_int64 (arg1 : System.Address; arg2 : int) return sqlite3_int64; -- /usr/include/sqlite3.h:3065:26
pragma Import (C, sqlite3_column_int64, "sqlite3_column_int64");
function sqlite3_column_text (arg1 : System.Address; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3066:33
pragma Import (C, sqlite3_column_text, "sqlite3_column_text");
function sqlite3_column_text16 (arg1 : System.Address; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3067:24
pragma Import (C, sqlite3_column_text16, "sqlite3_column_text16");
function sqlite3_column_type (arg1 : System.Address; arg2 : int) return int; -- /usr/include/sqlite3.h:3068:16
pragma Import (C, sqlite3_column_type, "sqlite3_column_type");
function sqlite3_column_value (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:3069:27
pragma Import (C, sqlite3_column_value, "sqlite3_column_value");
--** CAPI3REF: Destroy A Prepared Statement Object
--**
--** ^The sqlite3_finalize() function is called to delete a [prepared statement].
--** ^If the statement was executed successfully or not executed at all, then
--** SQLITE_OK is returned. ^If execution of the statement failed then an
--** [error code] or [extended error code] is returned.
--**
--** ^This routine can be called at any point during the execution of the
--** [prepared statement]. ^If the virtual machine has not
--** completed execution when this routine is called, that is like
--** encountering an error or an [sqlite3_interrupt | interrupt].
--** ^Incomplete updates may be rolled back and transactions canceled,
--** depending on the circumstances, and the
--** [error code] returned will be [SQLITE_ABORT].
--
function sqlite3_finalize (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:3087:16
pragma Import (C, sqlite3_finalize, "sqlite3_finalize");
--** CAPI3REF: Reset A Prepared Statement Object
--**
--** The sqlite3_reset() function is called to reset a [prepared statement]
--** object back to its initial state, ready to be re-executed.
--** ^Any SQL statement variables that had values bound to them using
--** the [sqlite3_bind_blob | sqlite3_bind_*() API] retain their values.
--** Use [sqlite3_clear_bindings()] to reset the bindings.
--**
--** ^The [sqlite3_reset(S)] interface resets the [prepared statement] S
--** back to the beginning of its program.
--**
--** ^If the most recent call to [sqlite3_step(S)] for the
--** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
--** or if [sqlite3_step(S)] has never before been called on S,
--** then [sqlite3_reset(S)] returns [SQLITE_OK].
--**
--** ^If the most recent call to [sqlite3_step(S)] for the
--** [prepared statement] S indicated an error, then
--** [sqlite3_reset(S)] returns an appropriate [error code].
--**
--** ^The [sqlite3_reset(S)] interface does not change the values
--** of any [sqlite3_bind_blob|bindings] on the [prepared statement] S.
--
function sqlite3_reset (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:3113:16
pragma Import (C, sqlite3_reset, "sqlite3_reset");
--** CAPI3REF: Create Or Redefine SQL Functions
--** KEYWORDS: {function creation routines}
--** KEYWORDS: {application-defined SQL function}
--** KEYWORDS: {application-defined SQL functions}
--**
--** ^These two functions (collectively known as "function creation routines")
--** are used to add SQL functions or aggregates or to redefine the behavior
--** of existing SQL functions or aggregates. The only difference between the
--** two is that the second parameter, the name of the (scalar) function or
--** aggregate, is encoded in UTF-8 for sqlite3_create_function() and UTF-16
--** for sqlite3_create_function16().
--**
--** ^The first parameter is the [database connection] to which the SQL
--** function is to be added. ^If an application uses more than one database
--** connection then application-defined SQL functions must be added
--** to each database connection separately.
--**
--** The second parameter is the name of the SQL function to be created or
--** redefined. ^The length of the name is limited to 255 bytes, exclusive of
--** the zero-terminator. Note that the name length limit is in bytes, not
--** characters. ^Any attempt to create a function with a longer name
--** will result in [SQLITE_ERROR] being returned.
--**
--** ^The third parameter (nArg)
--** is the number of arguments that the SQL function or
--** aggregate takes. ^If this parameter is -1, then the SQL function or
--** aggregate may take any number of arguments between 0 and the limit
--** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third
--** parameter is less than -1 or greater than 127 then the behavior is
--** undefined.
--**
--** The fourth parameter, eTextRep, specifies what
--** [SQLITE_UTF8 | text encoding] this SQL function prefers for
--** its parameters. Any SQL function implementation should be able to work
--** work with UTF-8, UTF-16le, or UTF-16be. But some implementations may be
--** more efficient with one encoding than another. ^An application may
--** invoke sqlite3_create_function() or sqlite3_create_function16() multiple
--** times with the same function but with different values of eTextRep.
--** ^When multiple implementations of the same function are available, SQLite
--** will pick the one that involves the least amount of data conversion.
--** If there is only a single implementation which does not care what text
--** encoding is used, then the fourth argument should be [SQLITE_ANY].
--**
--** ^(The fifth parameter is an arbitrary pointer. The implementation of the
--** function can gain access to this pointer using [sqlite3_user_data()].)^
--**
--** The seventh, eighth and ninth parameters, xFunc, xStep and xFinal, are
--** pointers to C-language functions that implement the SQL function or
--** aggregate. ^A scalar SQL function requires an implementation of the xFunc
--** callback only; NULL pointers should be passed as the xStep and xFinal
--** parameters. ^An aggregate SQL function requires an implementation of xStep
--** and xFinal and NULL should be passed for xFunc. ^To delete an existing
--** SQL function or aggregate, pass NULL for all three function callbacks.
--**
--** ^It is permitted to register multiple implementations of the same
--** functions with the same name but with either differing numbers of
--** arguments or differing preferred text encodings. ^SQLite will use
--** the implementation that most closely matches the way in which the
--** SQL function is used. ^A function implementation with a non-negative
--** nArg parameter is a better match than a function implementation with
--** a negative nArg. ^A function where the preferred text encoding
--** matches the database encoding is a better
--** match than a function where the encoding is different.
--** ^A function where the encoding difference is between UTF16le and UTF16be
--** is a closer match than a function where the encoding difference is
--** between UTF8 and UTF16.
--**
--** ^Built-in functions may be overloaded by new application-defined functions.
--** ^The first application-defined function with a given name overrides all
--** built-in functions in the same [database connection] with the same name.
--** ^Subsequent application-defined functions of the same name only override
--** prior application-defined functions that are an exact match for the
--** number of parameters and preferred encoding.
--**
--** ^An application-defined function is permitted to call other
--** SQLite interfaces. However, such calls must not
--** close the database connection nor finalize or reset the prepared
--** statement in which the function is running.
--
function sqlite3_create_function
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int;
arg4 : int;
arg5 : System.Address;
arg6 : access procedure
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address);
arg7 : access procedure
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address);
arg8 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:3195:16
pragma Import (C, sqlite3_create_function, "sqlite3_create_function");
function sqlite3_create_function16
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : int;
arg5 : System.Address;
arg6 : access procedure
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address);
arg7 : access procedure
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address);
arg8 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:3205:16
pragma Import (C, sqlite3_create_function16, "sqlite3_create_function16");
--** CAPI3REF: Text Encodings
--**
--** These constant define integer codes that represent the various
--** text encodings supported by SQLite.
--
--** CAPI3REF: Deprecated Functions
--** DEPRECATED
--**
--** These functions are [deprecated]. In order to maintain
--** backwards compatibility with older code, these functions continue
--** to be supported. However, new applications should avoid
--** the use of these functions. To help encourage people to avoid
--** using these functions, we are not going to tell you what they do.
--
function sqlite3_aggregate_count (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:3240:34
pragma Import (C, sqlite3_aggregate_count, "sqlite3_aggregate_count");
function sqlite3_expired (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:3241:34
pragma Import (C, sqlite3_expired, "sqlite3_expired");
function sqlite3_transfer_bindings (arg1 : System.Address; arg2 : System.Address) return int; -- /usr/include/sqlite3.h:3242:34
pragma Import (C, sqlite3_transfer_bindings, "sqlite3_transfer_bindings");
function sqlite3_global_recover return int; -- /usr/include/sqlite3.h:3243:34
pragma Import (C, sqlite3_global_recover, "sqlite3_global_recover");
procedure sqlite3_thread_cleanup; -- /usr/include/sqlite3.h:3244:35
pragma Import (C, sqlite3_thread_cleanup, "sqlite3_thread_cleanup");
function sqlite3_memory_alarm
(arg1 : access procedure
(arg1 : System.Address;
arg2 : sqlite3_int64;
arg3 : int);
arg2 : System.Address;
arg3 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:3245:34
pragma Import (C, sqlite3_memory_alarm, "sqlite3_memory_alarm");
--** CAPI3REF: Obtaining SQL Function Parameter Values
--**
--** The C-language implementation of SQL functions and aggregates uses
--** this set of interface routines to access the parameter values on
--** the function or aggregate.
--**
--** The xFunc (for scalar functions) or xStep (for aggregates) parameters
--** to [sqlite3_create_function()] and [sqlite3_create_function16()]
--** define callbacks that implement the SQL functions and aggregates.
--** The 4th parameter to these callbacks is an array of pointers to
--** [protected sqlite3_value] objects. There is one [sqlite3_value] object for
--** each parameter to the SQL function. These routines are used to
--** extract values from the [sqlite3_value] objects.
--**
--** These routines work only with [protected sqlite3_value] objects.
--** Any attempt to use these routines on an [unprotected sqlite3_value]
--** object results in undefined behavior.
--**
--** ^These routines work just like the corresponding [column access functions]
--** except that these routines take a single [protected sqlite3_value] object
--** pointer instead of a [sqlite3_stmt*] pointer and an integer column number.
--**
--** ^The sqlite3_value_text16() interface extracts a UTF-16 string
--** in the native byte-order of the host machine. ^The
--** sqlite3_value_text16be() and sqlite3_value_text16le() interfaces
--** extract UTF-16 strings as big-endian and little-endian respectively.
--**
--** ^(The sqlite3_value_numeric_type() interface attempts to apply
--** numeric affinity to the value. This means that an attempt is
--** made to convert the value to an integer or floating point. If
--** such a conversion is possible without loss of information (in other
--** words, if the value is a string that looks like a number)
--** then the conversion is performed. Otherwise no conversion occurs.
--** The [SQLITE_INTEGER | datatype] after conversion is returned.)^
--**
--** Please pay particular attention to the fact that the pointer returned
--** from [sqlite3_value_blob()], [sqlite3_value_text()], or
--** [sqlite3_value_text16()] can be invalidated by a subsequent call to
--** [sqlite3_value_bytes()], [sqlite3_value_bytes16()], [sqlite3_value_text()],
--** or [sqlite3_value_text16()].
--**
--** These routines must be called from the same thread as
--** the SQL function that supplied the [sqlite3_value*] parameters.
--
function sqlite3_value_blob (arg1 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3293:24
pragma Import (C, sqlite3_value_blob, "sqlite3_value_blob");
function sqlite3_value_bytes (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:3294:16
pragma Import (C, sqlite3_value_bytes, "sqlite3_value_bytes");
function sqlite3_value_bytes16 (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:3295:16
pragma Import (C, sqlite3_value_bytes16, "sqlite3_value_bytes16");
function sqlite3_value_double (arg1 : System.Address) return double; -- /usr/include/sqlite3.h:3296:19
pragma Import (C, sqlite3_value_double, "sqlite3_value_double");
function sqlite3_value_int (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:3297:16
pragma Import (C, sqlite3_value_int, "sqlite3_value_int");
function sqlite3_value_int64 (arg1 : System.Address) return sqlite3_int64; -- /usr/include/sqlite3.h:3298:26
pragma Import (C, sqlite3_value_int64, "sqlite3_value_int64");
function sqlite3_value_text (arg1 : System.Address) return access unsigned_char; -- /usr/include/sqlite3.h:3299:33
pragma Import (C, sqlite3_value_text, "sqlite3_value_text");
function sqlite3_value_text16 (arg1 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3300:24
pragma Import (C, sqlite3_value_text16, "sqlite3_value_text16");
function sqlite3_value_text16le (arg1 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3301:24
pragma Import (C, sqlite3_value_text16le, "sqlite3_value_text16le");
function sqlite3_value_text16be (arg1 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3302:24
pragma Import (C, sqlite3_value_text16be, "sqlite3_value_text16be");
function sqlite3_value_type (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:3303:16
pragma Import (C, sqlite3_value_type, "sqlite3_value_type");
function sqlite3_value_numeric_type (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:3304:16
pragma Import (C, sqlite3_value_numeric_type, "sqlite3_value_numeric_type");
--** CAPI3REF: Obtain Aggregate Function Context
--**
--** Implementions of aggregate SQL functions use this
--** routine to allocate memory for storing their state.
--**
--** ^The first time the sqlite3_aggregate_context(C,N) routine is called
--** for a particular aggregate function, SQLite
--** allocates N of memory, zeroes out that memory, and returns a pointer
--** to the new memory. ^On second and subsequent calls to
--** sqlite3_aggregate_context() for the same aggregate function instance,
--** the same buffer is returned. Sqlite3_aggregate_context() is normally
--** called once for each invocation of the xStep callback and then one
--** last time when the xFinal callback is invoked. ^(When no rows match
--** an aggregate query, the xStep() callback of the aggregate function
--** implementation is never called and xFinal() is called exactly once.
--** In those cases, sqlite3_aggregate_context() might be called for the
--** first time from within xFinal().)^
--**
--** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer if N is
--** less than or equal to zero or if a memory allocate error occurs.
--**
--** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is
--** determined by the N parameter on first successful call. Changing the
--** value of N in subsequent call to sqlite3_aggregate_context() within
--** the same aggregate function instance will not resize the memory
--** allocation.)^
--**
--** ^SQLite automatically frees the memory allocated by
--** sqlite3_aggregate_context() when the aggregate query concludes.
--**
--** The first parameter must be a copy of the
--** [sqlite3_context | SQL function context] that is the first parameter
--** to the xStep or xFinal callback routine that implements the aggregate
--** function.
--**
--** This routine must be called from the same thread in which
--** the aggregate SQL function is running.
--
function sqlite3_aggregate_context (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:3345:18
pragma Import (C, sqlite3_aggregate_context, "sqlite3_aggregate_context");
--** CAPI3REF: User Data For Functions
--**
--** ^The sqlite3_user_data() interface returns a copy of
--** the pointer that was the pUserData parameter (the 5th parameter)
--** of the [sqlite3_create_function()]
--** and [sqlite3_create_function16()] routines that originally
--** registered the application defined function.
--**
--** This routine must be called from the same thread in which
--** the application-defined function is running.
--
function sqlite3_user_data (arg1 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3359:18
pragma Import (C, sqlite3_user_data, "sqlite3_user_data");
--** CAPI3REF: Database Connection For Functions
--**
--** ^The sqlite3_context_db_handle() interface returns a copy of
--** the pointer to the [database connection] (the 1st parameter)
--** of the [sqlite3_create_function()]
--** and [sqlite3_create_function16()] routines that originally
--** registered the application defined function.
--
function sqlite3_context_db_handle (arg1 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3370:21
pragma Import (C, sqlite3_context_db_handle, "sqlite3_context_db_handle");
--** CAPI3REF: Function Auxiliary Data
--**
--** The following two functions may be used by scalar SQL functions to
--** associate metadata with argument values. If the same value is passed to
--** multiple invocations of the same SQL function during query execution, under
--** some circumstances the associated metadata may be preserved. This may
--** be used, for example, to add a regular-expression matching scalar
--** function. The compiled version of the regular expression is stored as
--** metadata associated with the SQL value passed as the regular expression
--** pattern. The compiled regular expression can be reused on multiple
--** invocations of the same function so that the original pattern string
--** does not need to be recompiled on each invocation.
--**
--** ^The sqlite3_get_auxdata() interface returns a pointer to the metadata
--** associated by the sqlite3_set_auxdata() function with the Nth argument
--** value to the application-defined function. ^If no metadata has been ever
--** been set for the Nth argument of the function, or if the corresponding
--** function parameter has changed since the meta-data was set,
--** then sqlite3_get_auxdata() returns a NULL pointer.
--**
--** ^The sqlite3_set_auxdata() interface saves the metadata
--** pointed to by its 3rd parameter as the metadata for the N-th
--** argument of the application-defined function. Subsequent
--** calls to sqlite3_get_auxdata() might return this data, if it has
--** not been destroyed.
--** ^If it is not NULL, SQLite will invoke the destructor
--** function given by the 4th parameter to sqlite3_set_auxdata() on
--** the metadata when the corresponding function parameter changes
--** or when the SQL statement completes, whichever comes first.
--**
--** SQLite is free to call the destructor and drop metadata on any
--** parameter of any function at any time. ^The only guarantee is that
--** the destructor will be called before the metadata is dropped.
--**
--** ^(In practice, metadata is preserved between function calls for
--** expressions that are constant at compile time. This includes literal
--** values and [parameters].)^
--**
--** These routines must be called from the same thread in which
--** the SQL function is running.
--
function sqlite3_get_auxdata (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:3414:18
pragma Import (C, sqlite3_get_auxdata, "sqlite3_get_auxdata");
procedure sqlite3_set_auxdata
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address;
arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:3415:17
pragma Import (C, sqlite3_set_auxdata, "sqlite3_set_auxdata");
--** CAPI3REF: Constants Defining Special Destructor Behavior
--**
--** These are special values for the destructor that is passed in as the
--** final argument to routines like [sqlite3_result_blob()]. ^If the destructor
--** argument is SQLITE_STATIC, it means that the content pointer is constant
--** and will never change. It does not need to be destroyed. ^The
--** SQLITE_TRANSIENT value means that the content will likely change in
--** the near future and that SQLite should make its own private copy of
--** the content before returning.
--**
--** The typedef is necessary to work around problems in certain
--** C++ compilers. See ticket #2191.
--
type sqlite3_destructor_type is access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:3432:16
--** CAPI3REF: Setting The Result Of An SQL Function
--**
--** These routines are used by the xFunc or xFinal callbacks that
--** implement SQL functions and aggregates. See
--** [sqlite3_create_function()] and [sqlite3_create_function16()]
--** for additional information.
--**
--** These functions work very much like the [parameter binding] family of
--** functions used to bind values to host parameters in prepared statements.
--** Refer to the [SQL parameter] documentation for additional information.
--**
--** ^The sqlite3_result_blob() interface sets the result from
--** an application-defined function to be the BLOB whose content is pointed
--** to by the second parameter and which is N bytes long where N is the
--** third parameter.
--**
--** ^The sqlite3_result_zeroblob() interfaces set the result of
--** the application-defined function to be a BLOB containing all zero
--** bytes and N bytes in size, where N is the value of the 2nd parameter.
--**
--** ^The sqlite3_result_double() interface sets the result from
--** an application-defined function to be a floating point value specified
--** by its 2nd argument.
--**
--** ^The sqlite3_result_error() and sqlite3_result_error16() functions
--** cause the implemented SQL function to throw an exception.
--** ^SQLite uses the string pointed to by the
--** 2nd parameter of sqlite3_result_error() or sqlite3_result_error16()
--** as the text of an error message. ^SQLite interprets the error
--** message string from sqlite3_result_error() as UTF-8. ^SQLite
--** interprets the string from sqlite3_result_error16() as UTF-16 in native
--** byte order. ^If the third parameter to sqlite3_result_error()
--** or sqlite3_result_error16() is negative then SQLite takes as the error
--** message all text up through the first zero character.
--** ^If the third parameter to sqlite3_result_error() or
--** sqlite3_result_error16() is non-negative then SQLite takes that many
--** bytes (not characters) from the 2nd parameter as the error message.
--** ^The sqlite3_result_error() and sqlite3_result_error16()
--** routines make a private copy of the error message text before
--** they return. Hence, the calling function can deallocate or
--** modify the text after they return without harm.
--** ^The sqlite3_result_error_code() function changes the error code
--** returned by SQLite as a result of an error in a function. ^By default,
--** the error code is SQLITE_ERROR. ^A subsequent call to sqlite3_result_error()
--** or sqlite3_result_error16() resets the error code to SQLITE_ERROR.
--**
--** ^The sqlite3_result_toobig() interface causes SQLite to throw an error
--** indicating that a string or BLOB is too long to represent.
--**
--** ^The sqlite3_result_nomem() interface causes SQLite to throw an error
--** indicating that a memory allocation failed.
--**
--** ^The sqlite3_result_int() interface sets the return value
--** of the application-defined function to be the 32-bit signed integer
--** value given in the 2nd argument.
--** ^The sqlite3_result_int64() interface sets the return value
--** of the application-defined function to be the 64-bit signed integer
--** value given in the 2nd argument.
--**
--** ^The sqlite3_result_null() interface sets the return value
--** of the application-defined function to be NULL.
--**
--** ^The sqlite3_result_text(), sqlite3_result_text16(),
--** sqlite3_result_text16le(), and sqlite3_result_text16be() interfaces
--** set the return value of the application-defined function to be
--** a text string which is represented as UTF-8, UTF-16 native byte order,
--** UTF-16 little endian, or UTF-16 big endian, respectively.
--** ^SQLite takes the text result from the application from
--** the 2nd parameter of the sqlite3_result_text* interfaces.
--** ^If the 3rd parameter to the sqlite3_result_text* interfaces
--** is negative, then SQLite takes result text from the 2nd parameter
--** through the first zero character.
--** ^If the 3rd parameter to the sqlite3_result_text* interfaces
--** is non-negative, then as many bytes (not characters) of the text
--** pointed to by the 2nd parameter are taken as the application-defined
--** function result.
--** ^If the 4th parameter to the sqlite3_result_text* interfaces
--** or sqlite3_result_blob is a non-NULL pointer, then SQLite calls that
--** function as the destructor on the text or BLOB result when it has
--** finished using that result.
--** ^If the 4th parameter to the sqlite3_result_text* interfaces or to
--** sqlite3_result_blob is the special constant SQLITE_STATIC, then SQLite
--** assumes that the text or BLOB result is in constant space and does not
--** copy the content of the parameter nor call a destructor on the content
--** when it has finished using that result.
--** ^If the 4th parameter to the sqlite3_result_text* interfaces
--** or sqlite3_result_blob is the special constant SQLITE_TRANSIENT
--** then SQLite makes a copy of the result into space obtained from
--** from [sqlite3_malloc()] before it returns.
--**
--** ^The sqlite3_result_value() interface sets the result of
--** the application-defined function to be a copy the
--** [unprotected sqlite3_value] object specified by the 2nd parameter. ^The
--** sqlite3_result_value() interface makes a copy of the [sqlite3_value]
--** so that the [sqlite3_value] specified in the parameter may change or
--** be deallocated after sqlite3_result_value() returns without harm.
--** ^A [protected sqlite3_value] object may always be used where an
--** [unprotected sqlite3_value] object is required, so either
--** kind of [sqlite3_value] object can be used with this interface.
--**
--** If these routines are called from within the different thread
--** than the one containing the application-defined function that received
--** the [sqlite3_context] pointer, the results are undefined.
--
procedure sqlite3_result_blob
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:3541:17
pragma Import (C, sqlite3_result_blob, "sqlite3_result_blob");
procedure sqlite3_result_double (arg1 : System.Address; arg2 : double); -- /usr/include/sqlite3.h:3542:17
pragma Import (C, sqlite3_result_double, "sqlite3_result_double");
procedure sqlite3_result_error
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int); -- /usr/include/sqlite3.h:3543:17
pragma Import (C, sqlite3_result_error, "sqlite3_result_error");
procedure sqlite3_result_error16
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int); -- /usr/include/sqlite3.h:3544:17
pragma Import (C, sqlite3_result_error16, "sqlite3_result_error16");
procedure sqlite3_result_error_toobig (arg1 : System.Address); -- /usr/include/sqlite3.h:3545:17
pragma Import (C, sqlite3_result_error_toobig, "sqlite3_result_error_toobig");
procedure sqlite3_result_error_nomem (arg1 : System.Address); -- /usr/include/sqlite3.h:3546:17
pragma Import (C, sqlite3_result_error_nomem, "sqlite3_result_error_nomem");
procedure sqlite3_result_error_code (arg1 : System.Address; arg2 : int); -- /usr/include/sqlite3.h:3547:17
pragma Import (C, sqlite3_result_error_code, "sqlite3_result_error_code");
procedure sqlite3_result_int (arg1 : System.Address; arg2 : int); -- /usr/include/sqlite3.h:3548:17
pragma Import (C, sqlite3_result_int, "sqlite3_result_int");
procedure sqlite3_result_int64 (arg1 : System.Address; arg2 : sqlite3_int64); -- /usr/include/sqlite3.h:3549:17
pragma Import (C, sqlite3_result_int64, "sqlite3_result_int64");
procedure sqlite3_result_null (arg1 : System.Address); -- /usr/include/sqlite3.h:3550:17
pragma Import (C, sqlite3_result_null, "sqlite3_result_null");
procedure sqlite3_result_text
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int;
arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:3551:17
pragma Import (C, sqlite3_result_text, "sqlite3_result_text");
procedure sqlite3_result_text16
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:3552:17
pragma Import (C, sqlite3_result_text16, "sqlite3_result_text16");
procedure sqlite3_result_text16le
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:3553:17
pragma Import (C, sqlite3_result_text16le, "sqlite3_result_text16le");
procedure sqlite3_result_text16be
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:3554:17
pragma Import (C, sqlite3_result_text16be, "sqlite3_result_text16be");
procedure sqlite3_result_value (arg1 : System.Address; arg2 : System.Address); -- /usr/include/sqlite3.h:3555:17
pragma Import (C, sqlite3_result_value, "sqlite3_result_value");
procedure sqlite3_result_zeroblob (arg1 : System.Address; arg2 : int); -- /usr/include/sqlite3.h:3556:17
pragma Import (C, sqlite3_result_zeroblob, "sqlite3_result_zeroblob");
--** CAPI3REF: Define New Collating Sequences
--**
--** These functions are used to add new collation sequences to the
--** [database connection] specified as the first argument.
--**
--** ^The name of the new collation sequence is specified as a UTF-8 string
--** for sqlite3_create_collation() and sqlite3_create_collation_v2()
--** and a UTF-16 string for sqlite3_create_collation16(). ^In all cases
--** the name is passed as the second function argument.
--**
--** ^The third argument may be one of the constants [SQLITE_UTF8],
--** [SQLITE_UTF16LE], or [SQLITE_UTF16BE], indicating that the user-supplied
--** routine expects to be passed pointers to strings encoded using UTF-8,
--** UTF-16 little-endian, or UTF-16 big-endian, respectively. ^The
--** third argument might also be [SQLITE_UTF16] to indicate that the routine
--** expects pointers to be UTF-16 strings in the native byte order, or the
--** argument can be [SQLITE_UTF16_ALIGNED] if the
--** the routine expects pointers to 16-bit word aligned strings
--** of UTF-16 in the native byte order.
--**
--** A pointer to the user supplied routine must be passed as the fifth
--** argument. ^If it is NULL, this is the same as deleting the collation
--** sequence (so that SQLite cannot call it anymore).
--** ^Each time the application supplied function is invoked, it is passed
--** as its first parameter a copy of the void* passed as the fourth argument
--** to sqlite3_create_collation() or sqlite3_create_collation16().
--**
--** ^The remaining arguments to the application-supplied routine are two strings,
--** each represented by a (length, data) pair and encoded in the encoding
--** that was passed as the third argument when the collation sequence was
--** registered. The application defined collation routine should
--** return negative, zero or positive if the first string is less than,
--** equal to, or greater than the second string. i.e. (STRING1 - STRING2).
--**
--** ^The sqlite3_create_collation_v2() works like sqlite3_create_collation()
--** except that it takes an extra argument which is a destructor for
--** the collation. ^The destructor is called when the collation is
--** destroyed and is passed a copy of the fourth parameter void* pointer
--** of the sqlite3_create_collation_v2().
--** ^Collations are destroyed when they are overridden by later calls to the
--** collation creation functions or when the [database connection] is closed
--** using [sqlite3_close()].
--**
--** See also: [sqlite3_collation_needed()] and [sqlite3_collation_needed16()].
--
function sqlite3_create_collation
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int;
arg4 : System.Address;
arg5 : access function
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address;
arg4 : int;
arg5 : System.Address) return int) return int; -- /usr/include/sqlite3.h:3604:16
pragma Import (C, sqlite3_create_collation, "sqlite3_create_collation");
function sqlite3_create_collation_v2
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int;
arg4 : System.Address;
arg5 : access function
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address;
arg4 : int;
arg5 : System.Address) return int;
arg6 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:3611:16
pragma Import (C, sqlite3_create_collation_v2, "sqlite3_create_collation_v2");
function sqlite3_create_collation16
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : System.Address;
arg5 : access function
(arg1 : System.Address;
arg2 : int;
arg3 : System.Address;
arg4 : int;
arg5 : System.Address) return int) return int; -- /usr/include/sqlite3.h:3619:16
pragma Import (C, sqlite3_create_collation16, "sqlite3_create_collation16");
--** CAPI3REF: Collation Needed Callbacks
--**
--** ^To avoid having to register all collation sequences before a database
--** can be used, a single callback function may be registered with the
--** [database connection] to be invoked whenever an undefined collation
--** sequence is required.
--**
--** ^If the function is registered using the sqlite3_collation_needed() API,
--** then it is passed the names of undefined collation sequences as strings
--** encoded in UTF-8. ^If sqlite3_collation_needed16() is used,
--** the names are passed as UTF-16 in machine native byte order.
--** ^A call to either function replaces the existing collation-needed callback.
--**
--** ^(When the callback is invoked, the first argument passed is a copy
--** of the second argument to sqlite3_collation_needed() or
--** sqlite3_collation_needed16(). The second argument is the database
--** connection. The third argument is one of [SQLITE_UTF8], [SQLITE_UTF16BE],
--** or [SQLITE_UTF16LE], indicating the most desirable form of the collation
--** sequence function required. The fourth parameter is the name of the
--** required collation sequence.)^
--**
--** The callback function should register the desired collation using
--** [sqlite3_create_collation()], [sqlite3_create_collation16()], or
--** [sqlite3_create_collation_v2()].
--
function sqlite3_collation_needed
(arg1 : System.Address;
arg2 : System.Address;
arg3 : access procedure
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : Interfaces.C.Strings.chars_ptr)) return int; -- /usr/include/sqlite3.h:3653:16
pragma Import (C, sqlite3_collation_needed, "sqlite3_collation_needed");
function sqlite3_collation_needed16
(arg1 : System.Address;
arg2 : System.Address;
arg3 : access procedure
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : System.Address)) return int; -- /usr/include/sqlite3.h:3658:16
pragma Import (C, sqlite3_collation_needed16, "sqlite3_collation_needed16");
--** Specify the key for an encrypted database. This routine should be
--** called right after sqlite3_open().
--**
--** The code to implement this API is not available in the public release
--** of SQLite.
--
function sqlite3_key
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int) return int; -- /usr/include/sqlite3.h:3671:16
pragma Import (C, sqlite3_key, "sqlite3_key");
-- Database to be rekeyed
-- The key
--** Change the key on an open database. If the current database is not
--** encrypted, this routine will encrypt it. If pNew==0 or nNew==0, the
--** database is decrypted.
--**
--** The code to implement this API is not available in the public release
--** of SQLite.
--
function sqlite3_rekey
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int) return int; -- /usr/include/sqlite3.h:3684:16
pragma Import (C, sqlite3_rekey, "sqlite3_rekey");
-- Database to be rekeyed
-- The new key
--** CAPI3REF: Suspend Execution For A Short Time
--**
--** ^The sqlite3_sleep() function causes the current thread to suspend execution
--** for at least a number of milliseconds specified in its parameter.
--**
--** ^If the operating system does not support sleep requests with
--** millisecond time resolution, then the time will be rounded up to
--** the nearest second. ^The number of milliseconds of sleep actually
--** requested from the operating system is returned.
--**
--** ^SQLite implements this interface by calling the xSleep()
--** method of the default [sqlite3_vfs] object.
--
function sqlite3_sleep (arg1 : int) return int; -- /usr/include/sqlite3.h:3703:16
pragma Import (C, sqlite3_sleep, "sqlite3_sleep");
--** CAPI3REF: Name Of The Folder Holding Temporary Files
--**
--** ^(If this global variable is made to point to a string which is
--** the name of a folder (a.k.a. directory), then all temporary files
--** created by SQLite when using a built-in [sqlite3_vfs | VFS]
--** will be placed in that directory.)^ ^If this variable
--** is a NULL pointer, then SQLite performs a search for an appropriate
--** temporary file directory.
--**
--** It is not safe to read or modify this variable in more than one
--** thread at a time. It is not safe to read or modify this variable
--** if a [database connection] is being used at the same time in a separate
--** thread.
--** It is intended that this variable be set once
--** as part of process initialization and before any SQLite interface
--** routines have been called and that this variable remain unchanged
--** thereafter.
--**
--** ^The [temp_store_directory pragma] may modify this variable and cause
--** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore,
--** the [temp_store_directory pragma] always assumes that any string
--** that this variable points to is held in memory obtained from
--** [sqlite3_malloc] and the pragma may attempt to free that memory
--** using [sqlite3_free].
--** Hence, if this variable is modified directly, either it should be
--** made NULL or made to point to memory obtained from [sqlite3_malloc]
--** or else the use of the [temp_store_directory pragma] should be avoided.
--
sqlite3_temp_directory : Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3734:32
pragma Import (C, sqlite3_temp_directory, "sqlite3_temp_directory");
--** CAPI3REF: Test For Auto-Commit Mode
--** KEYWORDS: {autocommit mode}
--**
--** ^The sqlite3_get_autocommit() interface returns non-zero or
--** zero if the given database connection is or is not in autocommit mode,
--** respectively. ^Autocommit mode is on by default.
--** ^Autocommit mode is disabled by a [BEGIN] statement.
--** ^Autocommit mode is re-enabled by a [COMMIT] or [ROLLBACK].
--**
--** If certain kinds of errors occur on a statement within a multi-statement
--** transaction (errors including [SQLITE_FULL], [SQLITE_IOERR],
--** [SQLITE_NOMEM], [SQLITE_BUSY], and [SQLITE_INTERRUPT]) then the
--** transaction might be rolled back automatically. The only way to
--** find out whether SQLite automatically rolled back the transaction after
--** an error is to use this function.
--**
--** If another thread changes the autocommit status of the database
--** connection while this routine is running, then the return value
--** is undefined.
--
function sqlite3_get_autocommit (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:3757:16
pragma Import (C, sqlite3_get_autocommit, "sqlite3_get_autocommit");
--** CAPI3REF: Find The Database Handle Of A Prepared Statement
--**
--** ^The sqlite3_db_handle interface returns the [database connection] handle
--** to which a [prepared statement] belongs. ^The [database connection]
--** returned by sqlite3_db_handle is the same [database connection]
--** that was the first argument
--** to the [sqlite3_prepare_v2()] call (or its variants) that was used to
--** create the statement in the first place.
--
function sqlite3_db_handle (arg1 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3769:21
pragma Import (C, sqlite3_db_handle, "sqlite3_db_handle");
--** CAPI3REF: Find the next prepared statement
--**
--** ^This interface returns a pointer to the next [prepared statement] after
--** pStmt associated with the [database connection] pDb. ^If pStmt is NULL
--** then this interface returns a pointer to the first prepared statement
--** associated with the database connection pDb. ^If no prepared statement
--** satisfies the conditions of this routine, it returns NULL.
--**
--** The [database connection] pointer D in a call to
--** [sqlite3_next_stmt(D,S)] must refer to an open database
--** connection and in particular must not be a NULL pointer.
--
function sqlite3_next_stmt (arg1 : System.Address; arg2 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3784:26
pragma Import (C, sqlite3_next_stmt, "sqlite3_next_stmt");
--** CAPI3REF: Commit And Rollback Notification Callbacks
--**
--** ^The sqlite3_commit_hook() interface registers a callback
--** function to be invoked whenever a transaction is [COMMIT | committed].
--** ^Any callback set by a previous call to sqlite3_commit_hook()
--** for the same database connection is overridden.
--** ^The sqlite3_rollback_hook() interface registers a callback
--** function to be invoked whenever a transaction is [ROLLBACK | rolled back].
--** ^Any callback set by a previous call to sqlite3_rollback_hook()
--** for the same database connection is overridden.
--** ^The pArg argument is passed through to the callback.
--** ^If the callback on a commit hook function returns non-zero,
--** then the commit is converted into a rollback.
--**
--** ^The sqlite3_commit_hook(D,C,P) and sqlite3_rollback_hook(D,C,P) functions
--** return the P argument from the previous call of the same function
--** on the same [database connection] D, or NULL for
--** the first call for each function on D.
--**
--** The callback implementation must not do anything that will modify
--** the database connection that invoked the callback. Any actions
--** to modify the database connection must be deferred until after the
--** completion of the [sqlite3_step()] call that triggered the commit
--** or rollback hook in the first place.
--** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
--** database connections for the meaning of "modify" in this paragraph.
--**
--** ^Registering a NULL function disables the callback.
--**
--** ^When the commit hook callback routine returns zero, the [COMMIT]
--** operation is allowed to continue normally. ^If the commit hook
--** returns non-zero, then the [COMMIT] is converted into a [ROLLBACK].
--** ^The rollback hook is invoked on a rollback that results from a commit
--** hook returning non-zero, just as it would be with any other rollback.
--**
--** ^For the purposes of this API, a transaction is said to have been
--** rolled back if an explicit "ROLLBACK" statement is executed, or
--** an error or constraint causes an implicit rollback to occur.
--** ^The rollback callback is not invoked if a transaction is
--** automatically rolled back because the database connection is closed.
--** ^The rollback callback is not invoked if a transaction is
--** rolled back because a commit callback returned non-zero.
--**
--** See also the [sqlite3_update_hook()] interface.
--
function sqlite3_commit_hook
(arg1 : System.Address;
arg2 : access function (arg1 : System.Address) return int;
arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3832:18
pragma Import (C, sqlite3_commit_hook, "sqlite3_commit_hook");
function sqlite3_rollback_hook
(arg1 : System.Address;
arg2 : access procedure (arg1 : System.Address);
arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3833:18
pragma Import (C, sqlite3_rollback_hook, "sqlite3_rollback_hook");
--** CAPI3REF: Data Change Notification Callbacks
--**
--** ^The sqlite3_update_hook() interface registers a callback function
--** with the [database connection] identified by the first argument
--** to be invoked whenever a row is updated, inserted or deleted.
--** ^Any callback set by a previous call to this function
--** for the same database connection is overridden.
--**
--** ^The second argument is a pointer to the function to invoke when a
--** row is updated, inserted or deleted.
--** ^The first argument to the callback is a copy of the third argument
--** to sqlite3_update_hook().
--** ^The second callback argument is one of [SQLITE_INSERT], [SQLITE_DELETE],
--** or [SQLITE_UPDATE], depending on the operation that caused the callback
--** to be invoked.
--** ^The third and fourth arguments to the callback contain pointers to the
--** database and table name containing the affected row.
--** ^The final callback parameter is the [rowid] of the row.
--** ^In the case of an update, this is the [rowid] after the update takes place.
--**
--** ^(The update hook is not invoked when internal system tables are
--** modified (i.e. sqlite_master and sqlite_sequence).)^
--**
--** ^In the current implementation, the update hook
--** is not invoked when duplication rows are deleted because of an
--** [ON CONFLICT | ON CONFLICT REPLACE] clause. ^Nor is the update hook
--** invoked when rows are deleted using the [truncate optimization].
--** The exceptions defined in this paragraph might change in a future
--** release of SQLite.
--**
--** The update hook implementation must not do anything that will modify
--** the database connection that invoked the update hook. Any actions
--** to modify the database connection must be deferred until after the
--** completion of the [sqlite3_step()] call that triggered the update hook.
--** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
--** database connections for the meaning of "modify" in this paragraph.
--**
--** ^The sqlite3_update_hook(D,C,P) function
--** returns the P argument from the previous call
--** on the same [database connection] D, or NULL for
--** the first call on D.
--**
--** See also the [sqlite3_commit_hook()] and [sqlite3_rollback_hook()]
--** interfaces.
--
function sqlite3_update_hook
(arg1 : System.Address;
arg2 : access procedure
(arg1 : System.Address;
arg2 : int;
arg3 : Interfaces.C.Strings.chars_ptr;
arg4 : Interfaces.C.Strings.chars_ptr;
arg5 : sqlite3_int64);
arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:3881:18
pragma Import (C, sqlite3_update_hook, "sqlite3_update_hook");
--** CAPI3REF: Enable Or Disable Shared Pager Cache
--** KEYWORDS: {shared cache}
--**
--** ^(This routine enables or disables the sharing of the database cache
--** and schema data structures between [database connection | connections]
--** to the same database. Sharing is enabled if the argument is true
--** and disabled if the argument is false.)^
--**
--** ^Cache sharing is enabled and disabled for an entire process.
--** This is a change as of SQLite version 3.5.0. In prior versions of SQLite,
--** sharing was enabled or disabled for each thread separately.
--**
--** ^(The cache sharing mode set by this interface effects all subsequent
--** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()].
--** Existing database connections continue use the sharing mode
--** that was in effect at the time they were opened.)^
--**
--** ^(This routine returns [SQLITE_OK] if shared cache was enabled or disabled
--** successfully. An [error code] is returned otherwise.)^
--**
--** ^Shared cache is disabled by default. But this might change in
--** future releases of SQLite. Applications that care about shared
--** cache setting should set it explicitly.
--**
--** See Also: [SQLite Shared-Cache Mode]
--
function sqlite3_enable_shared_cache (arg1 : int) return int; -- /usr/include/sqlite3.h:3914:16
pragma Import (C, sqlite3_enable_shared_cache, "sqlite3_enable_shared_cache");
--** CAPI3REF: Attempt To Free Heap Memory
--**
--** ^The sqlite3_release_memory() interface attempts to free N bytes
--** of heap memory by deallocating non-essential memory allocations
--** held by the database library. Memory used to cache database
--** pages to improve performance is an example of non-essential memory.
--** ^sqlite3_release_memory() returns the number of bytes actually freed,
--** which might be more or less than the amount requested.
--
function sqlite3_release_memory (arg1 : int) return int; -- /usr/include/sqlite3.h:3926:16
pragma Import (C, sqlite3_release_memory, "sqlite3_release_memory");
--** CAPI3REF: Impose A Limit On Heap Size
--**
--** ^The sqlite3_soft_heap_limit() interface places a "soft" limit
--** on the amount of heap memory that may be allocated by SQLite.
--** ^If an internal allocation is requested that would exceed the
--** soft heap limit, [sqlite3_release_memory()] is invoked one or
--** more times to free up some space before the allocation is performed.
--**
--** ^The limit is called "soft" because if [sqlite3_release_memory()]
--** cannot free sufficient memory to prevent the limit from being exceeded,
--** the memory is allocated anyway and the current operation proceeds.
--**
--** ^A negative or zero value for N means that there is no soft heap limit and
--** [sqlite3_release_memory()] will only be called when memory is exhausted.
--** ^The default value for the soft heap limit is zero.
--**
--** ^(SQLite makes a best effort to honor the soft heap limit.
--** But if the soft heap limit cannot be honored, execution will
--** continue without error or notification.)^ This is why the limit is
--** called a "soft" limit. It is advisory only.
--**
--** Prior to SQLite version 3.5.0, this routine only constrained the memory
--** allocated by a single thread - the same thread in which this routine
--** runs. Beginning with SQLite version 3.5.0, the soft heap limit is
--** applied to all threads. The value specified for the soft heap limit
--** is an upper bound on the total memory allocation for all threads. In
--** version 3.5.0 there is no mechanism for limiting the heap usage for
--** individual threads.
--
procedure sqlite3_soft_heap_limit (arg1 : int); -- /usr/include/sqlite3.h:3958:17
pragma Import (C, sqlite3_soft_heap_limit, "sqlite3_soft_heap_limit");
--** CAPI3REF: Extract Metadata About A Column Of A Table
--**
--** ^This routine returns metadata about a specific column of a specific
--** database table accessible using the [database connection] handle
--** passed as the first function argument.
--**
--** ^The column is identified by the second, third and fourth parameters to
--** this function. ^The second parameter is either the name of the database
--** (i.e. "main", "temp", or an attached database) containing the specified
--** table or NULL. ^If it is NULL, then all attached databases are searched
--** for the table using the same algorithm used by the database engine to
--** resolve unqualified table references.
--**
--** ^The third and fourth parameters to this function are the table and column
--** name of the desired column, respectively. Neither of these parameters
--** may be NULL.
--**
--** ^Metadata is returned by writing to the memory locations passed as the 5th
--** and subsequent parameters to this function. ^Any of these arguments may be
--** NULL, in which case the corresponding element of metadata is omitted.
--**
--** ^(<blockquote>
--** <table border="1">
--** <tr><th> Parameter <th> Output<br>Type <th> Description
--**
--** <tr><td> 5th <td> const char* <td> Data type
--** <tr><td> 6th <td> const char* <td> Name of default collation sequence
--** <tr><td> 7th <td> int <td> True if column has a NOT NULL constraint
--** <tr><td> 8th <td> int <td> True if column is part of the PRIMARY KEY
--** <tr><td> 9th <td> int <td> True if column is [AUTOINCREMENT]
--** </table>
--** </blockquote>)^
--**
--** ^The memory pointed to by the character pointers returned for the
--** declaration type and collation sequence is valid only until the next
--** call to any SQLite API function.
--**
--** ^If the specified table is actually a view, an [error code] is returned.
--**
--** ^If the specified column is "rowid", "oid" or "_rowid_" and an
--** [INTEGER PRIMARY KEY] column has been explicitly declared, then the output
--** parameters are set for the explicitly declared column. ^(If there is no
--** explicitly declared [INTEGER PRIMARY KEY] column, then the output
--** parameters are set as follows:
--**
--** <pre>
--** data type: "INTEGER"
--** collation sequence: "BINARY"
--** not null: 0
--** primary key: 1
--** auto increment: 0
--** </pre>)^
--**
--** ^(This function may load one or more schemas from database files. If an
--** error occurs during this process, or if the requested table or column
--** cannot be found, an [error code] is returned and an error message left
--** in the [database connection] (to be retrieved using sqlite3_errmsg()).)^
--**
--** ^This API is only available if the library was compiled with the
--** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol defined.
--
function sqlite3_table_column_metadata
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : Interfaces.C.Strings.chars_ptr;
arg4 : Interfaces.C.Strings.chars_ptr;
arg5 : System.Address;
arg6 : System.Address;
arg7 : access int;
arg8 : access int;
arg9 : access int) return int; -- /usr/include/sqlite3.h:4022:16
pragma Import (C, sqlite3_table_column_metadata, "sqlite3_table_column_metadata");
-- Connection handle
-- Database name or NULL
-- Table name
-- Column name
-- OUTPUT: Declared data type
-- OUTPUT: Collation sequence name
-- OUTPUT: True if NOT NULL constraint exists
-- OUTPUT: True if column part of PK
-- OUTPUT: True if column is auto-increment
--** CAPI3REF: Load An Extension
--**
--** ^This interface loads an SQLite extension library from the named file.
--**
--** ^The sqlite3_load_extension() interface attempts to load an
--** SQLite extension library contained in the file zFile.
--**
--** ^The entry point is zProc.
--** ^zProc may be 0, in which case the name of the entry point
--** defaults to "sqlite3_extension_init".
--** ^The sqlite3_load_extension() interface returns
--** [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong.
--** ^If an error occurs and pzErrMsg is not 0, then the
--** [sqlite3_load_extension()] interface shall attempt to
--** fill *pzErrMsg with error message text stored in memory
--** obtained from [sqlite3_malloc()]. The calling function
--** should free this memory by calling [sqlite3_free()].
--**
--** ^Extension loading must be enabled using
--** [sqlite3_enable_load_extension()] prior to calling this API,
--** otherwise an error will be returned.
--**
--** See also the [load_extension() SQL function].
--
function sqlite3_load_extension
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : Interfaces.C.Strings.chars_ptr;
arg4 : System.Address) return int; -- /usr/include/sqlite3.h:4059:16
pragma Import (C, sqlite3_load_extension, "sqlite3_load_extension");
-- Load the extension into this database connection
-- Name of the shared library containing extension
-- Entry point. Derived from zFile if 0
-- Put error message here if not 0
--** CAPI3REF: Enable Or Disable Extension Loading
--**
--** ^So as not to open security holes in older applications that are
--** unprepared to deal with extension loading, and as a means of disabling
--** extension loading while evaluating user-entered SQL, the following API
--** is provided to turn the [sqlite3_load_extension()] mechanism on and off.
--**
--** ^Extension loading is off by default. See ticket #1863.
--** ^Call the sqlite3_enable_load_extension() routine with onoff==1
--** to turn extension loading on and call it with onoff==0 to turn
--** it back off again.
--
function sqlite3_enable_load_extension (arg1 : System.Address; arg2 : int) return int; -- /usr/include/sqlite3.h:4079:16
pragma Import (C, sqlite3_enable_load_extension, "sqlite3_enable_load_extension");
--** CAPI3REF: Automatically Load An Extensions
--**
--** ^This API can be invoked at program startup in order to register
--** one or more statically linked extensions that will be available
--** to all new [database connections].
--**
--** ^(This routine stores a pointer to the extension entry point
--** in an array that is obtained from [sqlite3_malloc()]. That memory
--** is deallocated by [sqlite3_reset_auto_extension()].)^
--**
--** ^This function registers an extension entry point that is
--** automatically invoked whenever a new [database connection]
--** is opened using [sqlite3_open()], [sqlite3_open16()],
--** or [sqlite3_open_v2()].
--** ^Duplicate extensions are detected so calling this routine
--** multiple times with the same extension is harmless.
--** ^Automatic extensions apply across all threads.
--
function sqlite3_auto_extension (arg1 : access procedure) return int; -- /usr/include/sqlite3.h:4100:16
pragma Import (C, sqlite3_auto_extension, "sqlite3_auto_extension");
--** CAPI3REF: Reset Automatic Extension Loading
--**
--** ^(This function disables all previously registered automatic
--** extensions. It undoes the effect of all prior
--** [sqlite3_auto_extension()] calls.)^
--**
--** ^This function disables automatic extensions in all threads.
--
procedure sqlite3_reset_auto_extension; -- /usr/include/sqlite3.h:4111:17
pragma Import (C, sqlite3_reset_auto_extension, "sqlite3_reset_auto_extension");
--** CAPI3REF: A Handle To An Open BLOB
--** KEYWORDS: {BLOB handle} {BLOB handles}
--**
--** An instance of this object represents an open BLOB on which
--** [sqlite3_blob_open | incremental BLOB I/O] can be performed.
--** ^Objects of this type are created by [sqlite3_blob_open()]
--** and destroyed by [sqlite3_blob_close()].
--** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces
--** can be used to read or write small subsections of the BLOB.
--** ^The [sqlite3_blob_bytes()] interface returns the size of the BLOB in bytes.
--
-- skipped empty struct sqlite3_blob
--** CAPI3REF: Open A BLOB For Incremental I/O
--**
--** ^(This interfaces opens a [BLOB handle | handle] to the BLOB located
--** in row iRow, column zColumn, table zTable in database zDb;
--** in other words, the same BLOB that would be selected by:
--**
--** <pre>
--** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
--** </pre>)^
--**
--** ^If the flags parameter is non-zero, then the BLOB is opened for read
--** and write access. ^If it is zero, the BLOB is opened for read access.
--** ^It is not possible to open a column that is part of an index or primary
--** key for writing. ^If [foreign key constraints] are enabled, it is
--** not possible to open a column that is part of a [child key] for writing.
--**
--** ^Note that the database name is not the filename that contains
--** the database but rather the symbolic name of the database that
--** appears after the AS keyword when the database is connected using [ATTACH].
--** ^For the main database file, the database name is "main".
--** ^For TEMP tables, the database name is "temp".
--**
--** ^(On success, [SQLITE_OK] is returned and the new [BLOB handle] is written
--** to *ppBlob. Otherwise an [error code] is returned and *ppBlob is set
--** to be a null pointer.)^
--** ^This function sets the [database connection] error code and message
--** accessible via [sqlite3_errcode()] and [sqlite3_errmsg()] and related
--** functions. ^Note that the *ppBlob variable is always initialized in a
--** way that makes it safe to invoke [sqlite3_blob_close()] on *ppBlob
--** regardless of the success or failure of this routine.
--**
--** ^(If the row that a BLOB handle points to is modified by an
--** [UPDATE], [DELETE], or by [ON CONFLICT] side-effects
--** then the BLOB handle is marked as "expired".
--** This is true if any column of the row is changed, even a column
--** other than the one the BLOB handle is open on.)^
--** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for
--** a expired BLOB handle fail with an return code of [SQLITE_ABORT].
--** ^(Changes written into a BLOB prior to the BLOB expiring are not
--** rolled back by the expiration of the BLOB. Such changes will eventually
--** commit if the transaction continues to completion.)^
--**
--** ^Use the [sqlite3_blob_bytes()] interface to determine the size of
--** the opened blob. ^The size of a blob may not be changed by this
--** interface. Use the [UPDATE] SQL command to change the size of a
--** blob.
--**
--** ^The [sqlite3_bind_zeroblob()] and [sqlite3_result_zeroblob()] interfaces
--** and the built-in [zeroblob] SQL function can be used, if desired,
--** to create an empty, zero-filled blob in which to read or write using
--** this interface.
--**
--** To avoid a resource leak, every open [BLOB handle] should eventually
--** be released by a call to [sqlite3_blob_close()].
--
function sqlite3_blob_open
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : Interfaces.C.Strings.chars_ptr;
arg4 : Interfaces.C.Strings.chars_ptr;
arg5 : sqlite3_int64;
arg6 : int;
arg7 : System.Address) return int; -- /usr/include/sqlite3.h:4461:16
pragma Import (C, sqlite3_blob_open, "sqlite3_blob_open");
--** CAPI3REF: Close A BLOB Handle
--**
--** ^Closes an open [BLOB handle].
--**
--** ^Closing a BLOB shall cause the current transaction to commit
--** if there are no other BLOBs, no pending prepared statements, and the
--** database connection is in [autocommit mode].
--** ^If any writes were made to the BLOB, they might be held in cache
--** until the close operation if they will fit.
--**
--** ^(Closing the BLOB often forces the changes
--** out to disk and so if any I/O errors occur, they will likely occur
--** at the time when the BLOB is closed. Any errors that occur during
--** closing are reported as a non-zero return value.)^
--**
--** ^(The BLOB is closed unconditionally. Even if this routine returns
--** an error code, the BLOB is still closed.)^
--**
--** ^Calling this routine with a null pointer (such as would be returned
--** by a failed call to [sqlite3_blob_open()]) is a harmless no-op.
--
function sqlite3_blob_close (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:4493:16
pragma Import (C, sqlite3_blob_close, "sqlite3_blob_close");
--** CAPI3REF: Return The Size Of An Open BLOB
--**
--** ^Returns the size in bytes of the BLOB accessible via the
--** successfully opened [BLOB handle] in its only argument. ^The
--** incremental blob I/O routines can only read or overwriting existing
--** blob content; they cannot change the size of a blob.
--**
--** This routine only works on a [BLOB handle] which has been created
--** by a prior successful call to [sqlite3_blob_open()] and which has not
--** been closed by [sqlite3_blob_close()]. Passing any other pointer in
--** to this routine results in undefined and probably undesirable behavior.
--
function sqlite3_blob_bytes (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:4508:16
pragma Import (C, sqlite3_blob_bytes, "sqlite3_blob_bytes");
--** CAPI3REF: Read Data From A BLOB Incrementally
--**
--** ^(This function is used to read data from an open [BLOB handle] into a
--** caller-supplied buffer. N bytes of data are copied into buffer Z
--** from the open BLOB, starting at offset iOffset.)^
--**
--** ^If offset iOffset is less than N bytes from the end of the BLOB,
--** [SQLITE_ERROR] is returned and no data is read. ^If N or iOffset is
--** less than zero, [SQLITE_ERROR] is returned and no data is read.
--** ^The size of the blob (and hence the maximum value of N+iOffset)
--** can be determined using the [sqlite3_blob_bytes()] interface.
--**
--** ^An attempt to read from an expired [BLOB handle] fails with an
--** error code of [SQLITE_ABORT].
--**
--** ^(On success, sqlite3_blob_read() returns SQLITE_OK.
--** Otherwise, an [error code] or an [extended error code] is returned.)^
--**
--** This routine only works on a [BLOB handle] which has been created
--** by a prior successful call to [sqlite3_blob_open()] and which has not
--** been closed by [sqlite3_blob_close()]. Passing any other pointer in
--** to this routine results in undefined and probably undesirable behavior.
--**
--** See also: [sqlite3_blob_write()].
--
function sqlite3_blob_read
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : int) return int; -- /usr/include/sqlite3.h:4536:16
pragma Import (C, sqlite3_blob_read, "sqlite3_blob_read");
--** CAPI3REF: Write Data Into A BLOB Incrementally
--**
--** ^This function is used to write data into an open [BLOB handle] from a
--** caller-supplied buffer. ^N bytes of data are copied from the buffer Z
--** into the open BLOB, starting at offset iOffset.
--**
--** ^If the [BLOB handle] passed as the first argument was not opened for
--** writing (the flags parameter to [sqlite3_blob_open()] was zero),
--** this function returns [SQLITE_READONLY].
--**
--** ^This function may only modify the contents of the BLOB; it is
--** not possible to increase the size of a BLOB using this API.
--** ^If offset iOffset is less than N bytes from the end of the BLOB,
--** [SQLITE_ERROR] is returned and no data is written. ^If N is
--** less than zero [SQLITE_ERROR] is returned and no data is written.
--** The size of the BLOB (and hence the maximum value of N+iOffset)
--** can be determined using the [sqlite3_blob_bytes()] interface.
--**
--** ^An attempt to write to an expired [BLOB handle] fails with an
--** error code of [SQLITE_ABORT]. ^Writes to the BLOB that occurred
--** before the [BLOB handle] expired are not rolled back by the
--** expiration of the handle, though of course those changes might
--** have been overwritten by the statement that expired the BLOB handle
--** or by other independent statements.
--**
--** ^(On success, sqlite3_blob_write() returns SQLITE_OK.
--** Otherwise, an [error code] or an [extended error code] is returned.)^
--**
--** This routine only works on a [BLOB handle] which has been created
--** by a prior successful call to [sqlite3_blob_open()] and which has not
--** been closed by [sqlite3_blob_close()]. Passing any other pointer in
--** to this routine results in undefined and probably undesirable behavior.
--**
--** See also: [sqlite3_blob_read()].
--
function sqlite3_blob_write
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int;
arg4 : int) return int; -- /usr/include/sqlite3.h:4574:16
pragma Import (C, sqlite3_blob_write, "sqlite3_blob_write");
--** CAPI3REF: Virtual File System Objects
--**
--** A virtual filesystem (VFS) is an [sqlite3_vfs] object
--** that SQLite uses to interact
--** with the underlying operating system. Most SQLite builds come with a
--** single default VFS that is appropriate for the host computer.
--** New VFSes can be registered and existing VFSes can be unregistered.
--** The following interfaces are provided.
--**
--** ^The sqlite3_vfs_find() interface returns a pointer to a VFS given its name.
--** ^Names are case sensitive.
--** ^Names are zero-terminated UTF-8 strings.
--** ^If there is no match, a NULL pointer is returned.
--** ^If zVfsName is NULL then the default VFS is returned.
--**
--** ^New VFSes are registered with sqlite3_vfs_register().
--** ^Each new VFS becomes the default VFS if the makeDflt flag is set.
--** ^The same VFS can be registered multiple times without injury.
--** ^To make an existing VFS into the default VFS, register it again
--** with the makeDflt flag set. If two different VFSes with the
--** same name are registered, the behavior is undefined. If a
--** VFS is registered with a name that is NULL or an empty string,
--** then the behavior is undefined.
--**
--** ^Unregister a VFS with the sqlite3_vfs_unregister() interface.
--** ^(If the default VFS is unregistered, another VFS is chosen as
--** the default. The choice for the new VFS is arbitrary.)^
--
function sqlite3_vfs_find (arg1 : Interfaces.C.Strings.chars_ptr) return access sqlite3_vfs; -- /usr/include/sqlite3.h:4605:25
pragma Import (C, sqlite3_vfs_find, "sqlite3_vfs_find");
function sqlite3_vfs_register (arg1 : access sqlite3_vfs; arg2 : int) return int; -- /usr/include/sqlite3.h:4606:16
pragma Import (C, sqlite3_vfs_register, "sqlite3_vfs_register");
function sqlite3_vfs_unregister (arg1 : access sqlite3_vfs) return int; -- /usr/include/sqlite3.h:4607:16
pragma Import (C, sqlite3_vfs_unregister, "sqlite3_vfs_unregister");
--** CAPI3REF: Mutexes
--**
--** The SQLite core uses these routines for thread
--** synchronization. Though they are intended for internal
--** use by SQLite, code that links against SQLite is
--** permitted to use any of these routines.
--**
--** The SQLite source code contains multiple implementations
--** of these mutex routines. An appropriate implementation
--** is selected automatically at compile-time. ^(The following
--** implementations are available in the SQLite core:
--**
--** <ul>
--** <li> SQLITE_MUTEX_OS2
--** <li> SQLITE_MUTEX_PTHREAD
--** <li> SQLITE_MUTEX_W32
--** <li> SQLITE_MUTEX_NOOP
--** </ul>)^
--**
--** ^The SQLITE_MUTEX_NOOP implementation is a set of routines
--** that does no real locking and is appropriate for use in
--** a single-threaded application. ^The SQLITE_MUTEX_OS2,
--** SQLITE_MUTEX_PTHREAD, and SQLITE_MUTEX_W32 implementations
--** are appropriate for use on OS/2, Unix, and Windows.
--**
--** ^(If SQLite is compiled with the SQLITE_MUTEX_APPDEF preprocessor
--** macro defined (with "-DSQLITE_MUTEX_APPDEF=1"), then no mutex
--** implementation is included with the library. In this case the
--** application must supply a custom mutex implementation using the
--** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function
--** before calling sqlite3_initialize() or any other public sqlite3_
--** function that calls sqlite3_initialize().)^
--**
--** ^The sqlite3_mutex_alloc() routine allocates a new
--** mutex and returns a pointer to it. ^If it returns NULL
--** that means that a mutex could not be allocated. ^SQLite
--** will unwind its stack and return an error. ^(The argument
--** to sqlite3_mutex_alloc() is one of these integer constants:
--**
--** <ul>
--** <li> SQLITE_MUTEX_FAST
--** <li> SQLITE_MUTEX_RECURSIVE
--** <li> SQLITE_MUTEX_STATIC_MASTER
--** <li> SQLITE_MUTEX_STATIC_MEM
--** <li> SQLITE_MUTEX_STATIC_MEM2
--** <li> SQLITE_MUTEX_STATIC_PRNG
--** <li> SQLITE_MUTEX_STATIC_LRU
--** <li> SQLITE_MUTEX_STATIC_LRU2
--** </ul>)^
--**
--** ^The first two constants (SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE)
--** cause sqlite3_mutex_alloc() to create
--** a new mutex. ^The new mutex is recursive when SQLITE_MUTEX_RECURSIVE
--** is used but not necessarily so when SQLITE_MUTEX_FAST is used.
--** The mutex implementation does not need to make a distinction
--** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does
--** not want to. ^SQLite will only request a recursive mutex in
--** cases where it really needs one. ^If a faster non-recursive mutex
--** implementation is available on the host platform, the mutex subsystem
--** might return such a mutex in response to SQLITE_MUTEX_FAST.
--**
--** ^The other allowed parameters to sqlite3_mutex_alloc() (anything other
--** than SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) each return
--** a pointer to a static preexisting mutex. ^Six static mutexes are
--** used by the current version of SQLite. Future versions of SQLite
--** may add additional static mutexes. Static mutexes are for internal
--** use by SQLite only. Applications that use SQLite mutexes should
--** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or
--** SQLITE_MUTEX_RECURSIVE.
--**
--** ^Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST
--** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
--** returns a different mutex on every call. ^But for the static
--** mutex types, the same mutex is returned on every call that has
--** the same type number.
--**
--** ^The sqlite3_mutex_free() routine deallocates a previously
--** allocated dynamic mutex. ^SQLite is careful to deallocate every
--** dynamic mutex that it allocates. The dynamic mutexes must not be in
--** use when they are deallocated. Attempting to deallocate a static
--** mutex results in undefined behavior. ^SQLite never deallocates
--** a static mutex.
--**
--** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
--** to enter a mutex. ^If another thread is already within the mutex,
--** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
--** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK]
--** upon successful entry. ^(Mutexes created using
--** SQLITE_MUTEX_RECURSIVE can be entered multiple times by the same thread.
--** In such cases the,
--** mutex must be exited an equal number of times before another thread
--** can enter.)^ ^(If the same thread tries to enter any other
--** kind of mutex more than once, the behavior is undefined.
--** SQLite will never exhibit
--** such behavior in its own use of mutexes.)^
--**
--** ^(Some systems (for example, Windows 95) do not support the operation
--** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try()
--** will always return SQLITE_BUSY. The SQLite core only ever uses
--** sqlite3_mutex_try() as an optimization so this is acceptable behavior.)^
--**
--** ^The sqlite3_mutex_leave() routine exits a mutex that was
--** previously entered by the same thread. ^(The behavior
--** is undefined if the mutex is not currently entered by the
--** calling thread or is not currently allocated. SQLite will
--** never do either.)^
--**
--** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or
--** sqlite3_mutex_leave() is a NULL pointer, then all three routines
--** behave as no-ops.
--**
--** See also: [sqlite3_mutex_held()] and [sqlite3_mutex_notheld()].
--
function sqlite3_mutex_alloc (arg1 : int) return System.Address; -- /usr/include/sqlite3.h:4723:27
pragma Import (C, sqlite3_mutex_alloc, "sqlite3_mutex_alloc");
procedure sqlite3_mutex_free (arg1 : System.Address); -- /usr/include/sqlite3.h:4724:17
pragma Import (C, sqlite3_mutex_free, "sqlite3_mutex_free");
procedure sqlite3_mutex_enter (arg1 : System.Address); -- /usr/include/sqlite3.h:4725:17
pragma Import (C, sqlite3_mutex_enter, "sqlite3_mutex_enter");
function sqlite3_mutex_try (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:4726:16
pragma Import (C, sqlite3_mutex_try, "sqlite3_mutex_try");
procedure sqlite3_mutex_leave (arg1 : System.Address); -- /usr/include/sqlite3.h:4727:17
pragma Import (C, sqlite3_mutex_leave, "sqlite3_mutex_leave");
--** CAPI3REF: Mutex Methods Object
--** EXPERIMENTAL
--**
--** An instance of this structure defines the low-level routines
--** used to allocate and use mutexes.
--**
--** Usually, the default mutex implementations provided by SQLite are
--** sufficient, however the user has the option of substituting a custom
--** implementation for specialized deployments or systems for which SQLite
--** does not provide a suitable implementation. In this case, the user
--** creates and populates an instance of this structure to pass
--** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option.
--** Additionally, an instance of this structure can be used as an
--** output variable when querying the system for the current mutex
--** implementation, using the [SQLITE_CONFIG_GETMUTEX] option.
--**
--** ^The xMutexInit method defined by this structure is invoked as
--** part of system initialization by the sqlite3_initialize() function.
--** ^The xMutexInit routine is calle by SQLite exactly once for each
--** effective call to [sqlite3_initialize()].
--**
--** ^The xMutexEnd method defined by this structure is invoked as
--** part of system shutdown by the sqlite3_shutdown() function. The
--** implementation of this method is expected to release all outstanding
--** resources obtained by the mutex methods implementation, especially
--** those obtained by the xMutexInit method. ^The xMutexEnd()
--** interface is invoked exactly once for each call to [sqlite3_shutdown()].
--**
--** ^(The remaining seven methods defined by this structure (xMutexAlloc,
--** xMutexFree, xMutexEnter, xMutexTry, xMutexLeave, xMutexHeld and
--** xMutexNotheld) implement the following interfaces (respectively):
--**
--** <ul>
--** <li> [sqlite3_mutex_alloc()] </li>
--** <li> [sqlite3_mutex_free()] </li>
--** <li> [sqlite3_mutex_enter()] </li>
--** <li> [sqlite3_mutex_try()] </li>
--** <li> [sqlite3_mutex_leave()] </li>
--** <li> [sqlite3_mutex_held()] </li>
--** <li> [sqlite3_mutex_notheld()] </li>
--** </ul>)^
--**
--** The only difference is that the public sqlite3_XXX functions enumerated
--** above silently ignore any invocations that pass a NULL pointer instead
--** of a valid mutex handle. The implementations of the methods defined
--** by this structure are not required to handle this case, the results
--** of passing a NULL pointer instead of a valid mutex handle are undefined
--** (i.e. it is acceptable to provide an implementation that segfaults if
--** it is passed a NULL pointer).
--**
--** The xMutexInit() method must be threadsafe. ^It must be harmless to
--** invoke xMutexInit() mutiple times within the same process and without
--** intervening calls to xMutexEnd(). Second and subsequent calls to
--** xMutexInit() must be no-ops.
--**
--** ^xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()]
--** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
--** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
--** memory allocation for a fast or recursive mutex.
--**
--** ^SQLite will invoke the xMutexEnd() method when [sqlite3_shutdown()] is
--** called, but only if the prior call to xMutexInit returned SQLITE_OK.
--** If xMutexInit fails in any way, it is expected to clean up after itself
--** prior to returning.
--
type sqlite3_mutex_methods is record
xMutexInit : access function return int; -- /usr/include/sqlite3.h:4797:9
xMutexEnd : access function return int; -- /usr/include/sqlite3.h:4798:9
xMutexAlloc : access function (arg1 : int) return System.Address; -- /usr/include/sqlite3.h:4799:20
xMutexFree : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:4800:10
xMutexEnter : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:4801:10
xMutexTry : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:4802:9
xMutexLeave : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:4803:10
xMutexHeld : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:4804:9
xMutexNotheld : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:4805:9
end record;
pragma Convention (C, sqlite3_mutex_methods); -- /usr/include/sqlite3.h:4795:16
--** CAPI3REF: Mutex Verification Routines
--**
--** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routines
--** are intended for use inside assert() statements. ^The SQLite core
--** never uses these routines except inside an assert() and applications
--** are advised to follow the lead of the core. ^The SQLite core only
--** provides implementations for these routines when it is compiled
--** with the SQLITE_DEBUG flag. ^External mutex implementations
--** are only required to provide these routines if SQLITE_DEBUG is
--** defined and if NDEBUG is not defined.
--**
--** ^These routines should return true if the mutex in their argument
--** is held or not held, respectively, by the calling thread.
--**
--** ^The implementation is not required to provided versions of these
--** routines that actually work. If the implementation does not provide working
--** versions of these routines, it should at least provide stubs that always
--** return true so that one does not get spurious assertion failures.
--**
--** ^If the argument to sqlite3_mutex_held() is a NULL pointer then
--** the routine should return 1. This seems counter-intuitive since
--** clearly the mutex cannot be held if it does not exist. But the
--** the reason the mutex does not exist is because the build is not
--** using mutexes. And we do not want the assert() containing the
--** call to sqlite3_mutex_held() to fail, so a non-zero return is
--** the appropriate thing to do. ^The sqlite3_mutex_notheld()
--** interface should also return 1 when given a NULL pointer.
--
function sqlite3_mutex_held (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:4838:16
pragma Import (C, sqlite3_mutex_held, "sqlite3_mutex_held");
function sqlite3_mutex_notheld (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:4839:16
pragma Import (C, sqlite3_mutex_notheld, "sqlite3_mutex_notheld");
--** CAPI3REF: Mutex Types
--**
--** The [sqlite3_mutex_alloc()] interface takes a single argument
--** which is one of these integer constants.
--**
--** The set of static mutexes may change from one SQLite release to the
--** next. Applications that override the built-in mutex logic must be
--** prepared to accommodate additional static mutexes.
--
--** CAPI3REF: Retrieve the mutex for a database connection
--**
--** ^This interface returns a pointer the [sqlite3_mutex] object that
--** serializes access to the [database connection] given in the argument
--** when the [threading mode] is Serialized.
--** ^If the [threading mode] is Single-thread or Multi-thread then this
--** routine returns a NULL pointer.
--
function sqlite3_db_mutex (arg1 : System.Address) return System.Address; -- /usr/include/sqlite3.h:4871:27
pragma Import (C, sqlite3_db_mutex, "sqlite3_db_mutex");
--** CAPI3REF: Low-Level Control Of Database Files
--**
--** ^The [sqlite3_file_control()] interface makes a direct call to the
--** xFileControl method for the [sqlite3_io_methods] object associated
--** with a particular database identified by the second argument. ^The
--** name of the database "main" for the main database or "temp" for the
--** TEMP database, or the name that appears after the AS keyword for
--** databases that are added using the [ATTACH] SQL command.
--** ^A NULL pointer can be used in place of "main" to refer to the
--** main database file.
--** ^The third and fourth parameters to this routine
--** are passed directly through to the second and third parameters of
--** the xFileControl method. ^The return value of the xFileControl
--** method becomes the return value of this routine.
--**
--** ^If the second parameter (zDbName) does not match the name of any
--** open database file, then SQLITE_ERROR is returned. ^This error
--** code is not remembered and will not be recalled by [sqlite3_errcode()]
--** or [sqlite3_errmsg()]. The underlying xFileControl method might
--** also return SQLITE_ERROR. There is no way to distinguish between
--** an incorrect zDbName and an SQLITE_ERROR return from the underlying
--** xFileControl method.
--**
--** See also: [SQLITE_FCNTL_LOCKSTATE]
--
function sqlite3_file_control
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int;
arg4 : System.Address) return int; -- /usr/include/sqlite3.h:4899:16
pragma Import (C, sqlite3_file_control, "sqlite3_file_control");
--** CAPI3REF: Testing Interface
--**
--** ^The sqlite3_test_control() interface is used to read out internal
--** state of SQLite and to inject faults into SQLite for testing
--** purposes. ^The first parameter is an operation code that determines
--** the number, meaning, and operation of all subsequent parameters.
--**
--** This interface is not for use by applications. It exists solely
--** for verifying the correct operation of the SQLite library. Depending
--** on how the SQLite library is compiled, this interface might not exist.
--**
--** The details of the operation codes, their meanings, the parameters
--** they take, and what they do are all subject to change without notice.
--** Unlike most of the SQLite API, this function is not guaranteed to
--** operate consistently from one release to the next.
--
function sqlite3_test_control (arg1 : int -- , ...
) return int; -- /usr/include/sqlite3.h:4918:16
pragma Import (C, sqlite3_test_control, "sqlite3_test_control");
--** CAPI3REF: Testing Interface Operation Codes
--**
--** These constants are the valid operation code parameters used
--** as the first argument to [sqlite3_test_control()].
--**
--** These parameters and their meanings are subject to change
--** without notice. These values are for testing purposes only.
--** Applications should not use any of these parameters or the
--** [sqlite3_test_control()] interface.
--
--** CAPI3REF: SQLite Runtime Status
--** EXPERIMENTAL
--**
--** ^This interface is used to retrieve runtime status information
--** about the preformance of SQLite, and optionally to reset various
--** highwater marks. ^The first argument is an integer code for
--** the specific parameter to measure. ^(Recognized integer codes
--** are of the form [SQLITE_STATUS_MEMORY_USED | SQLITE_STATUS_...].)^
--** ^The current value of the parameter is returned into *pCurrent.
--** ^The highest recorded value is returned in *pHighwater. ^If the
--** resetFlag is true, then the highest record value is reset after
--** *pHighwater is written. ^(Some parameters do not record the highest
--** value. For those parameters
--** nothing is written into *pHighwater and the resetFlag is ignored.)^
--** ^(Other parameters record only the highwater mark and not the current
--** value. For these latter parameters nothing is written into *pCurrent.)^
--**
--** ^The sqlite3_db_status() routine returns SQLITE_OK on success and a
--** non-zero [error code] on failure.
--**
--** This routine is threadsafe but is not atomic. This routine can be
--** called while other threads are running the same or different SQLite
--** interfaces. However the values returned in *pCurrent and
--** *pHighwater reflect the status of SQLite at different points in time
--** and it is possible that another thread might change the parameter
--** in between the times when *pCurrent and *pHighwater are written.
--**
--** See also: [sqlite3_db_status()]
--
function sqlite3_status
(arg1 : int;
arg2 : access int;
arg3 : access int;
arg4 : int) return int; -- /usr/include/sqlite3.h:4976:36
pragma Import (C, sqlite3_status, "sqlite3_status");
--** CAPI3REF: Status Parameters
--** EXPERIMENTAL
--**
--** These integer constants designate various run-time status parameters
--** that can be returned by [sqlite3_status()].
--**
--** <dl>
--** ^(<dt>SQLITE_STATUS_MEMORY_USED</dt>
--** <dd>This parameter is the current amount of memory checked out
--** using [sqlite3_malloc()], either directly or indirectly. The
--** figure includes calls made to [sqlite3_malloc()] by the application
--** and internal memory usage by the SQLite library. Scratch memory
--** controlled by [SQLITE_CONFIG_SCRATCH] and auxiliary page-cache
--** memory controlled by [SQLITE_CONFIG_PAGECACHE] is not included in
--** this parameter. The amount returned is the sum of the allocation
--** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^
--**
--** ^(<dt>SQLITE_STATUS_MALLOC_SIZE</dt>
--** <dd>This parameter records the largest memory allocation request
--** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their
--** internal equivalents). Only the value returned in the
--** *pHighwater parameter to [sqlite3_status()] is of interest.
--** The value written into the *pCurrent parameter is undefined.</dd>)^
--**
--** ^(<dt>SQLITE_STATUS_PAGECACHE_USED</dt>
--** <dd>This parameter returns the number of pages used out of the
--** [pagecache memory allocator] that was configured using
--** [SQLITE_CONFIG_PAGECACHE]. The
--** value returned is in pages, not in bytes.</dd>)^
--**
--** ^(<dt>SQLITE_STATUS_PAGECACHE_OVERFLOW</dt>
--** <dd>This parameter returns the number of bytes of page cache
--** allocation which could not be statisfied by the [SQLITE_CONFIG_PAGECACHE]
--** buffer and where forced to overflow to [sqlite3_malloc()]. The
--** returned value includes allocations that overflowed because they
--** where too large (they were larger than the "sz" parameter to
--** [SQLITE_CONFIG_PAGECACHE]) and allocations that overflowed because
--** no space was left in the page cache.</dd>)^
--**
--** ^(<dt>SQLITE_STATUS_PAGECACHE_SIZE</dt>
--** <dd>This parameter records the largest memory allocation request
--** handed to [pagecache memory allocator]. Only the value returned in the
--** *pHighwater parameter to [sqlite3_status()] is of interest.
--** The value written into the *pCurrent parameter is undefined.</dd>)^
--**
--** ^(<dt>SQLITE_STATUS_SCRATCH_USED</dt>
--** <dd>This parameter returns the number of allocations used out of the
--** [scratch memory allocator] configured using
--** [SQLITE_CONFIG_SCRATCH]. The value returned is in allocations, not
--** in bytes. Since a single thread may only have one scratch allocation
--** outstanding at time, this parameter also reports the number of threads
--** using scratch memory at the same time.</dd>)^
--**
--** ^(<dt>SQLITE_STATUS_SCRATCH_OVERFLOW</dt>
--** <dd>This parameter returns the number of bytes of scratch memory
--** allocation which could not be statisfied by the [SQLITE_CONFIG_SCRATCH]
--** buffer and where forced to overflow to [sqlite3_malloc()]. The values
--** returned include overflows because the requested allocation was too
--** larger (that is, because the requested allocation was larger than the
--** "sz" parameter to [SQLITE_CONFIG_SCRATCH]) and because no scratch buffer
--** slots were available.
--** </dd>)^
--**
--** ^(<dt>SQLITE_STATUS_SCRATCH_SIZE</dt>
--** <dd>This parameter records the largest memory allocation request
--** handed to [scratch memory allocator]. Only the value returned in the
--** *pHighwater parameter to [sqlite3_status()] is of interest.
--** The value written into the *pCurrent parameter is undefined.</dd>)^
--**
--** ^(<dt>SQLITE_STATUS_PARSER_STACK</dt>
--** <dd>This parameter records the deepest parser stack. It is only
--** meaningful if SQLite is compiled with [YYTRACKMAXSTACKDEPTH].</dd>)^
--** </dl>
--**
--** New status parameters may be added from time to time.
--
--** CAPI3REF: Database Connection Status
--** EXPERIMENTAL
--**
--** ^This interface is used to retrieve runtime status information
--** about a single [database connection]. ^The first argument is the
--** database connection object to be interrogated. ^The second argument
--** is the parameter to interrogate. ^Currently, the only allowed value
--** for the second parameter is [SQLITE_DBSTATUS_LOOKASIDE_USED].
--** Additional options will likely appear in future releases of SQLite.
--**
--** ^The current value of the requested parameter is written into *pCur
--** and the highest instantaneous value is written into *pHiwtr. ^If
--** the resetFlg is true, then the highest instantaneous value is
--** reset back down to the current value.
--**
--** See also: [sqlite3_status()] and [sqlite3_stmt_status()].
--
function sqlite3_db_status
(arg1 : System.Address;
arg2 : int;
arg3 : access int;
arg4 : access int;
arg5 : int) return int; -- /usr/include/sqlite3.h:5084:36
pragma Import (C, sqlite3_db_status, "sqlite3_db_status");
--** CAPI3REF: Status Parameters for database connections
--** EXPERIMENTAL
--**
--** These constants are the available integer "verbs" that can be passed as
--** the second argument to the [sqlite3_db_status()] interface.
--**
--** New verbs may be added in future releases of SQLite. Existing verbs
--** might be discontinued. Applications should check the return code from
--** [sqlite3_db_status()] to make sure that the call worked.
--** The [sqlite3_db_status()] interface will return a non-zero error code
--** if a discontinued or unsupported verb is invoked.
--**
--** <dl>
--** ^(<dt>SQLITE_DBSTATUS_LOOKASIDE_USED</dt>
--** <dd>This parameter returns the number of lookaside memory slots currently
--** checked out.</dd>)^
--** </dl>
--
--** CAPI3REF: Prepared Statement Status
--** EXPERIMENTAL
--**
--** ^(Each prepared statement maintains various
--** [SQLITE_STMTSTATUS_SORT | counters] that measure the number
--** of times it has performed specific operations.)^ These counters can
--** be used to monitor the performance characteristics of the prepared
--** statements. For example, if the number of table steps greatly exceeds
--** the number of table searches or result rows, that would tend to indicate
--** that the prepared statement is using a full table scan rather than
--** an index.
--**
--** ^(This interface is used to retrieve and reset counter values from
--** a [prepared statement]. The first argument is the prepared statement
--** object to be interrogated. The second argument
--** is an integer code for a specific [SQLITE_STMTSTATUS_SORT | counter]
--** to be interrogated.)^
--** ^The current value of the requested counter is returned.
--** ^If the resetFlg is true, then the counter is reset to zero after this
--** interface call returns.
--**
--** See also: [sqlite3_status()] and [sqlite3_db_status()].
--
function sqlite3_stmt_status
(arg1 : System.Address;
arg2 : int;
arg3 : int) return int; -- /usr/include/sqlite3.h:5132:36
pragma Import (C, sqlite3_stmt_status, "sqlite3_stmt_status");
--** CAPI3REF: Status Parameters for prepared statements
--** EXPERIMENTAL
--**
--** These preprocessor macros define integer codes that name counter
--** values associated with the [sqlite3_stmt_status()] interface.
--** The meanings of the various counters are as follows:
--**
--** <dl>
--** <dt>SQLITE_STMTSTATUS_FULLSCAN_STEP</dt>
--** <dd>^This is the number of times that SQLite has stepped forward in
--** a table as part of a full table scan. Large numbers for this counter
--** may indicate opportunities for performance improvement through
--** careful use of indices.</dd>
--**
--** <dt>SQLITE_STMTSTATUS_SORT</dt>
--** <dd>^This is the number of sort operations that have occurred.
--** A non-zero value in this counter may indicate an opportunity to
--** improvement performance through careful use of indices.</dd>
--**
--** </dl>
--
--** CAPI3REF: Custom Page Cache Object
--** EXPERIMENTAL
--**
--** The sqlite3_pcache type is opaque. It is implemented by
--** the pluggable module. The SQLite core has no knowledge of
--** its size or internal structure and never deals with the
--** sqlite3_pcache object except by holding and passing pointers
--** to the object.
--**
--** See [sqlite3_pcache_methods] for additional information.
--
-- skipped empty struct sqlite3_pcache
--** CAPI3REF: Application Defined Page Cache.
--** KEYWORDS: {page cache}
--** EXPERIMENTAL
--**
--** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE], ...) interface can
--** register an alternative page cache implementation by passing in an
--** instance of the sqlite3_pcache_methods structure.)^ The majority of the
--** heap memory used by SQLite is used by the page cache to cache data read
--** from, or ready to be written to, the database file. By implementing a
--** custom page cache using this API, an application can control more
--** precisely the amount of memory consumed by SQLite, the way in which
--** that memory is allocated and released, and the policies used to
--** determine exactly which parts of a database file are cached and for
--** how long.
--**
--** ^(The contents of the sqlite3_pcache_methods structure are copied to an
--** internal buffer by SQLite within the call to [sqlite3_config]. Hence
--** the application may discard the parameter after the call to
--** [sqlite3_config()] returns.)^
--**
--** ^The xInit() method is called once for each call to [sqlite3_initialize()]
--** (usually only once during the lifetime of the process). ^(The xInit()
--** method is passed a copy of the sqlite3_pcache_methods.pArg value.)^
--** ^The xInit() method can set up up global structures and/or any mutexes
--** required by the custom page cache implementation.
--**
--** ^The xShutdown() method is called from within [sqlite3_shutdown()],
--** if the application invokes this API. It can be used to clean up
--** any outstanding resources before process shutdown, if required.
--**
--** ^SQLite holds a [SQLITE_MUTEX_RECURSIVE] mutex when it invokes
--** the xInit method, so the xInit method need not be threadsafe. ^The
--** xShutdown method is only called from [sqlite3_shutdown()] so it does
--** not need to be threadsafe either. All other methods must be threadsafe
--** in multithreaded applications.
--**
--** ^SQLite will never invoke xInit() more than once without an intervening
--** call to xShutdown().
--**
--** ^The xCreate() method is used to construct a new cache instance. SQLite
--** will typically create one cache instance for each open database file,
--** though this is not guaranteed. ^The
--** first parameter, szPage, is the size in bytes of the pages that must
--** be allocated by the cache. ^szPage will not be a power of two. ^szPage
--** will the page size of the database file that is to be cached plus an
--** increment (here called "R") of about 100 or 200. ^SQLite will use the
--** extra R bytes on each page to store metadata about the underlying
--** database page on disk. The value of R depends
--** on the SQLite version, the target platform, and how SQLite was compiled.
--** ^R is constant for a particular build of SQLite. ^The second argument to
--** xCreate(), bPurgeable, is true if the cache being created will
--** be used to cache database pages of a file stored on disk, or
--** false if it is used for an in-memory database. ^The cache implementation
--** does not have to do anything special based with the value of bPurgeable;
--** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will
--** never invoke xUnpin() except to deliberately delete a page.
--** ^In other words, a cache created with bPurgeable set to false will
--** never contain any unpinned pages.
--**
--** ^(The xCachesize() method may be called at any time by SQLite to set the
--** suggested maximum cache-size (number of pages stored by) the cache
--** instance passed as the first argument. This is the value configured using
--** the SQLite "[PRAGMA cache_size]" command.)^ ^As with the bPurgeable
--** parameter, the implementation is not required to do anything with this
--** value; it is advisory only.
--**
--** ^The xPagecount() method should return the number of pages currently
--** stored in the cache.
--**
--** ^The xFetch() method is used to fetch a page and return a pointer to it.
--** ^A 'page', in this context, is a buffer of szPage bytes aligned at an
--** 8-byte boundary. ^The page to be fetched is determined by the key. ^The
--** mimimum key value is 1. After it has been retrieved using xFetch, the page
--** is considered to be "pinned".
--**
--** ^If the requested page is already in the page cache, then the page cache
--** implementation must return a pointer to the page buffer with its content
--** intact. ^(If the requested page is not already in the cache, then the
--** behavior of the cache implementation is determined by the value of the
--** createFlag parameter passed to xFetch, according to the following table:
--**
--** <table border=1 width=85% align=center>
--** <tr><th> createFlag <th> Behaviour when page is not already in cache
--** <tr><td> 0 <td> Do not allocate a new page. Return NULL.
--** <tr><td> 1 <td> Allocate a new page if it easy and convenient to do so.
--** Otherwise return NULL.
--** <tr><td> 2 <td> Make every effort to allocate a new page. Only return
--** NULL if allocating a new page is effectively impossible.
--** </table>)^
--**
--** SQLite will normally invoke xFetch() with a createFlag of 0 or 1. If
--** a call to xFetch() with createFlag==1 returns NULL, then SQLite will
--** attempt to unpin one or more cache pages by spilling the content of
--** pinned pages to disk and synching the operating system disk cache. After
--** attempting to unpin pages, the xFetch() method will be invoked again with
--** a createFlag of 2.
--**
--** ^xUnpin() is called by SQLite with a pointer to a currently pinned page
--** as its second argument. ^(If the third parameter, discard, is non-zero,
--** then the page should be evicted from the cache. In this case SQLite
--** assumes that the next time the page is retrieved from the cache using
--** the xFetch() method, it will be zeroed.)^ ^If the discard parameter is
--** zero, then the page is considered to be unpinned. ^The cache implementation
--** may choose to evict unpinned pages at any time.
--**
--** ^(The cache is not required to perform any reference counting. A single
--** call to xUnpin() unpins the page regardless of the number of prior calls
--** to xFetch().)^
--**
--** ^The xRekey() method is used to change the key value associated with the
--** page passed as the second argument from oldKey to newKey. ^If the cache
--** previously contains an entry associated with newKey, it should be
--** discarded. ^Any prior cache entry associated with newKey is guaranteed not
--** to be pinned.
--**
--** ^When SQLite calls the xTruncate() method, the cache must discard all
--** existing cache entries with page numbers (keys) greater than or equal
--** to the value of the iLimit parameter passed to xTruncate(). ^If any
--** of these pages are pinned, they are implicitly unpinned, meaning that
--** they can be safely discarded.
--**
--** ^The xDestroy() method is used to delete a cache allocated by xCreate().
--** All resources associated with the specified cache should be freed. ^After
--** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
--** handle invalid, and will not use it with any other sqlite3_pcache_methods
--** functions.
--
type sqlite3_pcache_methods is record
pArg : System.Address; -- /usr/include/sqlite3.h:5303:9
xInit : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:5304:9
xShutdown : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:5305:10
xCreate : access function (arg1 : int; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:5306:21
xCachesize : access procedure (arg1 : System.Address; arg2 : int); -- /usr/include/sqlite3.h:5307:10
xPagecount : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:5308:9
xFetch : access function
(arg1 : System.Address;
arg2 : unsigned;
arg3 : int) return System.Address; -- /usr/include/sqlite3.h:5309:11
xUnpin : access procedure
(arg1 : System.Address;
arg2 : System.Address;
arg3 : int); -- /usr/include/sqlite3.h:5310:10
xRekey : access procedure
(arg1 : System.Address;
arg2 : System.Address;
arg3 : unsigned;
arg4 : unsigned); -- /usr/include/sqlite3.h:5311:10
xTruncate : access procedure (arg1 : System.Address; arg2 : unsigned); -- /usr/include/sqlite3.h:5312:10
xDestroy : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:5313:10
end record;
pragma Convention (C, sqlite3_pcache_methods); -- /usr/include/sqlite3.h:5301:16
--** CAPI3REF: Online Backup Object
--** EXPERIMENTAL
--**
--** The sqlite3_backup object records state information about an ongoing
--** online backup operation. ^The sqlite3_backup object is created by
--** a call to [sqlite3_backup_init()] and is destroyed by a call to
--** [sqlite3_backup_finish()].
--**
--** See Also: [Using the SQLite Online Backup API]
--
-- skipped empty struct sqlite3_backup
--** CAPI3REF: Online Backup API.
--** EXPERIMENTAL
--**
--** The backup API copies the content of one database into another.
--** It is useful either for creating backups of databases or
--** for copying in-memory databases to or from persistent files.
--**
--** See Also: [Using the SQLite Online Backup API]
--**
--** ^Exclusive access is required to the destination database for the
--** duration of the operation. ^However the source database is only
--** read-locked while it is actually being read; it is not locked
--** continuously for the entire backup operation. ^Thus, the backup may be
--** performed on a live source database without preventing other users from
--** reading or writing to the source database while the backup is underway.
--**
--** ^(To perform a backup operation:
--** <ol>
--** <li><b>sqlite3_backup_init()</b> is called once to initialize the
--** backup,
--** <li><b>sqlite3_backup_step()</b> is called one or more times to transfer
--** the data between the two databases, and finally
--** <li><b>sqlite3_backup_finish()</b> is called to release all resources
--** associated with the backup operation.
--** </ol>)^
--** There should be exactly one call to sqlite3_backup_finish() for each
--** successful call to sqlite3_backup_init().
--**
--** <b>sqlite3_backup_init()</b>
--**
--** ^The D and N arguments to sqlite3_backup_init(D,N,S,M) are the
--** [database connection] associated with the destination database
--** and the database name, respectively.
--** ^The database name is "main" for the main database, "temp" for the
--** temporary database, or the name specified after the AS keyword in
--** an [ATTACH] statement for an attached database.
--** ^The S and M arguments passed to
--** sqlite3_backup_init(D,N,S,M) identify the [database connection]
--** and database name of the source database, respectively.
--** ^The source and destination [database connections] (parameters S and D)
--** must be different or else sqlite3_backup_init(D,N,S,M) will file with
--** an error.
--**
--** ^If an error occurs within sqlite3_backup_init(D,N,S,M), then NULL is
--** returned and an error code and error message are store3d in the
--** destination [database connection] D.
--** ^The error code and message for the failed call to sqlite3_backup_init()
--** can be retrieved using the [sqlite3_errcode()], [sqlite3_errmsg()], and/or
--** [sqlite3_errmsg16()] functions.
--** ^A successful call to sqlite3_backup_init() returns a pointer to an
--** [sqlite3_backup] object.
--** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and
--** sqlite3_backup_finish() functions to perform the specified backup
--** operation.
--**
--** <b>sqlite3_backup_step()</b>
--**
--** ^Function sqlite3_backup_step(B,N) will copy up to N pages between
--** the source and destination databases specified by [sqlite3_backup] object B.
--** ^If N is negative, all remaining source pages are copied.
--** ^If sqlite3_backup_step(B,N) successfully copies N pages and there
--** are still more pages to be copied, then the function resturns [SQLITE_OK].
--** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages
--** from source to destination, then it returns [SQLITE_DONE].
--** ^If an error occurs while running sqlite3_backup_step(B,N),
--** then an [error code] is returned. ^As well as [SQLITE_OK] and
--** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
--** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
--** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX] extended error code.
--**
--** ^The sqlite3_backup_step() might return [SQLITE_READONLY] if the destination
--** database was opened read-only or if
--** the destination is an in-memory database with a different page size
--** from the source database.
--**
--** ^If sqlite3_backup_step() cannot obtain a required file-system lock, then
--** the [sqlite3_busy_handler | busy-handler function]
--** is invoked (if one is specified). ^If the
--** busy-handler returns non-zero before the lock is available, then
--** [SQLITE_BUSY] is returned to the caller. ^In this case the call to
--** sqlite3_backup_step() can be retried later. ^If the source
--** [database connection]
--** is being used to write to the source database when sqlite3_backup_step()
--** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
--** case the call to sqlite3_backup_step() can be retried later on. ^(If
--** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX], [SQLITE_NOMEM], or
--** [SQLITE_READONLY] is returned, then
--** there is no point in retrying the call to sqlite3_backup_step(). These
--** errors are considered fatal.)^ The application must accept
--** that the backup operation has failed and pass the backup operation handle
--** to the sqlite3_backup_finish() to release associated resources.
--**
--** ^The first call to sqlite3_backup_step() obtains an exclusive lock
--** on the destination file. ^The exclusive lock is not released until either
--** sqlite3_backup_finish() is called or the backup operation is complete
--** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to
--** sqlite3_backup_step() obtains a [shared lock] on the source database that
--** lasts for the duration of the sqlite3_backup_step() call.
--** ^Because the source database is not locked between calls to
--** sqlite3_backup_step(), the source database may be modified mid-way
--** through the backup process. ^If the source database is modified by an
--** external process or via a database connection other than the one being
--** used by the backup operation, then the backup will be automatically
--** restarted by the next call to sqlite3_backup_step(). ^If the source
--** database is modified by the using the same database connection as is used
--** by the backup operation, then the backup database is automatically
--** updated at the same time.
--**
--** <b>sqlite3_backup_finish()</b>
--**
--** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the
--** application wishes to abandon the backup operation, the application
--** should destroy the [sqlite3_backup] by passing it to sqlite3_backup_finish().
--** ^The sqlite3_backup_finish() interfaces releases all
--** resources associated with the [sqlite3_backup] object.
--** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any
--** active write-transaction on the destination database is rolled back.
--** The [sqlite3_backup] object is invalid
--** and may not be used following a call to sqlite3_backup_finish().
--**
--** ^The value returned by sqlite3_backup_finish is [SQLITE_OK] if no
--** sqlite3_backup_step() errors occurred, regardless or whether or not
--** sqlite3_backup_step() completed.
--** ^If an out-of-memory condition or IO error occurred during any prior
--** sqlite3_backup_step() call on the same [sqlite3_backup] object, then
--** sqlite3_backup_finish() returns the corresponding [error code].
--**
--** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
--** is not a permanent error and does not affect the return value of
--** sqlite3_backup_finish().
--**
--** <b>sqlite3_backup_remaining(), sqlite3_backup_pagecount()</b>
--**
--** ^Each call to sqlite3_backup_step() sets two values inside
--** the [sqlite3_backup] object: the number of pages still to be backed
--** up and the total number of pages in the source databae file.
--** The sqlite3_backup_remaining() and sqlite3_backup_pagecount() interfaces
--** retrieve these two values, respectively.
--**
--** ^The values returned by these functions are only updated by
--** sqlite3_backup_step(). ^If the source database is modified during a backup
--** operation, then the values are not updated to account for any extra
--** pages that need to be updated or the size of the source database file
--** changing.
--**
--** <b>Concurrent Usage of Database Handles</b>
--**
--** ^The source [database connection] may be used by the application for other
--** purposes while a backup operation is underway or being initialized.
--** ^If SQLite is compiled and configured to support threadsafe database
--** connections, then the source database connection may be used concurrently
--** from within other threads.
--**
--** However, the application must guarantee that the destination
--** [database connection] is not passed to any other API (by any thread) after
--** sqlite3_backup_init() is called and before the corresponding call to
--** sqlite3_backup_finish(). SQLite does not currently check to see
--** if the application incorrectly accesses the destination [database connection]
--** and so no error code is reported, but the operations may malfunction
--** nevertheless. Use of the destination database connection while a
--** backup is in progress might also also cause a mutex deadlock.
--**
--** If running in [shared cache mode], the application must
--** guarantee that the shared cache used by the destination database
--** is not accessed while the backup is running. In practice this means
--** that the application must guarantee that the disk file being
--** backed up to is not accessed by any connection within the process,
--** not just the specific connection that was passed to sqlite3_backup_init().
--**
--** The [sqlite3_backup] object itself is partially threadsafe. Multiple
--** threads may safely make multiple concurrent calls to sqlite3_backup_step().
--** However, the sqlite3_backup_remaining() and sqlite3_backup_pagecount()
--** APIs are not strictly speaking threadsafe. If they are invoked at the
--** same time as another thread is invoking sqlite3_backup_step() it is
--** possible that they return invalid values.
--
function sqlite3_backup_init
(arg1 : System.Address;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : System.Address;
arg4 : Interfaces.C.Strings.chars_ptr) return System.Address; -- /usr/include/sqlite3.h:5506:28
pragma Import (C, sqlite3_backup_init, "sqlite3_backup_init");
-- Destination database handle
-- Destination database name
-- Source database handle
-- Source database name
function sqlite3_backup_step (arg1 : System.Address; arg2 : int) return int; -- /usr/include/sqlite3.h:5512:16
pragma Import (C, sqlite3_backup_step, "sqlite3_backup_step");
function sqlite3_backup_finish (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:5513:16
pragma Import (C, sqlite3_backup_finish, "sqlite3_backup_finish");
function sqlite3_backup_remaining (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:5514:16
pragma Import (C, sqlite3_backup_remaining, "sqlite3_backup_remaining");
function sqlite3_backup_pagecount (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:5515:16
pragma Import (C, sqlite3_backup_pagecount, "sqlite3_backup_pagecount");
--** CAPI3REF: Unlock Notification
--** EXPERIMENTAL
--**
--** ^When running in shared-cache mode, a database operation may fail with
--** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
--** individual tables within the shared-cache cannot be obtained. See
--** [SQLite Shared-Cache Mode] for a description of shared-cache locking.
--** ^This API may be used to register a callback that SQLite will invoke
--** when the connection currently holding the required lock relinquishes it.
--** ^This API is only available if the library was compiled with the
--** [SQLITE_ENABLE_UNLOCK_NOTIFY] C-preprocessor symbol defined.
--**
--** See Also: [Using the SQLite Unlock Notification Feature].
--**
--** ^Shared-cache locks are released when a database connection concludes
--** its current transaction, either by committing it or rolling it back.
--**
--** ^When a connection (known as the blocked connection) fails to obtain a
--** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
--** identity of the database connection (the blocking connection) that
--** has locked the required resource is stored internally. ^After an
--** application receives an SQLITE_LOCKED error, it may call the
--** sqlite3_unlock_notify() method with the blocked connection handle as
--** the first argument to register for a callback that will be invoked
--** when the blocking connections current transaction is concluded. ^The
--** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
--** call that concludes the blocking connections transaction.
--**
--** ^(If sqlite3_unlock_notify() is called in a multi-threaded application,
--** there is a chance that the blocking connection will have already
--** concluded its transaction by the time sqlite3_unlock_notify() is invoked.
--** If this happens, then the specified callback is invoked immediately,
--** from within the call to sqlite3_unlock_notify().)^
--**
--** ^If the blocked connection is attempting to obtain a write-lock on a
--** shared-cache table, and more than one other connection currently holds
--** a read-lock on the same table, then SQLite arbitrarily selects one of
--** the other connections to use as the blocking connection.
--**
--** ^(There may be at most one unlock-notify callback registered by a
--** blocked connection. If sqlite3_unlock_notify() is called when the
--** blocked connection already has a registered unlock-notify callback,
--** then the new callback replaces the old.)^ ^If sqlite3_unlock_notify() is
--** called with a NULL pointer as its second argument, then any existing
--** unlock-notify callback is cancelled. ^The blocked connections
--** unlock-notify callback may also be canceled by closing the blocked
--** connection using [sqlite3_close()].
--**
--** The unlock-notify callback is not reentrant. If an application invokes
--** any sqlite3_xxx API functions from within an unlock-notify callback, a
--** crash or deadlock may be the result.
--**
--** ^Unless deadlock is detected (see below), sqlite3_unlock_notify() always
--** returns SQLITE_OK.
--**
--** <b>Callback Invocation Details</b>
--**
--** When an unlock-notify callback is registered, the application provides a
--** single void* pointer that is passed to the callback when it is invoked.
--** However, the signature of the callback function allows SQLite to pass
--** it an array of void* context pointers. The first argument passed to
--** an unlock-notify callback is a pointer to an array of void* pointers,
--** and the second is the number of entries in the array.
--**
--** When a blocking connections transaction is concluded, there may be
--** more than one blocked connection that has registered for an unlock-notify
--** callback. ^If two or more such blocked connections have specified the
--** same callback function, then instead of invoking the callback function
--** multiple times, it is invoked once with the set of void* context pointers
--** specified by the blocked connections bundled together into an array.
--** This gives the application an opportunity to prioritize any actions
--** related to the set of unblocked database connections.
--**
--** <b>Deadlock Detection</b>
--**
--** Assuming that after registering for an unlock-notify callback a
--** database waits for the callback to be issued before taking any further
--** action (a reasonable assumption), then using this API may cause the
--** application to deadlock. For example, if connection X is waiting for
--** connection Y's transaction to be concluded, and similarly connection
--** Y is waiting on connection X's transaction, then neither connection
--** will proceed and the system may remain deadlocked indefinitely.
--**
--** To avoid this scenario, the sqlite3_unlock_notify() performs deadlock
--** detection. ^If a given call to sqlite3_unlock_notify() would put the
--** system in a deadlocked state, then SQLITE_LOCKED is returned and no
--** unlock-notify callback is registered. The system is said to be in
--** a deadlocked state if connection A has registered for an unlock-notify
--** callback on the conclusion of connection B's transaction, and connection
--** B has itself registered for an unlock-notify callback when connection
--** A's transaction is concluded. ^Indirect deadlock is also detected, so
--** the system is also considered to be deadlocked if connection B has
--** registered for an unlock-notify callback on the conclusion of connection
--** C's transaction, where connection C is waiting on connection A. ^Any
--** number of levels of indirection are allowed.
--**
--** <b>The "DROP TABLE" Exception</b>
--**
--** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost
--** always appropriate to call sqlite3_unlock_notify(). There is however,
--** one exception. When executing a "DROP TABLE" or "DROP INDEX" statement,
--** SQLite checks if there are any currently executing SELECT statements
--** that belong to the same connection. If there are, SQLITE_LOCKED is
--** returned. In this case there is no "blocking connection", so invoking
--** sqlite3_unlock_notify() results in the unlock-notify callback being
--** invoked immediately. If the application then re-attempts the "DROP TABLE"
--** or "DROP INDEX" query, an infinite loop might be the result.
--**
--** One way around this problem is to check the extended error code returned
--** by an sqlite3_step() call. ^(If there is a blocking connection, then the
--** extended error code is set to SQLITE_LOCKED_SHAREDCACHE. Otherwise, in
--** the special "DROP TABLE/INDEX" case, the extended error code is just
--** SQLITE_LOCKED.)^
--
function sqlite3_unlock_notify
(arg1 : System.Address;
arg2 : access procedure (arg1 : System.Address; arg2 : int);
arg3 : System.Address) return int; -- /usr/include/sqlite3.h:5632:16
pragma Import (C, sqlite3_unlock_notify, "sqlite3_unlock_notify");
-- Waiting connection
-- Callback function to invoke
-- Argument to pass to xNotify
--** CAPI3REF: String Comparison
--** EXPERIMENTAL
--**
--** ^The [sqlite3_strnicmp()] API allows applications and extensions to
--** compare the contents of two buffers containing UTF-8 strings in a
--** case-indendent fashion, using the same definition of case independence
--** that SQLite uses internally when comparing identifiers.
--
function sqlite3_strnicmp
(arg1 : Interfaces.C.Strings.chars_ptr;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : int) return int; -- /usr/include/sqlite3.h:5648:16
pragma Import (C, sqlite3_strnicmp, "sqlite3_strnicmp");
--** Undo the hack that converts floating point types to integer for
--** builds on processors without floating point support.
--
-- End of the 'extern "C"' block
end Sqlite3_H;
| 51.873223 | 171 | 0.696571 |
cbbff477fc23caf1cbc7ccac909f67352b2a7b37 | 3,685 | ads | Ada | 3-mid/impact/source/3d/collision/dispatch/impact-d3-collision-algorithm-activating-box_box.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 3-mid/impact/source/3d/collision/dispatch/impact-d3-collision-algorithm-activating-box_box.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 3-mid/impact/source/3d/collision/dispatch/impact-d3-collision-algorithm-activating-box_box.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | with impact.d3.collision.Algorithm.activating,
impact.d3.Dispatcher,
impact.d3.collision.manifold_Result,
impact.d3.collision.create_Func;
with impact.d3.Manifold;
with impact.d3.collision.Algorithm;
with impact.d3.Object;
package impact.d3.collision.Algorithm.activating.box_box
--
-- impact.d3.collision.Algorithm.activating.sphere_sphere provides box-box collision detection.
--
is
type Item is new impact.d3.collision.Algorithm.activating.item with private;
type View is access all Item'Class;
--- Forge
--
package Forge
is
function to_box_box_Algorithm (mf : access impact.d3.Manifold.Item;
ci : in AlgorithmConstructionInfo;
col0, col1 : access impact.d3.Object.item'Class) return Item;
function to_box_box_Algorithm (ci : in AlgorithmConstructionInfo) return Item;
end Forge;
overriding procedure destruct (Self : in out Item);
--- Attributes
--
overriding
procedure processCollision (Self : in out Item; col0, col1 : access impact.d3.Object.item'Class;
dispatchInfo : in impact.d3.Dispatcher.DispatcherInfo;
resultOut : out impact.d3.collision.manifold_Result.item);
overriding function calculateTimeOfImpact (Self : in Item; body0, body1 : access impact.d3.Object.item'Class;
dispatchInfo : in impact.d3.Dispatcher.DispatcherInfo;
resultOut : access impact.d3.collision.manifold_Result.item) return math.Real;
overriding
procedure getAllContactManifolds (Self : in out Item; manifoldArray : out impact.d3.collision.Algorithm.btManifoldArray);
--- Create Functions
--
type CreateFunc is new create_Func.item with null record;
overriding
function CreateCollisionAlgorithm (Self : in CreateFunc; info : in AlgorithmConstructionInfo;
body0, body1 : access impact.d3.Object.item'Class) return impact.d3.Dispatcher.Algorithm_view;
private
type Item is new impact.d3.collision.Algorithm.activating.item with
record
m_ownManifold : Boolean;
m_manifoldPtr : access impact.d3.Manifold.item;
end record;
end impact.d3.collision.Algorithm.activating.box_box;
-- class impact.d3.collision.Algorithm.activating.box_box : public impact.d3.collision.Algorithm.activating
-- {
-- public:
--
-- virtual void getAllContactManifolds(btManifoldArray& manifoldArray)
-- {
-- if (m_manifoldPtr && m_ownManifold)
-- {
-- manifoldArray.push_back(m_manifoldPtr);
-- }
-- }
--
--
-- struct CreateFunc :public impact.d3.collision.AlgorithmCreateFunc
-- {
-- virtual impact.d3.collision.Algorithm* CreateCollisionAlgorithm(impact.d3.collision.AlgorithmConstructionInfo& ci, impact.d3.Object* body0,impact.d3.Object* body1)
-- {
-- int bbsize = sizeof(impact.d3.collision.Algorithm.activating.box_box);
-- void* ptr = ci.m_dispatcher1->allocateCollisionAlgorithm(bbsize);
-- return new(ptr) impact.d3.collision.Algorithm.activating.box_box(0,ci,body0,body1);
-- }
-- };
--
-- };
| 31.228814 | 190 | 0.593216 |
1009f80b6a8ea3f0146e64a4fe7a40b232bcf26d | 5,070 | ads | Ada | src/arch/socs/stm32f439/Ada/soc-exti.ads | wookey-project/ewok-legacy | c973752dac3a0ebe3f7cfca062f50744578f051b | [
"Apache-2.0"
] | null | null | null | src/arch/socs/stm32f439/Ada/soc-exti.ads | wookey-project/ewok-legacy | c973752dac3a0ebe3f7cfca062f50744578f051b | [
"Apache-2.0"
] | null | null | null | src/arch/socs/stm32f439/Ada/soc-exti.ads | wookey-project/ewok-legacy | c973752dac3a0ebe3f7cfca062f50744578f051b | [
"Apache-2.0"
] | null | null | null | --
-- Copyright 2018 The wookey project team <[email protected]>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- 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 system;
package soc.exti
with spark_mode => on
is
subtype t_exti_line_index is natural range 0 .. 22;
type t_exti_trigger is
(EXTI_TRIGGER_NONE,
EXTI_TRIGGER_RISE,
EXTI_TRIGGER_FALL,
EXTI_TRIGGER_BOTH);
-- Initialize EXTI by enabling SYSCFG.APB2 clock
procedure init;
procedure deinit;
function is_line_pending
(line : t_exti_line_index)
return boolean;
procedure clear_pending
(line : in t_exti_line_index);
procedure enable
(line : in t_exti_line_index);
procedure disable
(line : in t_exti_line_index);
function is_enabled
(line : in t_exti_line_index)
return boolean;
type t_mask is (MASKED, NOT_MASKED) with size => 1;
for t_mask use (MASKED => 0, NOT_MASKED => 1);
type t_masks is array (t_exti_line_index) of t_mask
with volatile_components, pack, size => 23;
----------------------------------------
-- Interrupt mask register (EXTI_IMR) --
----------------------------------------
type t_EXTI_IMR is record
line : t_masks;
end record
with volatile_full_access, size => 32;
for t_EXTI_IMR use record
line at 0 range 0 .. 22;
end record;
------------------------------------
-- Event mask register (EXTI_EMR) --
------------------------------------
type t_EXTI_EMR is record
line : t_masks;
end record
with volatile_full_access, size => 32;
for t_EXTI_EMR use record
line at 0 range 0 .. 22;
end record;
---------------------------------------------------
-- Rising trigger selection register (EXTI_RTSR) --
---------------------------------------------------
type t_trigger is (TRIGGER_DISABLED, TRIGGER_ENABLED) with size => 1;
for t_trigger use (TRIGGER_DISABLED => 0, TRIGGER_ENABLED => 1);
type t_triggers is array (t_exti_line_index) of t_trigger
with pack, size => 23;
type t_EXTI_RTSR is record
line : t_triggers;
end record
with volatile_full_access, size => 32;
for t_EXTI_RTSR use record
line at 0 range 0 .. 22;
end record;
----------------------------------------------------
-- Falling trigger selection register (EXTI_FTSR) --
----------------------------------------------------
type t_EXTI_FTSR is record
line : t_triggers;
end record
with volatile_full_access, size => 32;
for t_EXTI_FTSR use record
line at 0 range 0 .. 22;
end record;
----------------------------------------------------
-- Software interrupt event register (EXTI_SWIER) --
----------------------------------------------------
type t_exti_lines is array (t_exti_line_index) of bit
with pack, size => 23;
type t_EXTI_SWIER is record
line : t_exti_lines;
end record
with volatile_full_access, size => 32;
for t_EXTI_SWIER use record
line at 0 range 0 .. 22;
end record;
--------------------------------
-- Pending register (EXTI_PR) --
--------------------------------
type t_request is (NO_REQUEST, PENDING_REQUEST) with size => 1;
for t_request use (NO_REQUEST => 0, PENDING_REQUEST => 1);
-- Set the bit to '1' to clear it!
CLEAR_REQUEST : constant t_request := PENDING_REQUEST;
type t_requests is array (t_exti_line_index) of t_request
with pack, size => 23;
type t_EXTI_PR is record
line : t_requests;
end record
with volatile_full_access, size => 32;
for t_EXTI_PR use record
line at 0 range 0 .. 22;
end record;
---------------------
-- EXTI peripheral --
---------------------
type t_EXTI_periph is record
IMR : t_EXTI_IMR;
EMR : t_EXTI_EMR;
RTSR : t_EXTI_RTSR;
FTSR : t_EXTI_FTSR;
SWIER : t_EXTI_SWIER;
PR : t_EXTI_PR;
end record
with volatile;
for t_EXTI_periph use record
IMR at 16#00# range 0 .. 31;
EMR at 16#04# range 0 .. 31;
RTSR at 16#08# range 0 .. 31;
FTSR at 16#0C# range 0 .. 31;
SWIER at 16#10# range 0 .. 31;
PR at 16#14# range 0 .. 31;
end record;
EXTI : t_EXTI_periph
with
import,
volatile,
address => system'to_address (16#4001_3C00#); -- 0x40013C00
end soc.exti;
| 26.134021 | 79 | 0.570611 |
c5cf10545732928ee21bbeedd665634809aec033 | 1,903 | ads | Ada | wayland_client_ada/src/wayland-posix.ads | onox/wayland-ada | 9317b87482af03a650e02543a3cb46f20bb747d0 | [
"Apache-2.0"
] | 5 | 2021-01-11T01:32:16.000Z | 2022-02-03T00:08:11.000Z | wayland_client_ada/src/wayland-posix.ads | onox/wayland-ada | 9317b87482af03a650e02543a3cb46f20bb747d0 | [
"Apache-2.0"
] | 11 | 2021-01-11T20:12:20.000Z | 2022-02-04T09:47:13.000Z | wayland_client_ada/src/wayland-posix.ads | onox/wayland-ada | 9317b87482af03a650e02543a3cb46f20bb747d0 | [
"Apache-2.0"
] | null | null | null | -- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2018 - 2019 Joakim Strandberg <[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 package Wayland.Posix is
pragma Preelaborate;
type Event_Bits is record
Input : Boolean := False;
Priority : Boolean := False;
Output : Boolean := False;
Unused : Unused_Type;
end record;
type Requested_Event is record
FD : File_Descriptor;
Events : Event_Bits;
end record;
type Returned_Event (Is_Success : Boolean := False) is record
FD : File_Descriptor;
case Is_Success is
when True => Events : Event_Bits;
when False => null;
end case;
end record;
type Requested_Event_Array is array (Positive range <>) of Requested_Event;
type Returned_Event_Array is array (Positive range <>) of Returned_Event;
function Poll
(Events : Requested_Event_Array;
Timeout : Duration) return Returned_Event_Array;
-- Wait for data to become readable or writable on the file descriptor
function Error_Number return Integer;
private
for Event_Bits use record
Input at 0 range 0 .. 0;
Priority at 0 range 1 .. 1;
Output at 0 range 2 .. 2;
Unused at 0 range 3 .. 15;
end record;
for Event_Bits'Size use Interfaces.C.short'Size;
end Wayland.Posix;
| 30.693548 | 78 | 0.681555 |
d0c595550c46967a6f83986e73da527b48f9209d | 31,058 | ads | Ada | tier-1/fann/source/thin/fann_c-binding.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | 2 | 2015-11-12T11:16:20.000Z | 2021-08-24T22:32:04.000Z | tier-1/fann/source/thin/fann_c-binding.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | 1 | 2018-06-05T05:19:35.000Z | 2021-11-20T01:13:23.000Z | tier-1/fann/source/thin/fann_c-binding.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | null | null | null | -- This file is generated by SWIG. Please do *not* modify by hand.
--
with fann_c.Pointers;
with fann_c.fann;
with fann_c.fann_callback_type;
with fann_c.fann_connection;
with fann_c.fann_error;
with fann_c.fann_train_data;
with fann_c.user_function;
with interfaces.c;
with interfaces.c.strings;
with swig;
with swig.pointers;
with interfaces.C;
package fann_c.Binding is
procedure fann_set_error_log (errdat : in fann_c.fann_error.Pointer;
log_file : in fann_c.Pointers.FILE_Pointer);
function fann_get_errno (errdat : in fann_c.fann_error.Pointer) return fann_c.fann_errno_enum;
procedure fann_reset_errno (errdat : in fann_c.fann_error.Pointer);
procedure fann_reset_errstr (errdat : in fann_c.fann_error.Pointer);
function fann_get_errstr (errdat : in fann_c.fann_error.Pointer) return interfaces.c.strings.chars_ptr;
procedure fann_print_error (errdat : in fann_c.fann_error.Pointer);
function create_train_from_callback (num_data : in interfaces.c.unsigned;
num_input : in interfaces.c.unsigned;
num_output : in interfaces.c.unsigned;
the_user_function : in fann_c.user_function.Item) return fann_c.fann_train_data.Pointer;
procedure fann_train (ann : in fann_c.fann.Pointer;
input : in fann_c.Pointers.fann_type_Pointer;
desired_output : in fann_c.Pointers.fann_type_Pointer);
function fann_test (ann : in fann_c.fann.Pointer;
input : in fann_c.Pointers.fann_type_Pointer;
desired_output : in fann_c.Pointers.fann_type_Pointer) return fann_c.Pointers.fann_type_Pointer;
function fann_get_MSE (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
function fann_get_bit_fail (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
procedure fann_reset_MSE (ann : in fann_c.fann.Pointer);
procedure fann_train_on_data (ann : in fann_c.fann.Pointer;
data : in fann_c.fann_train_data.Pointer;
max_epochs : in interfaces.c.unsigned;
epochs_between_reports : in interfaces.c.unsigned;
desired_error : in interfaces.c.c_float);
procedure fann_train_on_file (ann : in fann_c.fann.Pointer;
filename : in interfaces.c.strings.chars_ptr;
max_epochs : in interfaces.c.unsigned;
epochs_between_reports : in interfaces.c.unsigned;
desired_error : in interfaces.c.c_float);
function fann_train_epoch (ann : in fann_c.fann.Pointer;
data : in fann_c.fann_train_data.Pointer) return interfaces.c.c_float;
function fann_test_data (ann : in fann_c.fann.Pointer;
data : in fann_c.fann_train_data.Pointer) return interfaces.c.c_float;
function fann_read_train_from_file (filename : in interfaces.c.strings.chars_ptr) return fann_c.fann_train_data.Pointer;
function fann_create_train (num_data : in interfaces.c.unsigned;
num_input : in interfaces.c.unsigned;
num_output : in interfaces.c.unsigned) return fann_c.fann_train_data.Pointer;
procedure fann_destroy_train (train_data : in fann_c.fann_train_data.Pointer);
procedure fann_shuffle_train_data (train_data : in fann_c.fann_train_data.Pointer);
procedure fann_scale_train (ann : in fann_c.fann.Pointer;
data : in fann_c.fann_train_data.Pointer);
procedure fann_descale_train (ann : in fann_c.fann.Pointer;
data : in fann_c.fann_train_data.Pointer);
function fann_set_input_scaling_params (ann : in fann_c.fann.Pointer;
data : in fann_c.fann_train_data.Pointer;
new_input_min : in interfaces.c.c_float;
new_input_max : in interfaces.c.c_float) return interfaces.c.int;
function fann_set_output_scaling_params (ann : in fann_c.fann.Pointer;
data : in fann_c.fann_train_data.Pointer;
new_output_min : in interfaces.c.c_float;
new_output_max : in interfaces.c.c_float) return interfaces.c.int;
function fann_set_scaling_params (ann : in fann_c.fann.Pointer;
data : in fann_c.fann_train_data.Pointer;
new_input_min : in interfaces.c.c_float;
new_input_max : in interfaces.c.c_float;
new_output_min : in interfaces.c.c_float;
new_output_max : in interfaces.c.c_float) return interfaces.c.int;
function fann_clear_scaling_params (ann : in fann_c.fann.Pointer) return interfaces.c.int;
procedure fann_scale_input (ann : in fann_c.fann.Pointer;
input_vector : in fann_c.Pointers.fann_type_Pointer);
procedure fann_scale_output (ann : in fann_c.fann.Pointer;
output_vector : in fann_c.Pointers.fann_type_Pointer);
procedure fann_descale_input (ann : in fann_c.fann.Pointer;
input_vector : in fann_c.Pointers.fann_type_Pointer);
procedure fann_descale_output (ann : in fann_c.fann.Pointer;
output_vector : in fann_c.Pointers.fann_type_Pointer);
procedure fann_scale_input_train_data (train_data : in fann_c.fann_train_data.Pointer;
new_min : in fann_c.fann_type;
new_max : in fann_c.fann_type);
procedure fann_scale_output_train_data (train_data : in fann_c.fann_train_data.Pointer;
new_min : in fann_c.fann_type;
new_max : in fann_c.fann_type);
procedure fann_scale_train_data (train_data : in fann_c.fann_train_data.Pointer;
new_min : in fann_c.fann_type;
new_max : in fann_c.fann_type);
function fann_merge_train_data (data1 : in fann_c.fann_train_data.Pointer;
data2 : in fann_c.fann_train_data.Pointer) return fann_c.fann_train_data.Pointer;
function fann_duplicate_train_data (data : in fann_c.fann_train_data.Pointer) return fann_c.fann_train_data.Pointer;
function fann_subset_train_data (data : in fann_c.fann_train_data.Pointer;
pos : in interfaces.c.unsigned;
length : in interfaces.c.unsigned) return fann_c.fann_train_data.Pointer;
function fann_length_train_data (data : in fann_c.fann_train_data.Pointer) return interfaces.c.unsigned;
function fann_num_input_train_data (data : in fann_c.fann_train_data.Pointer) return interfaces.c.unsigned;
function fann_num_output_train_data (data : in fann_c.fann_train_data.Pointer) return interfaces.c.unsigned;
function fann_save_train (data : in fann_c.fann_train_data.Pointer;
filename : in interfaces.c.strings.chars_ptr) return interfaces.c.int;
function fann_save_train_to_fixed (data : in fann_c.fann_train_data.Pointer;
filename : in interfaces.c.strings.chars_ptr;
decimal_point : in interfaces.c.unsigned) return interfaces.c.int;
function fann_get_training_algorithm (ann : in fann_c.fann.Pointer) return fann_c.fann_train_enum;
procedure fann_set_training_algorithm (ann : in fann_c.fann.Pointer;
training_algorithm : in fann_c.fann_train_enum);
function fann_get_learning_rate (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_learning_rate (ann : in fann_c.fann.Pointer;
learning_rate : in interfaces.c.c_float);
function fann_get_learning_momentum (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_learning_momentum (ann : in fann_c.fann.Pointer;
learning_momentum : in interfaces.c.c_float);
function fann_get_activation_function (ann : in fann_c.fann.Pointer;
layer : in interfaces.c.int;
neuron : in interfaces.c.int) return fann_c.fann_activationfunc_enum;
procedure fann_set_activation_function (ann : in fann_c.fann.Pointer;
activation_function : in fann_c.fann_activationfunc_enum;
layer : in interfaces.c.int;
neuron : in interfaces.c.int);
procedure fann_set_activation_function_layer (ann : in fann_c.fann.Pointer;
activation_function : in fann_c.fann_activationfunc_enum;
layer : in interfaces.c.int);
procedure fann_set_activation_function_hidden (ann : in fann_c.fann.Pointer;
activation_function : in fann_c.fann_activationfunc_enum);
procedure fann_set_activation_function_output (ann : in fann_c.fann.Pointer;
activation_function : in fann_c.fann_activationfunc_enum);
function fann_get_activation_steepness (ann : in fann_c.fann.Pointer;
layer : in interfaces.c.int;
neuron : in interfaces.c.int) return fann_c.fann_type;
procedure fann_set_activation_steepness (ann : in fann_c.fann.Pointer;
steepness : in fann_c.fann_type;
layer : in interfaces.c.int;
neuron : in interfaces.c.int);
procedure fann_set_activation_steepness_layer (ann : in fann_c.fann.Pointer;
steepness : in fann_c.fann_type;
layer : in interfaces.c.int);
procedure fann_set_activation_steepness_hidden (ann : in fann_c.fann.Pointer;
steepness : in fann_c.fann_type);
procedure fann_set_activation_steepness_output (ann : in fann_c.fann.Pointer;
steepness : in fann_c.fann_type);
function fann_get_train_error_function (ann : in fann_c.fann.Pointer) return fann_c.fann_errorfunc_enum;
procedure fann_set_train_error_function (ann : in fann_c.fann.Pointer;
train_error_function : in fann_c.fann_errorfunc_enum);
function fann_get_train_stop_function (ann : in fann_c.fann.Pointer) return fann_c.fann_stopfunc_enum;
procedure fann_set_train_stop_function (ann : in fann_c.fann.Pointer;
train_stop_function : in fann_c.fann_stopfunc_enum);
function fann_get_bit_fail_limit (ann : in fann_c.fann.Pointer) return fann_c.fann_type;
procedure fann_set_bit_fail_limit (ann : in fann_c.fann.Pointer;
bit_fail_limit : in fann_c.fann_type);
procedure fann_set_callback (ann : in fann_c.fann.Pointer;
callback : in fann_c.fann_callback_type.Item);
function fann_get_quickprop_decay (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_quickprop_decay (ann : in fann_c.fann.Pointer;
quickprop_decay : in interfaces.c.c_float);
function fann_get_quickprop_mu (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_quickprop_mu (ann : in fann_c.fann.Pointer;
quickprop_mu : in interfaces.c.c_float);
function fann_get_rprop_increase_factor (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_rprop_increase_factor (ann : in fann_c.fann.Pointer;
rprop_increase_factor : in interfaces.c.c_float);
function fann_get_rprop_decrease_factor (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_rprop_decrease_factor (ann : in fann_c.fann.Pointer;
rprop_decrease_factor : in interfaces.c.c_float);
function fann_get_rprop_delta_min (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_rprop_delta_min (ann : in fann_c.fann.Pointer;
rprop_delta_min : in interfaces.c.c_float);
function fann_get_rprop_delta_max (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_rprop_delta_max (ann : in fann_c.fann.Pointer;
rprop_delta_max : in interfaces.c.c_float);
function fann_get_rprop_delta_zero (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_rprop_delta_zero (ann : in fann_c.fann.Pointer;
rprop_delta_max : in interfaces.c.c_float);
function fann_get_sarprop_weight_decay_shift (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_sarprop_weight_decay_shift (ann : in fann_c.fann.Pointer;
sarprop_weight_decay_shift : in interfaces.c.c_float);
function fann_get_sarprop_step_error_threshold_factor (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_sarprop_step_error_threshold_factor (ann : in fann_c.fann.Pointer;
sarprop_step_error_threshold_factor : in interfaces.c.c_float);
function fann_get_sarprop_step_error_shift (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_sarprop_step_error_shift (ann : in fann_c.fann.Pointer;
sarprop_step_error_shift : in interfaces.c.c_float);
function fann_get_sarprop_temperature (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_sarprop_temperature (ann : in fann_c.fann.Pointer;
sarprop_temperature : in interfaces.c.c_float);
procedure fann_cascadetrain_on_data (ann : in fann_c.fann.Pointer;
data : in fann_c.fann_train_data.Pointer;
max_neurons : in interfaces.c.unsigned;
neurons_between_reports : in interfaces.c.unsigned;
desired_error : in interfaces.c.c_float);
procedure fann_cascadetrain_on_file (ann : in fann_c.fann.Pointer;
filename : in interfaces.c.strings.chars_ptr;
max_neurons : in interfaces.c.unsigned;
neurons_between_reports : in interfaces.c.unsigned;
desired_error : in interfaces.c.c_float);
function fann_get_cascade_output_change_fraction (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_cascade_output_change_fraction (ann : in fann_c.fann.Pointer;
cascade_output_change_fraction : in interfaces.c.c_float);
function fann_get_cascade_output_stagnation_epochs (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
procedure fann_set_cascade_output_stagnation_epochs (ann : in fann_c.fann.Pointer;
cascade_output_stagnation_epochs : in interfaces.c.unsigned);
function fann_get_cascade_candidate_change_fraction (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
procedure fann_set_cascade_candidate_change_fraction (ann : in fann_c.fann.Pointer;
cascade_candidate_change_fraction : in interfaces.c.c_float);
function fann_get_cascade_candidate_stagnation_epochs (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
procedure fann_set_cascade_candidate_stagnation_epochs (ann : in fann_c.fann.Pointer;
cascade_candidate_stagnation_epochs : in interfaces.c.unsigned);
function fann_get_cascade_weight_multiplier (ann : in fann_c.fann.Pointer) return fann_c.fann_type;
procedure fann_set_cascade_weight_multiplier (ann : in fann_c.fann.Pointer;
cascade_weight_multiplier : in fann_c.fann_type);
function fann_get_cascade_candidate_limit (ann : in fann_c.fann.Pointer) return fann_c.fann_type;
procedure fann_set_cascade_candidate_limit (ann : in fann_c.fann.Pointer;
cascade_candidate_limit : in fann_c.fann_type);
function fann_get_cascade_max_out_epochs (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
procedure fann_set_cascade_max_out_epochs (ann : in fann_c.fann.Pointer;
cascade_max_out_epochs : in interfaces.c.unsigned);
function fann_get_cascade_min_out_epochs (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
procedure fann_set_cascade_min_out_epochs (ann : in fann_c.fann.Pointer;
cascade_min_out_epochs : in interfaces.c.unsigned);
function fann_get_cascade_max_cand_epochs (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
procedure fann_set_cascade_max_cand_epochs (ann : in fann_c.fann.Pointer;
cascade_max_cand_epochs : in interfaces.c.unsigned);
function fann_get_cascade_min_cand_epochs (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
procedure fann_set_cascade_min_cand_epochs (ann : in fann_c.fann.Pointer;
cascade_min_cand_epochs : in interfaces.c.unsigned);
function fann_get_cascade_num_candidates (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
function fann_get_cascade_activation_functions_count (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
function fann_get_cascade_activation_functions (ann : in fann_c.fann.Pointer) return fann_c.Pointers.fann_activationfunc_enum_Pointer;
procedure fann_set_cascade_activation_functions (ann : in fann_c.fann.Pointer;
cascade_activation_functions : in fann_c.Pointers.fann_activationfunc_enum_Pointer;
cascade_activation_functions_count : in interfaces.c.unsigned);
function fann_get_cascade_activation_steepnesses_count (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
function fann_get_cascade_activation_steepnesses (ann : in fann_c.fann.Pointer) return fann_c.Pointers.fann_type_Pointer;
procedure fann_set_cascade_activation_steepnesses (ann : in fann_c.fann.Pointer;
cascade_activation_steepnesses : in fann_c.Pointers.fann_type_Pointer;
cascade_activation_steepnesses_count : in interfaces.c.unsigned);
function fann_get_cascade_num_candidate_groups (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
procedure fann_set_cascade_num_candidate_groups (ann : in fann_c.fann.Pointer;
cascade_num_candidate_groups : in interfaces.c.unsigned);
function fann_create_from_file (configuration_file : in interfaces.c.strings.chars_ptr) return fann_c.fann.Pointer;
function fann_save (ann : in fann_c.fann.Pointer;
configuration_file : in interfaces.c.strings.chars_ptr) return interfaces.c.int;
function fann_save_to_fixed (ann : in fann_c.fann.Pointer;
configuration_file : in interfaces.c.strings.chars_ptr) return interfaces.c.int;
function fann_create_standard (num_layers : in interfaces.c.unsigned) return fann_c.fann.Pointer;
function fann_create_standard_array (num_layers : in interfaces.c.unsigned;
layers : in swig.pointers.unsigned_Pointer) return fann_c.fann.Pointer;
function fann_create_sparse (connection_rate : in interfaces.c.c_float;
num_layers : in interfaces.c.unsigned) return fann_c.fann.Pointer;
function fann_create_sparse_array (connection_rate : in interfaces.c.c_float;
num_layers : in interfaces.c.unsigned;
layers : in swig.pointers.unsigned_Pointer) return fann_c.fann.Pointer;
function fann_create_shortcut (num_layers : in interfaces.c.unsigned) return fann_c.fann.Pointer;
function fann_create_shortcut_array (num_layers : in interfaces.c.unsigned;
layers : in swig.pointers.unsigned_Pointer) return fann_c.fann.Pointer;
procedure fann_destroy (ann : in fann_c.fann.Pointer);
function fann_copy (ann : in fann_c.fann.Pointer) return fann_c.fann.Pointer;
function fann_run (ann : in fann_c.fann.Pointer;
input : in fann_c.Pointers.fann_type_Pointer) return fann_c.Pointers.fann_type_Pointer;
procedure fann_randomize_weights (ann : in fann_c.fann.Pointer;
min_weight : in fann_c.fann_type;
max_weight : in fann_c.fann_type);
procedure fann_init_weights (ann : in fann_c.fann.Pointer;
train_data : in fann_c.fann_train_data.Pointer);
procedure fann_print_connections (ann : in fann_c.fann.Pointer);
procedure fann_print_parameters (ann : in fann_c.fann.Pointer);
function fann_get_num_input (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
function fann_get_num_output (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
function fann_get_total_neurons (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
function fann_get_total_connections (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
function fann_get_network_type (ann : in fann_c.fann.Pointer) return fann_c.fann_nettype_enum;
function fann_get_connection_rate (ann : in fann_c.fann.Pointer) return interfaces.c.c_float;
function fann_get_num_layers (ann : in fann_c.fann.Pointer) return interfaces.c.unsigned;
procedure fann_get_layer_array (ann : in fann_c.fann.Pointer;
layers : in swig.pointers.unsigned_Pointer);
procedure fann_get_bias_array (ann : in fann_c.fann.Pointer;
bias : in swig.pointers.unsigned_Pointer);
procedure fann_get_connection_array (ann : in fann_c.fann.Pointer;
connections : in fann_c.fann_connection.Pointer);
procedure fann_set_weight_array (ann : in fann_c.fann.Pointer;
connections : in fann_c.fann_connection.Pointer;
num_connections : in interfaces.c.unsigned);
procedure fann_set_weight (ann : in fann_c.fann.Pointer;
from_neuron : in interfaces.c.unsigned;
to_neuron : in interfaces.c.unsigned;
weight : in fann_c.fann_type);
procedure fann_set_user_data (ann : in fann_c.fann.Pointer;
user_data : in swig.void_ptr);
function fann_get_user_data (ann : in fann_c.fann.Pointer) return swig.void_ptr;
private
pragma Import (C, fann_set_error_log, "fann_set_error_log");
pragma Import (C, fann_get_errno, "fann_get_errno");
pragma Import (C, fann_reset_errno, "fann_reset_errno");
pragma Import (C, fann_reset_errstr, "fann_reset_errstr");
pragma Import (C, fann_get_errstr, "fann_get_errstr");
pragma Import (C, fann_print_error, "fann_print_error");
pragma Import (C, create_train_from_callback, "create_train_from_callback");
pragma Import (C, fann_train, "fann_train");
pragma Import (C, fann_test, "fann_test");
pragma Import (C, fann_get_MSE, "fann_get_MSE");
pragma Import (C, fann_get_bit_fail, "fann_get_bit_fail");
pragma Import (C, fann_reset_MSE, "fann_reset_MSE");
pragma Import (C, fann_train_on_data, "fann_train_on_data");
pragma Import (C, fann_train_on_file, "fann_train_on_file");
pragma Import (C, fann_train_epoch, "fann_train_epoch");
pragma Import (C, fann_test_data, "fann_test_data");
pragma Import (C, fann_read_train_from_file, "fann_read_train_from_file");
pragma Import (C, fann_create_train, "fann_create_train");
pragma Import (C, fann_destroy_train, "fann_destroy_train");
pragma Import (C, fann_shuffle_train_data, "fann_shuffle_train_data");
pragma Import (C, fann_scale_train, "fann_scale_train");
pragma Import (C, fann_descale_train, "fann_descale_train");
pragma Import (C, fann_set_input_scaling_params, "fann_set_input_scaling_params");
pragma Import (C, fann_set_output_scaling_params, "fann_set_output_scaling_params");
pragma Import (C, fann_set_scaling_params, "fann_set_scaling_params");
pragma Import (C, fann_clear_scaling_params, "fann_clear_scaling_params");
pragma Import (C, fann_scale_input, "fann_scale_input");
pragma Import (C, fann_scale_output, "fann_scale_output");
pragma Import (C, fann_descale_input, "fann_descale_input");
pragma Import (C, fann_descale_output, "fann_descale_output");
pragma Import (C, fann_scale_input_train_data, "fann_scale_input_train_data");
pragma Import (C, fann_scale_output_train_data, "fann_scale_output_train_data");
pragma Import (C, fann_scale_train_data, "fann_scale_train_data");
pragma Import (C, fann_merge_train_data, "fann_merge_train_data");
pragma Import (C, fann_duplicate_train_data, "fann_duplicate_train_data");
pragma Import (C, fann_subset_train_data, "fann_subset_train_data");
pragma Import (C, fann_length_train_data, "fann_length_train_data");
pragma Import (C, fann_num_input_train_data, "fann_num_input_train_data");
pragma Import (C, fann_num_output_train_data, "fann_num_output_train_data");
pragma Import (C, fann_save_train, "fann_save_train");
pragma Import (C, fann_save_train_to_fixed, "fann_save_train_to_fixed");
pragma Import (C, fann_get_training_algorithm, "fann_get_training_algorithm");
pragma Import (C, fann_set_training_algorithm, "fann_set_training_algorithm");
pragma Import (C, fann_get_learning_rate, "fann_get_learning_rate");
pragma Import (C, fann_set_learning_rate, "fann_set_learning_rate");
pragma Import (C, fann_get_learning_momentum, "fann_get_learning_momentum");
pragma Import (C, fann_set_learning_momentum, "fann_set_learning_momentum");
pragma Import (C, fann_get_activation_function, "fann_get_activation_function");
pragma Import (C, fann_set_activation_function, "fann_set_activation_function");
pragma Import (C, fann_set_activation_function_layer, "fann_set_activation_function_layer");
pragma Import (C, fann_set_activation_function_hidden, "fann_set_activation_function_hidden");
pragma Import (C, fann_set_activation_function_output, "fann_set_activation_function_output");
pragma Import (C, fann_get_activation_steepness, "fann_get_activation_steepness");
pragma Import (C, fann_set_activation_steepness, "fann_set_activation_steepness");
pragma Import (C, fann_set_activation_steepness_layer, "fann_set_activation_steepness_layer");
pragma Import (C, fann_set_activation_steepness_hidden, "fann_set_activation_steepness_hidden");
pragma Import (C, fann_set_activation_steepness_output, "fann_set_activation_steepness_output");
pragma Import (C, fann_get_train_error_function, "fann_get_train_error_function");
pragma Import (C, fann_set_train_error_function, "fann_set_train_error_function");
pragma Import (C, fann_get_train_stop_function, "fann_get_train_stop_function");
pragma Import (C, fann_set_train_stop_function, "fann_set_train_stop_function");
pragma Import (C, fann_get_bit_fail_limit, "fann_get_bit_fail_limit");
pragma Import (C, fann_set_bit_fail_limit, "fann_set_bit_fail_limit");
pragma Import (C, fann_set_callback, "fann_set_callback");
pragma Import (C, fann_get_quickprop_decay, "fann_get_quickprop_decay");
pragma Import (C, fann_set_quickprop_decay, "fann_set_quickprop_decay");
pragma Import (C, fann_get_quickprop_mu, "fann_get_quickprop_mu");
pragma Import (C, fann_set_quickprop_mu, "fann_set_quickprop_mu");
pragma Import (C, fann_get_rprop_increase_factor, "fann_get_rprop_increase_factor");
pragma Import (C, fann_set_rprop_increase_factor, "fann_set_rprop_increase_factor");
pragma Import (C, fann_get_rprop_decrease_factor, "fann_get_rprop_decrease_factor");
pragma Import (C, fann_set_rprop_decrease_factor, "fann_set_rprop_decrease_factor");
pragma Import (C, fann_get_rprop_delta_min, "fann_get_rprop_delta_min");
pragma Import (C, fann_set_rprop_delta_min, "fann_set_rprop_delta_min");
pragma Import (C, fann_get_rprop_delta_max, "fann_get_rprop_delta_max");
pragma Import (C, fann_set_rprop_delta_max, "fann_set_rprop_delta_max");
pragma Import (C, fann_get_rprop_delta_zero, "fann_get_rprop_delta_zero");
pragma Import (C, fann_set_rprop_delta_zero, "fann_set_rprop_delta_zero");
pragma Import (C, fann_get_sarprop_weight_decay_shift, "fann_get_sarprop_weight_decay_shift");
pragma Import (C, fann_set_sarprop_weight_decay_shift, "fann_set_sarprop_weight_decay_shift");
pragma Import (C, fann_get_sarprop_step_error_threshold_factor, "fann_get_sarprop_step_error_threshold_factor");
pragma Import (C, fann_set_sarprop_step_error_threshold_factor, "fann_set_sarprop_step_error_threshold_factor");
pragma Import (C, fann_get_sarprop_step_error_shift, "fann_get_sarprop_step_error_shift");
pragma Import (C, fann_set_sarprop_step_error_shift, "fann_set_sarprop_step_error_shift");
pragma Import (C, fann_get_sarprop_temperature, "fann_get_sarprop_temperature");
pragma Import (C, fann_set_sarprop_temperature, "fann_set_sarprop_temperature");
pragma Import (C, fann_cascadetrain_on_data, "fann_cascadetrain_on_data");
pragma Import (C, fann_cascadetrain_on_file, "fann_cascadetrain_on_file");
pragma Import (C, fann_get_cascade_output_change_fraction, "fann_get_cascade_output_change_fraction");
pragma Import (C, fann_set_cascade_output_change_fraction, "fann_set_cascade_output_change_fraction");
pragma Import (C, fann_get_cascade_output_stagnation_epochs, "fann_get_cascade_output_stagnation_epochs");
pragma Import (C, fann_set_cascade_output_stagnation_epochs, "fann_set_cascade_output_stagnation_epochs");
pragma Import (C, fann_get_cascade_candidate_change_fraction, "fann_get_cascade_candidate_change_fraction");
pragma Import (C, fann_set_cascade_candidate_change_fraction, "fann_set_cascade_candidate_change_fraction");
pragma Import (C, fann_get_cascade_candidate_stagnation_epochs, "fann_get_cascade_candidate_stagnation_epochs");
pragma Import (C, fann_set_cascade_candidate_stagnation_epochs, "fann_set_cascade_candidate_stagnation_epochs");
pragma Import (C, fann_get_cascade_weight_multiplier, "fann_get_cascade_weight_multiplier");
pragma Import (C, fann_set_cascade_weight_multiplier, "fann_set_cascade_weight_multiplier");
pragma Import (C, fann_get_cascade_candidate_limit, "fann_get_cascade_candidate_limit");
pragma Import (C, fann_set_cascade_candidate_limit, "fann_set_cascade_candidate_limit");
pragma Import (C, fann_get_cascade_max_out_epochs, "fann_get_cascade_max_out_epochs");
pragma Import (C, fann_set_cascade_max_out_epochs, "fann_set_cascade_max_out_epochs");
pragma Import (C, fann_get_cascade_min_out_epochs, "fann_get_cascade_min_out_epochs");
pragma Import (C, fann_set_cascade_min_out_epochs, "fann_set_cascade_min_out_epochs");
pragma Import (C, fann_get_cascade_max_cand_epochs, "fann_get_cascade_max_cand_epochs");
pragma Import (C, fann_set_cascade_max_cand_epochs, "fann_set_cascade_max_cand_epochs");
pragma Import (C, fann_get_cascade_min_cand_epochs, "fann_get_cascade_min_cand_epochs");
pragma Import (C, fann_set_cascade_min_cand_epochs, "fann_set_cascade_min_cand_epochs");
pragma Import (C, fann_get_cascade_num_candidates, "fann_get_cascade_num_candidates");
pragma Import (C, fann_get_cascade_activation_functions_count, "fann_get_cascade_activation_functions_count");
pragma Import (C, fann_get_cascade_activation_functions, "fann_get_cascade_activation_functions");
pragma Import (C, fann_set_cascade_activation_functions, "fann_set_cascade_activation_functions");
pragma Import (C, fann_get_cascade_activation_steepnesses_count, "fann_get_cascade_activation_steepnesses_count");
pragma Import (C, fann_get_cascade_activation_steepnesses, "fann_get_cascade_activation_steepnesses");
pragma Import (C, fann_set_cascade_activation_steepnesses, "fann_set_cascade_activation_steepnesses");
pragma Import (C, fann_get_cascade_num_candidate_groups, "fann_get_cascade_num_candidate_groups");
pragma Import (C, fann_set_cascade_num_candidate_groups, "fann_set_cascade_num_candidate_groups");
pragma Import (C, fann_create_from_file, "fann_create_from_file");
pragma Import (C, fann_save, "fann_save");
pragma Import (C, fann_save_to_fixed, "fann_save_to_fixed");
pragma Import (C, fann_create_standard, "fann_create_standard");
pragma Import (C, fann_create_standard_array, "fann_create_standard_array");
pragma Import (C, fann_create_sparse, "fann_create_sparse");
pragma Import (C, fann_create_sparse_array, "fann_create_sparse_array");
pragma Import (C, fann_create_shortcut, "fann_create_shortcut");
pragma Import (C, fann_create_shortcut_array, "fann_create_shortcut_array");
pragma Import (C, fann_destroy, "fann_destroy");
pragma Import (C, fann_copy, "fann_copy");
pragma Import (C, fann_run, "fann_run");
pragma Import (C, fann_randomize_weights, "fann_randomize_weights");
pragma Import (C, fann_init_weights, "fann_init_weights");
pragma Import (C, fann_print_connections, "fann_print_connections");
pragma Import (C, fann_print_parameters, "fann_print_parameters");
pragma Import (C, fann_get_num_input, "fann_get_num_input");
pragma Import (C, fann_get_num_output, "fann_get_num_output");
pragma Import (C, fann_get_total_neurons, "fann_get_total_neurons");
pragma Import (C, fann_get_total_connections, "fann_get_total_connections");
pragma Import (C, fann_get_network_type, "fann_get_network_type");
pragma Import (C, fann_get_connection_rate, "fann_get_connection_rate");
pragma Import (C, fann_get_num_layers, "fann_get_num_layers");
pragma Import (C, fann_get_layer_array, "fann_get_layer_array");
pragma Import (C, fann_get_bias_array, "fann_get_bias_array");
pragma Import (C, fann_get_connection_array, "fann_get_connection_array");
pragma Import (C, fann_set_weight_array, "fann_set_weight_array");
pragma Import (C, fann_set_weight, "fann_set_weight");
pragma Import (C, fann_set_user_data, "fann_set_user_data");
pragma Import (C, fann_get_user_data, "fann_get_user_data");
end fann_c.Binding;
| 50.914754 | 138 | 0.805622 |
23fad92d50cee839b35c28ce1858c2ea514bf6df | 273,755 | adb | Ada | model_multistart/0/hls4ml_prj/myproject_prj/solution1/.autopilot/db/reduce_2.adb | filipemlins/nas-hls4ml | b35afc4f684d803d352776c40f3a6cbbf47c4b1c | [
"MIT"
] | null | null | null | model_multistart/0/hls4ml_prj/myproject_prj/solution1/.autopilot/db/reduce_2.adb | filipemlins/nas-hls4ml | b35afc4f684d803d352776c40f3a6cbbf47c4b1c | [
"MIT"
] | null | null | null | model_multistart/0/hls4ml_prj/myproject_prj/solution1/.autopilot/db/reduce_2.adb | filipemlins/nas-hls4ml | b35afc4f684d803d352776c40f3a6cbbf47c4b1c | [
"MIT"
] | null | null | null | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="15">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName/>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>reduce_2</name>
<ret_bitwidth>18</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>x_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x.V</originalName>
<rtlName/>
<coreName>RAM</coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>10</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>64</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_2">
<Value>
<Obj>
<type>0</type>
<id>2</id>
<name>left_7_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>left[7].V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>3</id>
<name>left_7_V_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>left[7].V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>4</id>
<name>left_7_V_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>left[7].V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>5</id>
<name>left_7_V_3</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>left[7].V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>6</id>
<name>left_7_V_4</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>left[7].V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>7</id>
<name>left_7_V_5</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>left[7].V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>left_7_V_6</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>left[7].V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>left_7_V_7</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>left[7].V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second class_id="12" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="13" tracking_level="0" version="0">
<first class_id="14" tracking_level="0" version="0">
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.76</m_delay>
<m_topoIndex>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>i</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>exitcond3</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>exitcond3_fu_155_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>99</item>
<item>101</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.30</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>i_4</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName>i_4_fu_161_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>102</item>
<item>104</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.73</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>105</item>
<item>106</item>
<item>107</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>tmp</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_fu_167_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>x_V_addr</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>110</item>
<item>112</item>
<item>113</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>x_V_load</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>left_0_V</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>left[0].V</originalName>
<rtlName>left_0_V_fu_176_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>tmp_18</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_18_fu_172_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>16</count>
<item_version>0</item_version>
<item>117</item>
<item>118</item>
<item>120</item>
<item>121</item>
<item>123</item>
<item>124</item>
<item>126</item>
<item>127</item>
<item>129</item>
<item>130</item>
<item>132</item>
<item>133</item>
<item>135</item>
<item>136</item>
<item>138</item>
<item>139</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.36</m_delay>
<m_topoIndex>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>222</item>
<item>223</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>224</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>219</item>
<item>220</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>24</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>216</item>
<item>217</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>218</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>213</item>
<item>214</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>210</item>
<item>211</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>207</item>
<item>208</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>209</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>140</item>
<item>141</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>225</item>
<item>226</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>227</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>228</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>37</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>77</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.76</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>p_Val2_7</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>right[1].V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>143</item>
<item>144</item>
<item>146</item>
<item>147</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>38</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>p_Val2_s</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>right[1].V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>148</item>
<item>149</item>
<item>150</item>
<item>151</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>i2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>152</item>
<item>153</item>
<item>155</item>
<item>156</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>40</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>exitcond</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>77</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>exitcond_fu_220_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>157</item>
<item>159</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.95</m_delay>
<m_topoIndex>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>i_3</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>77</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName>i_3_fu_226_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>160</item>
<item>162</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.56</m_delay>
<m_topoIndex>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>77</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>163</item>
<item>164</item>
<item>165</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>tmp_1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_1_fu_232_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>167</item>
<item>168</item>
<item>169</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>44</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>tmp_s</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_s_fu_240_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>45</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>x_V_addr_1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>171</item>
<item>172</item>
<item>173</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>x_V_load_1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>174</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.32</m_delay>
<m_topoIndex>47</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>right_0_V</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>right[0].V</originalName>
<rtlName>right_0_V_fu_281_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>tmp_19</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_19_fu_245_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>176</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>right_1_V_1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>right[1].V</originalName>
<rtlName>right_1_V_1_fu_285_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>177</item>
<item>178</item>
<item>179</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.75</m_delay>
<m_topoIndex>59</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>right_1_V_2</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>right[1].V</originalName>
<rtlName>right_1_V_2_fu_292_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>180</item>
<item>181</item>
<item>182</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.75</m_delay>
<m_topoIndex>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>77</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>183</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>left_7_V_load</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>left_7_V_1_load</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>185</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>left_7_V_2_load</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>186</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>left_7_V_3_load</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>187</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>left_7_V_4_load</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>left_7_V_5_load</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>left_7_V_6_load</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>55</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>left_7_V_7_load</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>p_Val2_8</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName>grp_reduce_fu_143</rtlName>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>9</count>
<item_version>0</item_version>
<item>193</item>
<item>194</item>
<item>195</item>
<item>196</item>
<item>197</item>
<item>198</item>
<item>199</item>
<item>200</item>
<item>201</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>tmp1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>88</lineNumber>
<contextFuncName>operator()</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>operator()</second>
</first>
<second>88</second>
</item>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp1_fu_299_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>202</item>
<item>203</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>agg_result_i</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>88</lineNumber>
<contextFuncName>operator()</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>operator()</second>
</first>
<second>88</second>
</item>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>ap_return</rtlName>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>204</item>
<item>205</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.96</m_delay>
<m_topoIndex>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name/>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 10, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>206</item>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>17</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_66">
<Value>
<Obj>
<type>2</type>
<id>84</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_67">
<Value>
<Obj>
<type>2</type>
<id>94</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_68">
<Value>
<Obj>
<type>2</type>
<id>100</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_69">
<Value>
<Obj>
<type>2</type>
<id>103</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_70">
<Value>
<Obj>
<type>2</type>
<id>111</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_71">
<Value>
<Obj>
<type>2</type>
<id>119</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_72">
<Value>
<Obj>
<type>2</type>
<id>122</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_73">
<Value>
<Obj>
<type>2</type>
<id>125</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_74">
<Value>
<Obj>
<type>2</type>
<id>128</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_75">
<Value>
<Obj>
<type>2</type>
<id>131</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_76">
<Value>
<Obj>
<type>2</type>
<id>134</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>5</content>
</item>
<item class_id_reference="16" object_id="_77">
<Value>
<Obj>
<type>2</type>
<id>137</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<const_type>0</const_type>
<content>6</content>
</item>
<item class_id_reference="16" object_id="_78">
<Value>
<Obj>
<type>2</type>
<id>145</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<const_type>4</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_79">
<Value>
<Obj>
<type>2</type>
<id>154</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_80">
<Value>
<Obj>
<type>2</type>
<id>158</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_81">
<Value>
<Obj>
<type>2</type>
<id>161</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_82">
<Value>
<Obj>
<type>2</type>
<id>192</id>
<name>reduce</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:reduce></content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>16</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_83">
<Obj>
<type>3</type>
<id>11</id>
<name>arrayctor.loop1.preheader</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>9</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</item>
<item>9</item>
<item>10</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_84">
<Obj>
<type>3</type>
<id>17</id>
<name>branch0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>12</item>
<item>13</item>
<item>15</item>
<item>16</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_85">
<Obj>
<type>3</type>
<id>24</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>18</item>
<item>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
<item>23</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_86">
<Obj>
<type>3</type>
<id>27</id>
<name>branch6</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>25</item>
<item>26</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_87">
<Obj>
<type>3</type>
<id>30</id>
<name>branch5</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>28</item>
<item>29</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_88">
<Obj>
<type>3</type>
<id>33</id>
<name>branch4</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>31</item>
<item>32</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_89">
<Obj>
<type>3</type>
<id>36</id>
<name>branch3</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>34</item>
<item>35</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_90">
<Obj>
<type>3</type>
<id>39</id>
<name>branch2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>37</item>
<item>38</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_91">
<Obj>
<type>3</type>
<id>42</id>
<name>branch1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>40</item>
<item>41</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_92">
<Obj>
<type>3</type>
<id>45</id>
<name>.branch0.backedge_crit_edge</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>43</item>
<item>44</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_93">
<Obj>
<type>3</type>
<id>48</id>
<name>branch7</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>46</item>
<item>47</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_94">
<Obj>
<type>3</type>
<id>50</id>
<name>branch0.backedge</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_95">
<Obj>
<type>3</type>
<id>52</id>
<name>.preheader.preheader</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_96">
<Obj>
<type>3</type>
<id>60</id>
<name>.preheader</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
<item>58</item>
<item>59</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_97">
<Obj>
<type>3</type>
<id>70</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>9</count>
<item_version>0</item_version>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_98">
<Obj>
<type>3</type>
<id>83</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>12</count>
<item_version>0</item_version>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<item>82</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>150</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_99">
<id>85</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>2</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_100">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>3</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_101">
<id>87</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>4</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_102">
<id>88</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_103">
<id>89</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>6</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_104">
<id>90</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>7</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_105">
<id>91</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>8</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_106">
<id>92</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>9</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_107">
<id>93</id>
<edge_type>2</edge_type>
<source_obj>17</source_obj>
<sink_obj>10</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_108">
<id>95</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_109">
<id>96</id>
<edge_type>2</edge_type>
<source_obj>11</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_110">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_111">
<id>98</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_112">
<id>99</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_113">
<id>101</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_114">
<id>102</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_115">
<id>104</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_116">
<id>105</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_117">
<id>106</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_118">
<id>107</id>
<edge_type>2</edge_type>
<source_obj>52</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_119">
<id>108</id>
<edge_type>2</edge_type>
<source_obj>60</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_120">
<id>109</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_121">
<id>110</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_122">
<id>112</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_123">
<id>113</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_124">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_125">
<id>115</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_126">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_127">
<id>117</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_128">
<id>118</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_129">
<id>120</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_130">
<id>121</id>
<edge_type>2</edge_type>
<source_obj>45</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_131">
<id>123</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_132">
<id>124</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_133">
<id>126</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_134">
<id>127</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_135">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_136">
<id>130</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_137">
<id>132</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_138">
<id>133</id>
<edge_type>2</edge_type>
<source_obj>33</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_139">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_140">
<id>136</id>
<edge_type>2</edge_type>
<source_obj>30</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_141">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_142">
<id>139</id>
<edge_type>2</edge_type>
<source_obj>27</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_143">
<id>140</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_144">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_145">
<id>142</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_146">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_147">
<id>144</id>
<edge_type>2</edge_type>
<source_obj>70</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_148">
<id>146</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_149">
<id>147</id>
<edge_type>2</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_150">
<id>148</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_151">
<id>149</id>
<edge_type>2</edge_type>
<source_obj>70</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_152">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_153">
<id>151</id>
<edge_type>2</edge_type>
<source_obj>52</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_154">
<id>152</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_155">
<id>153</id>
<edge_type>2</edge_type>
<source_obj>70</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_156">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_157">
<id>156</id>
<edge_type>2</edge_type>
<source_obj>52</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_158">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_159">
<id>159</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_160">
<id>160</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_161">
<id>162</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_162">
<id>163</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_163">
<id>164</id>
<edge_type>2</edge_type>
<source_obj>70</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_164">
<id>165</id>
<edge_type>2</edge_type>
<source_obj>83</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_165">
<id>168</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_166">
<id>169</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_167">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_168">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_169">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_170">
<id>173</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_171">
<id>174</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_172">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_173">
<id>176</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_174">
<id>177</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_175">
<id>178</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_176">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_177">
<id>180</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_178">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_179">
<id>182</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_180">
<id>183</id>
<edge_type>2</edge_type>
<source_obj>60</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_181">
<id>184</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_182">
<id>185</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_183">
<id>186</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_184">
<id>187</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_185">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_186">
<id>189</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_187">
<id>190</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_188">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_189">
<id>193</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_190">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_191">
<id>195</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_192">
<id>196</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_193">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_194">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_195">
<id>199</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>201</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_198">
<id>202</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_199">
<id>203</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_200">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_201">
<id>205</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_203">
<id>207</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_204">
<id>208</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>209</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_206">
<id>210</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>212</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_211">
<id>215</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_212">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_213">
<id>217</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>218</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_215">
<id>219</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_216">
<id>220</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_217">
<id>221</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_218">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_219">
<id>223</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_220">
<id>224</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>226</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_223">
<id>227</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>228</id>
<edge_type>2</edge_type>
<source_obj>17</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>240</id>
<edge_type>2</edge_type>
<source_obj>11</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_226">
<id>241</id>
<edge_type>2</edge_type>
<source_obj>17</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>242</id>
<edge_type>2</edge_type>
<source_obj>17</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>243</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>244</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>245</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>246</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>247</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>248</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_234">
<id>249</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>250</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>251</id>
<edge_type>2</edge_type>
<source_obj>27</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>252</id>
<edge_type>2</edge_type>
<source_obj>30</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>253</id>
<edge_type>2</edge_type>
<source_obj>33</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>254</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_240">
<id>255</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>256</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_242">
<id>257</id>
<edge_type>2</edge_type>
<source_obj>45</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>258</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>259</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>260</id>
<edge_type>2</edge_type>
<source_obj>52</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_246">
<id>261</id>
<edge_type>2</edge_type>
<source_obj>60</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>262</id>
<edge_type>2</edge_type>
<source_obj>60</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_248">
<id>263</id>
<edge_type>2</edge_type>
<source_obj>70</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_249">
<mId>1</mId>
<mTag>reduce.2</mTag>
<mType>0</mType>
<sub_regions>
<count>5</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>59</mMinLatency>
<mMaxLatency>59</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_250">
<mId>2</mId>
<mTag>Entry</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_251">
<mId>3</mId>
<mTag>Loop 1</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>11</count>
<item_version>0</item_version>
<item>17</item>
<item>24</item>
<item>27</item>
<item>30</item>
<item>33</item>
<item>36</item>
<item>39</item>
<item>42</item>
<item>45</item>
<item>48</item>
<item>50</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>8</mMinTripCount>
<mMaxTripCount>8</mMaxTripCount>
<mMinLatency>24</mMinLatency>
<mMaxLatency>24</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_252">
<mId>4</mId>
<mTag>Region 1</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_253">
<mId>5</mId>
<mTag>Loop 2</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>60</item>
<item>70</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>2</mMinTripCount>
<mMaxTripCount>2</mMaxTripCount>
<mMinLatency>4</mMinLatency>
<mMaxLatency>4</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_254">
<mId>6</mId>
<mTag>Return</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>29</mMinLatency>
<mMaxLatency>29</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_255">
<states class_id="25" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_256">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_257">
<id>2</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_258">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_259">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_260">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_261">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_262">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_263">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_264">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_265">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_266">
<id>2</id>
<operations>
<count>10</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_267">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_268">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_269">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_270">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_271">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_272">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_273">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_274">
<id>20</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_275">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_276">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_277">
<id>3</id>
<operations>
<count>19</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_278">
<id>20</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_279">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_280">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_281">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_282">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_283">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_284">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_285">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_286">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_287">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_288">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_289">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_290">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_291">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_292">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_293">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_294">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_295">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_296">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_297">
<id>4</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_298">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_299">
<id>5</id>
<operations>
<count>21</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_300">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_301">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_302">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_303">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_304">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_305">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_306">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_307">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_308">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_309">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_310">
<id>64</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_311">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_312">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_313">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_314">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_315">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_316">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_317">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_318">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_319">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_320">
<id>79</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_321">
<id>6</id>
<operations>
<count>5</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_322">
<id>64</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_323">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_324">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_325">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_326">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_327">
<id>7</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_328">
<id>79</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_329">
<id>8</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_330">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_331">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_332">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_333">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>-1</id>
<sop class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_334">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item class_id="34" tracking_level="0" version="0">
<first class_id="35" tracking_level="0" version="0">
<first>13</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_335">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_336">
<inState>4</inState>
<outState>2</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_337">
<inState>2</inState>
<outState>5</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>13</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_338">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>56</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_339">
<inState>5</inState>
<outState>7</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>56</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_340">
<inState>6</inState>
<outState>5</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_341">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="36" tracking_level="1" version="0" object_id="_342">
<dp_component_resource class_id="37" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>grp_reduce_fu_143 (reduce)</first>
<second class_id="39" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>FF</first>
<second>437</second>
</item>
<item>
<first>LUT</first>
<second>714</second>
</item>
</second>
</item>
</dp_component_resource>
<dp_expression_resource>
<count>8</count>
<item_version>0</item_version>
<item>
<first>ap_return ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>18</second>
</item>
<item>
<first>(1P1)</first>
<second>18</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>18</second>
</item>
</second>
</item>
<item>
<first>exitcond3_fu_155_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>4</second>
</item>
<item>
<first>(1P1)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>exitcond_fu_220_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>2</second>
</item>
<item>
<first>(1P1)</first>
<second>3</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>i_3_fu_226_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>2</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>10</second>
</item>
</second>
</item>
<item>
<first>i_4_fu_161_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>4</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>right_1_V_1_fu_285_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>18</second>
</item>
<item>
<first>(2P2)</first>
<second>18</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>18</second>
</item>
</second>
</item>
<item>
<first>right_1_V_2_fu_292_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>18</second>
</item>
<item>
<first>(2P2)</first>
<second>18</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>18</second>
</item>
</second>
</item>
<item>
<first>tmp1_fu_299_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>18</second>
</item>
<item>
<first>(1P1)</first>
<second>18</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>18</second>
</item>
</second>
</item>
</dp_expression_resource>
<dp_fifo_resource>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_resource>
<dp_memory_resource>
<count>0</count>
<item_version>0</item_version>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>4</count>
<item_version>0</item_version>
<item>
<first>ap_NS_fsm</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>9</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>9</second>
</item>
<item>
<first>LUT</first>
<second>44</second>
</item>
</second>
</item>
<item>
<first>i2_reg_132</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>2</second>
</item>
<item>
<first>(2Count)</first>
<second>4</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>i_reg_97</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>4</second>
</item>
<item>
<first>(2Count)</first>
<second>8</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>x_V_address0</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>4</second>
</item>
<item>
<first>(2Count)</first>
<second>12</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
</dp_multiplexer_resource>
<dp_register_resource>
<count>19</count>
<item_version>0</item_version>
<item>
<first>ap_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>grp_reduce_fu_143_ap_start_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>i2_reg_132</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>2</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>i_3_reg_378</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>2</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>i_4_reg_361</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>4</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>i_reg_97</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>4</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>left_7_V_1_fu_48</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>left_7_V_2_fu_52</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>left_7_V_3_fu_56</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>left_7_V_4_fu_60</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>left_7_V_5_fu_64</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>left_7_V_6_fu_68</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>left_7_V_7_fu_72</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>left_7_V_fu_44</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>5</second>
</item>
<item>
<first>FF</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>p_Val2_7_reg_108</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>18</second>
</item>
</second>
</item>
<item>
<first>p_Val2_8_reg_444</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>18</second>
</item>
</second>
</item>
<item>
<first>p_Val2_s_reg_120</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>18</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>18</second>
</item>
</second>
</item>
<item>
<first>tmp_18_reg_371</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>3</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>tmp_19_reg_388</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
</dp_register_resource>
<dp_dsp_resource>
<count>1</count>
<item_version>0</item_version>
<item>
<first>grp_reduce_fu_143</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_dsp_resource>
<dp_component_map class_id="41" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>grp_reduce_fu_143 (reduce)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
</dp_component_map>
<dp_expression_map>
<count>8</count>
<item_version>0</item_version>
<item>
<first>ap_return ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>exitcond3_fu_155_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>exitcond_fu_220_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>i_3_fu_226_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>i_4_fu_161_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>right_1_V_1_fu_285_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>right_1_V_2_fu_292_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>tmp1_fu_299_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
</dp_expression_map>
<dp_fifo_map>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_map>
<dp_memory_map>
<count>0</count>
<item_version>0</item_version>
</dp_memory_map>
</res>
<node_label_latency class_id="43" tracking_level="0" version="0">
<count>64</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>2</first>
<second class_id="45" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>3</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>4</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>5</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>6</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>7</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>8</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>4</first>
<second>1</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>4</first>
<second>1</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="46" tracking_level="0" version="0">
<count>16</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>11</first>
<second class_id="48" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>2</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>2</first>
<second>3</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>2</first>
<second>4</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="49" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="50" tracking_level="0" version="0">
<count>47</count>
<item_version>0</item_version>
<item class_id="51" tracking_level="0" version="0">
<first>44</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
<item>
<first>48</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>52</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>56</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>60</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>64</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>68</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>72</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>76</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>83</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>20</item>
<item>20</item>
<item>64</item>
<item>64</item>
</second>
</item>
<item>
<first>89</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>101</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>143</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>79</item>
<item>79</item>
</second>
</item>
<item>
<first>155</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>161</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>167</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>176</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>185</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>195</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>200</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>205</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>210</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>215</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>220</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>232</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>240</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>249</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>253</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>265</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>269</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>273</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>277</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>281</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>285</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>292</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="53" tracking_level="0" version="0">
<count>29</count>
<item_version>0</item_version>
<item class_id="54" tracking_level="0" version="0">
<first>agg_result_i_fu_304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>exitcond3_fu_155</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>exitcond_fu_220</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>i2_phi_fu_136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>i_3_fu_226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>i_4_fu_161</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>i_phi_fu_101</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>left_0_V_fu_176</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>left_7_V_1_fu_48</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>left_7_V_2_fu_52</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>left_7_V_3_fu_56</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>left_7_V_4_fu_60</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>left_7_V_5_fu_64</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>left_7_V_6_fu_68</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>left_7_V_7_fu_72</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>left_7_V_fu_44</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
<item>
<first>p_Val2_7_phi_fu_112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>p_Val2_s_phi_fu_124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>right_0_V_fu_281</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>right_1_V_1_fu_285</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>right_1_V_2_fu_292</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>tmp1_fu_299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>tmp_18_fu_172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>tmp_19_fu_245</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>tmp_1_fu_232</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>tmp_fu_167</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>tmp_s_fu_240</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>x_V_addr_1_gep_fu_89</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>x_V_addr_gep_fu_76</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>1</count>
<item_version>0</item_version>
<item>
<first>grp_reduce_fu_143</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>79</item>
<item>79</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>16</count>
<item_version>0</item_version>
<item>
<first>StgValue_31_store_fu_180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>StgValue_33_store_fu_185</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>StgValue_35_store_fu_190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>StgValue_37_store_fu_195</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>StgValue_39_store_fu_200</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>StgValue_41_store_fu_205</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>StgValue_43_store_fu_210</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>StgValue_45_store_fu_215</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>left_7_V_1_load_load_fu_253</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>left_7_V_2_load_load_fu_257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>left_7_V_3_load_load_fu_261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>left_7_V_4_load_load_fu_265</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>left_7_V_5_load_load_fu_269</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>left_7_V_6_load_load_fu_273</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>left_7_V_7_load_load_fu_277</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>left_7_V_load_load_fu_249</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
</dp_fu_nodes_io>
<return_ports>
<count>1</count>
<item_version>0</item_version>
<item>
<first>ap_return</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
</return_ports>
<dp_mem_port_nodes class_id="55" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="56" tracking_level="0" version="0">
<first class_id="57" tracking_level="0" version="0">
<first>x_V</first>
<second>0</second>
</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>20</item>
<item>20</item>
<item>64</item>
<item>64</item>
</second>
</item>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>29</count>
<item_version>0</item_version>
<item>
<first>97</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>108</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>120</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>310</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
<item>
<first>316</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>328</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>340</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>361</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>366</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>371</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>378</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>383</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>388</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>394</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>399</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>404</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>409</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>419</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>424</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>429</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>434</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>439</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>444</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>29</count>
<item_version>0</item_version>
<item>
<first>i2_reg_132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>i_3_reg_378</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>i_4_reg_361</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>i_reg_97</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>left_7_V_1_load_reg_399</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>left_7_V_1_reg_316</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>left_7_V_2_load_reg_404</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>left_7_V_2_reg_322</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>4</item>
</second>
</item>
<item>
<first>left_7_V_3_load_reg_409</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>left_7_V_3_reg_328</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>5</item>
</second>
</item>
<item>
<first>left_7_V_4_load_reg_414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>left_7_V_4_reg_334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>6</item>
</second>
</item>
<item>
<first>left_7_V_5_load_reg_419</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>left_7_V_5_reg_340</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>7</item>
</second>
</item>
<item>
<first>left_7_V_6_load_reg_424</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>left_7_V_6_reg_346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>left_7_V_7_load_reg_429</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>left_7_V_7_reg_352</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>left_7_V_load_reg_394</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>left_7_V_reg_310</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>2</item>
</second>
</item>
<item>
<first>p_Val2_7_reg_108</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>p_Val2_8_reg_444</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>p_Val2_s_reg_120</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>right_1_V_1_reg_434</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>right_1_V_2_reg_439</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>tmp_18_reg_371</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>tmp_19_reg_388</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>x_V_addr_1_reg_383</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>x_V_addr_reg_366</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>4</count>
<item_version>0</item_version>
<item>
<first>97</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>108</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>120</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>4</count>
<item_version>0</item_version>
<item>
<first>i2_reg_132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>i_reg_97</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>p_Val2_7_reg_108</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>p_Val2_s_reg_120</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="58" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="59" tracking_level="0" version="0">
<first>x_V(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>load</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>20</item>
<item>20</item>
<item>64</item>
<item>64</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="60" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="61" tracking_level="0" version="0">
<first>1</first>
<second>RAM</second>
</item>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 32.824341 | 183 | 0.469047 |
cb17fbb04f24cb72d71495881f78b296df91e67c | 3,993 | adb | Ada | Ada/src/Problem_51.adb | Tim-Tom/project-euler | 177e0043ee93409742ec596c4379251f681b4275 | [
"Unlicense"
] | null | null | null | Ada/src/Problem_51.adb | Tim-Tom/project-euler | 177e0043ee93409742ec596c4379251f681b4275 | [
"Unlicense"
] | null | null | null | Ada/src/Problem_51.adb | Tim-Tom/project-euler | 177e0043ee93409742ec596c4379251f681b4275 | [
"Unlicense"
] | null | null | null | with Ada.Text_IO;
with Ada.Containers.Ordered_Maps;
with PrimeUtilities;
package body Problem_51 is
package IO renames Ada.Text_IO;
type Number_Range is new Integer range 0 .. 999_999_999;
type Converted_Range is new Integer range 0 .. Integer(Number_Range'Last + 1)*11/10;
type Magnitude is new Positive range 1 .. 9;
type Family_Count is Record
base_example : Number_Range;
count : Positive;
end Record;
package Family_Map is new Ada.Containers.Ordered_Maps(Key_Type => Converted_Range,
Element_Type => Family_Count);
package Range_Primes is new PrimeUtilities(Num => Number_Range);
procedure Solve is
gen : Range_Primes.Prime_Generator := Range_Primes.Make_Generator;
families : Family_Map.Map;
prime : Number_Range;
prime_magnitude : Magnitude := 1;
function Get_Magnitude(num : Number_Range) return Magnitude is
begin
if num >= 100_000_000 then
return 9;
elsif num >= 10_000_000 then
return 8;
elsif num >= 1_000_000 then
return 7;
elsif num >= 100_000 then
return 6;
elsif num >= 10_000 then
return 5;
elsif num >= 1_000 then
return 4;
elsif num >= 100 then
return 3;
elsif num >= 10 then
return 2;
else
return 1;
end if;
end;
pragma Pure_Function(Get_Magnitude);
Function Generate_Families(prime : Number_Range) return Number_Range is
Function Gen_Families_Rec(number : Number_Range; so_far : Converted_Range; Keep : Number_Range) return Number_Range is
found : Number_Range := 0;
begin
if number /= 0 then
declare
quotient : constant Number_Range := number / 10;
remainder : constant Number_Range := number mod 10;
begin
found := Gen_Families_Rec(quotient, (so_far*11) + Converted_Range(remainder), keep);
if found /= 0 then
return found;
elsif keep = 11 or keep = remainder then
found := Gen_Families_Rec(quotient, so_far*11 + 10, remainder);
if found /= 0 then
return found;
end if;
end if;
end;
elsif keep /= 11 then
declare
use Family_Map;
location : constant Family_Map.Cursor := families.Find(so_far);
element : Family_Count;
begin
if location = Family_Map.No_Element then
element.base_example := prime;
element.count := 1;
families.Insert(so_far, element);
else
element := Family_Map.Element(location);
element.count := element.count + 1;
families.Replace_Element(location, element);
if element.count = 8 then
return element.base_example;
end if;
end if;
end;
end if;
return 0;
end Gen_Families_Rec;
begin
return Gen_Families_Rec(prime, 0, 11);
end Generate_Families;
begin
loop
Range_Primes.Next_Prime(gen, prime);
exit when prime = 1;
if prime_magnitude /= Get_Magnitude(prime) then
prime_magnitude := Get_Magnitude(prime);
families.Clear;
end if;
declare
found : constant Number_Range := Generate_Families(prime);
begin
if found /= 0 then
IO.Put_Line(Number_Range'Image(found));
exit;
end if;
end;
end loop;
end Solve;
end Problem_51;
| 36.972222 | 127 | 0.535437 |
109070ab908341d23af69af38d97a8d673ea7196 | 2,318 | ads | Ada | tests/lsc_internal_test_sha1.ads | Componolit/libsparkcrypto | 8531a07b6e9f5eb33eae0fa32759b4cbd3509d95 | [
"OpenSSL",
"Unlicense"
] | 30 | 2018-05-18T09:11:50.000Z | 2021-05-18T16:29:14.000Z | tests/lsc_internal_test_sha1.ads | Componolit/libsparkcrypto | 8531a07b6e9f5eb33eae0fa32759b4cbd3509d95 | [
"OpenSSL",
"Unlicense"
] | 15 | 2018-12-13T07:53:36.000Z | 2019-09-24T19:43:35.000Z | tests/lsc_internal_test_sha1.ads | Componolit/libsparkcrypto | 8531a07b6e9f5eb33eae0fa32759b4cbd3509d95 | [
"OpenSSL",
"Unlicense"
] | 3 | 2019-04-04T17:41:29.000Z | 2021-05-07T22:28:46.000Z | -------------------------------------------------------------------------------
-- This file is part of libsparkcrypto.
--
-- @author Alexander Senier
-- @date 2019-01-09
--
-- Copyright (C) 2018 Componolit GmbH
-- 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 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 AUnit; use AUnit;
with AUnit.Test_Cases; use AUnit.Test_Cases;
-- @summary Tests SHA1
package LSC_Internal_Test_SHA1 is
type Test_Case is new Test_Cases.Test_Case with null record;
procedure Register_Tests (T : in out Test_Case);
-- Register routines to be run
function Name (T : Test_Case) return Message_String;
-- Provide name identifying the test case
end LSC_Internal_Test_SHA1;
| 44.576923 | 80 | 0.678602 |
cb8fb8c6a1e736fbaab22a828b05720a12fc0376 | 393 | adb | Ada | hello2.adb | MatrixMike/AdaDemo1 | cbf2ad5a05dc06a8ee11d0780c19f5fd74c8990a | [
"MIT"
] | 1 | 2019-06-27T12:58:28.000Z | 2019-06-27T12:58:28.000Z | hello2.adb | MatrixMike/AdaDemo1 | cbf2ad5a05dc06a8ee11d0780c19f5fd74c8990a | [
"MIT"
] | null | null | null | hello2.adb | MatrixMike/AdaDemo1 | cbf2ad5a05dc06a8ee11d0780c19f5fd74c8990a | [
"MIT"
] | null | null | null | with Ada.Text_IO;
use Ada.Text_IO;
--Print a message out to the screen
-- date Saturday 13 April 2013
-- https://gcc.gnu.org/onlinedocs/gnat_ugn/Running-a-Simple-Ada-Program.html
-- https://stackoverflow.com/questions/12462461/is-it-worth-to-learn-ada-instead-of-another-languages-c-c
procedure Hello2 is
begin
Put_Line("Hello Mike from Ada");
Put_Line("second line");
end hello2;
| 23.117647 | 105 | 0.748092 |
20e84bb9c200d3fabbb99028440227818e6ab31f | 853 | adb | Ada | gnu/src/gdb/gdb/testsuite/gdb.ada/pp-rec-component/foo.adb | ghsecuritylab/ellcc-mirror | b03a4afac74d50cf0987554b8c0cd8209bcb92a2 | [
"BSD-2-Clause"
] | null | null | null | gnu/src/gdb/gdb/testsuite/gdb.ada/pp-rec-component/foo.adb | ghsecuritylab/ellcc-mirror | b03a4afac74d50cf0987554b8c0cd8209bcb92a2 | [
"BSD-2-Clause"
] | null | null | null | gnu/src/gdb/gdb/testsuite/gdb.ada/pp-rec-component/foo.adb | ghsecuritylab/ellcc-mirror | b03a4afac74d50cf0987554b8c0cd8209bcb92a2 | [
"BSD-2-Clause"
] | null | null | null | -- Copyright 2014-2015 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with Pck; use Pck;
procedure Foo is
Before : Time_T := (Secs => 1384395743);
begin
Do_Nothing (Before'Address); -- BREAK
end Foo;
| 37.086957 | 73 | 0.726846 |
1060b404cf0f08521da21ef858d5ddea9247e8f5 | 9,088 | ads | Ada | software/hal/hpl/STM32/drivers/dsi/stm32-dsi.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | software/hal/hpl/STM32/drivers/dsi/stm32-dsi.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | software/hal/hpl/STM32/drivers/dsi/stm32-dsi.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | ------------------------------------------------------------------------------
-- --
-- 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_dsi.h --
-- @author MCD Application Team --
-- @version V1.4.2 --
-- @date 10-November-2015 --
-- --
-- COPYRIGHT(c) 2015 STMicroelectronics --
------------------------------------------------------------------------------
with STM32_SVD.DSIHOST;
with HAL.DSI;
package STM32.DSI is
package SVD_DSI renames STM32_SVD.DSIHOST;
type DSI_Number_Of_Lanes is
(One_Data_Lane,
Two_Data_Lanes)
with Size => 2;
-- Values 2#10# and 2#11# are reserved
subtype DSI_PLLN_Div is UInt7 range 10 .. 125;
subtype DSI_PLL_IDF is UInt4 range 0 .. 7;
PLL_IN_DIV1 : constant DSI_PLL_IDF := 1;
PLL_IN_DIV2 : constant DSI_PLL_IDF := 2;
PLL_IN_DIV3 : constant DSI_PLL_IDF := 3;
PLL_IN_DIV4 : constant DSI_PLL_IDF := 4;
PLL_IN_DIV5 : constant DSI_PLL_IDF := 5;
PLL_IN_DIV6 : constant DSI_PLL_IDF := 6;
PLL_IN_DIV7 : constant DSI_PLL_IDF := 7;
type DSI_PLL_ODF is
(PLL_OUT_DIV1,
PLL_OUT_DIV2,
PLL_OUT_DIV4,
PLL_OUT_DIV8)
with Size => 2;
type DSI_Color_Mode is
(RGB565,
RGB666,
RGB888)
with Size => 3;
for DSI_Color_Mode use
(RGB565 => 0, -- 1 and 2 can also be used for this mode
RGB666 => 3, -- 4 can also be used for this mode
RGB888 => 5);
type DSI_Video_Mode is
(Video_Mode_NB_Pulses,
Video_Mode_NB_Events,
Video_Mode_Burst);
type DSI_Polarity is
(Active_High,
Active_Low)
with Size => 1;
type DSI_Edge is
(Falling_Edge,
Rising_Edge)
with Size => 1;
type DSI_TE_Polarity is
(Rising_Edge,
Falling_Edge)
with size => 1;
type DSI_Tearing_Effect_Source is
(TE_DSI_Link,
TE_External)
with Size => 1;
type DSI_Flow_Control is
(Flow_Control_CRC_RX,
Flow_Control_ECC_RX,
Flow_Control_BTA,
Flow_Control_EOTP_RX,
Flow_Control_EOTP_TX);
type DSI_Host (Periph : not null access SVD_DSI.DSIHOST_Peripheral) is
limited new HAL.DSI.DSI_Port with private;
procedure DSI_Initialize
(This : in out DSI_Host;
PLL_N_Div : DSI_PLLN_Div;
PLL_IN_Div : DSI_PLL_IDF;
PLL_OUT_Div : DSI_PLL_ODF;
Auto_Clock_Lane_Control : Boolean;
TX_Escape_Clock_Division : Byte;
-- The TX_ESC clock division. 0 or 1 stops the clock.
Number_Of_Lanes : DSI_Number_Of_Lanes);
procedure DSI_Deinit (This : in out DSI_Host);
procedure DSI_Setup_Video_Mode
(This : in out DSI_Host;
Virtual_Channel : HAL.DSI.DSI_Virtual_Channel_ID;
Color_Coding : DSI_Color_Mode;
Loosely_Packed : Boolean;
Video_Mode : DSI_Video_Mode;
Packet_Size : UInt15;
Number_Of_Chunks : UInt14;
Null_Packet_Size : UInt14;
HSync_Polarity : DSI_Polarity;
VSync_Polarity : DSI_Polarity;
DataEn_Polarity : DSI_Polarity;
HSync_Active_Duration : UInt13;
Horizontal_BackPorch : UInt13;
Horizontal_Line : UInt15;
VSync_Active_Duration : UInt10;
Vertical_BackPorch : UInt10;
Vertical_FrontPorch : UInt10;
Vertical_Active : UInt14;
LP_Command_Enabled : Boolean;
LP_Largest_Packet_Size : Byte;
LP_VACT_Largest_Packet_Size : Byte;
LP_H_Front_Porch_Enable : Boolean;
LP_H_Back_Porch_Enable : Boolean;
LP_V_Active_Enable : Boolean;
LP_V_Front_Porch_Enable : Boolean;
LP_V_Back_Porch_Enable : Boolean;
LP_V_Sync_Active_Enable : Boolean;
Frame_BTA_Ack_Enable : Boolean);
procedure DSI_Setup_Adapted_Command_Mode
(This : in out DSI_Host;
Virtual_Channel : HAL.DSI.DSI_Virtual_Channel_ID;
Color_Coding : DSI_Color_Mode;
Command_Size : Short;
Tearing_Effect_Source : DSI_Tearing_Effect_Source;
Tearing_Effect_Polarity : DSI_TE_Polarity;
HSync_Polarity : DSI_Polarity;
VSync_Polarity : DSI_Polarity;
DataEn_Polarity : DSI_Polarity;
VSync_Edge : DSI_Edge;
Automatic_Refresh : Boolean;
TE_Acknowledge_Request : Boolean);
procedure DSI_Setup_Command
(This : in out DSI_Host;
LP_Gen_Short_Write_No_P : Boolean := True;
LP_Gen_Short_Write_One_P : Boolean := True;
LP_Gen_Short_Write_Two_P : Boolean := True;
LP_Gen_Short_Read_No_P : Boolean := True;
LP_Gen_Short_Read_One_P : Boolean := True;
LP_Gen_Short_Read_Two_P : Boolean := True;
LP_Gen_Long_Write : Boolean := True;
LP_DCS_Short_Write_No_P : Boolean := True;
LP_DCS_Short_Write_One_P : Boolean := True;
LP_DCS_Short_Read_No_P : Boolean := True;
LP_DCS_Long_Write : Boolean := True;
LP_Max_Read_Packet : Boolean := False;
Acknowledge_Request : Boolean := False);
procedure DSI_Setup_Flow_Control
(This : in out DSI_Host;
Flow_Control : DSI_Flow_Control);
procedure DSI_Start (This : in out DSI_Host);
procedure DSI_Stop (This : in out DSI_Host);
procedure DSI_Refresh (This : in out DSI_Host);
procedure DSI_Wrapper_Disable (This : in out DSI_Host);
procedure DSI_Wrapper_Enable (This : in out DSI_Host);
overriding
procedure DSI_Short_Write
(This : in out DSI_Host;
Channel_ID : HAL.DSI.DSI_Virtual_Channel_ID;
Mode : HAL.DSI.DSI_Short_Write_Packet_Data_Type;
Param1 : Byte;
Param2 : Byte);
overriding
procedure DSI_Long_Write
(This : in out DSI_Host;
Channel_Id : HAL.DSI.DSI_Virtual_Channel_ID;
Mode : HAL.DSI.DSI_Long_Write_Packet_Data_Type;
Param1 : Byte;
Parameters : HAL.DSI.DSI_Data);
private
type DSI_Host (Periph : not null access SVD_DSI.DSIHOST_Peripheral) is
limited new HAL.DSI.DSI_Port with null record;
end STM32.DSI;
| 41.688073 | 78 | 0.555348 |
0e8442b747b6d93fe387c69a9eeb91e7932a0acd | 2,450 | ads | Ada | demo/tutorial/actors.ads | csb6/libtcod-ada | 89c2a75eb357a8468ccb0a6476391a6b388f00b4 | [
"BSD-3-Clause"
] | null | null | null | demo/tutorial/actors.ads | csb6/libtcod-ada | 89c2a75eb357a8468ccb0a6476391a6b388f00b4 | [
"BSD-3-Clause"
] | null | null | null | demo/tutorial/actors.ads | csb6/libtcod-ada | 89c2a75eb357a8468ccb0a6476391a6b388f00b4 | [
"BSD-3-Clause"
] | null | null | null | limited with Engines;
with Ada.Containers.Vectors, Ada.Strings.Bounded;
with Libtcod.Maps, Libtcod.Color, Libtcod.Console;
with Components, Components.Destructibles, Components.Attackers, Components.AIs;
use Components, Components.Destructibles, Components.Attackers, Components.AIs;
use Libtcod;
package Actors is
subtype RGB_Color is Libtcod.Color.RGB_Color;
type Actor_Id is range 0 .. 100;
package Actor_Names is new Ada.Strings.Bounded.Generic_Bounded_Length(Max => 16);
subtype Actor_Name is Actor_Names.Bounded_String;
type Actor is tagged record
-- Components
attacker : access Attackers.Attacker;
destructible : access Destructibles.Destructible'Class;
ai : access AIs.AI'Class;
-- Fields
name : Actor_Name;
color : RGB_Color;
x : aliased Maps.X_Pos;
y : aliased Maps.Y_Pos;
ch : Wide_Character;
blocks : Boolean;
end record;
-- Properties
function get_name(self : Actor) return String with Inline;
function is_attacker(self : Actor) return Boolean is (self.attacker /= null)
with Inline;
function is_destructible(self : Actor) return Boolean is (self.destructible /= null)
with Inline;
function is_ai(self : Actor) return Boolean is (self.ai /= null) with Inline;
-- Operations
procedure render(self : Actor; screen : in out Console.Screen);
procedure update(self : in out Actor; engine : in out Engines.Engine);
-- Constructors
function make_player(x : Maps.X_Pos; y : Maps.Y_Pos;
name : String; defense_stat : Defense;
power, hp, max_hp : Health) return Actor
with Pre => name'Length <= Actor_Names.Max_Length;
function make_monster(x : Maps.X_Pos; y : Maps.Y_Pos; ch : Wide_Character;
name : String; color : RGB_Color;
defense_stat : Defense;
power, hp, max_hp : Health) return Actor
with Pre => name'Length <= Actor_Names.Max_Length;
function make_orc(x : Maps.X_Pos; y : Maps.Y_Pos) return Actor;
function make_troll(x : Maps.X_Pos; y : Maps.Y_Pos) return Actor;
-- Container
package Actor_Vectors is new Ada.Containers.Vectors(Index_Type => Actor_Id,
Element_Type => Actor);
subtype Actor_Vector is Actor_Vectors.Vector;
subtype Actor_Ref is Actor_Vectors.Reference_Type;
end Actors;
| 35 | 87 | 0.667755 |
23e01e7b2a3a7001fb5e1a22b809f275516c0714 | 1,350 | ads | Ada | example_2.2/src/graphic_data.ads | rogermc2/GA_Ada | 0b55eb5691ac1c543c79c9a06ffdbe2e47e8f1be | [
"ISC"
] | 3 | 2019-04-12T01:09:55.000Z | 2021-02-24T18:17:32.000Z | example_2.2/src/graphic_data.ads | rogermc2/GA_Ada | 0b55eb5691ac1c543c79c9a06ffdbe2e47e8f1be | [
"ISC"
] | 1 | 2020-08-12T10:10:25.000Z | 2020-08-12T10:10:25.000Z | example_2.2/src/graphic_data.ads | rogermc2/GA_Ada | 0b55eb5691ac1c543c79c9a06ffdbe2e47e8f1be | [
"ISC"
] | 1 | 2019-04-12T01:14:15.000Z | 2019-04-12T01:14:15.000Z |
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with GL.Objects.Programs;
with GL.Types;
with Multivectors;
package Graphic_Data is
Num_Names : Integer := 9;
Model_Names : array (1 .. Num_Names) of Unbounded_String :=
(To_Unbounded_String ("teapot"),
To_Unbounded_String ("cube"),
To_Unbounded_String ("sphere"),
To_Unbounded_String ("cone"),
To_Unbounded_String ("torus"),
To_Unbounded_String ("dodecahedron"),
To_Unbounded_String ("octahedron"),
To_Unbounded_String ("tetrahedron"),
To_Unbounded_String ("icosahedron"));
GLUT_Read_Exception : Exception;
procedure Get_GLUT_Model_2D (Render_Program : GL.Objects.Programs.Program;
Model_Name : Ada.Strings.Unbounded.Unbounded_String;
Model_Rotor : Multivectors.Rotor);
procedure Solid_Cube (Size : Float);
procedure Solid_Cone (Base, Height : Float; Slices, Stacks : Integer);
procedure Solid_Dodecahedron;
procedure Solid_Icosahedron;
procedure Solid_Octahedron;
procedure Solid_Sphere (Radius : Float; Slices, Stacks : Integer);
procedure Solid_Teapot (Size : Float);
procedure Solid_Tetrahedron;
procedure Solid_Torus (Inner_Radius, Outer_Radius : Float;
Sides, Rings : Integer);
end Graphic_Data;
| 33.75 | 84 | 0.686667 |
cb253a2c1a964b9f84fc7d9327649a82b39ae2c5 | 3,617 | ads | Ada | source/amf/uml/amf-uml-instance_values-hash.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/uml/amf-uml-instance_values-hash.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/uml/amf-uml-instance_values-hash.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Elements.Generic_Hash;
function AMF.UML.Instance_Values.Hash is
new AMF.Elements.Generic_Hash (UML_Instance_Value, UML_Instance_Value_Access);
| 72.34 | 80 | 0.403373 |
0e7c494dfec9912ced1c48844b690842413828df | 25 | adb | Ada | resource/graphics/ckirmse.adb | Gar103v2/Meridian59 | 4439e521cb7fb6cc42a6a0cfdf7863902ab52e45 | [
"FSFAP"
] | 214 | 2015-01-02T23:36:42.000Z | 2022-03-30T01:41:41.000Z | resource/graphics/ckirmse.adb | Gar103v2/Meridian59 | 4439e521cb7fb6cc42a6a0cfdf7863902ab52e45 | [
"FSFAP"
] | 120 | 2015-01-01T13:02:04.000Z | 2015-08-14T20:06:27.000Z | resource/graphics/ckirmse.adb | Gar103v2/Meridian59 | 4439e521cb7fb6cc42a6a0cfdf7863902ab52e45 | [
"FSFAP"
] | 85 | 2015-01-08T16:09:04.000Z | 2022-02-22T05:24:56.000Z | [Users]
[email protected]=
| 8.333333 | 16 | 0.72 |
0eb12f956de911965ecdf5a00c2552f55972259a | 4,198 | ads | Ada | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-rpc.ads | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-rpc.ads | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-rpc.ads | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . R P C --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Note: this is a dummy implementation which does not support distribution.
-- The GLADE distribution package includes a replacement for this file which
-- has a different private
with Ada.Streams;
package System.RPC is
type Partition_ID is range 0 .. Integer'Last;
Communication_Error : exception;
type Params_Stream_Type
(Initial_Size : Ada.Streams.Stream_Element_Count) is new
Ada.Streams.Root_Stream_Type with private;
overriding procedure Read
(Stream : in out Params_Stream_Type;
Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset);
overriding procedure Write
(Stream : in out Params_Stream_Type;
Item : Ada.Streams.Stream_Element_Array);
-- Synchronous call
procedure Do_RPC
(Partition : Partition_ID;
Params : access Params_Stream_Type;
Result : access Params_Stream_Type);
-- Asynchronous call
procedure Do_APC
(Partition : Partition_ID;
Params : access Params_Stream_Type);
-- The handler for incoming RPCs
type RPC_Receiver is
access procedure
(Params : access Params_Stream_Type;
Result : access Params_Stream_Type);
procedure Establish_RPC_Receiver (
Partition : Partition_ID;
Receiver : RPC_Receiver);
private
type Params_Stream_Type
(Initial_Size : Ada.Streams.Stream_Element_Count) is new
Ada.Streams.Root_Stream_Type with null record;
end System.RPC;
| 45.630435 | 78 | 0.50262 |
100e57017d179e993535204d8e5f35465b717abe | 12,439 | ads | Ada | arch/ARM/STM32/svd/stm32f46_79x/stm32_svd-hash.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 192 | 2016-06-01T18:32:04.000Z | 2022-03-26T22:52:31.000Z | arch/ARM/STM32/svd/stm32f46_79x/stm32_svd-hash.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 239 | 2016-05-26T20:02:01.000Z | 2022-03-31T09:46:56.000Z | arch/ARM/STM32/svd/stm32f46_79x/stm32_svd-hash.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 142 | 2016-06-05T08:12:20.000Z | 2022-03-24T17:37:17.000Z | -- This spec has been automatically generated from STM32F46_79x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.HASH is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype CR_DATATYPE_Field is HAL.UInt2;
subtype CR_NBW_Field is HAL.UInt4;
-- control register
type CR_Register is record
-- unspecified
Reserved_0_1 : HAL.UInt2 := 16#0#;
-- Write-only. Initialize message digest calculation
INIT : Boolean := False;
-- DMA enable
DMAE : Boolean := False;
-- Data type selection
DATATYPE : CR_DATATYPE_Field := 16#0#;
-- Mode selection
MODE : Boolean := False;
-- Algorithm selection
ALGO0 : Boolean := False;
-- Read-only. Number of words already pushed
NBW : CR_NBW_Field := 16#0#;
-- Read-only. DIN not empty
DINNE : Boolean := False;
-- Multiple DMA Transfers
MDMAT : Boolean := False;
-- unspecified
Reserved_14_15 : HAL.UInt2 := 16#0#;
-- Long key selection
LKEY : Boolean := False;
-- unspecified
Reserved_17_17 : HAL.Bit := 16#0#;
-- ALGO
ALGO1 : Boolean := False;
-- unspecified
Reserved_19_31 : HAL.UInt13 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
Reserved_0_1 at 0 range 0 .. 1;
INIT at 0 range 2 .. 2;
DMAE at 0 range 3 .. 3;
DATATYPE at 0 range 4 .. 5;
MODE at 0 range 6 .. 6;
ALGO0 at 0 range 7 .. 7;
NBW at 0 range 8 .. 11;
DINNE at 0 range 12 .. 12;
MDMAT at 0 range 13 .. 13;
Reserved_14_15 at 0 range 14 .. 15;
LKEY at 0 range 16 .. 16;
Reserved_17_17 at 0 range 17 .. 17;
ALGO1 at 0 range 18 .. 18;
Reserved_19_31 at 0 range 19 .. 31;
end record;
subtype STR_NBLW_Field is HAL.UInt5;
-- start register
type STR_Register is record
-- Number of valid bits in the last word of the message
NBLW : STR_NBLW_Field := 16#0#;
-- unspecified
Reserved_5_7 : HAL.UInt3 := 16#0#;
-- Write-only. Digest calculation
DCAL : Boolean := False;
-- unspecified
Reserved_9_31 : HAL.UInt23 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for STR_Register use record
NBLW at 0 range 0 .. 4;
Reserved_5_7 at 0 range 5 .. 7;
DCAL at 0 range 8 .. 8;
Reserved_9_31 at 0 range 9 .. 31;
end record;
-- interrupt enable register
type IMR_Register is record
-- Data input interrupt enable
DINIE : Boolean := False;
-- Digest calculation completion interrupt enable
DCIE : Boolean := False;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IMR_Register use record
DINIE at 0 range 0 .. 0;
DCIE at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
-- status register
type SR_Register is record
-- Data input interrupt status
DINIS : Boolean := True;
-- Digest calculation completion interrupt status
DCIS : Boolean := False;
-- Read-only. DMA Status
DMAS : Boolean := False;
-- Read-only. Busy bit
BUSY : Boolean := False;
-- unspecified
Reserved_4_31 : HAL.UInt28 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
DINIS at 0 range 0 .. 0;
DCIS at 0 range 1 .. 1;
DMAS at 0 range 2 .. 2;
BUSY at 0 range 3 .. 3;
Reserved_4_31 at 0 range 4 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Hash processor
type HASH_Peripheral is record
-- control register
CR : aliased CR_Register;
-- data input register
DIN : aliased HAL.UInt32;
-- start register
STR : aliased STR_Register;
-- digest registers
HR0 : aliased HAL.UInt32;
-- digest registers
HR1 : aliased HAL.UInt32;
-- digest registers
HR2 : aliased HAL.UInt32;
-- digest registers
HR3 : aliased HAL.UInt32;
-- digest registers
HR4 : aliased HAL.UInt32;
-- interrupt enable register
IMR : aliased IMR_Register;
-- status register
SR : aliased SR_Register;
-- context swap registers
CSR0 : aliased HAL.UInt32;
-- context swap registers
CSR1 : aliased HAL.UInt32;
-- context swap registers
CSR2 : aliased HAL.UInt32;
-- context swap registers
CSR3 : aliased HAL.UInt32;
-- context swap registers
CSR4 : aliased HAL.UInt32;
-- context swap registers
CSR5 : aliased HAL.UInt32;
-- context swap registers
CSR6 : aliased HAL.UInt32;
-- context swap registers
CSR7 : aliased HAL.UInt32;
-- context swap registers
CSR8 : aliased HAL.UInt32;
-- context swap registers
CSR9 : aliased HAL.UInt32;
-- context swap registers
CSR10 : aliased HAL.UInt32;
-- context swap registers
CSR11 : aliased HAL.UInt32;
-- context swap registers
CSR12 : aliased HAL.UInt32;
-- context swap registers
CSR13 : aliased HAL.UInt32;
-- context swap registers
CSR14 : aliased HAL.UInt32;
-- context swap registers
CSR15 : aliased HAL.UInt32;
-- context swap registers
CSR16 : aliased HAL.UInt32;
-- context swap registers
CSR17 : aliased HAL.UInt32;
-- context swap registers
CSR18 : aliased HAL.UInt32;
-- context swap registers
CSR19 : aliased HAL.UInt32;
-- context swap registers
CSR20 : aliased HAL.UInt32;
-- context swap registers
CSR21 : aliased HAL.UInt32;
-- context swap registers
CSR22 : aliased HAL.UInt32;
-- context swap registers
CSR23 : aliased HAL.UInt32;
-- context swap registers
CSR24 : aliased HAL.UInt32;
-- context swap registers
CSR25 : aliased HAL.UInt32;
-- context swap registers
CSR26 : aliased HAL.UInt32;
-- context swap registers
CSR27 : aliased HAL.UInt32;
-- context swap registers
CSR28 : aliased HAL.UInt32;
-- context swap registers
CSR29 : aliased HAL.UInt32;
-- context swap registers
CSR30 : aliased HAL.UInt32;
-- context swap registers
CSR31 : aliased HAL.UInt32;
-- context swap registers
CSR32 : aliased HAL.UInt32;
-- context swap registers
CSR33 : aliased HAL.UInt32;
-- context swap registers
CSR34 : aliased HAL.UInt32;
-- context swap registers
CSR35 : aliased HAL.UInt32;
-- context swap registers
CSR36 : aliased HAL.UInt32;
-- context swap registers
CSR37 : aliased HAL.UInt32;
-- context swap registers
CSR38 : aliased HAL.UInt32;
-- context swap registers
CSR39 : aliased HAL.UInt32;
-- context swap registers
CSR40 : aliased HAL.UInt32;
-- context swap registers
CSR41 : aliased HAL.UInt32;
-- context swap registers
CSR42 : aliased HAL.UInt32;
-- context swap registers
CSR43 : aliased HAL.UInt32;
-- context swap registers
CSR44 : aliased HAL.UInt32;
-- context swap registers
CSR45 : aliased HAL.UInt32;
-- context swap registers
CSR46 : aliased HAL.UInt32;
-- context swap registers
CSR47 : aliased HAL.UInt32;
-- context swap registers
CSR48 : aliased HAL.UInt32;
-- context swap registers
CSR49 : aliased HAL.UInt32;
-- context swap registers
CSR50 : aliased HAL.UInt32;
-- context swap registers
CSR51 : aliased HAL.UInt32;
-- context swap registers
CSR52 : aliased HAL.UInt32;
-- context swap registers
CSR53 : aliased HAL.UInt32;
-- HASH digest register
HASH_HR0 : aliased HAL.UInt32;
-- read-only
HASH_HR1 : aliased HAL.UInt32;
-- read-only
HASH_HR2 : aliased HAL.UInt32;
-- read-only
HASH_HR3 : aliased HAL.UInt32;
-- read-only
HASH_HR4 : aliased HAL.UInt32;
-- read-only
HASH_HR5 : aliased HAL.UInt32;
-- read-only
HASH_HR6 : aliased HAL.UInt32;
-- read-only
HASH_HR7 : aliased HAL.UInt32;
end record
with Volatile;
for HASH_Peripheral use record
CR at 16#0# range 0 .. 31;
DIN at 16#4# range 0 .. 31;
STR at 16#8# range 0 .. 31;
HR0 at 16#C# range 0 .. 31;
HR1 at 16#10# range 0 .. 31;
HR2 at 16#14# range 0 .. 31;
HR3 at 16#18# range 0 .. 31;
HR4 at 16#1C# range 0 .. 31;
IMR at 16#20# range 0 .. 31;
SR at 16#24# range 0 .. 31;
CSR0 at 16#F8# range 0 .. 31;
CSR1 at 16#FC# range 0 .. 31;
CSR2 at 16#100# range 0 .. 31;
CSR3 at 16#104# range 0 .. 31;
CSR4 at 16#108# range 0 .. 31;
CSR5 at 16#10C# range 0 .. 31;
CSR6 at 16#110# range 0 .. 31;
CSR7 at 16#114# range 0 .. 31;
CSR8 at 16#118# range 0 .. 31;
CSR9 at 16#11C# range 0 .. 31;
CSR10 at 16#120# range 0 .. 31;
CSR11 at 16#124# range 0 .. 31;
CSR12 at 16#128# range 0 .. 31;
CSR13 at 16#12C# range 0 .. 31;
CSR14 at 16#130# range 0 .. 31;
CSR15 at 16#134# range 0 .. 31;
CSR16 at 16#138# range 0 .. 31;
CSR17 at 16#13C# range 0 .. 31;
CSR18 at 16#140# range 0 .. 31;
CSR19 at 16#144# range 0 .. 31;
CSR20 at 16#148# range 0 .. 31;
CSR21 at 16#14C# range 0 .. 31;
CSR22 at 16#150# range 0 .. 31;
CSR23 at 16#154# range 0 .. 31;
CSR24 at 16#158# range 0 .. 31;
CSR25 at 16#15C# range 0 .. 31;
CSR26 at 16#160# range 0 .. 31;
CSR27 at 16#164# range 0 .. 31;
CSR28 at 16#168# range 0 .. 31;
CSR29 at 16#16C# range 0 .. 31;
CSR30 at 16#170# range 0 .. 31;
CSR31 at 16#174# range 0 .. 31;
CSR32 at 16#178# range 0 .. 31;
CSR33 at 16#17C# range 0 .. 31;
CSR34 at 16#180# range 0 .. 31;
CSR35 at 16#184# range 0 .. 31;
CSR36 at 16#188# range 0 .. 31;
CSR37 at 16#18C# range 0 .. 31;
CSR38 at 16#190# range 0 .. 31;
CSR39 at 16#194# range 0 .. 31;
CSR40 at 16#198# range 0 .. 31;
CSR41 at 16#19C# range 0 .. 31;
CSR42 at 16#1A0# range 0 .. 31;
CSR43 at 16#1A4# range 0 .. 31;
CSR44 at 16#1A8# range 0 .. 31;
CSR45 at 16#1AC# range 0 .. 31;
CSR46 at 16#1B0# range 0 .. 31;
CSR47 at 16#1B4# range 0 .. 31;
CSR48 at 16#1B8# range 0 .. 31;
CSR49 at 16#1BC# range 0 .. 31;
CSR50 at 16#1C0# range 0 .. 31;
CSR51 at 16#1C4# range 0 .. 31;
CSR52 at 16#1C8# range 0 .. 31;
CSR53 at 16#1CC# range 0 .. 31;
HASH_HR0 at 16#310# range 0 .. 31;
HASH_HR1 at 16#314# range 0 .. 31;
HASH_HR2 at 16#318# range 0 .. 31;
HASH_HR3 at 16#31C# range 0 .. 31;
HASH_HR4 at 16#320# range 0 .. 31;
HASH_HR5 at 16#324# range 0 .. 31;
HASH_HR6 at 16#328# range 0 .. 31;
HASH_HR7 at 16#32C# range 0 .. 31;
end record;
-- Hash processor
HASH_Periph : aliased HASH_Peripheral
with Import, Address => System'To_Address (16#50060400#);
end STM32_SVD.HASH;
| 33.710027 | 68 | 0.545944 |
205612b8e8c95a7e82fd226a99450dc1975c6f90 | 8,225 | ads | Ada | arch/ARM/STM32/svd/stm32l4x1/stm32_svd-swpmi.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 2 | 2018-05-16T03:56:39.000Z | 2019-07-31T13:53:56.000Z | arch/ARM/STM32/svd/stm32l4x1/stm32_svd-swpmi.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | arch/ARM/STM32/svd/stm32l4x1/stm32_svd-swpmi.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | -- This spec has been automatically generated from STM32L4x1.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.SWPMI is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- SWPMI Configuration/Control register
type CR_Register is record
-- Reception DMA enable
RXDMA : Boolean := False;
-- Transmission DMA enable
TXDMA : Boolean := False;
-- Reception buffering mode
RXMODE : Boolean := False;
-- Transmission buffering mode
TXMODE : Boolean := False;
-- Loopback mode enable
LPBK : Boolean := False;
-- Single wire protocol master interface enable
SWPME : Boolean := False;
-- unspecified
Reserved_6_9 : HAL.UInt4 := 16#0#;
-- Single wire protocol master interface deactivate
DEACT : Boolean := False;
-- unspecified
Reserved_11_31 : HAL.UInt21 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
RXDMA at 0 range 0 .. 0;
TXDMA at 0 range 1 .. 1;
RXMODE at 0 range 2 .. 2;
TXMODE at 0 range 3 .. 3;
LPBK at 0 range 4 .. 4;
SWPME at 0 range 5 .. 5;
Reserved_6_9 at 0 range 6 .. 9;
DEACT at 0 range 10 .. 10;
Reserved_11_31 at 0 range 11 .. 31;
end record;
subtype BRR_BR_Field is HAL.UInt6;
-- SWPMI Bitrate register
type BRR_Register is record
-- Bitrate prescaler
BR : BRR_BR_Field := 16#1#;
-- unspecified
Reserved_6_31 : HAL.UInt26 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BRR_Register use record
BR at 0 range 0 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
-- SWPMI Interrupt and Status register
type ISR_Register is record
-- Read-only. Receive buffer full flag
RXBFF : Boolean;
-- Read-only. Transmit buffer empty flag
TXBEF : Boolean;
-- Read-only. Receive CRC error flag
RXBERF : Boolean;
-- Read-only. Receive overrun error flag
RXOVRF : Boolean;
-- Read-only. Transmit underrun error flag
TXUNRF : Boolean;
-- Read-only. Receive data register not empty
RXNE : Boolean;
-- Read-only. Transmit data register empty
TXE : Boolean;
-- Read-only. Transfer complete flag
TCF : Boolean;
-- Read-only. Slave resume flag
SRF : Boolean;
-- Read-only. SUSPEND flag
SUSP : Boolean;
-- Read-only. DEACTIVATED flag
DEACTF : Boolean;
-- unspecified
Reserved_11_31 : HAL.UInt21;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ISR_Register use record
RXBFF at 0 range 0 .. 0;
TXBEF at 0 range 1 .. 1;
RXBERF at 0 range 2 .. 2;
RXOVRF at 0 range 3 .. 3;
TXUNRF at 0 range 4 .. 4;
RXNE at 0 range 5 .. 5;
TXE at 0 range 6 .. 6;
TCF at 0 range 7 .. 7;
SRF at 0 range 8 .. 8;
SUSP at 0 range 9 .. 9;
DEACTF at 0 range 10 .. 10;
Reserved_11_31 at 0 range 11 .. 31;
end record;
-- SWPMI Interrupt Flag Clear register
type ICR_Register is record
-- Write-only. Clear receive buffer full flag
CRXBFF : Boolean := False;
-- Write-only. Clear transmit buffer empty flag
CTXBEF : Boolean := False;
-- Write-only. Clear receive CRC error flag
CRXBERF : Boolean := False;
-- Write-only. Clear receive overrun error flag
CRXOVRF : Boolean := False;
-- Write-only. Clear transmit underrun error flag
CTXUNRF : Boolean := False;
-- unspecified
Reserved_5_6 : HAL.UInt2 := 16#0#;
-- Write-only. Clear transfer complete flag
CTCF : Boolean := False;
-- Write-only. Clear slave resume flag
CSRF : Boolean := False;
-- unspecified
Reserved_9_31 : HAL.UInt23 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ICR_Register use record
CRXBFF at 0 range 0 .. 0;
CTXBEF at 0 range 1 .. 1;
CRXBERF at 0 range 2 .. 2;
CRXOVRF at 0 range 3 .. 3;
CTXUNRF at 0 range 4 .. 4;
Reserved_5_6 at 0 range 5 .. 6;
CTCF at 0 range 7 .. 7;
CSRF at 0 range 8 .. 8;
Reserved_9_31 at 0 range 9 .. 31;
end record;
-- SWPMI Interrupt Enable register
type IER_Register is record
-- Receive buffer full interrupt enable
RXBFIE : Boolean := False;
-- Transmit buffer empty interrupt enable
TXBEIE : Boolean := False;
-- Receive CRC error interrupt enable
RXBERIE : Boolean := False;
-- Receive overrun error interrupt enable
RXOVRIE : Boolean := False;
-- Transmit underrun error interrupt enable
TXUNRIE : Boolean := False;
-- Receive interrupt enable
RIE : Boolean := False;
-- Transmit interrupt enable
TIE : Boolean := False;
-- Transmit complete interrupt enable
TCIE : Boolean := False;
-- Slave resume interrupt enable
SRIE : Boolean := False;
-- unspecified
Reserved_9_31 : HAL.UInt23 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IER_Register use record
RXBFIE at 0 range 0 .. 0;
TXBEIE at 0 range 1 .. 1;
RXBERIE at 0 range 2 .. 2;
RXOVRIE at 0 range 3 .. 3;
TXUNRIE at 0 range 4 .. 4;
RIE at 0 range 5 .. 5;
TIE at 0 range 6 .. 6;
TCIE at 0 range 7 .. 7;
SRIE at 0 range 8 .. 8;
Reserved_9_31 at 0 range 9 .. 31;
end record;
subtype RFL_RFL_Field is HAL.UInt5;
-- SWPMI Receive Frame Length register
type RFL_Register is record
-- Read-only. Receive frame length
RFL : RFL_RFL_Field;
-- unspecified
Reserved_5_31 : HAL.UInt27;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for RFL_Register use record
RFL at 0 range 0 .. 4;
Reserved_5_31 at 0 range 5 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Single Wire Protocol Master Interface
type SWPMI1_Peripheral is record
-- SWPMI Configuration/Control register
CR : aliased CR_Register;
-- SWPMI Bitrate register
BRR : aliased BRR_Register;
-- SWPMI Interrupt and Status register
ISR : aliased ISR_Register;
-- SWPMI Interrupt Flag Clear register
ICR : aliased ICR_Register;
-- SWPMI Interrupt Enable register
IER : aliased IER_Register;
-- SWPMI Receive Frame Length register
RFL : aliased RFL_Register;
-- SWPMI Transmit data register
TDR : aliased HAL.UInt32;
-- SWPMI Receive data register
RDR : aliased HAL.UInt32;
end record
with Volatile;
for SWPMI1_Peripheral use record
CR at 16#0# range 0 .. 31;
BRR at 16#4# range 0 .. 31;
ISR at 16#C# range 0 .. 31;
ICR at 16#10# range 0 .. 31;
IER at 16#14# range 0 .. 31;
RFL at 16#18# range 0 .. 31;
TDR at 16#1C# range 0 .. 31;
RDR at 16#20# range 0 .. 31;
end record;
-- Single Wire Protocol Master Interface
SWPMI1_Periph : aliased SWPMI1_Peripheral
with Import, Address => System'To_Address (16#40008800#);
end STM32_SVD.SWPMI;
| 33.165323 | 65 | 0.558419 |
dfe7eb40f48ca0c217fddbf3510f2bcfb5ccc075 | 857 | ads | Ada | src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/access_tagged_param/pck.ads | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 31 | 2018-08-01T21:25:24.000Z | 2022-02-14T07:52:34.000Z | src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/access_tagged_param/pck.ads | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 40 | 2018-12-03T19:48:52.000Z | 2021-03-10T06:34:26.000Z | src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/access_tagged_param/pck.ads | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 20 | 2018-11-16T21:19:22.000Z | 2021-10-18T23:08:24.000Z | -- Copyright 2017-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 Pck is
type Top_T is tagged record
N : Integer := 1;
end record;
procedure Inspect (Obj: access Top_T'Class);
end Pck;
| 38.954545 | 73 | 0.725788 |
d0ea54d8678363b71156a41ebdbb76e594df5178 | 4,232 | ads | Ada | source/league/league-translator.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/league/league-translator.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/league/league-translator.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2010-2011, 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 League.Strings;
package League.Translator is
function Translate
(Compilation_Unit : League.Strings.Universal_String;
Source_Text : League.Strings.Universal_String;
Disambiguation : League.Strings.Universal_String
:= League.Strings.Empty_Universal_String)
return League.Strings.Universal_String;
-- Translates message.
-- function Translate
-- (Package_Name : League.Strings.Universal_String;
-- Source_Text : League.Strings.Universal_String;
-- Disambiguation : League.Strings.Universal_String;
-- Number : Integer)
-- return League.Strings.Universal_String;
-- -- Translates message make in sence plural form.
procedure Initialize (File : League.Strings.Universal_String);
-- Loads translations from the specified file.
procedure Finalize;
-- Release resources.
end League.Translator;
| 59.605634 | 78 | 0.465974 |
0edd26b76310710c7608a9895144f453be93ad9c | 1,032 | adb | Ada | examples/fpu.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 33 | 2015-04-04T09:19:36.000Z | 2021-11-10T05:33:34.000Z | examples/fpu.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 8 | 2017-11-14T13:05:07.000Z | 2018-08-09T15:28:49.000Z | examples/fpu.adb | ytomino/drake | 4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2 | [
"MIT"
] | 9 | 2015-02-03T17:09:53.000Z | 2021-11-12T01:16:05.000Z | with Ada.Formatting;
with Interfaces;
with System.Machine_Code;
procedure fpu is
use type Interfaces.Unsigned_16;
CW : aliased Interfaces.Unsigned_16 := 0;
begin
System.Machine_Code.Asm ("fstcw (%0)",
Inputs => System.Address'Asm_Input ("r", CW'Address),
Volatile => True);
declare
function Image is
new Ada.Formatting.Modular_Image (
Interfaces.Unsigned_16,
Form => Ada.Formatting.Simple,
Signs => Ada.Formatting.Triming_Unsign_Marks,
Base => 16,
Digits_Width => 4);
begin
Ada.Debug.Put (Image (CW));
end;
-- 0 : IM (Invalid-op Mask), 1 as masking exceptions
-- 1 : DM (Denormal Mask)
-- 2 : ZM (Zero-divide Mask)
-- 3 : OM (Overflow Mask)
-- 4 : UM (Underflow Mask)
-- 5 : PM (Precision Mask)
-- 6 .. 7 : ??
-- 8 .. 9 : PC (Precision Control), expected to 2#11# as extended
-- 10 .. 11 : RC (Rounding Control), 0 as rounding
-- 12 : X (Infinity Control), no effect
-- 13 .. 15 : ??
if (CW and 16#0300#) = 16#0300# then
Ada.Debug.Put ("ok, extended precision");
end if;
end fpu;
| 27.891892 | 66 | 0.651163 |
df1d1360711f111e7ad9ed20e4320cb73fff9b04 | 5,849 | ads | Ada | source/amf/uml/amf-uml-link_end_creation_datas.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/uml/amf-uml-link_end_creation_datas.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/uml/amf-uml-link_end_creation_datas.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- 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 link end creation data is not an action. It is an element that
-- identifies links. It identifies one end of a link to be created by a
-- create link action.
------------------------------------------------------------------------------
limited with AMF.UML.Input_Pins;
with AMF.UML.Link_End_Datas;
package AMF.UML.Link_End_Creation_Datas is
pragma Preelaborate;
type UML_Link_End_Creation_Data is limited interface
and AMF.UML.Link_End_Datas.UML_Link_End_Data;
type UML_Link_End_Creation_Data_Access is
access all UML_Link_End_Creation_Data'Class;
for UML_Link_End_Creation_Data_Access'Storage_Size use 0;
not overriding function Get_Insert_At
(Self : not null access constant UML_Link_End_Creation_Data)
return AMF.UML.Input_Pins.UML_Input_Pin_Access is abstract;
-- Getter of LinkEndCreationData::insertAt.
--
-- Specifies where the new link should be inserted for ordered association
-- ends, or where an existing link should be moved to. The type of the
-- input is UnlimitedNatural, but the input cannot be zero. This pin is
-- omitted for association ends that are not ordered.
not overriding procedure Set_Insert_At
(Self : not null access UML_Link_End_Creation_Data;
To : AMF.UML.Input_Pins.UML_Input_Pin_Access) is abstract;
-- Setter of LinkEndCreationData::insertAt.
--
-- Specifies where the new link should be inserted for ordered association
-- ends, or where an existing link should be moved to. The type of the
-- input is UnlimitedNatural, but the input cannot be zero. This pin is
-- omitted for association ends that are not ordered.
not overriding function Get_Is_Replace_All
(Self : not null access constant UML_Link_End_Creation_Data)
return Boolean is abstract;
-- Getter of LinkEndCreationData::isReplaceAll.
--
-- Specifies whether the existing links emanating from the object on this
-- end should be destroyed before creating a new link.
not overriding procedure Set_Is_Replace_All
(Self : not null access UML_Link_End_Creation_Data;
To : Boolean) is abstract;
-- Setter of LinkEndCreationData::isReplaceAll.
--
-- Specifies whether the existing links emanating from the object on this
-- end should be destroyed before creating a new link.
end AMF.UML.Link_End_Creation_Datas;
| 57.910891 | 79 | 0.522482 |
df2304400dcfa3b224ecb30381f7269fd15e65d2 | 4,219 | ads | Ada | source/nodes/program-nodes-unknown_discriminant_parts.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/nodes/program-nodes-unknown_discriminant_parts.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/nodes/program-nodes-unknown_discriminant_parts.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | 2 | 2019-09-14T23:18:50.000Z | 2019-10-02T10:11:40.000Z | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Lexical_Elements;
with Program.Elements.Unknown_Discriminant_Parts;
with Program.Element_Visitors;
package Program.Nodes.Unknown_Discriminant_Parts is
pragma Preelaborate;
type Unknown_Discriminant_Part is
new Program.Nodes.Node
and Program.Elements.Unknown_Discriminant_Parts
.Unknown_Discriminant_Part
and Program.Elements.Unknown_Discriminant_Parts
.Unknown_Discriminant_Part_Text
with private;
function Create
(Left_Bracket_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Box_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Right_Bracket_Token : not null Program.Lexical_Elements
.Lexical_Element_Access)
return Unknown_Discriminant_Part;
type Implicit_Unknown_Discriminant_Part is
new Program.Nodes.Node
and Program.Elements.Unknown_Discriminant_Parts
.Unknown_Discriminant_Part
with private;
function Create
(Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False)
return Implicit_Unknown_Discriminant_Part
with Pre =>
Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance;
private
type Base_Unknown_Discriminant_Part is
abstract new Program.Nodes.Node
and Program.Elements.Unknown_Discriminant_Parts
.Unknown_Discriminant_Part
with null record;
procedure Initialize
(Self : aliased in out Base_Unknown_Discriminant_Part'Class);
overriding procedure Visit
(Self : not null access Base_Unknown_Discriminant_Part;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class);
overriding function Is_Unknown_Discriminant_Part_Element
(Self : Base_Unknown_Discriminant_Part)
return Boolean;
overriding function Is_Definition_Element
(Self : Base_Unknown_Discriminant_Part)
return Boolean;
type Unknown_Discriminant_Part is
new Base_Unknown_Discriminant_Part
and Program.Elements.Unknown_Discriminant_Parts
.Unknown_Discriminant_Part_Text
with record
Left_Bracket_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Box_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
Right_Bracket_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
end record;
overriding function To_Unknown_Discriminant_Part_Text
(Self : aliased in out Unknown_Discriminant_Part)
return Program.Elements.Unknown_Discriminant_Parts
.Unknown_Discriminant_Part_Text_Access;
overriding function Left_Bracket_Token
(Self : Unknown_Discriminant_Part)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Box_Token
(Self : Unknown_Discriminant_Part)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Right_Bracket_Token
(Self : Unknown_Discriminant_Part)
return not null Program.Lexical_Elements.Lexical_Element_Access;
type Implicit_Unknown_Discriminant_Part is
new Base_Unknown_Discriminant_Part
with record
Is_Part_Of_Implicit : Boolean;
Is_Part_Of_Inherited : Boolean;
Is_Part_Of_Instance : Boolean;
end record;
overriding function To_Unknown_Discriminant_Part_Text
(Self : aliased in out Implicit_Unknown_Discriminant_Part)
return Program.Elements.Unknown_Discriminant_Parts
.Unknown_Discriminant_Part_Text_Access;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Unknown_Discriminant_Part)
return Boolean;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Unknown_Discriminant_Part)
return Boolean;
overriding function Is_Part_Of_Instance
(Self : Implicit_Unknown_Discriminant_Part)
return Boolean;
end Program.Nodes.Unknown_Discriminant_Parts;
| 34.024194 | 74 | 0.747096 |
df3cf4de2428a81505ea4d4d1b89c79132826546 | 4,264 | ads | Ada | arch/ARM/STM32/svd/stm32l4x5/stm32_svd-aes.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 2 | 2018-05-16T03:56:39.000Z | 2019-07-31T13:53:56.000Z | arch/ARM/STM32/svd/stm32l4x5/stm32_svd-aes.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | arch/ARM/STM32/svd/stm32l4x5/stm32_svd-aes.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | -- This spec has been automatically generated from STM32L4x5.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.AES is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype CR_DATATYPE_Field is HAL.UInt2;
subtype CR_MODE_Field is HAL.UInt2;
subtype CR_CHMOD_Field is HAL.UInt2;
-- control register
type CR_Register is record
-- AES enable
EN : Boolean := False;
-- Data type selection (for data in and data out to/from the
-- cryptographic block)
DATATYPE : CR_DATATYPE_Field := 16#0#;
-- AES operating mode
MODE : CR_MODE_Field := 16#0#;
-- AES chaining mode
CHMOD : CR_CHMOD_Field := 16#0#;
-- Computation Complete Flag Clear
CCFC : Boolean := False;
-- Error clear
ERRC : Boolean := False;
-- CCF flag interrupt enable
CCFIE : Boolean := False;
-- Error interrupt enable
ERRIE : Boolean := False;
-- Enable DMA management of data input phase
DMAINEN : Boolean := False;
-- Enable DMA management of data output phase
DMAOUTEN : Boolean := False;
-- unspecified
Reserved_13_31 : HAL.UInt19 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
EN at 0 range 0 .. 0;
DATATYPE at 0 range 1 .. 2;
MODE at 0 range 3 .. 4;
CHMOD at 0 range 5 .. 6;
CCFC at 0 range 7 .. 7;
ERRC at 0 range 8 .. 8;
CCFIE at 0 range 9 .. 9;
ERRIE at 0 range 10 .. 10;
DMAINEN at 0 range 11 .. 11;
DMAOUTEN at 0 range 12 .. 12;
Reserved_13_31 at 0 range 13 .. 31;
end record;
-- status register
type SR_Register is record
-- Read-only. Computation complete flag
CCF : Boolean;
-- Read-only. Read error flag
RDERR : Boolean;
-- Read-only. Write error flag
WRERR : Boolean;
-- unspecified
Reserved_3_31 : HAL.UInt29;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
CCF at 0 range 0 .. 0;
RDERR at 0 range 1 .. 1;
WRERR at 0 range 2 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Advanced encryption standard hardware accelerator
type AES_Peripheral is record
-- control register
CR : aliased CR_Register;
-- status register
SR : aliased SR_Register;
-- data input register
DINR : aliased HAL.UInt32;
-- data output register
DOUTR : aliased HAL.UInt32;
-- key register 0
KEYR0 : aliased HAL.UInt32;
-- key register 1
KEYR1 : aliased HAL.UInt32;
-- key register 2
KEYR2 : aliased HAL.UInt32;
-- key register 3
KEYR3 : aliased HAL.UInt32;
-- initialization vector register 0
IVR0 : aliased HAL.UInt32;
-- initialization vector register 1
IVR1 : aliased HAL.UInt32;
-- initialization vector register 2
IVR2 : aliased HAL.UInt32;
-- initialization vector register 3
IVR3 : aliased HAL.UInt32;
end record
with Volatile;
for AES_Peripheral use record
CR at 16#0# range 0 .. 31;
SR at 16#4# range 0 .. 31;
DINR at 16#8# range 0 .. 31;
DOUTR at 16#C# range 0 .. 31;
KEYR0 at 16#10# range 0 .. 31;
KEYR1 at 16#14# range 0 .. 31;
KEYR2 at 16#18# range 0 .. 31;
KEYR3 at 16#1C# range 0 .. 31;
IVR0 at 16#20# range 0 .. 31;
IVR1 at 16#24# range 0 .. 31;
IVR2 at 16#28# range 0 .. 31;
IVR3 at 16#2C# range 0 .. 31;
end record;
-- Advanced encryption standard hardware accelerator
AES_Periph : aliased AES_Peripheral
with Import, Address => System'To_Address (16#50060000#);
end STM32_SVD.AES;
| 30.898551 | 67 | 0.560976 |
230c162e51f3c60700025ca7072cd6f0841cd955 | 7,267 | adb | Ada | 3-mid/impact/source/3d/collision/dispatch/impact-d3-collision-algorithm-activating-box_box.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 3-mid/impact/source/3d/collision/dispatch/impact-d3-collision-algorithm-activating-box_box.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 3-mid/impact/source/3d/collision/dispatch/impact-d3-collision-algorithm-activating-box_box.adb | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | -- with btboxShape;
with impact.d3.collision.Detector.discrete;
with impact.d3.collision.Detector.discrete.box_box;
with impact.d3.Shape.convex.internal.polyhedral.box;
package body impact.d3.collision.Algorithm.activating.box_box
is
USE_PERSISTENT_CONTACTS : constant Boolean := True;
--- Forge
--
package body Forge
is
function to_box_box_Algorithm (mf : access impact.d3.Manifold.Item;
ci : in AlgorithmConstructionInfo;
col0, col1 : access impact.d3.Object.item'Class) return Item
is
use impact.d3.collision.Algorithm.activating;
Self : Item; -- := (to_activating_Algorithm (ci, col0, col1) with others => <>);
begin
Self.define (ci, col0, col1);
if mf = null then
Self.m_manifoldPtr := Self.get_m_dispatcher.getNewManifold (col0, col1);
Self.m_ownManifold := True;
else
Self.m_manifoldPtr := mf;
Self.m_ownManifold := False;
end if;
return Self;
end to_box_box_Algorithm;
function to_box_box_Algorithm (ci : in AlgorithmConstructionInfo) return Item
is
use impact.d3.collision.Algorithm.activating;
Self : Item; -- := (to_activating_Algorithm (ci) with others => <>);
begin
Self.define (ci);
return Self;
end to_box_box_Algorithm;
end Forge;
overriding procedure destruct (Self : in out Item)
is
begin
if Self.m_ownManifold then
if Self.m_manifoldPtr /= null then
Self.get_m_dispatcher.releaseManifold (Self.m_manifoldPtr);
end if;
end if;
end destruct;
--- Attributes
--
overriding procedure processCollision (Self : in out Item; col0, col1 : access impact.d3.Object.item'Class;
dispatchInfo : in impact.d3.Dispatcher.DispatcherInfo;
resultOut : out impact.d3.collision.manifold_Result.item)
is
pragma Unreferenced (dispatchInfo);
use impact.d3.Shape.convex.internal.polyhedral,
impact.d3.collision.Detector.discrete.box_box, math.Vectors;
-- type BoxShape_view is access all impact.d3.Shape.convex.internal.polyhedral.box.Item'Class;
box0 : constant impact.d3.Shape.convex.internal.polyhedral.box.view := Box.view (col0.getCollisionShape);
box1 : constant impact.d3.Shape.convex.internal.polyhedral.box.view := Box.view (col1.getCollisionShape);
input : impact.d3.collision.Detector.discrete.ClosestPointInput;
detector : impact.d3.collision.Detector.discrete.box_box.item;
begin
if Self.m_manifoldPtr = null then
return;
end if;
-- Report a contact. internally this will be kept persistent, and contact reduction is done.
--
resultOut.setPersistentManifold (Self.m_manifoldPtr);
if not USE_PERSISTENT_CONTACTS then
Self.m_manifoldPtr.clearManifold;
end if;
input.m_maximumDistanceSquared := math.Real'Last;
input.m_transformA := col0.getWorldTransform.all;
input.m_transformB := col1.getWorldTransform.all;
detector := to_box_box_Detector (box0, box1);
detector.getClosestPoints (input, resultOut);
if USE_PERSISTENT_CONTACTS then -- refreshContactPoints is only necessary when using persistent contact points. otherwise all points are newly added
if Self.m_ownManifold then
resultOut.refreshContactPoints;
end if;
end if;
end processCollision;
overriding function calculateTimeOfImpact (Self : in Item; body0, body1 : access impact.d3.Object.item'Class;
dispatchInfo : in impact.d3.Dispatcher.DispatcherInfo;
resultOut : access impact.d3.collision.manifold_Result.item) return math.Real
is
pragma Unreferenced (Self, body0, body1, dispatchInfo, resultOut);
begin
return 1.0;
end calculateTimeOfImpact;
overriding procedure getAllContactManifolds (Self : in out Item; manifoldArray : out impact.d3.collision.Algorithm.btManifoldArray)
is
use impact.d3.collision.Algorithm;
begin
if Self.m_manifoldPtr /= null
and then Self.m_ownManifold
then
manifoldArray.append (Manifold_view (Self.m_manifoldPtr));
end if;
end getAllContactManifolds;
--- Create Functions
--
overriding function CreateCollisionAlgorithm (Self : in CreateFunc; info : in AlgorithmConstructionInfo;
body0, body1 : access impact.d3.Object.item'Class) return impact.d3.Dispatcher.Algorithm_view
is
pragma Unreferenced (Self);
new_Algorithm : constant impact.d3.collision.Algorithm.activating.box_box.view
:= new impact.d3.collision.Algorithm.activating.box_box.Item'(Forge.to_box_box_Algorithm (null, info, body0, body1));
begin
return dispatcher.Algorithm_view (new_Algorithm);
end CreateCollisionAlgorithm;
-- return new impact.d3.collision.Algorithm.activating.box_box.Item'Class' (to_box_box_Algorithm (null, info, body0, body1));
end impact.d3.collision.Algorithm.activating.box_box;
--
-- void impact.d3.collision.Algorithm.activating.box_box::processCollision (impact.d3.Object* body0,impact.d3.Object* body1,const impact.d3.DispatcherInfo& dispatchInfo,impact.d3.collision.manifold_Result* resultOut)
-- {
-- if (!m_manifoldPtr)
-- return;
--
-- impact.d3.Object* col0 = body0;
-- impact.d3.Object* col1 = body1;
-- impact.d3.Shape.convex.internal.polyhedral.box* box0 = (impact.d3.Shape.convex.internal.polyhedral.box*)col0->getCollisionShape();
-- impact.d3.Shape.convex.internal.polyhedral.box* box1 = (impact.d3.Shape.convex.internal.polyhedral.box*)col1->getCollisionShape();
--
--
--
-- /// report a contact. internally this will be kept persistent, and contact reduction is done
-- resultOut->setPersistentManifold(m_manifoldPtr);
-- #ifndef USE_PERSISTENT_CONTACTS
-- m_manifoldPtr->clearManifold();
-- #endif //USE_PERSISTENT_CONTACTS
--
-- impact.d3.collision.Detector.discrete::ClosestPointInput input;
-- input.m_maximumDistanceSquared = BT_LARGE_FLOAT;
-- input.m_transformA = body0->getWorldTransform();
-- input.m_transformB = body1->getWorldTransform();
--
-- impact.d3.collision.Detector.discrete.box_box detector(box0,box1);
-- detector.getClosestPoints(input,*resultOut,dispatchInfo.m_debugDraw);
--
-- #ifdef USE_PERSISTENT_CONTACTS
-- // refreshContactPoints is only necessary when using persistent contact points. otherwise all points are newly added
-- if (m_ownManifold)
-- {
-- resultOut->refreshContactPoints();
-- }
-- #endif //USE_PERSISTENT_CONTACTS
--
-- }
| 32.297778 | 217 | 0.641668 |
1872201ac9a6146cccd238e074eb46e5df030d3a | 87,862 | adb | Ada | apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b/conv2d_b2b/hls_target/.autopilot/db/call_Loop_LB2D_shift_1.bind.adb | dillonhuff/Halide-HLS | e9f4c3ac7915e5a52f211ce65004ae17890515a0 | [
"MIT"
] | 1 | 2020-06-18T16:51:39.000Z | 2020-06-18T16:51:39.000Z | apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b/conv2d_b2b/hls_target/.autopilot/db/call_Loop_LB2D_shift_1.bind.adb | dillonhuff/Halide-HLS | e9f4c3ac7915e5a52f211ce65004ae17890515a0 | [
"MIT"
] | null | null | null | apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b/conv2d_b2b/hls_target/.autopilot/db/call_Loop_LB2D_shift_1.bind.adb | dillonhuff/Halide-HLS | e9f4c3ac7915e5a52f211ce65004ae17890515a0 | [
"MIT"
] | 1 | 2020-03-18T00:43:22.000Z | 2020-03-18T00:43:22.000Z | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="14">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>call_Loop_LB2D_shift_1</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>slice_stream_V_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in_stream.V.value.V</originalName>
<rtlName></rtlName>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>out_stream_V_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_stream.V.value.V</originalName>
<rtlName></rtlName>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>128</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>26</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>3</id>
<name>buffer_0_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buffer[0].value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>n1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>n1</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>54</item>
<item>55</item>
<item>57</item>
<item>58</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>tmp_6</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second class_id="12" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="13" tracking_level="0" version="0">
<first class_id="14" tracking_level="0" version="0">
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>59</item>
<item>61</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>n1_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>n1</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>62</item>
<item>64</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>65</item>
<item>66</item>
<item>67</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>i_0_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>tmp_8</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>73</item>
<item>75</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>i</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>76</item>
<item>77</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>78</item>
<item>79</item>
<item>80</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>tmp_value_V_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>40</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>86</item>
<item>87</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>tmp_9</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>42</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>88</item>
<item>89</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>42</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>90</item>
<item>91</item>
<item>92</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>buffer_0_value_V_lo</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>tmp</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>tmp_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>p_Result_11_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>97</item>
<item>98</item>
<item>100</item>
<item>102</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>p_Result_11_1_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>103</item>
<item>104</item>
<item>105</item>
<item>106</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>tmp_value_V</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>128</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>108</item>
<item>109</item>
<item>110</item>
<item>111</item>
<item>112</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>52</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>114</item>
<item>115</item>
<item>116</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>53</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>40</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>82</item>
<item>83</item>
<item>231</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1918, 2, 1, 1, 1, 2, int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_29">
<Value>
<Obj>
<type>2</type>
<id>51</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_30">
<Value>
<Obj>
<type>2</type>
<id>56</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_31">
<Value>
<Obj>
<type>2</type>
<id>60</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1077</content>
</item>
<item class_id_reference="16" object_id="_32">
<Value>
<Obj>
<type>2</type>
<id>63</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_33">
<Value>
<Obj>
<type>2</type>
<id>74</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1918</content>
</item>
<item class_id_reference="16" object_id="_34">
<Value>
<Obj>
<type>2</type>
<id>99</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>32</content>
</item>
<item class_id_reference="16" object_id="_35">
<Value>
<Obj>
<type>2</type>
<id>101</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_36">
<Obj>
<type>3</type>
<id>9</id>
<name>newFuncRoot</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>3</item>
<item>8</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_37">
<Obj>
<type>3</type>
<id>15</id>
<name>.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>10</item>
<item>11</item>
<item>13</item>
<item>14</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_38">
<Obj>
<type>3</type>
<id>19</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_39">
<Obj>
<type>3</type>
<id>25</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>20</item>
<item>21</item>
<item>23</item>
<item>24</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_40">
<Obj>
<type>3</type>
<id>32</id>
<name>.critedge.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>29</item>
<item>30</item>
<item>31</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_41">
<Obj>
<type>3</type>
<id>41</id>
<name>.preheader.i.i.preheader.0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>33</item>
<item>34</item>
<item>35</item>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_42">
<Obj>
<type>3</type>
<id>45</id>
<name>._crit_edge.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>43</item>
<item>44</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_43">
<Obj>
<type>3</type>
<id>48</id>
<name>linebuffer_1D<1918ul, 2ul, 1ul, 1ul, 1ul, 2ul, int>.exit</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_44">
<Obj>
<type>3</type>
<id>50</id>
<name>.exitStub</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>63</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_45">
<id>52</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>3</sink_obj>
</item>
<item class_id_reference="20" object_id="_46">
<id>53</id>
<edge_type>2</edge_type>
<source_obj>15</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_47">
<id>54</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_48">
<id>55</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_49">
<id>57</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_50">
<id>58</id>
<edge_type>2</edge_type>
<source_obj>9</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_51">
<id>59</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_52">
<id>61</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_53">
<id>62</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_54">
<id>64</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_55">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_56">
<id>66</id>
<edge_type>2</edge_type>
<source_obj>19</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_57">
<id>67</id>
<edge_type>2</edge_type>
<source_obj>50</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_58">
<id>68</id>
<edge_type>2</edge_type>
<source_obj>15</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_59">
<id>69</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_60">
<id>70</id>
<edge_type>2</edge_type>
<source_obj>19</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_61">
<id>71</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_62">
<id>72</id>
<edge_type>2</edge_type>
<source_obj>45</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_63">
<id>73</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_64">
<id>75</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_65">
<id>76</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_66">
<id>77</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_67">
<id>78</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_68">
<id>79</id>
<edge_type>2</edge_type>
<source_obj>32</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_69">
<id>80</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_70">
<id>81</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_71">
<id>82</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_72">
<id>83</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_73">
<id>84</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_74">
<id>87</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_75">
<id>88</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_76">
<id>89</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_77">
<id>90</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_78">
<id>91</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_79">
<id>92</id>
<edge_type>2</edge_type>
<source_obj>45</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_80">
<id>93</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_81">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_82">
<id>95</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_83">
<id>98</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_84">
<id>100</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_85">
<id>102</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_86">
<id>104</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_87">
<id>105</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_88">
<id>106</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_89">
<id>109</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_90">
<id>110</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_91">
<id>111</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_92">
<id>112</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_93">
<id>115</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_94">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_95">
<id>117</id>
<edge_type>2</edge_type>
<source_obj>45</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_96">
<id>220</id>
<edge_type>2</edge_type>
<source_obj>9</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_97">
<id>221</id>
<edge_type>2</edge_type>
<source_obj>15</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_98">
<id>222</id>
<edge_type>2</edge_type>
<source_obj>15</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_99">
<id>223</id>
<edge_type>2</edge_type>
<source_obj>19</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_100">
<id>224</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_101">
<id>225</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_102">
<id>226</id>
<edge_type>2</edge_type>
<source_obj>32</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_103">
<id>227</id>
<edge_type>2</edge_type>
<source_obj>32</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_104">
<id>228</id>
<edge_type>2</edge_type>
<source_obj>41</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_105">
<id>229</id>
<edge_type>2</edge_type>
<source_obj>45</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_106">
<id>230</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_107">
<id>231</id>
<edge_type>4</edge_type>
<source_obj>33</source_obj>
<sink_obj>43</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_108">
<mId>1</mId>
<mTag>call_Loop_LB2D_shift.1</mTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>7</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>2068918</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_109">
<mId>2</mId>
<mTag>Entry</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_110">
<mId>3</mId>
<mTag>LB2D_shift</mTag>
<mType>1</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>4</item>
<item>5</item>
<item>6</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>1077</mMinTripCount>
<mMaxTripCount>1077</mMaxTripCount>
<mMinLatency>2068917</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_111">
<mId>4</mId>
<mTag>Region 1</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>15</item>
<item>19</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_112">
<mId>5</mId>
<mTag>LB1D_shiftreg</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>4</count>
<item_version>0</item_version>
<item>25</item>
<item>32</item>
<item>41</item>
<item>45</item>
</basic_blocks>
<mII>1</mII>
<mDepth>2</mDepth>
<mMinTripCount>1918</mMinTripCount>
<mMaxTripCount>1918</mMaxTripCount>
<mMinLatency>1918</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_113">
<mId>6</mId>
<mTag>Region 2</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_114">
<mId>7</mId>
<mTag>Return</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_115">
<states class_id="25" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_116">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_117">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_118">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_119">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_120">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_121">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_122">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_123">
<id>2</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_124">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_125">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_126">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_127">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_128">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_129">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_130">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_131">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_132">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_133">
<id>3</id>
<operations>
<count>7</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_134">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_135">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_136">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_137">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_138">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_139">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_140">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_141">
<id>4</id>
<operations>
<count>15</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_142">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_143">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_144">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_145">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_146">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_147">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_148">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_149">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_150">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_151">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_152">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_153">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_154">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_155">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_156">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_157">
<id>5</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_158">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_159">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_160">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>30</id>
<sop class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_161">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>32</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item class_id="34" tracking_level="0" version="0">
<first class_id="35" tracking_level="0" version="0">
<first>11</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_162">
<inState>5</inState>
<outState>2</outState>
<condition>
<id>40</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_163">
<inState>4</inState>
<outState>3</outState>
<condition>
<id>42</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_164">
<inState>3</inState>
<outState>5</outState>
<condition>
<id>41</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>21</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_165">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>43</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>21</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="-1"></res>
<node_label_latency class_id="37" tracking_level="0" version="0">
<count>26</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>3</first>
<second class_id="39" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>8</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="40" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="41" tracking_level="0" version="0">
<first>9</first>
<second class_id="42" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>2</first>
<second>3</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="43" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="1" version="0" object_id="_166">
<region_name>LB1D_shiftreg</region_name>
<basic_blocks>
<count>4</count>
<item_version>0</item_version>
<item>25</item>
<item>32</item>
<item>41</item>
<item>45</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>2</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="45" tracking_level="0" version="0">
<count>17</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>62</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>66</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>72</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>83</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>94</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>101</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>107</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>113</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>119</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>125</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>131</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>134</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>175</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="48" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>buffer_0_value_V_fu_62</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>i_0_i_i_phi_fu_94</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>i_fu_119</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>n1_1_fu_107</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>n1_phi_fu_83</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>p_Result_11_1_1_fu_152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>p_Result_11_1_fu_142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>tmp_2_fu_138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>tmp_6_fu_101</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>tmp_8_fu_113</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>tmp_9_fu_125</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>tmp_fu_134</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>tmp_value_V_fu_162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>4</count>
<item_version>0</item_version>
<item>
<first>StgValue_38_write_fu_72</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>StgValue_41_store_fu_175</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>buffer_0_value_V_lo_load_fu_131</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>tmp_value_V_1_read_fu_66</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="50" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>8</count>
<item_version>0</item_version>
<item>
<first>79</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>90</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>195</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>199</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>204</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>8</count>
<item_version>0</item_version>
<item>
<first>buffer_0_value_V_reg_180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>3</item>
</second>
</item>
<item>
<first>i_0_i_i_reg_90</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>i_reg_199</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>n1_1_reg_190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>n1_reg_79</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>tmp_6_reg_186</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>tmp_8_reg_195</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>tmp_9_reg_204</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>79</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>90</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>i_0_i_i_reg_90</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>n1_reg_79</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="51" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>out_stream_V_value_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
</second>
</item>
<item>
<first>slice_stream_V_value_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="53" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="54" tracking_level="0" version="0">
<first>1</first>
<second>FIFO_SRL</second>
</item>
<item>
<first>2</first>
<second>FIFO_SRL</second>
</item>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 26.298114 | 139 | 0.588434 |
dfe3ddd02145c0eb91d4ebee92032bff6c516f87 | 3,745 | adb | Ada | source/xml/sax/xml-sax-locators-internals.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/xml/sax/xml-sax-locators-internals.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/xml/sax/xml-sax-locators-internals.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- XML Processor --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
package body XML.SAX.Locators.Internals is
------------
-- Create --
------------
function Create
(Shared : Matreshka.Internals.SAX_Locators.Shared_Locator_Access)
return SAX_Locator is
begin
Matreshka.Internals.SAX_Locators.Reference (Shared);
return SAX_Locator'(Ada.Finalization.Controlled with Data => Shared);
end Create;
end XML.SAX.Locators.Internals;
| 61.393443 | 78 | 0.416555 |
dc6c73289f8d2f4fa2a14bb1703c8974ebe3992d | 894 | adb | Ada | Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/var_arr_typedef/pack.adb | samyvic/OS-Project | 1622bc1641876584964effd91d65ef02e92728e1 | [
"Apache-2.0"
] | null | null | null | Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/var_arr_typedef/pack.adb | samyvic/OS-Project | 1622bc1641876584964effd91d65ef02e92728e1 | [
"Apache-2.0"
] | null | null | null | Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/var_arr_typedef/pack.adb | samyvic/OS-Project | 1622bc1641876584964effd91d65ef02e92728e1 | [
"Apache-2.0"
] | null | null | null | -- Copyright 2015-2017 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package body Pack is
function Identity (I : Integer) return Integer is
begin
return I;
end Identity;
procedure Do_Nothing (A : Array_Type) is null;
end Pack;
| 34.384615 | 73 | 0.727069 |
0e7832cac90082967249df19d505d14d5b0da784 | 469 | ads | Ada | firmware/coreboot/3rdparty/libgfxinit/common/g45/hw-gfx-gma-gmch.ads | fabiojna02/OpenCellular | 45b6a202d6b2e2485c89955b9a6da920c4d56ddb | [
"CC-BY-4.0",
"BSD-3-Clause"
] | 1 | 2019-11-04T07:11:25.000Z | 2019-11-04T07:11:25.000Z | firmware/coreboot/3rdparty/libgfxinit/common/g45/hw-gfx-gma-gmch.ads | aimin-wang/OpenCellular | 5308146bf7edf43cc81c0e4d15305b711117070a | [
"CC-BY-4.0",
"BSD-3-Clause"
] | 13 | 2018-10-12T21:29:09.000Z | 2018-10-25T20:06:51.000Z | firmware/coreboot/3rdparty/libgfxinit/common/g45/hw-gfx-gma-gmch.ads | aimin-wang/OpenCellular | 5308146bf7edf43cc81c0e4d15305b711117070a | [
"CC-BY-4.0",
"BSD-3-Clause"
] | null | null | null | with HW.GFX.GMA.Config;
private package HW.GFX.GMA.GMCH is
GMCH_PORT_PIPE_SELECT_SHIFT : constant := 30;
GMCH_PORT_PIPE_SELECT_MASK : constant := 1 * 2 ** 30;
type GMCH_PORT_PIPE_SELECT_Array is array (Pipe_Index) of Word32;
GMCH_PORT_PIPE_SELECT : constant GMCH_PORT_PIPE_SELECT_Array :=
(Primary => 0 * 2 ** GMCH_PORT_PIPE_SELECT_SHIFT,
Secondary => 1 * 2 ** GMCH_PORT_PIPE_SELECT_SHIFT,
Tertiary => 0);
end HW.GFX.GMA.GMCH;
| 33.5 | 72 | 0.705757 |
18cd6157513eafab5d2f97f1933874979000e12c | 4,438 | adb | Ada | source/libgela/gela-classificators-utf_16.adb | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | 4 | 2016-02-05T15:51:56.000Z | 2022-03-25T20:38:32.000Z | source/libgela/gela-classificators-utf_16.adb | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | source/libgela/gela-classificators-utf_16.adb | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- G E L A A S I S --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- - - - - - - - - - - - - - - - --
-- Read copyright and license at the end of this file --
------------------------------------------------------------------------------
-- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $
with Gela.Classificators.Cache;
package body Gela.Classificators.UTF_16 is
package Cache is new Classificators.Cache (To_Character_Class);
----------------
-- Initialize --
----------------
procedure Initialize is
begin
Cache.Initialize;
end Initialize;
----------
-- Read --
----------
procedure Read
(Object : in out Classificator;
Input : in out Source_Buffers.Cursor;
Buffer : in out Character_Class_Buffers.Character_Class_Buffer)
is
use Gela.Source_Buffers;
use Gela.Character_Class_Buffers;
Full : Boolean;
Code : Code_Unit;
Item : Code_Point;
Item_2 : Code_Point;
Class : Character_Class;
Skip : Boolean;
begin
loop
Code := Element (Input);
Item := Code_Unit'Pos (Code);
Next (Input);
Code := Element (Input);
Item := Item + 256 * Code_Unit'Pos (Code);
if Item = 0 then
Class := Cache.Get_Character_Class (Item);
Put (Buffer, Class, Full);
Put (Buffer, Class, Full);
exit;
elsif Item in 16#D800# .. 16#DBFF# then
Next (Input);
Code := Element (Input);
Item_2 := Code_Unit'Pos (Code);
Next (Input);
Code := Element (Input);
Item_2 := Item_2 + 256 * Code_Unit'Pos (Code);
Item := (Item - 16#D800#) * 2 ** 10 + (Item_2 - 16#DC00#);
Skip := True;
else
Skip := False;
end if;
Class := Cache.Get_Character_Class (Item);
Put (Buffer, Class, Full);
Next (Input);
Put (Buffer, Skip_Code, Full);
if Skip then
Put (Buffer, Skip_Code, Full);
Put (Buffer, Skip_Code, Full);
end if;
if Full then
Put (Buffer, End_Of_Buffer, Full);
return;
end if;
end loop;
end Read;
end Gela.Classificators.UTF_16;
------------------------------------------------------------------------------
-- Copyright (c) 2009, Maxim Reznik
-- 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 Maxim Reznik, 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 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.
--
------------------------------------------------------------------------------
| 36.983333 | 79 | 0.543037 |
0e3b300ecd62a91080d15942b0e03028ca70ea74 | 13,738 | ads | Ada | demo/imago/src/imago-ilu.ads | 98devin/ada-wfc | 003d93d467a27d72318232aeca5b2feb4d518e07 | [
"MIT"
] | 9 | 2020-09-04T18:35:15.000Z | 2021-08-27T23:54:30.000Z | demo/imago/src/imago-ilu.ads | 98devin/ada-wfc | 003d93d467a27d72318232aeca5b2feb4d518e07 | [
"MIT"
] | 4 | 2016-03-26T18:35:22.000Z | 2016-05-10T20:48:53.000Z | demo/imago/src/imago-ilu.ads | 98devin/ada-wfc | 003d93d467a27d72318232aeca5b2feb4d518e07 | [
"MIT"
] | 1 | 2016-05-07T11:42:17.000Z | 2016-05-07T11:42:17.000Z | ------------------------------------------------------------------------------
-- EMAIL: <[email protected]> --
-- License: ISC --
-- --
-- Copyright © 2015 - 2016 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. --
------------------------------------------------------------------------------
with Imago.IL;
use Imago;
package Imago.ILU is
--------------------------------------------------------------------------
---------------
-- T Y P E S --
---------------
--------------------------------------------------------------------------
-- NOTE: Really, this one should be replaced with type whose definition
-- is much more Ada-like.
type Info is
record
ID : IL.UInt; -- the image's ID
Data : IL.Pointer; -- the image's data
Width : IL.UInt; -- the image's width
Height : IL.UInt; -- the image's height
Depth : IL.UInt; -- the image's depth
Bpp : IL.UByte; -- bytes per pixel (not bits) of the image
Size_Of_Data: IL.UInt; -- the total size of the data (in bytes)
Format : IL.Enum; -- image format (in IL.Enum style)
Of_Type : IL.Enum; -- image type (in IL.Enum style)
Origin : IL.Enum; -- origin of the image
Palette : IL.Pointer; -- the image's palette
Palette_Type: IL.Enum; -- palette size
Palette_Size: IL.UInt; -- palette type
Cube_Flags : IL.Enum; -- flags for what cube map sides are present
Num_Next : IL.UInt; -- number of images following
Num_Mips : IL.UInt; -- number of mipmaps
Num_Layers : IL.UInt; -- number of layers
end record
with Convention => C;
type Point_F is
record
X: Float;
Y: Float;
end record
with Convention => C;
type Point_I is
record
X: IL.Int;
Y: IL.Int;
end record
with Convention => C;
--------------------------------------------------------------------------
-----------------------
-- C O N S T A N T S --
-----------------------
--------------------------------------------------------------------------
ILU_VERSION_1_7_8 : constant IL.Enum := 1;
ILU_VERSION : constant IL.Enum := 178;
ILU_FILTER : constant IL.Enum := 16#2600#;
ILU_NEAREST : constant IL.Enum := 16#2601#;
ILU_LINEAR : constant IL.Enum := 16#2602#;
ILU_BILINEAR : constant IL.Enum := 16#2603#;
ILU_SCALE_BOX : constant IL.Enum := 16#2604#;
ILU_SCALE_TRIANGLE : constant IL.Enum := 16#2605#;
ILU_SCALE_BELL : constant IL.Enum := 16#2606#;
ILU_SCALE_BSPLINE : constant IL.Enum := 16#2607#;
ILU_SCALE_LANCZOS3 : constant IL.Enum := 16#2608#;
ILU_SCALE_MITCHELL : constant IL.Enum := 16#2609#;
-- Error types.
ILU_INVALID_ENUM : constant IL.Enum := 16#0501#;
ILU_OUT_OF_MEMORY : constant IL.Enum := 16#0502#;
ILU_INTERNAL_ERROR : constant IL.Enum := 16#0504#;
ILU_INVALID_VALUE : constant IL.Enum := 16#0505#;
ILU_ILLEGAL_OPERATION : constant IL.Enum := 16#0506#;
ILU_INVALID_PARAM : constant IL.Enum := 16#0509#;
-- Values.
ILU_PLACEMENT : constant IL.Enum := 16#0700#;
ILU_LOWER_LEFT : constant IL.Enum := 16#0701#;
ILU_LOWER_RIGHT : constant IL.Enum := 16#0702#;
ILU_UPPER_LEFT : constant IL.Enum := 16#0703#;
ILU_UPPER_RIGHT : constant IL.Enum := 16#0704#;
ILU_CENTER : constant IL.Enum := 16#0705#;
ILU_CONVOLUTION_MATRIX : constant IL.Enum := 16#0710#;
ILU_VERSION_NUM : constant IL.Enum := IL.IL_VERSION_NUM;
ILU_VENDOR : constant IL.Enum := IL.IL_VENDOR;
-- Languages.
ILU_ENGLISH : constant IL.Enum := 16#0800#;
ILU_ARABIC : constant IL.Enum := 16#0801#;
ILU_DUTCH : constant IL.Enum := 16#0802#;
ILU_JAPANESE : constant IL.Enum := 16#0803#;
ILU_SPANISH : constant IL.Enum := 16#0804#;
ILU_GERMAN : constant IL.Enum := 16#0805#;
ILU_FRENCH : constant IL.Enum := 16#0806#;
--------------------------------------------------------------------------
---------------------------
-- S U B P R O G R A M S --
---------------------------
--------------------------------------------------------------------------
function Alienify return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluAlienify";
function Blur_Avg (Iter: in IL.UInt) return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluBlurAvg";
function Blur_Gaussian (Iter: in IL.UInt) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluBlurGaussian";
function Build_Mipmaps return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluBuildMipmaps";
function Colors_Used return IL.UInt
with Import => True, Convention => StdCall,
External_Name => "iluColoursUsed";
function Colours_Used return IL.UInt
with Import => True, Convention => StdCall,
External_Name => "iluColoursUsed";
function Compare_Image (Comp: in IL.UInt) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluCompareImage";
function Contrast (Contrats: in Float) return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluContrast";
function Crop
( XOff: in IL.UInt; YOff: in IL.UInt; ZOff: in IL.UInt;
Width: in IL.UInt; Height: in IL.UInt; Depth: in IL.UInt
) return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluCrop";
procedure Delete_Image (ID: in IL.UInt)
with Import => True, Convention => StdCall,
External_Name => "iluDeleteImage";
function Edge_Detect_E return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluEdgeDetectE";
function Edge_Detect_P return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluEdgeDetectP";
function Edge_Detect_S return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluEdgeDetectS";
function Emboss return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluEmboss";
function Enlarge_Canvas
( Width: in IL.UInt; Height: in IL.UInt; Depth: in IL.UInt
) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluEnlargeCanvas";
function Enlarge_Image
( XDim: in Float; YDim: in Float; ZDim: in Float
) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluEnlargeImage";
function Error_String (String_Name: in IL.Enum) return String
with Inline => True;
function Equalize return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluEqualize";
function Convolution
( Matrix: in IL.Pointer; Scale: in IL.Int; Bias: in IL.Int
) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluConvolution";
function Flip_Image return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluFlipImage";
function Gamma_Correct (Gamma: in Float) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluGammaCorrect";
function Gen_Image return IL.UInt
with Import => True, Convention => StdCall, External_Name => "iluGenImage";
procedure Get_Image_Info (Item: out Info)
with Import => True, Convention => StdCall,
External_Name => "iluGetImageInfo";
function Get_Integer (Mode: in IL.Enum) return IL.Int
with Import => True, Convention => StdCall,
External_Name => "iluGetInteger";
procedure Get_Integer (Mode: in IL.Enum; Param: in IL.Pointer)
with Import => True, Convention => StdCall,
External_Name => "iluGetIntegerv";
function Get_String (String_Name: in IL.Enum) return String
with Inline => True;
procedure Image_Parameter (P_Name: in IL.Enum; Param: in IL.Enum)
with Import => True, Convention => StdCall,
External_Name => "iluImageParameter";
procedure Init
with Import => True, Convention => StdCall, External_Name => "iluInit";
function Invert_Alpha return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluInvertAlpha";
function Load_Image (File_Name: in String) return IL.UInt
with Inline => True;
function Mirror return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluMirror";
function Negative return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluNegative";
function Noisify (Tolerance: in IL.ClampF) return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluNoisify";
function Pixelize (Pix_Size: in IL.UInt) return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluPixelize";
procedure Region_F (Points: in IL.Pointer; N: in IL.UInt)
with Import => True, Convention => StdCall, External_Name => "iluRegionfv";
procedure Region_I (Points: in IL.Pointer; N: in IL.UInt)
with Import => True, Convention => StdCall, External_Name => "iluRegioniv";
function Replace_Color
( Red: in IL.UByte; Green: in IL.UByte;
Blue: in IL.UByte; Tolerance: in Float
) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluReplaceColour";
function Replace_Colour
( Red: in IL.UByte; Green: in IL.UByte;
Blue: in IL.UByte; Tolerance: in Float
) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluReplaceColour";
function Rotate (Angle: in Float) return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluRotate";
function Rotate
( X: in Float; Y: in Float; Z: in Float; Angle: in Float
) return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluRotate3D";
function Saturate (Saturation: in Float) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluSaturate1f";
function Saturate
( R: in Float; G: in Float; B: in Float; Saturation: in Float
) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluSaturate4f";
function Scale
( Width: in IL.UInt; Height: in IL.UInt; Depth: in IL.UInt
) return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluScale";
function Scale_Alpha (Scale: in Float) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluScaleAlpha";
function Scale_Colors (R: in Float; G: in Float; B: in Float) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluScaleColours";
function Scale_Colours (R: in Float; G: in Float; B: in Float) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluScaleColours";
function Set_Language (Language: in IL.Enum) return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluSetLanguage";
function Sharpen (Factor: in Float; Iter: in IL.UInt) return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluSharpen";
function Swap_Colors return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluSwapColours";
function Swap_Colours return IL.Bool
with Import => True, Convention => StdCall,
External_Name => "iluSwapColours";
function Wave (Angle: in Float) return IL.Bool
with Import => True, Convention => StdCall, External_Name => "iluWave";
--------------------------------------------------------------------------
end Imago.ILU;
| 41.131737 | 80 | 0.561654 |
df22c17620c429d6a82cd67ece039fb48435f915 | 7,116 | adb | Ada | arch/RISC-V/SiFive/drivers/fe310-uart.adb | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 192 | 2016-06-01T18:32:04.000Z | 2022-03-26T22:52:31.000Z | arch/RISC-V/SiFive/drivers/fe310-uart.adb | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 239 | 2016-05-26T20:02:01.000Z | 2022-03-31T09:46:56.000Z | arch/RISC-V/SiFive/drivers/fe310-uart.adb | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 142 | 2016-06-05T08:12:20.000Z | 2022-03-24T17:37:17.000Z | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2017, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with FE310_SVD.UART; use FE310_SVD.UART;
----------------
-- FE310.UART --
----------------
package body FE310.UART is
-------------------
-- Set_Stop_Bits --
-------------------
procedure Set_Stop_Bits (This : in out UART_Port; To : Stop_Bits) is
begin
This.Periph.TXCTRL.NSTOP := (case To is
when Stopbits_1 => False,
when Stopbits_2 => True);
end Set_Stop_Bits;
-------------------
-- Set_Baud_Rate --
-------------------
procedure Set_Baud_Rate (This : in out UART_Port; To : Baud_Rates) is
begin
This.Periph.DIV.DIV := UInt16 (CPU_Frequency / (To - 1));
end Set_Baud_Rate;
---------------
-- Enable_RX --
---------------
procedure Enable_RX (This : in out UART_Port) is
begin
This.Periph.RXCTRL.ENABLE := True;
end Enable_RX;
---------------
-- Enable_TX --
---------------
procedure Enable_TX (This : in out UART_Port) is
begin
This.Periph.TXCTRL.ENABLE := True;
end Enable_TX;
----------------
-- Disable_RX --
----------------
procedure Disable_RX (This : in out UART_Port) is
begin
This.Periph.RXCTRL.ENABLE := False;
end Disable_RX;
----------------
-- Disable_TX --
----------------
procedure Disable_TX (This : in out UART_Port) is
begin
This.Periph.TXCTRL.ENABLE := False;
end Disable_TX;
--------------------------
-- RX_Interrupt_Pending --
--------------------------
function RX_Interrupt_Pending (This : UART_Port) return Boolean
is (This.Periph.IP.RXWM);
--------------------------
-- TX_Interrupt_Pending --
--------------------------
function TX_Interrupt_Pending (This : UART_Port) return Boolean
is (This.Periph.IP.TXWM);
-------------------------
-- Enable_RX_Interrupt --
-------------------------
procedure Enable_RX_Interrupt (This : in out UART_Port) is
begin
This.Periph.IE.RXWM := True;
end Enable_RX_Interrupt;
-------------------------
-- Enable_TX_Interrupt --
-------------------------
procedure Enable_TX_Interrupt (This : in out UART_Port) is
begin
This.Periph.IE.TXWM := True;
end Enable_TX_Interrupt;
--------------------------
-- Disable_RX_Interrupt --
--------------------------
procedure Disable_RX_Interrupt (This : in out UART_Port) is
begin
This.Periph.IE.RXWM := False;
end Disable_RX_Interrupt;
--------------------------
-- Disable_TX_Interrupt --
--------------------------
procedure Disable_TX_Interrupt (This : in out UART_Port) is
begin
This.Periph.IE.TXWM := False;
end Disable_TX_Interrupt;
------------------------------
-- Set_Interrupt_Thresholds --
------------------------------
procedure Set_Interrupt_Thresholds (This : in out UART_Port;
RX, TX : UInt3)
is
begin
This.Periph.TXCTRL.TXCNT := TX;
This.Periph.RXCTRL.RXCNT := RX;
end Set_Interrupt_Thresholds;
--------------
-- Transmit --
--------------
overriding
procedure Transmit
(This : in out UART_Port;
Data : UART_Data_8b;
Status : out UART_Status;
Timeout : Natural := 1000)
is
pragma Unreferenced (Timeout);
begin
for Elt of Data loop
while This.Periph.TXDATA.FULL loop
null;
end loop;
This.Periph.TXDATA.DATA := Elt;
end loop;
Status := Ok;
end Transmit;
--------------
-- Transmit --
--------------
overriding
procedure Transmit
(This : in out UART_Port;
Data : UART_Data_9b;
Status : out UART_Status;
Timeout : Natural := 1000)
is
begin
raise Program_Error with "FE310 UART only support 8bit mode";
end Transmit;
-------------
-- Receive --
-------------
overriding
procedure Receive
(This : in out UART_Port;
Data : out UART_Data_8b;
Status : out UART_Status;
Timeout : Natural := 1000)
is
pragma Unreferenced (Timeout);
Data_Reg : RXDATA_Register;
begin
for Elt of Data loop
loop
Data_Reg := This.Periph.RXDATA;
exit when not Data_Reg.EMPTY;
end loop;
Elt := Data_Reg.DATA;
end loop;
Status := Ok;
end Receive;
-------------
-- Receive --
-------------
overriding
procedure Receive
(This : in out UART_Port;
Data : out UART_Data_9b;
Status : out UART_Status;
Timeout : Natural := 1000)
is
begin
raise Program_Error with "FE310 UART only support 8bit mode";
end Receive;
end FE310.UART;
| 30.025316 | 78 | 0.505621 |
23ba79023468db0415b1e34ff754ff8bce8c3660 | 173 | adb | Ada | src/ant_handler.adb | Ingen-ear/Formica | db7846b235f895e980796a1858e0408c666e97a2 | [
"MIT"
] | null | null | null | src/ant_handler.adb | Ingen-ear/Formica | db7846b235f895e980796a1858e0408c666e97a2 | [
"MIT"
] | null | null | null | src/ant_handler.adb | Ingen-ear/Formica | db7846b235f895e980796a1858e0408c666e97a2 | [
"MIT"
] | null | null | null | package body Ant_Handler with SPARK_Mode => On
is
function Do_Something (Text : String) return String
is begin
return Text;
end Do_Something;
end Ant_Handler;
| 17.3 | 53 | 0.739884 |
20af5831a4ff51326fbc80cac07b42bb423eeb56 | 828 | ads | Ada | tests/tk-toplevel-toplevel_options_test_data.ads | thindil/tashy2 | 43fcbadb33c0062b2c8d6138a8238441dec5fd80 | [
"Apache-2.0"
] | 2 | 2020-12-09T07:27:07.000Z | 2021-10-19T13:31:54.000Z | tests/tk-toplevel-toplevel_options_test_data.ads | thindil/tashy2 | 43fcbadb33c0062b2c8d6138a8238441dec5fd80 | [
"Apache-2.0"
] | null | null | null | tests/tk-toplevel-toplevel_options_test_data.ads | thindil/tashy2 | 43fcbadb33c0062b2c8d6138a8238441dec5fd80 | [
"Apache-2.0"
] | null | null | null | -- This package is intended to set up and tear down the test environment.
-- Once created by GNATtest, this package will never be overwritten
-- automatically. Contents of this package can be modified in any way
-- except for sections surrounded by a 'read only' marker.
with Tk.Widget.Widget_Options_Test_Data.Widget_Options_Tests;
with GNATtest_Generated;
package Tk.TopLevel.TopLevel_Options_Test_Data is
-- begin read only
type Test_TopLevel_Options is new GNATtest_Generated.GNATtest_Standard.Tk
.Widget
.Widget_Options_Test_Data
.Widget_Options_Tests
.Test_Widget_Options
-- end read only
with
null record;
procedure Set_Up(Gnattest_T: in out Test_TopLevel_Options);
procedure Tear_Down(Gnattest_T: in out Test_TopLevel_Options);
end Tk.TopLevel.TopLevel_Options_Test_Data;
| 31.846154 | 76 | 0.786232 |
10c0ec07bd39a9cad97bf8d265e405ea4bce5b6a | 28,484 | adb | Ada | arch/ARM/STM32/driversL5/stm32-spi.adb | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 2 | 2018-05-16T03:56:39.000Z | 2019-07-31T13:53:56.000Z | arch/ARM/STM32/driversL5/stm32-spi.adb | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | arch/ARM/STM32/driversL5/stm32-spi.adb | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of STMicroelectronics nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
-- --
-- This file is based on: --
-- --
-- @file stm32f4xx_hal_spi.c --
-- @author MCD Application Team --
-- @version V1.1.0 --
-- @date 19-June-2014 --
-- @brief SPI HAL module driver. --
-- --
-- COPYRIGHT(c) 2014 STMicroelectronics --
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
with System;
with STM32_SVD.SPI; use STM32_SVD.SPI;
package body STM32.SPI is
use type HAL.SPI.SPI_Data_Size;
Baud_Rate_Value : constant array (SPI_Baud_Rate_Prescaler) of UInt3 :=
(BRP_2 => 2#000#,
BRP_4 => 2#001#,
BRP_8 => 2#010#,
BRP_16 => 2#011#,
BRP_32 => 2#100#,
BRP_64 => 2#101#,
BRP_128 => 2#110#,
BRP_256 => 2#111#);
type Half_Word_Pointer is access all UInt16
with Storage_Size => 0;
function As_Half_Word_Pointer is new Ada.Unchecked_Conversion
(Source => System.Address, Target => Half_Word_Pointer);
-- So that we can treat the address of a UInt8 as a pointer to a two-UInt8
-- sequence representing a Half_Word quantity
---------------
-- Configure --
---------------
procedure Configure (This : in out SPI_Port; Conf : SPI_Configuration) is
begin
case Conf.Mode is
when Master =>
This.Periph.CR1.MSTR := True;
This.Periph.CR1.SSI := True;
when Slave =>
This.Periph.CR1.MSTR := False;
This.Periph.CR1.SSI := False;
end case;
case Conf.Direction is
when D2Lines_FullDuplex =>
This.Periph.CR1.BIDIMODE := False;
This.Periph.CR1.BIDIOE := False;
This.Periph.CR1.RXONLY := False;
when D2Lines_RxOnly =>
This.Periph.CR1.BIDIMODE := False;
This.Periph.CR1.BIDIOE := False;
This.Periph.CR1.RXONLY := True;
when D1Line_Rx =>
This.Periph.CR1.BIDIMODE := True;
This.Periph.CR1.BIDIOE := False;
This.Periph.CR1.RXONLY := False;
when D1Line_Tx =>
This.Periph.CR1.BIDIMODE := True;
This.Periph.CR1.BIDIOE := True;
This.Periph.CR1.RXONLY := False;
end case;
This.Periph.CR1.DFF := Conf.Data_Size = HAL.SPI.Data_Size_16b;
This.Periph.CR1.CPOL := Conf.Clock_Polarity = High;
This.Periph.CR1.CPHA := Conf.Clock_Phase = P2Edge;
This.Periph.CR1.SSM := Conf.Slave_Management = Software_Managed;
This.Periph.CR1.BR := Baud_Rate_Value (Conf.Baud_Rate_Prescaler);
This.Periph.CR1.LSBFIRST := Conf.First_Bit = LSB;
This.Periph.CR2.TXDMAEN := Conf.Transmit_DMA;
This.Periph.CR2.TXEIE := Conf.Transmit_DMA;
This.Periph.CR2.RXDMAEN := Conf.Receive_DMA;
This.Periph.CR2.RXNEIE := Conf.Receive_DMA;
This.Periph.CR2.FRXTH := Conf.Fifo_Level;
-- Activate the SPI mode (Reset I2SMOD bit in I2SCFGR register)
-- This.Periph.I2SCFGR.I2SMOD := False;
This.Periph.CRCPR.CRCPOLY := Conf.CRC_Poly;
end Configure;
------------
-- Enable --
------------
procedure Enable (This : in out SPI_Port) is
begin
This.Periph.CR1.SPE := True;
end Enable;
-------------
-- Disable --
-------------
procedure Disable (This : in out SPI_Port) is
begin
This.Periph.CR1.SPE := False;
end Disable;
-------------
-- Enabled --
-------------
function Enabled (This : SPI_Port) return Boolean is
begin
return This.Periph.CR1.SPE;
end Enabled;
----------
-- Send --
----------
procedure Send (This : in out SPI_Port; Data : UInt16) is
begin
This.Periph.DR.DR := Data;
end Send;
----------
-- Data --
----------
function Data (This : SPI_Port) return UInt16 is
begin
return This.Periph.DR.DR;
end Data;
----------
-- Send --
----------
procedure Send (This : in out SPI_Port; Data : UInt8)
is
Data_8bit : UInt8 with Volatile, Address => This.Periph.DR'Address;
begin
Data_8bit := Data;
end Send;
----------
-- Data --
----------
function Data (This : SPI_Port) return UInt8 is
begin
return UInt8 (UInt16'(Data (This)));
end Data;
-------------
-- Is_Busy --
-------------
function Is_Busy (This : SPI_Port) return Boolean is
begin
return (Rx_Is_Empty (This)
and then not Tx_Is_Empty (This))
or else Busy (This);
end Is_Busy;
-----------------
-- Tx_Is_Empty --
-----------------
function Tx_Is_Empty (This : SPI_Port) return Boolean is
begin
return This.Periph.SR.TXE;
end Tx_Is_Empty;
-----------------
-- Rx_Is_Empty --
-----------------
function Rx_Is_Empty (This : SPI_Port) return Boolean is
begin
return not This.Periph.SR.RXNE;
end Rx_Is_Empty;
----------
-- Busy --
----------
function Busy (This : SPI_Port) return Boolean is
begin
return This.Periph.SR.BSY;
end Busy;
------------------
-- Current_Mode --
------------------
function Current_Mode (This : SPI_Port) return SPI_Mode is
begin
if This.Periph.CR1.MSTR and This.Periph.CR1.SSI then
return Master;
else
return Slave;
end if;
end Current_Mode;
----------------------------
-- Current_Data_Direction --
----------------------------
function Current_Data_Direction (This : SPI_Port) return SPI_Data_Direction
is
begin
if not This.Periph.CR1.BIDIMODE then
if not This.Periph.CR1.RXONLY then
return D2Lines_FullDuplex;
else
return D2Lines_RxOnly;
end if;
else
if not This.Periph.CR1.BIDIOE then
return D1Line_Rx;
else
return D1Line_Tx;
end if;
end if;
end Current_Data_Direction;
-----------------
-- CRC_Enabled --
-----------------
function CRC_Enabled (This : SPI_Port) return Boolean is
(This.Periph.CR1.CRCEN);
----------------------------
-- Channel_Side_Indicated --
----------------------------
-- function Channel_Side_Indicated (This : SPI_Port) return Boolean is
-- (This.Periph.SR.CHSIDE);
------------------------
-- Underrun_Indicated --
------------------------
-- function Underrun_Indicated (This : SPI_Port) return Boolean is
-- (This.Periph.SR.UDR);
-------------------------
-- CRC_Error_Indicated --
-------------------------
function CRC_Error_Indicated (This : SPI_Port) return Boolean is
(This.Periph.SR.CRCERR);
--------------------------
-- Mode_Fault_Indicated --
--------------------------
function Mode_Fault_Indicated (This : SPI_Port) return Boolean is
(This.Periph.SR.MODF);
-----------------------
-- Overrun_Indicated --
-----------------------
function Overrun_Indicated (This : SPI_Port) return Boolean is
(This.Periph.SR.OVR);
-------------------------------
-- Frame_Fmt_Error_Indicated --
-------------------------------
function Frame_Fmt_Error_Indicated (This : SPI_Port) return Boolean is
begin
return This.Periph.SR.TIFRFE;
end Frame_Fmt_Error_Indicated;
-------------------
-- Clear_Overrun --
-------------------
procedure Clear_Overrun (This : SPI_Port) is
Dummy1 : UInt16;
Dummy2 : SR_Register;
begin
Dummy1 := This.Periph.DR.DR;
Dummy2 := This.Periph.SR;
end Clear_Overrun;
---------------
-- Reset_CRC --
---------------
procedure Reset_CRC (This : in out SPI_Port) is
begin
This.Periph.CR1.CRCEN := False;
This.Periph.CR1.CRCEN := True;
end Reset_CRC;
-------------------------
-- Is_Data_Frame_16bit --
-------------------------
function Is_Data_Frame_16bit (This : SPI_Port) return Boolean is
(This.Periph.CR1.DFF);
---------------
-- Data_Size --
---------------
overriding
function Data_Size (This : SPI_Port) return HAL.SPI.SPI_Data_Size is
begin
if This.Periph.CR1.DFF then
return HAL.SPI.Data_Size_16b;
else
return HAL.SPI.Data_Size_8b;
end if;
end Data_Size;
--------------
-- Transmit --
--------------
overriding
procedure Transmit
(This : in out SPI_Port;
Data : HAL.SPI.SPI_Data_8b;
Status : out HAL.SPI.SPI_Status;
Timeout : Natural := 1000)
is
pragma Unreferenced (Timeout);
begin
if CRC_Enabled (This) then
Reset_CRC (This);
end if;
-- ??? right value to compare???
if Current_Data_Direction (This) = D1Line_Tx then
This.Periph.CR1.BIDIOE := True;
end if;
Clear_Overrun (This);
if not Enabled (This) then
Enable (This);
end if;
Send_8bit_Mode (This, Data);
-- Wait until TXE flag is set to send data
while not Tx_Is_Empty (This) loop
null;
end loop;
-- Wait until Busy flag is reset before disabling SPI
while Busy (This) loop
null;
end loop;
-- Clear OVERUN flag in 2-Line communication mode because received UInt8
-- is not read.
if Current_Data_Direction (This) in D2Lines_RxOnly | D2Lines_FullDuplex
then -- right comparison ???
Clear_Overrun (This);
end if;
Status := HAL.SPI.Ok;
end Transmit;
--------------
-- Transmit --
--------------
overriding
procedure Transmit
(This : in out SPI_Port;
Data : HAL.SPI.SPI_Data_16b;
Status : out HAL.SPI.SPI_Status;
Timeout : Natural := 1000)
is
pragma Unreferenced (Timeout);
begin
if CRC_Enabled (This) then
Reset_CRC (This);
end if;
-- ??? right value to compare???
if Current_Data_Direction (This) = D1Line_Tx then
This.Periph.CR1.BIDIOE := True;
end if;
Clear_Overrun (This);
if not Enabled (This) then
Enable (This);
end if;
Send_16bit_Mode (This, Data);
-- Wait until TXE flag is set to send data
while not Tx_Is_Empty (This) loop
null;
end loop;
-- Wait until Busy flag is reset before disabling SPI
while Busy (This) loop
null;
end loop;
-- Clear OVERUN flag in 2-Line communication mode because received UInt8
-- is not read.
if Current_Data_Direction (This) in D2Lines_RxOnly | D2Lines_FullDuplex
then -- right comparison ???
Clear_Overrun (This);
Status := HAL.SPI.Err_Error;
end if;
Status := HAL.SPI.Ok;
end Transmit;
--------------
-- Transmit --
--------------
procedure Transmit
(This : in out SPI_Port;
Outgoing : UInt8)
is
Data_8bit : UInt8 with Volatile, Address => This.Periph.DR'Address;
begin
if CRC_Enabled (This) then
Reset_CRC (This);
end if;
-- ??? right value to compare???
if Current_Data_Direction (This) = D1Line_Tx then
This.Periph.CR1.BIDIOE := True;
end if;
if not Enabled (This) then
Enable (This);
end if;
if This.Periph.CR1.BIDIMODE then -- One wire mode
This.Periph.CR1.BIDIOE := True;
end if;
Data_8bit := Outgoing;
while not Tx_Is_Empty (This) loop
null;
end loop;
while Busy (This) loop
null;
end loop;
-- Clear OVERUN flag in 2-Line communication mode because received UInt8
-- is not read.
if Current_Data_Direction (This) in D2Lines_RxOnly | D2Lines_FullDuplex
then -- right comparison ???
Clear_Overrun (This);
end if;
end Transmit;
-------------
-- Receive --
-------------
overriding
procedure Receive
(This : in out SPI_Port;
Data : out HAL.SPI.SPI_Data_8b;
Status : out HAL.SPI.SPI_Status;
Timeout : Natural := 1000)
is
pragma Unreferenced (Timeout);
Dummy : UInt8;
Data_8bit : UInt8 with Volatile, Address => This.Periph.DR'Address;
begin
-- vvvv hack to
while not This.Rx_Is_Empty loop
Dummy := Data_8bit;
end loop;
-- ^^^ drain any data before we read
if CRC_Enabled (This) then
Reset_CRC (This);
end if;
if not Enabled (This) then
Enable (This);
end if;
if This.Periph.CR1.BIDIMODE then -- One wire mode RX only
Disable (This);
This.Periph.CR1.BIDIOE := False;
Enable (This);
end if;
Receive_8bit_Mode (This, Data);
if This.Periph.CR1.BIDIMODE then -- One wire mode TX only
Disable (This);
This.Periph.CR1.BIDIOE := True;
Enable (This);
-- vvvv this loop cleans up the runon in BIDIR mode. Because
-- the clock is automatically generated, it bursts at the BR and
-- the SoC samples the input. There is no clean way to say, burst only
-- for N clocks, its continuous. So for an 8bit xfer as this is, any stragglers
-- coming in can subsequently fill the fifo and mess up the next read.
-- To address this, we just drain the input at the end of the xfer.
declare
Dummy : UInt8;
Data_8bit : UInt8 with Volatile, Address => This.Periph.DR'Address;
begin
while not This.Rx_Is_Empty loop
Dummy := Data_8bit;
end loop;
end;
end if;
while Busy (This) loop
null;
end loop;
if CRC_Enabled (This) and CRC_Error_Indicated (This) then
Reset_CRC (This);
Status := HAL.SPI.Err_Error;
end if;
Status := HAL.SPI.Ok;
end Receive;
-------------
-- Receive --
-------------
overriding
procedure Receive
(This : in out SPI_Port;
Data : out HAL.SPI.SPI_Data_16b;
Status : out HAL.SPI.SPI_Status;
Timeout : Natural := 1000)
is
pragma Unreferenced (Timeout);
begin
if CRC_Enabled (This) then
Reset_CRC (This);
end if;
if not Enabled (This) then
Enable (This);
end if;
Receive_16bit_Mode (This, Data);
while Busy (This) loop
null;
end loop;
if CRC_Enabled (This) and CRC_Error_Indicated (This) then
Reset_CRC (This);
Status := HAL.SPI.Err_Error;
end if;
Status := HAL.SPI.Ok;
end Receive;
-------------
-- Receive --
-------------
procedure Receive
(This : in out SPI_Port;
Incoming : out UInt8)
is
Data_8bit : UInt8 with Volatile, Address => This.Periph.DR'Address;
begin
if CRC_Enabled (This) then
Reset_CRC (This);
end if;
if not Enabled (This) then
Enable (This);
end if;
Data_8bit := 0;
while Rx_Is_Empty (This) loop
null;
end loop;
Incoming := Data_8bit;
if CRC_Enabled (This) then
while Rx_Is_Empty (This) loop
null;
end loop;
Read_CRC : declare
Dummy : UInt16;
begin
Dummy := This.Periph.DR.DR;
end Read_CRC;
end if;
while Busy (This) loop
null;
end loop;
if CRC_Enabled (This) and CRC_Error_Indicated (This) then
Reset_CRC (This);
end if;
end Receive;
----------------------
-- Transmit_Receive --
----------------------
procedure Transmit_Receive
(This : in out SPI_Port;
Outgoing : UInt8_Buffer;
Incoming : out UInt8_Buffer;
Size : Positive)
is
begin
if CRC_Enabled (This) then
Reset_CRC (This);
end if;
if not Enabled (This) then
Enable (This);
end if;
if Is_Data_Frame_16bit (This) then
Send_Receive_16bit_Mode (This, Outgoing, Incoming, Size);
else
Send_Receive_8bit_Mode (This, Outgoing, Incoming, Size);
end if;
-- Read CRC to close CRC calculation process
if CRC_Enabled (This) then
-- wait until data is received
while Rx_Is_Empty (This) loop
null;
end loop;
Read_CRC : declare
Dummy : UInt16;
begin
Dummy := This.Periph.DR.DR;
end Read_CRC;
end if;
while Busy (This) loop
null;
end loop;
if CRC_Enabled (This) and CRC_Error_Indicated (This) then
Reset_CRC (This);
end if;
end Transmit_Receive;
----------------------
-- Transmit_Receive --
----------------------
procedure Transmit_Receive
(This : in out SPI_Port;
Outgoing : UInt8;
Incoming : out UInt8)
is
Data_8bit : UInt8 with Volatile, Address => This.Periph.DR'Address;
begin
if CRC_Enabled (This) then
Reset_CRC (This);
end if;
if not Enabled (This) then
Enable (This);
end if;
if Is_Data_Frame_16bit (This) then
raise Program_Error;
end if;
Data_8bit := Outgoing;
-- enable CRC transmission
if CRC_Enabled (This) then
This.Periph.CR1.CRCNEXT := True;
end if;
-- wait until data is received
while Rx_Is_Empty (This) loop
null;
end loop;
Incoming := Data_8bit;
-- Read CRC UInt8 to close CRC calculation
if CRC_Enabled (This) then
-- wait until data is received
while Rx_Is_Empty (This) loop
null;
end loop;
Read_CRC : declare
Dummy : UInt16;
begin
Dummy := This.Periph.DR.DR;
end Read_CRC;
end if;
while Busy (This) loop
null;
end loop;
if CRC_Enabled (This) and CRC_Error_Indicated (This) then
Reset_CRC (This);
end if;
end Transmit_Receive;
-----------------------------
-- Send_Receive_16bit_Mode --
-----------------------------
procedure Send_Receive_16bit_Mode
(This : in out SPI_Port;
Outgoing : UInt8_Buffer;
Incoming : out UInt8_Buffer;
Size : Positive)
is
Tx_Count : Natural := Size;
Outgoing_Index : Natural := Outgoing'First;
Incoming_Index : Natural := Incoming'First;
begin
if Current_Mode (This) = Slave or else Tx_Count = 1 then
This.Periph.DR.DR :=
As_Half_Word_Pointer (Outgoing (Outgoing_Index)'Address).all;
Outgoing_Index := Outgoing_Index + 2;
Tx_Count := Tx_Count - 1;
end if;
if Tx_Count = 0 then
-- enable CRC transmission
if CRC_Enabled (This) then
This.Periph.CR1.CRCNEXT := True;
end if;
-- wait until data is received
while Rx_Is_Empty (This) loop
null;
end loop;
As_Half_Word_Pointer (Incoming (Incoming_Index)'Address).all :=
This.Periph.DR.DR;
return;
end if;
while Tx_Count > 0 loop
-- wait until we can send data
while not Tx_Is_Empty (This) loop
null;
end loop;
This.Periph.DR.DR :=
As_Half_Word_Pointer (Outgoing (Outgoing_Index)'Address).all;
Outgoing_Index := Outgoing_Index + 2;
Tx_Count := Tx_Count - 1;
-- enable CRC transmission
if Tx_Count = 0 and CRC_Enabled (This) then
This.Periph.CR1.CRCNEXT := True;
end if;
-- wait until data is received
while Rx_Is_Empty (This) loop
null;
end loop;
As_Half_Word_Pointer (Incoming (Incoming_Index)'Address).all :=
This.Periph.DR.DR;
Incoming_Index := Incoming_Index + 2;
end loop;
-- receive the last UInt8
if Current_Mode (This) = Slave then
-- wait until data is received
while Rx_Is_Empty (This) loop
null;
end loop;
As_Half_Word_Pointer (Incoming (Incoming_Index)'Address).all :=
This.Periph.DR.DR;
end if;
end Send_Receive_16bit_Mode;
----------------------------
-- Send_Receive_8bit_Mode --
----------------------------
procedure Send_Receive_8bit_Mode
(This : in out SPI_Port;
Outgoing : UInt8_Buffer;
Incoming : out UInt8_Buffer;
Size : Positive)
is
Tx_Count : Natural := Size;
Outgoing_Index : Natural := Outgoing'First;
Incoming_Index : Natural := Incoming'First;
Data_8bit : UInt8 with Volatile, Address => This.Periph.DR'Address;
begin
if Current_Mode (This) = Slave or else Tx_Count = 1 then
Data_8bit := Outgoing (Outgoing_Index);
Outgoing_Index := Outgoing_Index + 1;
Tx_Count := Tx_Count - 1;
end if;
if Tx_Count = 0 then
-- enable CRC transmission
if CRC_Enabled (This) then
This.Periph.CR1.CRCNEXT := True;
end if;
-- wait until data is received
while Rx_Is_Empty (This) loop
null;
end loop;
Incoming (Incoming_Index) := Data_8bit;
return;
end if;
while Tx_Count > 0 loop
-- wait until we can send data
while not Tx_Is_Empty (This) loop
null;
end loop;
Data_8bit := Outgoing (Outgoing_Index);
Outgoing_Index := Outgoing_Index + 1;
Tx_Count := Tx_Count - 1;
-- enable CRC transmission
if Tx_Count = 0 and CRC_Enabled (This) then
This.Periph.CR1.CRCNEXT := True;
end if;
-- wait until data is received
while Rx_Is_Empty (This) loop
null;
end loop;
Incoming (Incoming_Index) := Data_8bit;
Incoming_Index := Incoming_Index + 1;
end loop;
if Current_Mode (This) = Slave then
-- wait until data is received
while Rx_Is_Empty (This) loop
null;
end loop;
Incoming (Incoming_Index) := Data (This);
end if;
end Send_Receive_8bit_Mode;
---------------------
-- Send_16bit_Mode --
---------------------
procedure Send_16bit_Mode
(This : in out SPI_Port;
Outgoing : HAL.SPI.SPI_Data_16b)
is
Tx_Count : Natural := Outgoing'Length;
Index : Natural := Outgoing'First;
begin
if Current_Mode (This) = Slave or else Tx_Count = 1 then
This.Periph.DR.DR :=
As_Half_Word_Pointer (Outgoing (Index)'Address).all;
Index := Index + 2;
Tx_Count := Tx_Count - 1;
end if;
while Tx_Count > 0 loop
-- wait until we can send data
while not Tx_Is_Empty (This) loop
null;
end loop;
This.Periph.DR.DR :=
As_Half_Word_Pointer (Outgoing (Index)'Address).all;
Index := Index + 2;
Tx_Count := Tx_Count - 1;
end loop;
if CRC_Enabled (This) then
This.Periph.CR1.CRCNEXT := True;
end if;
end Send_16bit_Mode;
--------------------
-- Send_8bit_Mode --
--------------------
procedure Send_8bit_Mode
(This : in out SPI_Port;
Outgoing : HAL.SPI.SPI_Data_8b)
is
Tx_Count : Natural := Outgoing'Length;
Index : Natural := Outgoing'First;
Data_8bit : UInt8 with Volatile, Address => This.Periph.DR'Address;
begin
if Current_Mode (This) = Slave or else Tx_Count = 1 then
Data_8bit := Outgoing (Index);
Index := Index + 1;
Tx_Count := Tx_Count - 1;
end if;
while Tx_Count > 0 loop
-- wait until we can send data
while not Tx_Is_Empty (This) loop
null;
end loop;
Data_8bit := Outgoing (Index);
Index := Index + 1;
Tx_Count := Tx_Count - 1;
end loop;
if CRC_Enabled (This) then
This.Periph.CR1.CRCNEXT := True;
end if;
end Send_8bit_Mode;
------------------------
-- Receive_16bit_Mode --
------------------------
procedure Receive_16bit_Mode
(This : in out SPI_Port;
Incoming : out HAL.SPI.SPI_Data_16b)
is
Generate_Clock : constant Boolean := Current_Mode (This) = Master;
begin
for K of Incoming loop
if Generate_Clock then
This.Periph.DR.DR := 0;
end if;
while Rx_Is_Empty (This) loop
null;
end loop;
K := This.Periph.DR.DR;
end loop;
end Receive_16bit_Mode;
-----------------------
-- Receive_8bit_Mode --
-----------------------
procedure Receive_8bit_Mode
(This : in out SPI_Port;
Incoming : out HAL.SPI.SPI_Data_8b)
is
Generate_Clock : constant Boolean := Current_Mode (This) = Master and not This.Periph.CR1.BIDIMODE;
Data_8bit : UInt8 with Volatile, Address => This.Periph.DR'Address;
begin
for K of Incoming loop
if Generate_Clock then
Data_8bit := 0;
end if;
while Rx_Is_Empty (This) loop
null;
end loop;
K := Data_8bit;
end loop;
end Receive_8bit_Mode;
overriding
procedure Transmit_Receive
(This : in out SPI_Port;
Outgoing : HAL.SPI.SPI_Data_8b;
Incoming : out HAL.SPI.SPI_Data_8b;
Status : out HAL.SPI.SPI_Status;
Timeout : Natural := 1000)
is
pragma Unreferenced (Timeout);
begin
Send_Receive_8bit_Mode (This, UInt8_Buffer (Outgoing), UInt8_Buffer (Incoming), Incoming'Length);
Status := HAL.SPI.Ok;
end Transmit_Receive;
end STM32.SPI;
| 27.681244 | 105 | 0.53416 |
d02324ab4abfc1a993f43124419ab73cc7d23c39 | 16,872 | ads | Ada | source/league/ucd/matreshka-internals-unicode-ucd-core_000c.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/league/ucd/matreshka-internals-unicode-ucd-core_000c.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/league/ucd/matreshka-internals-unicode-ucd-core_000c.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012-2015, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
pragma Restrictions (No_Elaboration_Code);
-- GNAT: enforce generation of preinitialized data section instead of
-- generation of elaboration code.
package Matreshka.Internals.Unicode.Ucd.Core_000C is
pragma Preelaborate;
Group_000C : aliased constant Core_Second_Stage
:= (16#00# => -- 0C00
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#01# .. 16#03# => -- 0C01 .. 0C03
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#04# => -- 0C04
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#0D# => -- 0C0D
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#11# => -- 0C11
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#29# => -- 0C29
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#3A# .. 16#3C# => -- 0C3A .. 0C3C
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#3E# .. 16#40# => -- 0C3E .. 0C40
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#41# .. 16#44# => -- 0C41 .. 0C44
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#45# => -- 0C45
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#46# .. 16#48# => -- 0C46 .. 0C48
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#49# => -- 0C49
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#4A# .. 16#4C# => -- 0C4A .. 0C4C
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#4D# => -- 0C4D
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Case_Ignorable
| Grapheme_Extend
| Grapheme_Link
| ID_Continue
| XID_Continue => True,
others => False)),
16#4E# .. 16#54# => -- 0C4E .. 0C54
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#55# .. 16#56# => -- 0C55 .. 0C56
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#57# => -- 0C57
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#5A# .. 16#5F# => -- 0C5A .. 0C5F
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#62# .. 16#63# => -- 0C62 .. 0C63
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#64# .. 16#65# => -- 0C64 .. 0C65
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#66# .. 16#6F# => -- 0C66 .. 0C6F
(Decimal_Number, Neutral,
Other, Numeric, Numeric, Numeric,
(Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#70# .. 16#77# => -- 0C70 .. 0C77
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#78# .. 16#7E# => -- 0C78 .. 0C7E
(Other_Number, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base => True,
others => False)),
16#7F# => -- 0C7F
(Other_Symbol, Neutral,
Other, Other, Other, Alphabetic,
(Grapheme_Base => True,
others => False)),
16#80# => -- 0C80
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#81# => -- 0C81
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#82# .. 16#83# => -- 0C82 .. 0C83
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#84# => -- 0C84
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#8D# => -- 0C8D
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#91# => -- 0C91
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#A9# => -- 0CA9
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#B4# => -- 0CB4
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#BA# .. 16#BB# => -- 0CBA .. 0CBB
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#BC# => -- 0CBC
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#BE# => -- 0CBE
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#BF# => -- 0CBF
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#C0# .. 16#C1# => -- 0CC0 .. 0CC1
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#C2# => -- 0CC2
(Spacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Other_Grapheme_Extend
| Alphabetic
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#C3# .. 16#C4# => -- 0CC3 .. 0CC4
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#C5# => -- 0CC5
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#C6# => -- 0CC6
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#C7# .. 16#C8# => -- 0CC7 .. 0CC8
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#C9# => -- 0CC9
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#CA# .. 16#CB# => -- 0CCA .. 0CCB
(Spacing_Mark, Neutral,
Spacing_Mark, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#CC# => -- 0CCC
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#CD# => -- 0CCD
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Diacritic
| Case_Ignorable
| Grapheme_Extend
| Grapheme_Link
| ID_Continue
| XID_Continue => True,
others => False)),
16#CE# .. 16#D4# => -- 0CCE .. 0CD4
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#D5# .. 16#D6# => -- 0CD5 .. 0CD6
(Spacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Other_Grapheme_Extend
| Alphabetic
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#D7# .. 16#DD# => -- 0CD7 .. 0CDD
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#DF# => -- 0CDF
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#E2# .. 16#E3# => -- 0CE2 .. 0CE3
(Nonspacing_Mark, Neutral,
Extend, Extend, Extend, Combining_Mark,
(Other_Alphabetic
| Alphabetic
| Case_Ignorable
| Grapheme_Extend
| ID_Continue
| XID_Continue => True,
others => False)),
16#E4# .. 16#E5# => -- 0CE4 .. 0CE5
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#E6# .. 16#EF# => -- 0CE6 .. 0CEF
(Decimal_Number, Neutral,
Other, Numeric, Numeric, Numeric,
(Grapheme_Base
| ID_Continue
| XID_Continue => True,
others => False)),
16#F0# => -- 0CF0
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
16#F3# .. 16#FF# => -- 0CF3 .. 0CFF
(Unassigned, Neutral,
Other, Other, Other, Unknown,
(others => False)),
others =>
(Other_Letter, Neutral,
Other, A_Letter, O_Letter, Alphabetic,
(Alphabetic
| Grapheme_Base
| ID_Continue
| ID_Start
| XID_Continue
| XID_Start => True,
others => False)));
end Matreshka.Internals.Unicode.Ucd.Core_000C;
| 39.328671 | 78 | 0.443575 |
dfda69bf33b5009abfa231298909567ab13369f1 | 2,160 | ads | Ada | 3-mid/impact/source/3d/collision/shapes/impact-d3-collision-quantized_bvh-optimized.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 3-mid/impact/source/3d/collision/shapes/impact-d3-collision-quantized_bvh-optimized.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 3-mid/impact/source/3d/collision/shapes/impact-d3-collision-quantized_bvh-optimized.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z |
with impact.d3.collision.quantized_Bvh;
-- #include "BulletCollision/BroadphaseCollision/impact.d3.collision.quantized_Bvh.h"
--
-- class impact.d3.striding_Mesh;
--
package impact.d3.collision.quantized_Bvh.optimized
--
-- The impact.d3.collision.quantized_Bvh.optimized extends the impact.d3.collision.quantized_Bvh to create AABB tree for triangle meshes, through the impact.d3.striding_Mesh.
--
-- Contains contributions from Disney Studios.
--
is
type Item is new impact.d3.collision.quantized_Bvh.item with null record;
private
procedure dummy;
end impact.d3.collision.quantized_Bvh.optimized;
--
-- ATTRIBUTE_ALIGNED16(class) impact.d3.collision.quantized_Bvh.optimized : public impact.d3.collision.quantized_Bvh
-- {
--
-- public:
-- BT_DECLARE_ALIGNED_ALLOCATOR();
--
-- protected:
--
-- public:
--
-- impact.d3.collision.quantized_Bvh.optimized();
--
-- virtual ~impact.d3.collision.quantized_Bvh.optimized();
--
-- void build(impact.d3.striding_Mesh* triangles,bool useQuantizedAabbCompression, const impact.d3.Vector& bvhAabbMin, const impact.d3.Vector& bvhAabbMax);
--
-- void refit(impact.d3.striding_Mesh* triangles,const impact.d3.Vector& aabbMin,const impact.d3.Vector& aabbMax);
--
-- void refitPartial(impact.d3.striding_Mesh* triangles,const impact.d3.Vector& aabbMin, const impact.d3.Vector& aabbMax);
--
-- void updateBvhNodes(impact.d3.striding_Mesh* meshInterface,int firstNode,int endNode,int index);
--
-- /// Data buffer MUST be 16 byte aligned
-- virtual bool serializeInPlace(void *o_alignedDataBuffer, unsigned i_dataBufferSize, bool i_swapEndian) const
-- {
-- return impact.d3.collision.quantized_Bvh::serialize(o_alignedDataBuffer,i_dataBufferSize,i_swapEndian);
--
-- }
--
-- ///deSerializeInPlace loads and initializes a BVH from a buffer in memory 'in place'
-- static impact.d3.collision.quantized_Bvh.optimized *deSerializeInPlace(void *i_alignedDataBuffer, unsigned int i_dataBufferSize, bool i_swapEndian);
--
--
-- };
| 30 | 175 | 0.709259 |
d0cc083269d71b5a212b288e2aeb3c0605a289b1 | 418 | adb | Ada | A#/fizzbuzz.adb | wgoops/fizzbuzz-all-languages-ever | 849294048d220ecc688d7e3c9ed8e30c8add3760 | [
"Apache-2.0"
] | null | null | null | A#/fizzbuzz.adb | wgoops/fizzbuzz-all-languages-ever | 849294048d220ecc688d7e3c9ed8e30c8add3760 | [
"Apache-2.0"
] | null | null | null | A#/fizzbuzz.adb | wgoops/fizzbuzz-all-languages-ever | 849294048d220ecc688d7e3c9ed8e30c8add3760 | [
"Apache-2.0"
] | null | null | null | with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
procedure fizzbuzz is
-- variable declaration
I: integer := 1;
begin
for I in 1 .. 100 loop
if I mod 3 = 0 then
Put("Fizz");
end if;
if I mod 5 = 0 then
Put("Buzz");
end if;
if I mod 3 /= 0 and I mod 5 /= 0 then
Put(I, 1);
Put_Line("");
else
Put_Line("");
end if;
end loop;
end fizzbuzz; | 16.72 | 50 | 0.605263 |
df14ae5a11e0e77e756c1e4179ac5b9b6be63b5d | 2,390 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/sso/t2.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/sso/t2.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/sso/t2.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do run }
with Init2; use Init2;
with Text_IO; use Text_IO;
with Dump;
procedure T2 is
Local_R1 : R1;
Local_R2 : R2;
begin
Local_R1.S1 := My_R1.S1 - 1;
Local_R1.I := My_R1.I + 1;
Local_R1.S2 := My_R1.S2 - 1;
Local_R1.A(1) := My_R1.A(1) mod 16;
Local_R1.A(2) := My_R1.A(2) mod 16;
Local_R1.A(3) := My_R1.A(3) mod 16;
Local_R1.B := not My_R1.B;
Put ("Local_R1 :");
Dump (Local_R1'Address, R1'Max_Size_In_Storage_Elements);
New_Line;
-- { dg-output "Local_R1 : e5 59 d1 48 b0 a0 c1 03.*\n" }
Local_R2.S1 := My_R2.S1 - 1;
Local_R2.I := My_R2.I + 1;
Local_R2.S2 := My_R2.S2 - 1;
Local_R2.A(1) := My_R2.A(1) mod 16;
Local_R2.A(2) := My_R2.A(2) mod 16;
Local_R2.A(3) := My_R2.A(3) mod 16;
Local_R2.B := not My_R2.B;
Put ("Local_R2 :");
Dump (Local_R2'Address, R2'Max_Size_In_Storage_Elements);
New_Line;
-- { dg-output "Local_R2 : 44 8d 15 9e 40 58 34 1e.*\n" }
Local_R1 := (S1 => 2,
I => 16#12345678#,
S2 => 1,
A => (16#AB#, 16#CD#, 16#EF#),
B => True);
Put ("Local_R1 :");
Dump (Local_R1'Address, R1'Max_Size_In_Storage_Elements);
New_Line;
-- { dg-output "Local_R1 : e2 59 d1 48 b4 aa d9 bb.*\n" }
Local_R2 := (S1 => 2,
I => 16#12345678#,
S2 => 1,
A => (16#AB#, 16#CD#, 16#EF#),
B => True);
Put ("Local_R2 :");
Dump (Local_R2'Address, R2'Max_Size_In_Storage_Elements);
New_Line;
-- { dg-output "Local_R2 : 84 8d 15 9e 15 5b 35 df.*\n" }
Local_R1.S1 := Local_R1.S1 - 1;
Local_R1.I := Local_R1.I + 1;
Local_R1.S2 := Local_R1.S2 - 1;
Local_R1.A(1) := Local_R1.A(1) mod 16;
Local_R1.A(2) := Local_R1.A(2) mod 16;
Local_R1.A(3) := Local_R1.A(3) mod 16;
Local_R1.B := not Local_R1.B;
Put ("Local_R1 :");
Dump (Local_R1'Address, R1'Max_Size_In_Storage_Elements);
New_Line;
-- { dg-output "Local_R1 : e5 59 d1 48 b0 a0 c1 03.*\n" }
Local_R2.S1 := Local_R2.S1 - 1;
Local_R2.I := Local_R2.I + 1;
Local_R2.S2 := Local_R2.S2 - 1;
Local_R2.A(1) := Local_R2.A(1) mod 16;
Local_R2.A(2) := Local_R2.A(2) mod 16;
Local_R2.A(3) := Local_R2.A(3) mod 16;
Local_R2.B := not Local_R2.B;
Put ("Local_R2 :");
Dump (Local_R2'Address, R2'Max_Size_In_Storage_Elements);
New_Line;
-- { dg-output "Local_R2 : 44 8d 15 9e 40 58 34 1e.*\n" }
end;
| 28.117647 | 59 | 0.574059 |
108103a8d40ecb91240356c4daabaa0d53b07ae2 | 1,548 | ads | Ada | tier-1/xcb/source/thin/xcb-xcb_list_properties_request_t.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | 2 | 2015-11-12T11:16:20.000Z | 2021-08-24T22:32:04.000Z | tier-1/xcb/source/thin/xcb-xcb_list_properties_request_t.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | 1 | 2018-06-05T05:19:35.000Z | 2021-11-20T01:13:23.000Z | tier-1/xcb/source/thin/xcb-xcb_list_properties_request_t.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | null | null | null | -- This file is generated by SWIG. Please do not modify by hand.
--
with Interfaces;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_list_properties_request_t is
-- Item
--
type Item is record
major_opcode : aliased Interfaces.Unsigned_8;
pad0 : aliased Interfaces.Unsigned_8;
length : aliased Interfaces.Unsigned_16;
window : aliased xcb.xcb_window_t;
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_list_properties_request_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_list_properties_request_t.Item,
Element_Array => xcb.xcb_list_properties_request_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_list_properties_request_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_list_properties_request_t.Pointer,
Element_Array => xcb.xcb_list_properties_request_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_list_properties_request_t;
| 27.642857 | 76 | 0.664083 |
1801217cc1e9288c0c473dbfcab5232d24008dcc | 26,329 | adb | Ada | llvm-gcc-4.2-2.9/gcc/ada/eval_fat.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 1 | 2016-04-09T02:58:13.000Z | 2016-04-09T02:58:13.000Z | llvm-gcc-4.2-2.9/gcc/ada/eval_fat.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/eval_fat.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- E V A L _ F A T --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2006, 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 2, 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 COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Einfo; use Einfo;
with Errout; use Errout;
with Sem_Util; use Sem_Util;
with Ttypef; use Ttypef;
with Targparm; use Targparm;
package body Eval_Fat is
Radix : constant Int := 2;
-- This code is currently only correct for the radix 2 case. We use
-- the symbolic value Radix where possible to help in the unlikely
-- case of anyone ever having to adjust this code for another value,
-- and for documentation purposes.
-- Another assumption is that the range of the floating-point type
-- is symmetric around zero.
type Radix_Power_Table is array (Int range 1 .. 4) of Int;
Radix_Powers : constant Radix_Power_Table :=
(Radix ** 1, Radix ** 2, Radix ** 3, Radix ** 4);
-----------------------
-- Local Subprograms --
-----------------------
procedure Decompose
(RT : R;
X : T;
Fraction : out T;
Exponent : out UI;
Mode : Rounding_Mode := Round);
-- Decomposes a non-zero floating-point number into fraction and
-- exponent parts. The fraction is in the interval 1.0 / Radix ..
-- T'Pred (1.0) and uses Rbase = Radix.
-- The result is rounded to a nearest machine number.
procedure Decompose_Int
(RT : R;
X : T;
Fraction : out UI;
Exponent : out UI;
Mode : Rounding_Mode);
-- This is similar to Decompose, except that the Fraction value returned
-- is an integer representing the value Fraction * Scale, where Scale is
-- the value (Radix ** Machine_Mantissa (RT)). The value is obtained by
-- using biased rounding (halfway cases round away from zero), round to
-- even, a floor operation or a ceiling operation depending on the setting
-- of Mode (see corresponding descriptions in Urealp).
function Machine_Emin (RT : R) return Int;
-- Return value of the Machine_Emin attribute
--------------
-- Adjacent --
--------------
function Adjacent (RT : R; X, Towards : T) return T is
begin
if Towards = X then
return X;
elsif Towards > X then
return Succ (RT, X);
else
return Pred (RT, X);
end if;
end Adjacent;
-------------
-- Ceiling --
-------------
function Ceiling (RT : R; X : T) return T is
XT : constant T := Truncation (RT, X);
begin
if UR_Is_Negative (X) then
return XT;
elsif X = XT then
return X;
else
return XT + Ureal_1;
end if;
end Ceiling;
-------------
-- Compose --
-------------
function Compose (RT : R; Fraction : T; Exponent : UI) return T is
Arg_Frac : T;
Arg_Exp : UI;
begin
if UR_Is_Zero (Fraction) then
return Fraction;
else
Decompose (RT, Fraction, Arg_Frac, Arg_Exp);
return Scaling (RT, Arg_Frac, Exponent);
end if;
end Compose;
---------------
-- Copy_Sign --
---------------
function Copy_Sign (RT : R; Value, Sign : T) return T is
pragma Warnings (Off, RT);
Result : T;
begin
Result := abs Value;
if UR_Is_Negative (Sign) then
return -Result;
else
return Result;
end if;
end Copy_Sign;
---------------
-- Decompose --
---------------
procedure Decompose
(RT : R;
X : T;
Fraction : out T;
Exponent : out UI;
Mode : Rounding_Mode := Round)
is
Int_F : UI;
begin
Decompose_Int (RT, abs X, Int_F, Exponent, Mode);
Fraction := UR_From_Components
(Num => Int_F,
Den => UI_From_Int (Machine_Mantissa (RT)),
Rbase => Radix,
Negative => False);
if UR_Is_Negative (X) then
Fraction := -Fraction;
end if;
return;
end Decompose;
-------------------
-- Decompose_Int --
-------------------
-- This procedure should be modified with care, as there are many
-- non-obvious details that may cause problems that are hard to
-- detect. The cases of positive and negative zeroes are also
-- special and should be verified separately.
procedure Decompose_Int
(RT : R;
X : T;
Fraction : out UI;
Exponent : out UI;
Mode : Rounding_Mode)
is
Base : Int := Rbase (X);
N : UI := abs Numerator (X);
D : UI := Denominator (X);
N_Times_Radix : UI;
Even : Boolean;
-- True iff Fraction is even
Most_Significant_Digit : constant UI :=
Radix ** (Machine_Mantissa (RT) - 1);
Uintp_Mark : Uintp.Save_Mark;
-- The code is divided into blocks that systematically release
-- intermediate values (this routine generates lots of junk!)
begin
Calculate_D_And_Exponent_1 : begin
Uintp_Mark := Mark;
Exponent := Uint_0;
-- In cases where Base > 1, the actual denominator is
-- Base**D. For cases where Base is a power of Radix, use
-- the value 1 for the Denominator and adjust the exponent.
-- Note: Exponent has different sign from D, because D is a divisor
for Power in 1 .. Radix_Powers'Last loop
if Base = Radix_Powers (Power) then
Exponent := -D * Power;
Base := 0;
D := Uint_1;
exit;
end if;
end loop;
Release_And_Save (Uintp_Mark, D, Exponent);
end Calculate_D_And_Exponent_1;
if Base > 0 then
Calculate_Exponent : begin
Uintp_Mark := Mark;
-- For bases that are a multiple of the Radix, divide
-- the base by Radix and adjust the Exponent. This will
-- help because D will be much smaller and faster to process.
-- This occurs for decimal bases on a machine with binary
-- floating-point for example. When calculating 1E40,
-- with Radix = 2, N will be 93 bits instead of 133.
-- N E
-- ------ * Radix
-- D
-- Base
-- N E
-- = -------------------------- * Radix
-- D D
-- (Base/Radix) * Radix
-- N E-D
-- = --------------- * Radix
-- D
-- (Base/Radix)
-- This code is commented out, because it causes numerous
-- failures in the regression suite. To be studied ???
while False and then Base > 0 and then Base mod Radix = 0 loop
Base := Base / Radix;
Exponent := Exponent + D;
end loop;
Release_And_Save (Uintp_Mark, Exponent);
end Calculate_Exponent;
-- For remaining bases we must actually compute
-- the exponentiation.
-- Because the exponentiation can be negative, and D must
-- be integer, the numerator is corrected instead.
Calculate_N_And_D : begin
Uintp_Mark := Mark;
if D < 0 then
N := N * Base ** (-D);
D := Uint_1;
else
D := Base ** D;
end if;
Release_And_Save (Uintp_Mark, N, D);
end Calculate_N_And_D;
Base := 0;
end if;
-- Now scale N and D so that N / D is a value in the
-- interval [1.0 / Radix, 1.0) and adjust Exponent accordingly,
-- so the value N / D * Radix ** Exponent remains unchanged.
-- Step 1 - Adjust N so N / D >= 1 / Radix, or N = 0
-- N and D are positive, so N / D >= 1 / Radix implies N * Radix >= D.
-- This scaling is not possible for N is Uint_0 as there
-- is no way to scale Uint_0 so the first digit is non-zero.
Calculate_N_And_Exponent : begin
Uintp_Mark := Mark;
N_Times_Radix := N * Radix;
if N /= Uint_0 then
while not (N_Times_Radix >= D) loop
N := N_Times_Radix;
Exponent := Exponent - 1;
N_Times_Radix := N * Radix;
end loop;
end if;
Release_And_Save (Uintp_Mark, N, Exponent);
end Calculate_N_And_Exponent;
-- Step 2 - Adjust D so N / D < 1
-- Scale up D so N / D < 1, so N < D
Calculate_D_And_Exponent_2 : begin
Uintp_Mark := Mark;
while not (N < D) loop
-- As N / D >= 1, N / (D * Radix) will be at least 1 / Radix,
-- so the result of Step 1 stays valid
D := D * Radix;
Exponent := Exponent + 1;
end loop;
Release_And_Save (Uintp_Mark, D, Exponent);
end Calculate_D_And_Exponent_2;
-- Here the value N / D is in the range [1.0 / Radix .. 1.0)
-- Now find the fraction by doing a very simple-minded
-- division until enough digits have been computed.
-- This division works for all radices, but is only efficient for
-- a binary radix. It is just like a manual division algorithm,
-- but instead of moving the denominator one digit right, we move
-- the numerator one digit left so the numerator and denominator
-- remain integral.
Fraction := Uint_0;
Even := True;
Calculate_Fraction_And_N : begin
Uintp_Mark := Mark;
loop
while N >= D loop
N := N - D;
Fraction := Fraction + 1;
Even := not Even;
end loop;
-- Stop when the result is in [1.0 / Radix, 1.0)
exit when Fraction >= Most_Significant_Digit;
N := N * Radix;
Fraction := Fraction * Radix;
Even := True;
end loop;
Release_And_Save (Uintp_Mark, Fraction, N);
end Calculate_Fraction_And_N;
Calculate_Fraction_And_Exponent : begin
Uintp_Mark := Mark;
-- Determine correct rounding based on the remainder which is in
-- N and the divisor D. The rounding is performed on the absolute
-- value of X, so Ceiling and Floor need to check for the sign of
-- X explicitly.
case Mode is
when Round_Even =>
-- This rounding mode should not be used for static
-- expressions, but only for compile-time evaluation
-- of non-static expressions.
if (Even and then N * 2 > D)
or else
(not Even and then N * 2 >= D)
then
Fraction := Fraction + 1;
end if;
when Round =>
-- Do not round to even as is done with IEEE arithmetic,
-- but instead round away from zero when the result is
-- exactly between two machine numbers. See RM 4.9(38).
if N * 2 >= D then
Fraction := Fraction + 1;
end if;
when Ceiling =>
if N > Uint_0 and then not UR_Is_Negative (X) then
Fraction := Fraction + 1;
end if;
when Floor =>
if N > Uint_0 and then UR_Is_Negative (X) then
Fraction := Fraction + 1;
end if;
end case;
-- The result must be normalized to [1.0/Radix, 1.0),
-- so adjust if the result is 1.0 because of rounding.
if Fraction = Most_Significant_Digit * Radix then
Fraction := Most_Significant_Digit;
Exponent := Exponent + 1;
end if;
-- Put back sign after applying the rounding
if UR_Is_Negative (X) then
Fraction := -Fraction;
end if;
Release_And_Save (Uintp_Mark, Fraction, Exponent);
end Calculate_Fraction_And_Exponent;
end Decompose_Int;
--------------
-- Exponent --
--------------
function Exponent (RT : R; X : T) return UI is
X_Frac : UI;
X_Exp : UI;
begin
if UR_Is_Zero (X) then
return Uint_0;
else
Decompose_Int (RT, X, X_Frac, X_Exp, Round_Even);
return X_Exp;
end if;
end Exponent;
-----------
-- Floor --
-----------
function Floor (RT : R; X : T) return T is
XT : constant T := Truncation (RT, X);
begin
if UR_Is_Positive (X) then
return XT;
elsif XT = X then
return X;
else
return XT - Ureal_1;
end if;
end Floor;
--------------
-- Fraction --
--------------
function Fraction (RT : R; X : T) return T is
X_Frac : T;
X_Exp : UI;
begin
if UR_Is_Zero (X) then
return X;
else
Decompose (RT, X, X_Frac, X_Exp);
return X_Frac;
end if;
end Fraction;
------------------
-- Leading_Part --
------------------
function Leading_Part (RT : R; X : T; Radix_Digits : UI) return T is
RD : constant UI := UI_Min (Radix_Digits, Machine_Mantissa (RT));
L : UI;
Y : T;
begin
L := Exponent (RT, X) - RD;
Y := UR_From_Uint (UR_Trunc (Scaling (RT, X, -L)));
return Scaling (RT, Y, L);
end Leading_Part;
-------------
-- Machine --
-------------
function Machine
(RT : R;
X : T;
Mode : Rounding_Mode;
Enode : Node_Id) return T
is
X_Frac : T;
X_Exp : UI;
Emin : constant UI := UI_From_Int (Machine_Emin (RT));
begin
if UR_Is_Zero (X) then
return X;
else
Decompose (RT, X, X_Frac, X_Exp, Mode);
-- Case of denormalized number or (gradual) underflow
-- A denormalized number is one with the minimum exponent Emin, but
-- that breaks the assumption that the first digit of the mantissa
-- is a one. This allows the first non-zero digit to be in any
-- of the remaining Mant - 1 spots. The gap between subsequent
-- denormalized numbers is the same as for the smallest normalized
-- numbers. However, the number of significant digits left decreases
-- as a result of the mantissa now having leading seros.
if X_Exp < Emin then
declare
Emin_Den : constant UI :=
UI_From_Int
(Machine_Emin (RT) - Machine_Mantissa (RT) + 1);
begin
if X_Exp < Emin_Den or not Denorm_On_Target then
if UR_Is_Negative (X) then
Error_Msg_N
("floating-point value underflows to -0.0?", Enode);
return Ureal_M_0;
else
Error_Msg_N
("floating-point value underflows to 0.0?", Enode);
return Ureal_0;
end if;
elsif Denorm_On_Target then
-- Emin - Mant <= X_Exp < Emin, so result is denormal.
-- Handle gradual underflow by first computing the
-- number of significant bits still available for the
-- mantissa and then truncating the fraction to this
-- number of bits.
-- If this value is different from the original
-- fraction, precision is lost due to gradual underflow.
-- We probably should round here and prevent double
-- rounding as a result of first rounding to a model
-- number and then to a machine number. However, this
-- is an extremely rare case that is not worth the extra
-- complexity. In any case, a warning is issued in cases
-- where gradual underflow occurs.
declare
Denorm_Sig_Bits : constant UI := X_Exp - Emin_Den + 1;
X_Frac_Denorm : constant T := UR_From_Components
(UR_Trunc (Scaling (RT, abs X_Frac, Denorm_Sig_Bits)),
Denorm_Sig_Bits,
Radix,
UR_Is_Negative (X));
begin
if X_Frac_Denorm /= X_Frac then
Error_Msg_N
("gradual underflow causes loss of precision?",
Enode);
X_Frac := X_Frac_Denorm;
end if;
end;
end if;
end;
end if;
return Scaling (RT, X_Frac, X_Exp);
end if;
end Machine;
------------------
-- Machine_Emin --
------------------
function Machine_Emin (RT : R) return Int is
Digs : constant UI := Digits_Value (RT);
Emin : Int;
begin
if Vax_Float (RT) then
if Digs = VAXFF_Digits then
Emin := VAXFF_Machine_Emin;
elsif Digs = VAXDF_Digits then
Emin := VAXDF_Machine_Emin;
else
pragma Assert (Digs = VAXGF_Digits);
Emin := VAXGF_Machine_Emin;
end if;
elsif Is_AAMP_Float (RT) then
if Digs = AAMPS_Digits then
Emin := AAMPS_Machine_Emin;
else
pragma Assert (Digs = AAMPL_Digits);
Emin := AAMPL_Machine_Emin;
end if;
else
if Digs = IEEES_Digits then
Emin := IEEES_Machine_Emin;
elsif Digs = IEEEL_Digits then
Emin := IEEEL_Machine_Emin;
else
pragma Assert (Digs = IEEEX_Digits);
Emin := IEEEX_Machine_Emin;
end if;
end if;
return Emin;
end Machine_Emin;
----------------------
-- Machine_Mantissa --
----------------------
function Machine_Mantissa (RT : R) return Nat is
Digs : constant UI := Digits_Value (RT);
Mant : Nat;
begin
if Vax_Float (RT) then
if Digs = VAXFF_Digits then
Mant := VAXFF_Machine_Mantissa;
elsif Digs = VAXDF_Digits then
Mant := VAXDF_Machine_Mantissa;
else
pragma Assert (Digs = VAXGF_Digits);
Mant := VAXGF_Machine_Mantissa;
end if;
elsif Is_AAMP_Float (RT) then
if Digs = AAMPS_Digits then
Mant := AAMPS_Machine_Mantissa;
else
pragma Assert (Digs = AAMPL_Digits);
Mant := AAMPL_Machine_Mantissa;
end if;
else
if Digs = IEEES_Digits then
Mant := IEEES_Machine_Mantissa;
elsif Digs = IEEEL_Digits then
Mant := IEEEL_Machine_Mantissa;
else
pragma Assert (Digs = IEEEX_Digits);
Mant := IEEEX_Machine_Mantissa;
end if;
end if;
return Mant;
end Machine_Mantissa;
-------------------
-- Machine_Radix --
-------------------
function Machine_Radix (RT : R) return Nat is
pragma Warnings (Off, RT);
begin
return Radix;
end Machine_Radix;
-----------
-- Model --
-----------
function Model (RT : R; X : T) return T is
X_Frac : T;
X_Exp : UI;
begin
Decompose (RT, X, X_Frac, X_Exp);
return Compose (RT, X_Frac, X_Exp);
end Model;
----------
-- Pred --
----------
function Pred (RT : R; X : T) return T is
begin
return -Succ (RT, -X);
end Pred;
---------------
-- Remainder --
---------------
function Remainder (RT : R; X, Y : T) return T is
A : T;
B : T;
Arg : T;
P : T;
Arg_Frac : T;
P_Frac : T;
Sign_X : T;
IEEE_Rem : T;
Arg_Exp : UI;
P_Exp : UI;
K : UI;
P_Even : Boolean;
begin
if UR_Is_Positive (X) then
Sign_X := Ureal_1;
else
Sign_X := -Ureal_1;
end if;
Arg := abs X;
P := abs Y;
if Arg < P then
P_Even := True;
IEEE_Rem := Arg;
P_Exp := Exponent (RT, P);
else
-- ??? what about zero cases?
Decompose (RT, Arg, Arg_Frac, Arg_Exp);
Decompose (RT, P, P_Frac, P_Exp);
P := Compose (RT, P_Frac, Arg_Exp);
K := Arg_Exp - P_Exp;
P_Even := True;
IEEE_Rem := Arg;
for Cnt in reverse 0 .. UI_To_Int (K) loop
if IEEE_Rem >= P then
P_Even := False;
IEEE_Rem := IEEE_Rem - P;
else
P_Even := True;
end if;
P := P * Ureal_Half;
end loop;
end if;
-- That completes the calculation of modulus remainder. The final step
-- is get the IEEE remainder. Here we compare Rem with (abs Y) / 2.
if P_Exp >= 0 then
A := IEEE_Rem;
B := abs Y * Ureal_Half;
else
A := IEEE_Rem * Ureal_2;
B := abs Y;
end if;
if A > B or else (A = B and then not P_Even) then
IEEE_Rem := IEEE_Rem - abs Y;
end if;
return Sign_X * IEEE_Rem;
end Remainder;
--------------
-- Rounding --
--------------
function Rounding (RT : R; X : T) return T is
Result : T;
Tail : T;
begin
Result := Truncation (RT, abs X);
Tail := abs X - Result;
if Tail >= Ureal_Half then
Result := Result + Ureal_1;
end if;
if UR_Is_Negative (X) then
return -Result;
else
return Result;
end if;
end Rounding;
-------------
-- Scaling --
-------------
function Scaling (RT : R; X : T; Adjustment : UI) return T is
pragma Warnings (Off, RT);
begin
if Rbase (X) = Radix then
return UR_From_Components
(Num => Numerator (X),
Den => Denominator (X) - Adjustment,
Rbase => Radix,
Negative => UR_Is_Negative (X));
elsif Adjustment >= 0 then
return X * Radix ** Adjustment;
else
return X / Radix ** (-Adjustment);
end if;
end Scaling;
----------
-- Succ --
----------
function Succ (RT : R; X : T) return T is
Emin : constant UI := UI_From_Int (Machine_Emin (RT));
Mantissa : constant UI := UI_From_Int (Machine_Mantissa (RT));
Exp : UI := UI_Max (Emin, Exponent (RT, X));
Frac : T;
New_Frac : T;
begin
if UR_Is_Zero (X) then
Exp := Emin;
end if;
-- Set exponent such that the radix point will be directly
-- following the mantissa after scaling
if Denorm_On_Target or Exp /= Emin then
Exp := Exp - Mantissa;
else
Exp := Exp - 1;
end if;
Frac := Scaling (RT, X, -Exp);
New_Frac := Ceiling (RT, Frac);
if New_Frac = Frac then
if New_Frac = Scaling (RT, -Ureal_1, Mantissa - 1) then
New_Frac := New_Frac + Scaling (RT, Ureal_1, Uint_Minus_1);
else
New_Frac := New_Frac + Ureal_1;
end if;
end if;
return Scaling (RT, New_Frac, Exp);
end Succ;
----------------
-- Truncation --
----------------
function Truncation (RT : R; X : T) return T is
pragma Warnings (Off, RT);
begin
return UR_From_Uint (UR_Trunc (X));
end Truncation;
-----------------------
-- Unbiased_Rounding --
-----------------------
function Unbiased_Rounding (RT : R; X : T) return T is
Abs_X : constant T := abs X;
Result : T;
Tail : T;
begin
Result := Truncation (RT, Abs_X);
Tail := Abs_X - Result;
if Tail > Ureal_Half then
Result := Result + Ureal_1;
elsif Tail = Ureal_Half then
Result := Ureal_2 *
Truncation (RT, (Result / Ureal_2) + Ureal_Half);
end if;
if UR_Is_Negative (X) then
return -Result;
elsif UR_Is_Positive (X) then
return Result;
-- For zero case, make sure sign of zero is preserved
else
return X;
end if;
end Unbiased_Rounding;
end Eval_Fat;
| 28.806346 | 78 | 0.495993 |
3915e62447c2f4df1eab846f8b0b04da64200959 | 1,797 | adb | Ada | src/arch/socs/stm32f429/Ada/soc-syscfg.adb | wookey-project/ewok-legacy | c973752dac3a0ebe3f7cfca062f50744578f051b | [
"Apache-2.0"
] | null | null | null | src/arch/socs/stm32f429/Ada/soc-syscfg.adb | wookey-project/ewok-legacy | c973752dac3a0ebe3f7cfca062f50744578f051b | [
"Apache-2.0"
] | null | null | null | src/arch/socs/stm32f429/Ada/soc-syscfg.adb | wookey-project/ewok-legacy | c973752dac3a0ebe3f7cfca062f50744578f051b | [
"Apache-2.0"
] | null | null | null | --
-- Copyright 2018 The wookey project team <[email protected]>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- 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 soc.syscfg
with spark_mode => off
is
function get_exti_port
(pin : soc.gpio.t_gpio_pin_index)
return soc.gpio.t_gpio_port_index
is
begin
case pin is
when 0 .. 3 =>
return SYSCFG.EXTICR1.exti(pin);
when 4 .. 7 =>
return SYSCFG.EXTICR2.exti(pin);
when 8 .. 11 =>
return SYSCFG.EXTICR3.exti(pin);
when 12 .. 15 =>
return SYSCFG.EXTICR4.exti(pin);
end case;
end get_exti_port;
procedure set_exti_port
(pin : in soc.gpio.t_gpio_pin_index;
port : in soc.gpio.t_gpio_port_index)
is
begin
case pin is
when 0 .. 3 =>
SYSCFG.EXTICR1.exti(pin) := port;
when 4 .. 7 =>
SYSCFG.EXTICR2.exti(pin) := port;
when 8 .. 11 =>
SYSCFG.EXTICR3.exti(pin) := port;
when 12 .. 15 =>
SYSCFG.EXTICR4.exti(pin) := port;
end case;
end set_exti_port;
end soc.syscfg;
| 26.820896 | 79 | 0.600445 |
1065defc910bb26175bbd1ce3eb87ea88de72cde | 352,259 | adb | Ada | SDSoC_Workspace/bitirme_v4/Release/_sds/vhls/sobel_accel/solution/.autopilot/db/xFSobelFilter3x3.sched.adb | ykpgrr/Lane-Detection-on-FPGA-SW-part-with-SDSoC | 6f2ed805ad74cee995162458d516a921bf2b434b | [
"Apache-2.0"
] | 1 | 2020-03-06T07:41:37.000Z | 2020-03-06T07:41:37.000Z | SDSoC_Workspace/bitirme_v4/Release/_sds/vhls/sobel_accel/solution/.autopilot/db/xFSobelFilter3x3.sched.adb | ykpgrr/Lane-Detection-on-FPGA-SW-part-with-SDSoC | 6f2ed805ad74cee995162458d516a921bf2b434b | [
"Apache-2.0"
] | null | null | null | SDSoC_Workspace/bitirme_v4/Release/_sds/vhls/sobel_accel/solution/.autopilot/db/xFSobelFilter3x3.sched.adb | ykpgrr/Lane-Detection-on-FPGA-SW-part-with-SDSoC | 6f2ed805ad74cee995162458d516a921bf2b434b | [
"Apache-2.0"
] | 2 | 2020-10-05T11:06:37.000Z | 2021-05-09T08:15:38.000Z | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="15">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>xFSobelFilter3x3</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>p_src_mat_V_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>_src_mat.V.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>p_gradx_mat_V_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>_gradx_mat.V.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>p_grady_mat_V_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>_grady_mat.V.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>1</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>p_src_mat_rows_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>p_src_mat_cols_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>3</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>120</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>buf_0_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>286</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second class_id="11" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>286</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>buf[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>buf_1_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>286</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>286</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>buf[1].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>buf_2_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>286</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>286</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>buf[2].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>p_src_mat_rows_read_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>174</item>
<item>175</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.63</m_delay>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>p_src_mat_cols_read_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>176</item>
<item>177</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.63</m_delay>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>tmp_1</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>1474</lineNumber>
<contextFuncName>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>img_height</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>tmp_2</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>1474</lineNumber>
<contextFuncName>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>img_width</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>179</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>292</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>292</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>180</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.76</m_delay>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>p_1_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>col.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>182</item>
<item>183</item>
<item>184</item>
<item>185</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>tmp_1_cast_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>292</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>292</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>186</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>tmp_2_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>292</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>292</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>187</item>
<item>188</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>2.42</m_delay>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>col_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>292</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>292</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>189</item>
<item>191</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.67</m_delay>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>292</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>292</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>192</item>
<item>193</item>
<item>194</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>tmp_1_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>292</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>292</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>203</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>buf_0_V_addr</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>292</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>292</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>204</item>
<item>206</item>
<item>207</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>296</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>296</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>209</item>
<item>210</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>tmp_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>297</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>297</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>212</item>
<item>213</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.63</m_delay>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>buf_1_V_addr</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>292</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>292</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>214</item>
<item>215</item>
<item>216</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>297</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>297</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>217</item>
<item>218</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>292</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>292</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>p_5_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>195</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>p_4_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>196</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>p_3_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>tmp_5_cast100_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>302</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>302</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>198</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>op2_assign</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>302</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>302</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>op2</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>199</item>
<item>201</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>2.07</m_delay>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>302</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>302</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>202</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.76</m_delay>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>p_2_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>364</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>364</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>221</item>
<item>222</item>
<item>223</item>
<item>224</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>p_6_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>row.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>225</item>
<item>226</item>
<item>227</item>
<item>228</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>tmp_6_cast_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>302</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>302</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>229</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>tmp_7_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>302</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>302</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>230</item>
<item>231</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>2.43</m_delay>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>302</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>302</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>232</item>
<item>233</item>
<item>234</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>p_5_i_i_load</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>313</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>313</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>235</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>p_4_i_i_load</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>313</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>313</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>236</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>p_3_i_i_load</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>313</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>313</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>237</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>tmp_6_cast99_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>302</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>302</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>tmp_8_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>305</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>305</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>239</item>
<item>240</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>2.09</m_delay>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>tmp_9_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>241</item>
<item>242</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>2.09</m_delay>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>tmp_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>313</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>313</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>243</item>
<item>244</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>2.09</m_delay>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>p_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>313</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>313</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>245</item>
<item>247</item>
<item>248</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>p_1_i_i_12</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>313</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>313</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>249</item>
<item>251</item>
<item>252</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>p_2_i_i_13</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>313</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>313</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>253</item>
<item>255</item>
<item>256</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>sel_tmp1</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>305</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>305</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>257</item>
<item>259</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>sel_tmp2</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>260</item>
<item>261</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.97</m_delay>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>sel_tmp</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>262</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>tmp</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>263</item>
<item>264</item>
</oprand_edges>
<opcode>or</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.97</m_delay>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>p_0455_3_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>265</item>
<item>266</item>
<item>267</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.99</m_delay>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>sel_tmp4</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>268</item>
<item>269</item>
<item>270</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>p_0449_3_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>271</item>
<item>272</item>
<item>273</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.99</m_delay>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>sel_tmp8</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>274</item>
<item>275</item>
<item>276</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>p_0443_3_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>277</item>
<item>278</item>
<item>279</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.99</m_delay>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>tmp_3_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>193</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>193</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>280</item>
<item>281</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>2.42</m_delay>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>tmp_3</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>364</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>364</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>282</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>283</item>
<item>284</item>
<item>671</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>285</item>
<item>286</item>
<item>672</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>309</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>287</item>
<item>288</item>
<item>673</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>289</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.76</m_delay>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>src_buf3_V_0_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_buf3[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>290</item>
<item>291</item>
<item>292</item>
<item>293</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>src_buf2_0_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_buf2[1].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>294</item>
<item>295</item>
<item>296</item>
<item>297</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>src_buf2_V_0_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_buf2[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>298</item>
<item>299</item>
<item>300</item>
<item>301</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>src_buf3_0_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_buf3[1].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>302</item>
<item>303</item>
<item>304</item>
<item>305</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>src_buf1_0_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_buf1[1].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>306</item>
<item>307</item>
<item>308</item>
<item>309</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>src_buf1_V_0_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>src_buf1[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>310</item>
<item>311</item>
<item>312</item>
<item>313</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>p_0177_0_i_i_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>col.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>314</item>
<item>315</item>
<item>316</item>
<item>317</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>tmp_11_cast_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>318</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>tmp_12_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>319</item>
<item>320</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>2.42</m_delay>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>col_V_1</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>col.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>321</item>
<item>322</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.67</m_delay>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>323</item>
<item>324</item>
<item>325</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>tmp_11_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>326</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>193</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>193</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>327</item>
<item>328</item>
<item>329</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>buf_0_V_addr_2</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>196</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>348</item>
<item>349</item>
<item>350</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>buf_1_V_addr_2</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>196</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>351</item>
<item>352</item>
<item>353</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>buf_2_V_addr_1</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>196</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>354</item>
<item>355</item>
<item>356</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>196</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>357</item>
<item>358</item>
<item>359</item>
<item>360</item>
<item>361</item>
<item>362</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.13</m_delay>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>196</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>463</item>
<item>464</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>196</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>465</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>196</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>460</item>
<item>461</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>196</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>462</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>196</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>466</item>
<item>467</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>196</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>196</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>468</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>363</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>tmp_V_3</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>330</item>
<item>331</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.63</m_delay>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>buf_0_V_addr_1</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>332</item>
<item>333</item>
<item>334</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>buf_1_V_addr_1</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>335</item>
<item>336</item>
<item>337</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>buf_2_V_addr</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>338</item>
<item>339</item>
<item>340</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>341</item>
<item>342</item>
<item>343</item>
<item>344</item>
<item>345</item>
<item>346</item>
</oprand_edges>
<opcode>switch</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.13</m_delay>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>454</item>
<item>455</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>456</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>451</item>
<item>452</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>453</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>457</item>
<item>458</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>459</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>194</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>194</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>347</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>buf_0_V_addr_3</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>364</item>
<item>365</item>
<item>366</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>buf_0_V_load</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>367</item>
<item>666</item>
<item>669</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>buf_1_V_addr_3</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>368</item>
<item>369</item>
<item>370</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>buf_1_V_load</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>371</item>
<item>665</item>
<item>668</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>buf_2_V_addr_2</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>372</item>
<item>373</item>
<item>374</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>buf_2_V_load</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>375</item>
<item>667</item>
<item>670</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.25</m_delay>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>buf0_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>buf0.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>377</item>
<item>378</item>
<item>379</item>
<item>380</item>
<item>381</item>
</oprand_edges>
<opcode>mux</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.77</m_delay>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>buf1_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>buf1.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>382</item>
<item>383</item>
<item>384</item>
<item>385</item>
<item>386</item>
</oprand_edges>
<opcode>mux</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.77</m_delay>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>buf2_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>buf2.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>387</item>
<item>388</item>
<item>389</item>
<item>390</item>
<item>391</item>
</oprand_edges>
<opcode>mux</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.77</m_delay>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>call_ret_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>215</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>215</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>9</count>
<item_version>0</item_version>
<item>393</item>
<item>394</item>
<item>395</item>
<item>396</item>
<item>397</item>
<item>398</item>
<item>399</item>
<item>400</item>
<item>401</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>GradientValuesX_0_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>215</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>215</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>GradientValuesX[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>402</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>GradientValuesY_0_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>215</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>215</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>GradientValuesY[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>403</item>
</oprand_edges>
<opcode>extractvalue</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>tmp_15_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>218</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>218</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>404</item>
<item>405</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>2.09</m_delay>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>218</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>218</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>406</item>
<item>407</item>
<item>408</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>232</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>232</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>410</item>
<item>411</item>
<item>412</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.63</m_delay>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>233</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>233</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>413</item>
<item>414</item>
<item>415</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.63</m_delay>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>416</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>189</lineNumber>
<contextFuncName>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>189</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>324</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>417</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name>GradientValuesX_0_V_2</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>346</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>346</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>GradientValuesX[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>7</count>
<item_version>0</item_version>
<item>419</item>
<item>420</item>
<item>421</item>
<item>422</item>
<item>423</item>
<item>424</item>
<item>425</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.91</m_delay>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>GradientValuesY_0_V_2</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>351</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>351</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>GradientValuesY[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>7</count>
<item_version>0</item_version>
<item>427</item>
<item>428</item>
<item>429</item>
<item>430</item>
<item>431</item>
<item>432</item>
<item>433</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.91</m_delay>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>357</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>357</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>434</item>
<item>435</item>
<item>436</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.63</m_delay>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>358</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>358</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>437</item>
<item>438</item>
<item>439</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>3.63</m_delay>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>row_ind_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>363</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>363</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>row_ind.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>440</item>
<item>441</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.67</m_delay>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>tmp_14_i_i</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>364</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>364</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>442</item>
<item>444</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>2.09</m_delay>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>p_i_i_15</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>364</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>364</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>445</item>
<item>446</item>
<item>447</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.69</m_delay>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>row_V</name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>302</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>302</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>row.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>448</item>
<item>449</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>1.67</m_delay>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name></name>
<fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName>
<fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory>
<lineNumber>302</lineNumber>
<contextFuncName>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:/Users/yakup/workspace/bitirme_v4/Release</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>Sobel&lt;0, 3, 0, 0, 480, 640, 1&gt;</second>
</first>
<second>1474</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter&lt;480, 640, 0, 0, 1, 0, 0&gt;</second>
</first>
<second>1422</second>
</item>
<item>
<first>
<first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first>
<second>xFSobelFilter3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;</second>
</first>
<second>302</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>450</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_delay>0.00</m_delay>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>15</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_126">
<Value>
<Obj>
<type>2</type>
<id>169</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_127">
<Value>
<Obj>
<type>2</type>
<id>181</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_128">
<Value>
<Obj>
<type>2</type>
<id>190</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_129">
<Value>
<Obj>
<type>2</type>
<id>200</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_130">
<Value>
<Obj>
<type>2</type>
<id>205</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_131">
<Value>
<Obj>
<type>2</type>
<id>208</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_132">
<Value>
<Obj>
<type>2</type>
<id>220</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_133">
<Value>
<Obj>
<type>2</type>
<id>246</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_134">
<Value>
<Obj>
<type>2</type>
<id>250</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_135">
<Value>
<Obj>
<type>2</type>
<id>254</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_136">
<Value>
<Obj>
<type>2</type>
<id>258</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_137">
<Value>
<Obj>
<type>2</type>
<id>392</id>
<name>xFSobel3x3_1_0_0_s</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:xFSobel3x3<1, 0, 0>></content>
</item>
<item class_id_reference="16" object_id="_138">
<Value>
<Obj>
<type>2</type>
<id>418</id>
<name>xFGradientX3x3_0_0_s</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:xFGradientX3x3<0, 0>></content>
</item>
<item class_id_reference="16" object_id="_139">
<Value>
<Obj>
<type>2</type>
<id>426</id>
<name>xFGradientY3x3_0_0_s</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:xFGradientY3x3<0, 0>></content>
</item>
<item class_id_reference="16" object_id="_140">
<Value>
<Obj>
<type>2</type>
<id>443</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>23</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_141">
<Obj>
<type>3</type>
<id>20</id>
<name>entry</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>9</item>
<item>10</item>
<item>11</item>
<item>14</item>
<item>15</item>
<item>16</item>
<item>17</item>
<item>19</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_142">
<Obj>
<type>3</type>
<id>26</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>21</item>
<item>22</item>
<item>23</item>
<item>24</item>
<item>25</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_143">
<Obj>
<type>3</type>
<id>39</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>27</item>
<item>32</item>
<item>33</item>
<item>34</item>
<item>35</item>
<item>36</item>
<item>38</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_144">
<Obj>
<type>3</type>
<id>46</id>
<name>.preheader.preheader.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_145">
<Obj>
<type>3</type>
<id>52</id>
<name>.preheader.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</item>
<item>51</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_146">
<Obj>
<type>3</type>
<id>81</id>
<name>_ifconv</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>25</count>
<item_version>0</item_version>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</item>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_147">
<Obj>
<type>3</type>
<id>93</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>11</count>
<item_version>0</item_version>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
<item>88</item>
<item>89</item>
<item>90</item>
<item>91</item>
<item>92</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_148">
<Obj>
<type>3</type>
<id>100</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>94</item>
<item>99</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_149">
<Obj>
<type>3</type>
<id>105</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>101</item>
<item>102</item>
<item>103</item>
<item>104</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_150">
<Obj>
<type>3</type>
<id>108</id>
<name>branch4.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>106</item>
<item>107</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_151">
<Obj>
<type>3</type>
<id>111</id>
<name>branch3.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>109</item>
<item>110</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_152">
<Obj>
<type>3</type>
<id>114</id>
<name>branch5.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>112</item>
<item>113</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_153">
<Obj>
<type>3</type>
<id>116</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_154">
<Obj>
<type>3</type>
<id>122</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>117</item>
<item>118</item>
<item>119</item>
<item>120</item>
<item>121</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_155">
<Obj>
<type>3</type>
<id>125</id>
<name>branch1.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>123</item>
<item>124</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_156">
<Obj>
<type>3</type>
<id>128</id>
<name>branch0.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>126</item>
<item>127</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_157">
<Obj>
<type>3</type>
<id>131</id>
<name>branch2.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>129</item>
<item>130</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_158">
<Obj>
<type>3</type>
<id>133</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_159">
<Obj>
<type>3</type>
<id>148</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>14</count>
<item_version>0</item_version>
<item>134</item>
<item>135</item>
<item>136</item>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
<item>145</item>
<item>146</item>
<item>147</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_160">
<Obj>
<type>3</type>
<id>152</id>
<name>.preheader851.0.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>149</item>
<item>150</item>
<item>151</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_161">
<Obj>
<type>3</type>
<id>155</id>
<name>xfPackPixels<1, 0, 0>.exit393.i.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>154</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_162">
<Obj>
<type>3</type>
<id>166</id>
<name>ProcessSobel3x3<480, 640, 0, 0, 1, 0, 0, 640>.exit.i.i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>9</count>
<item_version>0</item_version>
<item>156</item>
<item>157</item>
<item>158</item>
<item>159</item>
<item>160</item>
<item>161</item>
<item>162</item>
<item>164</item>
<item>165</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_163">
<Obj>
<type>3</type>
<id>168</id>
<name>.exit</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>310</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_164">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>9</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_165">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>10</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_166">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_167">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_168">
<id>177</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_169">
<id>178</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_170">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_171">
<id>180</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_172">
<id>182</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_173">
<id>183</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_174">
<id>184</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_175">
<id>185</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_176">
<id>186</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_177">
<id>187</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_178">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_179">
<id>189</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_180">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_181">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_182">
<id>193</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_183">
<id>194</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_184">
<id>195</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_185">
<id>196</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_186">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_187">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_188">
<id>199</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_189">
<id>201</id>
<edge_type>1</edge_type>
<source_obj>200</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_190">
<id>202</id>
<edge_type>2</edge_type>
<source_obj>52</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_191">
<id>203</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_192">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_193">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_194">
<id>207</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_195">
<id>209</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>210</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_198">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_199">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_200">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_201">
<id>217</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_203">
<id>219</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_204">
<id>221</id>
<edge_type>1</edge_type>
<source_obj>220</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>222</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_206">
<id>223</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>224</id>
<edge_type>2</edge_type>
<source_obj>166</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>226</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_211">
<id>228</id>
<edge_type>2</edge_type>
<source_obj>166</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_212">
<id>229</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_213">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_215">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_216">
<id>233</id>
<edge_type>2</edge_type>
<source_obj>168</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_217">
<id>234</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_218">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_219">
<id>236</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_220">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>239</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_223">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>220</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>242</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_226">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>244</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>246</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_234">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>258</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>260</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_240">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_242">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_246">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_248">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>246</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_249">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_250">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_251">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_253">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_255">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>246</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_258">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_259">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_260">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_261">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_262">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_263">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_264">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_265">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_266">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_267">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_268">
<id>289</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_269">
<id>290</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_270">
<id>291</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_271">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_272">
<id>293</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_273">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>295</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_275">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>297</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_277">
<id>298</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>299</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>301</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>302</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_282">
<id>303</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>305</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>307</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>309</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_289">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>311</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_291">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_292">
<id>313</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_293">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>315</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>316</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_296">
<id>317</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_297">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_299">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_300">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_301">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_302">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>324</id>
<edge_type>2</edge_type>
<source_obj>166</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>325</id>
<edge_type>2</edge_type>
<source_obj>100</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_305">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_306">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>328</id>
<edge_type>2</edge_type>
<source_obj>105</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_308">
<id>329</id>
<edge_type>2</edge_type>
<source_obj>122</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_312">
<id>334</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_313">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>339</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>342</id>
<edge_type>2</edge_type>
<source_obj>131</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>344</id>
<edge_type>2</edge_type>
<source_obj>128</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>346</id>
<edge_type>2</edge_type>
<source_obj>125</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_325">
<id>347</id>
<edge_type>2</edge_type>
<source_obj>148</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>349</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>350</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>352</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_331">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_334">
<id>356</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_336">
<id>358</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>360</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>361</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>362</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_341">
<id>363</id>
<edge_type>2</edge_type>
<source_obj>148</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_343">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>369</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>373</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>375</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_355">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>383</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>385</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_363">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_365">
<id>391</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_366">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>392</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_367">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_368">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_369">
<id>396</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_370">
<id>397</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_371">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_372">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_373">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_374">
<id>401</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_375">
<id>402</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_376">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_377">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_378">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_379">
<id>406</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_380">
<id>407</id>
<edge_type>2</edge_type>
<source_obj>152</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_381">
<id>408</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_382">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_383">
<id>412</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_384">
<id>414</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_385">
<id>415</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_386">
<id>416</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_387">
<id>417</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_388">
<id>419</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_389">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_390">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_391">
<id>422</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_392">
<id>423</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_393">
<id>424</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_394">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_395">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>426</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_396">
<id>428</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_397">
<id>429</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_398">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_399">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_400">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_401">
<id>433</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_402">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_403">
<id>436</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_404">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_405">
<id>439</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_406">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_407">
<id>441</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_408">
<id>442</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_409">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>443</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_410">
<id>445</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_411">
<id>446</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_412">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_413">
<id>448</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_414">
<id>449</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_415">
<id>450</id>
<edge_type>2</edge_type>
<source_obj>52</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_416">
<id>451</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_417">
<id>452</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_418">
<id>453</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_419">
<id>454</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_420">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_421">
<id>456</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_422">
<id>457</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_423">
<id>458</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_424">
<id>459</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_425">
<id>460</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_426">
<id>461</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_427">
<id>462</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_428">
<id>463</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_429">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_430">
<id>465</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_431">
<id>466</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_432">
<id>467</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_433">
<id>468</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_434">
<id>633</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_435">
<id>634</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_436">
<id>635</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_437">
<id>636</id>
<edge_type>2</edge_type>
<source_obj>39</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_438">
<id>637</id>
<edge_type>2</edge_type>
<source_obj>46</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_439">
<id>638</id>
<edge_type>2</edge_type>
<source_obj>52</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_440">
<id>639</id>
<edge_type>2</edge_type>
<source_obj>52</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_441">
<id>640</id>
<edge_type>2</edge_type>
<source_obj>81</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_442">
<id>641</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_443">
<id>642</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_444">
<id>643</id>
<edge_type>2</edge_type>
<source_obj>100</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_445">
<id>644</id>
<edge_type>2</edge_type>
<source_obj>100</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_446">
<id>645</id>
<edge_type>2</edge_type>
<source_obj>105</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_447">
<id>646</id>
<edge_type>2</edge_type>
<source_obj>105</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_448">
<id>647</id>
<edge_type>2</edge_type>
<source_obj>105</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_449">
<id>648</id>
<edge_type>2</edge_type>
<source_obj>108</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_450">
<id>649</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_451">
<id>650</id>
<edge_type>2</edge_type>
<source_obj>114</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_452">
<id>651</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_453">
<id>652</id>
<edge_type>2</edge_type>
<source_obj>122</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_454">
<id>653</id>
<edge_type>2</edge_type>
<source_obj>122</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_455">
<id>654</id>
<edge_type>2</edge_type>
<source_obj>122</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_456">
<id>655</id>
<edge_type>2</edge_type>
<source_obj>125</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_457">
<id>656</id>
<edge_type>2</edge_type>
<source_obj>128</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_458">
<id>657</id>
<edge_type>2</edge_type>
<source_obj>131</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_459">
<id>658</id>
<edge_type>2</edge_type>
<source_obj>133</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_460">
<id>659</id>
<edge_type>2</edge_type>
<source_obj>148</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_461">
<id>660</id>
<edge_type>2</edge_type>
<source_obj>148</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_462">
<id>661</id>
<edge_type>2</edge_type>
<source_obj>152</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_463">
<id>662</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_464">
<id>663</id>
<edge_type>2</edge_type>
<source_obj>166</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_465">
<id>665</id>
<edge_type>4</edge_type>
<source_obj>106</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_466">
<id>666</id>
<edge_type>4</edge_type>
<source_obj>109</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_467">
<id>667</id>
<edge_type>4</edge_type>
<source_obj>112</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_468">
<id>668</id>
<edge_type>4</edge_type>
<source_obj>123</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_469">
<id>669</id>
<edge_type>4</edge_type>
<source_obj>126</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_470">
<id>670</id>
<edge_type>4</edge_type>
<source_obj>129</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_471">
<id>671</id>
<edge_type>4</edge_type>
<source_obj>55</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_472">
<id>672</id>
<edge_type>4</edge_type>
<source_obj>54</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_473">
<id>673</id>
<edge_type>4</edge_type>
<source_obj>53</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_474">
<mId>1</mId>
<mTag>xFSobelFilter3x3</mTag>
<mType>0</mType>
<sub_regions>
<count>5</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>9</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>312163</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_475">
<mId>2</mId>
<mTag>Entry</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_476">
<mId>3</mId>
<mTag>Clear_Row_Loop</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>26</item>
<item>39</item>
</basic_blocks>
<mII>1</mII>
<mDepth>2</mDepth>
<mMinTripCount>640</mMinTripCount>
<mMaxTripCount>640</mMaxTripCount>
<mMinLatency>640</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_477">
<mId>4</mId>
<mTag>Region 1</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_478">
<mId>5</mId>
<mTag>Row_Loop</mTag>
<mType>1</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>6</item>
<item>7</item>
<item>8</item>
</sub_regions>
<basic_blocks>
<count>0</count>
<item_version>0</item_version>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>480</mMinTripCount>
<mMaxTripCount>480</mMaxTripCount>
<mMinLatency>311520</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_479">
<mId>6</mId>
<mTag>Region 2</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>52</item>
<item>81</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_480">
<mId>7</mId>
<mTag>Col_Loop</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>15</count>
<item_version>0</item_version>
<item>93</item>
<item>100</item>
<item>105</item>
<item>108</item>
<item>111</item>
<item>114</item>
<item>116</item>
<item>122</item>
<item>125</item>
<item>128</item>
<item>131</item>
<item>133</item>
<item>148</item>
<item>152</item>
<item>155</item>
</basic_blocks>
<mII>1</mII>
<mDepth>6</mDepth>
<mMinTripCount>640</mMinTripCount>
<mMaxTripCount>640</mMaxTripCount>
<mMinLatency>644</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_481">
<mId>8</mId>
<mTag>Region 3</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>2</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_482">
<mId>9</mId>
<mTag>Return</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>168</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="-1"></res>
<node_label_latency class_id="26" tracking_level="0" version="0">
<count>120</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>9</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>6</first>
<second>1</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>6</first>
<second>1</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>6</first>
<second>1</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>7</first>
<second>1</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>8</first>
<second>1</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>8</first>
<second>1</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>23</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>20</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>4</first>
<second>7</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>4</first>
<second>9</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>4</first>
<second>4</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>4</first>
<second>5</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>5</first>
<second>5</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>4</first>
<second>4</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>5</first>
<second>8</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>9</first>
<second>9</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>9</first>
<second>9</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>8</first>
<second>10</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="32" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="1" version="0" object_id="_483">
<region_name>Clear_Row_Loop</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>26</item>
<item>39</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>2</pipe_depth>
</item>
<item class_id_reference="33" object_id="_484">
<region_name>Col_Loop</region_name>
<basic_blocks>
<count>15</count>
<item_version>0</item_version>
<item>93</item>
<item>100</item>
<item>105</item>
<item>108</item>
<item>111</item>
<item>114</item>
<item>116</item>
<item>122</item>
<item>125</item>
<item>128</item>
<item>131</item>
<item>133</item>
<item>148</item>
<item>152</item>
<item>155</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>6</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="34" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="35" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="36" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_reg_nodes>
<dp_regname_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_port_io_nodes>
<port2core class_id="38" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 30.346227 | 102 | 0.562126 |
3938e085caefe2c449edf9812e5928ad2f393885 | 5,742 | ads | Ada | src/arch/cores/armv7-m/m4-cpu.ads | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | null | null | null | src/arch/cores/armv7-m/m4-cpu.ads | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | null | null | null | src/arch/cores/armv7-m/m4-cpu.ads | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | null | null | null | --
-- Copyright 2018 The wookey project team <[email protected]>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- 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.
--
--
pragma Restrictions (No_Elaboration_Code);
with ada.unchecked_conversion;
package m4.cpu
with spark_mode => on
is
-------------
-- Globals --
-------------
EXC_THREAD_MODE : constant unsigned_32 := 16#FFFF_FFFD#;
EXC_KERN_MODE : constant unsigned_32 := 16#FFFF_FFF9#;
EXC_HANDLER_MODE : constant unsigned_32 := 16#FFFF_FFF1#;
---------------
-- Registers --
---------------
--
-- CONTROL register
--
type t_SPSEL is (MSP, PSP) with size => 1;
for t_SPSEL use (MSP => 0, PSP => 1);
type t_PRIV is (PRIVILEGED, UNPRIVILEGED) with size => 1;
for t_PRIV use (PRIVILEGED => 0, UNPRIVILEGED => 1);
type t_control_register is record
nPRIV : t_PRIV; -- Thread mode is privileged (0), unprivileged (1)
SPSEL : t_SPSEL; -- Current stack pointer
end record
with size => 32;
for t_control_register use record
nPRIV at 0 range 0 .. 0;
SPSEL at 0 range 1 .. 1;
end record;
--
-- PSR register that aggregates (A)(I)(E)PSR registers
--
type t_PSR_register is record
ISR_NUMBER : unsigned_8;
ICI_IT_lo : bits_6;
GE : bits_4;
Thumb : bit;
ICI_IT_hi : bits_2;
DSP_overflow : bit; -- Q
Overflow : bit; -- V
Carry : bit;
Zero : bit;
Negative : bit;
end record
with size => 32;
for t_PSR_register use record
ISR_NUMBER at 0 range 0 .. 7;
ICI_IT_lo at 0 range 10 .. 15;
GE at 0 range 16 .. 19;
Thumb at 0 range 24 .. 24;
ICI_IT_hi at 0 range 25 .. 26;
DSP_overflow at 0 range 27 .. 27;
Overflow at 0 range 28 .. 28;
Carry at 0 range 29 .. 29;
Zero at 0 range 30 .. 30;
Negative at 0 range 31 .. 31;
end record;
function to_unsigned_32 is new ada.unchecked_conversion
(t_PSR_register, unsigned_32);
--
-- APSR register
--
type t_APSR_register is record
GE : bits_4;
DSP_overflow : bit;
Overflow : bit;
Carry : bit;
Zero : bit;
Negative : bit;
end record
with size => 32;
for t_APSR_register use record
GE at 0 range 16 .. 19;
DSP_overflow at 0 range 27 .. 27;
Overflow at 0 range 28 .. 28;
Carry at 0 range 29 .. 29;
Zero at 0 range 30 .. 30;
Negative at 0 range 31 .. 31;
end record;
function to_PSR_register is new ada.unchecked_conversion
(t_APSR_register, t_PSR_register);
--
-- IPSR register
--
type t_IPSR_register is record
ISR_NUMBER : unsigned_8;
end record
with size => 32;
function to_PSR_register is new ada.unchecked_conversion
(t_IPSR_register, t_PSR_register);
--
-- EPSR register
--
type t_EPSR_register is record
ICI_IT_lo : bits_6;
Thumb : bit;
ICI_IT_hi : bits_2;
end record
with size => 32;
for t_EPSR_register use record
ICI_IT_lo at 0 range 10 .. 15;
Thumb at 0 range 24 .. 24;
ICI_IT_hi at 0 range 25 .. 26;
end record;
function to_PSR_register is new ada.unchecked_conversion
(t_EPSR_register, t_PSR_register);
---------------
-- Functions --
---------------
-- Enable IRQs by clearing the I-bit in the CPSR.
-- (privileged mode)
procedure enable_irq
with inline;
-- Disable IRQs by setting the I-bit in the CPSR.
-- (privileged mode)
procedure disable_irq
with inline;
-- Get the Control register.
function get_control_register return t_control_register
with inline;
-- Set the Control register.
procedure set_control_register (cr : in t_control_register)
with inline;
-- Get the IPSR register.
function get_ipsr_register return t_IPSR_register
with inline;
-- Get the APSR register.
function get_apsr_register return t_APSR_register
with inline;
-- Get the EPSR register.
function get_epsr_register return t_EPSR_register
with inline;
-- Get the LR register
function get_lr_register return unsigned_32
with inline;
-- Get the process stack pointer (PSP)
function get_psp_register return system_address
with inline;
-- Set the process stack pointer (PSP)
procedure set_psp_register (addr : in system_address)
with inline;
-- Get the main stack pointer (MSP)
function get_msp_register return system_address
with inline;
-- Set the main stack pointer (MSP)
procedure set_msp_register (addr : system_address)
with inline;
-- Get the priority mask value
function get_primask_register return unsigned_32
with inline;
-- Set the priority mask value
procedure set_primask_register (mask : in unsigned_32)
with inline;
end m4.cpu;
| 26.33945 | 79 | 0.611111 |
23537d74f7c144d02aa81cff18295789f245dfd4 | 479 | ads | Ada | tests/variant-record/src/logqueue.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | tests/variant-record/src/logqueue.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | tests/variant-record/src/logqueue.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | with mylog; use mylog;
package LogQueue with SPARK_Mode is
protected type queue is
procedure Put (msg : mylog.logmsg) with
Pre => msg.typ in mylog.msgtype'Range;
-- SPARK does not know that
entry Get (msg : out mylog.logmsg);
private
buf : mylog.logmsg; -- unconstrained variant record => mutable. GNATprove doesn't see that
Not_Empty : Boolean := False;
end queue;
myqueue : queue;
procedure mytest;
end LogQueue;
| 23.95 | 102 | 0.655532 |
df74f06cf1f9c58682c457147ee4d4693536eb64 | 12,982 | adb | Ada | src/aco-protocols-service_data-clients.adb | jonashaggstrom/ada-canopen | 8e0f32323a0f09b41e8b51ef7123738bbf29f194 | [
"Apache-2.0"
] | 6 | 2018-05-12T22:08:04.000Z | 2021-07-25T20:55:12.000Z | src/aco-protocols-service_data-clients.adb | jonashaggstrom/ada-canopen | 8e0f32323a0f09b41e8b51ef7123738bbf29f194 | [
"Apache-2.0"
] | null | null | null | src/aco-protocols-service_data-clients.adb | jonashaggstrom/ada-canopen | 8e0f32323a0f09b41e8b51ef7123738bbf29f194 | [
"Apache-2.0"
] | 2 | 2021-06-15T11:56:46.000Z | 2021-06-21T13:56:01.000Z | package body ACO.Protocols.Service_Data.Clients is
overriding
procedure Handle_Message
(This : in out Client;
Msg : in ACO.Messages.Message;
Endpoint : in ACO.SDO_Sessions.Endpoint_Type)
is
use ACO.SDO_Commands;
use type ACO.SDO_Sessions.Services;
Service : constant ACO.SDO_Sessions.Services :=
This.Sessions.Service (Endpoint.Id);
State_Error : Boolean := False;
begin
case Get_CS (Msg) is
when Download_Initiate_Conf =>
This.SDO_Log (ACO.Log.Debug, "Client: Handling Download Initiate");
if Service = ACO.SDO_Sessions.Download then
This.Download_Init (Msg, Endpoint);
else
State_Error := True;
end if;
when Download_Segment_Conf =>
This.SDO_Log (ACO.Log.Debug, "Client: Handling Download Segment");
if Service = ACO.SDO_Sessions.Download then
This.Download_Segment (Msg, Endpoint);
else
State_Error := True;
end if;
when Upload_Initiate_Conf =>
This.SDO_Log (ACO.Log.Debug, "Client: Handling Upload Initiate");
if Service = ACO.SDO_Sessions.Upload then
This.Upload_Init (Msg, Endpoint);
else
State_Error := True;
end if;
when Upload_Segment_Conf =>
This.SDO_Log (ACO.Log.Debug, "Client: Handling Upload Segment");
if Service = ACO.SDO_Sessions.Upload then
This.Upload_Segment (Msg, Endpoint);
else
State_Error := True;
end if;
when Abort_Req =>
This.SDO_Log (ACO.Log.Debug, "Client: Handling Abort");
This.Abort_All (Msg, Endpoint);
when others =>
null;
end case;
if State_Error then
This.Send_Abort
(Endpoint => Endpoint,
Error => Failed_To_Transfer_Or_Store_Data_Due_To_Local_Control);
end if;
end Handle_Message;
procedure Download_Init
(This : in out Client;
Msg : in ACO.Messages.Message;
Endpoint : in ACO.SDO_Sessions.Endpoint_Type)
is
pragma Unreferenced (Msg);
Id : constant ACO.SDO_Sessions.Valid_Endpoint_Nr := Endpoint.Id;
Session : ACO.SDO_Sessions.SDO_Session := This.Sessions.Get (Id);
Bytes_Remain : constant Natural :=
This.Sessions.Length_Buffer (Endpoint.Id);
begin
if Bytes_Remain = 0 then
This.SDO_Log (ACO.Log.Debug, "Client: Expedited download completed");
This.Stop_Alarm (Id);
This.Indicate_Status (Session, ACO.SDO_Sessions.Complete);
else
This.Start_Alarm (Id);
Session.Toggle := False;
This.Send_Buffered (Endpoint, Session.Toggle);
This.Indicate_Status (Session, ACO.SDO_Sessions.Pending);
end if;
end Download_Init;
procedure Download_Segment
(This : in out Client;
Msg : in ACO.Messages.Message;
Endpoint : in ACO.SDO_Sessions.Endpoint_Type)
is
use ACO.SDO_Commands;
Resp : constant Download_Segment_Resp := Convert (Msg);
Id : constant ACO.SDO_Sessions.Valid_Endpoint_Nr := Endpoint.Id;
Session : ACO.SDO_Sessions.SDO_Session := This.Sessions.Get (Id);
Status : ACO.SDO_Sessions.SDO_Status;
Bytes_Remain : constant Natural :=
This.Sessions.Length_Buffer (Endpoint.Id);
begin
if Resp.Toggle = Session.Toggle then
if Bytes_Remain = 0 then
This.SDO_Log (ACO.Log.Debug, "Client: Segment download completed");
This.Stop_Alarm (Id);
Status := ACO.SDO_Sessions.Complete;
else
Session.Toggle := not Session.Toggle;
This.Send_Buffered (Endpoint, Session.Toggle);
This.Start_Alarm (Id);
Status := ACO.SDO_Sessions.Pending;
end if;
else
This.Send_Abort (Endpoint => Endpoint,
Error => Toggle_Bit_Not_Altered,
Index => Session.Index);
This.Stop_Alarm (Id);
Status := ACO.SDO_Sessions.Error;
end if;
This.Indicate_Status (Session, Status);
end Download_Segment;
procedure Send_Buffered
(This : in out Client;
Endpoint : in ACO.SDO_Sessions.Endpoint_Type;
Toggle : in Boolean)
is
use ACO.SDO_Commands;
Bytes_Remain : constant Natural :=
This.Sessions.Length_Buffer (Endpoint.Id);
begin
if Bytes_Remain = 0 then
return;
end if;
declare
Bytes_To_Send : constant Positive :=
Natural'Min (Bytes_Remain, Segment_Data'Length);
Data : ACO.Messages.Data_Array (0 .. Bytes_To_Send - 1);
Cmd : Download_Segment_Cmd;
begin
This.Sessions.Get_Buffer (Endpoint.Id, Data);
Cmd := Create (Toggle => Toggle,
Is_Complete => (Bytes_To_Send = Bytes_Remain),
Data => Data);
This.Send_SDO (Endpoint => Endpoint,
Raw_Data => Cmd.Raw);
This.SDO_Log
(ACO.Log.Debug, "Sent data of length" & Bytes_To_Send'Img);
end;
end Send_Buffered;
procedure Upload_Init
(This : in out Client;
Msg : in ACO.Messages.Message;
Endpoint : in ACO.SDO_Sessions.Endpoint_Type)
is
use ACO.SDO_Commands;
Resp : constant Upload_Initiate_Resp := Convert (Msg);
Index : constant ACO.OD_Types.Entry_Index := Get_Index (Msg);
Error : Error_Type := Nothing;
Session : ACO.SDO_Sessions.SDO_Session;
Status : ACO.SDO_Sessions.SDO_Status;
Cmd : Upload_Segment_Cmd;
Id : constant ACO.SDO_Sessions.Valid_Endpoint_Nr := Endpoint.Id;
begin
if not Resp.Is_Size_Indicated then
Error := Command_Specifier_Not_Valid_Or_Unknown;
elsif Get_Data_Size (Resp) > ACO.Configuration.Max_SDO_Transfer_Size then
Error := General_Error;
end if;
Session := This.Sessions.Get (Id);
if Error /= Nothing then
Status := ACO.SDO_Sessions.Error;
elsif Resp.Is_Expedited then
Status := ACO.SDO_Sessions.Complete;
else
Status := ACO.SDO_Sessions.Pending;
end if;
case Status is
when ACO.SDO_Sessions.Error =>
This.Send_Abort (Endpoint, Error, Index);
This.Stop_Alarm (Id);
when ACO.SDO_Sessions.Complete =>
This.Sessions.Put_Buffer
(Id => Id,
Data => Resp.Data (0 .. 3 - Natural (Resp.Nof_No_Data)));
This.SDO_Log (ACO.Log.Debug, "Client: Expedited upload completed");
This.Stop_Alarm (Id);
when ACO.SDO_Sessions.Pending =>
-- TODO: Remember expected data size?
This.Sessions.Clear_Buffer (Id);
Session.Toggle := False;
Cmd := Create (Session.Toggle);
This.Send_SDO (Endpoint, Cmd.Raw);
This.Start_Alarm (Id);
end case;
This.Indicate_Status (Session, Status);
end Upload_Init;
procedure Upload_Segment
(This : in out Client;
Msg : in ACO.Messages.Message;
Endpoint : in ACO.SDO_Sessions.Endpoint_Type)
is
use ACO.SDO_Commands;
Resp : constant Upload_Segment_Resp := Convert (Msg);
Session : ACO.SDO_Sessions.SDO_Session;
Status : ACO.SDO_Sessions.SDO_Status;
Id : constant ACO.SDO_Sessions.Valid_Endpoint_Nr := Endpoint.Id;
begin
Session := This.Sessions.Get (Id);
if Resp.Toggle = Session.Toggle then
This.Sessions.Put_Buffer
(Id => Id,
Data => Resp.Data (0 .. 6 - Natural (Resp.Nof_No_Data)));
if Resp.Is_Complete then
This.SDO_Log (ACO.Log.Debug, "Client: Segmented upload completed");
This.Stop_Alarm (Id);
Status := ACO.SDO_Sessions.Complete;
else
Session.Toggle := not Session.Toggle;
declare
Cmd : constant Upload_Segment_Cmd := Create (Session.Toggle);
begin
This.Send_SDO (Endpoint, Cmd.Raw);
end;
This.Start_Alarm (Id);
Status := ACO.SDO_Sessions.Pending;
end if;
else
This.Send_Abort (Endpoint => Endpoint,
Error => Toggle_Bit_Not_Altered,
Index => Session.Index);
This.Stop_Alarm (Id);
Status := ACO.SDO_Sessions.Error;
end if;
This.Indicate_Status (Session, Status);
end Upload_Segment;
procedure Write_Remote_Entry
(This : in out Client;
Node : in ACO.Messages.Node_Nr;
Index : in ACO.OD_Types.Object_Index;
Subindex : in ACO.OD_Types.Object_Subindex;
An_Entry : in ACO.OD_Types.Entry_Base'Class;
Endpoint_Id : out ACO.SDO_Sessions.Endpoint_Nr)
is
use ACO.Configuration;
use type ACO.SDO_Sessions.Services;
Endpoint : constant ACO.SDO_Sessions.Endpoint_Type :=
Client'Class (This).Get_Endpoint (Server_Node => Node);
Size : constant Natural := An_Entry.Data_Length;
begin
Endpoint_Id := ACO.SDO_Sessions.No_Endpoint_Id;
-- TODO: Make pre-condition tests instead?
if Endpoint.Id = ACO.SDO_Sessions.No_Endpoint_Id then
This.SDO_Log (ACO.Log.Warning,
"Node" & Node'Img & " is not a server for any Client");
return;
elsif This.Sessions.Service (Endpoint.Id) /= ACO.SDO_Sessions.None then
This.SDO_Log (ACO.Log.Warning,
"Client endpoint" & Endpoint.Id'Img & " already in use");
return;
elsif not (Size in 1 .. Max_SDO_Transfer_Size) then
This.SDO_Log (ACO.Log.Warning,
"Size" & Size'Img & " bytes of entry is too large or 0");
return;
end if;
Endpoint_Id := Endpoint.Id;
This.Sessions.Clear_Buffer (Endpoint.Id);
declare
use ACO.SDO_Commands;
Cmd : Download_Initiate_Cmd;
begin
if Size <= Expedited_Data'Length then
Cmd := Create (Index => (Index, Subindex),
Data => ACO.Messages.Data_Array (An_Entry.Read));
else
This.Sessions.Put_Buffer
(Endpoint.Id, ACO.Messages.Data_Array (An_Entry.Read));
Cmd := Create (Index => (Index, Subindex),
Size => Size);
end if;
This.Send_SDO (Endpoint, Cmd.Raw);
end;
This.Start_Alarm (Endpoint.Id);
This.Indicate_Status
(Session =>
ACO.SDO_Sessions.Create_Download (Endpoint, (Index, Subindex)),
Status => ACO.SDO_Sessions.Pending);
end Write_Remote_Entry;
procedure Read_Remote_Entry
(This : in out Client;
Node : in ACO.Messages.Node_Nr;
Index : in ACO.OD_Types.Object_Index;
Subindex : in ACO.OD_Types.Object_Subindex;
Endpoint_Id : out ACO.SDO_Sessions.Endpoint_Nr)
is
use type ACO.SDO_Sessions.Services;
Endpoint : constant ACO.SDO_Sessions.Endpoint_Type :=
Client'Class (This).Get_Endpoint (Server_Node => Node);
Cmd : ACO.SDO_Commands.Upload_Initiate_Cmd;
begin
Endpoint_Id := Endpoint.Id;
-- TODO: Make pre-condition tests instead?
if Endpoint.Id = ACO.SDO_Sessions.No_Endpoint_Id then
This.SDO_Log (ACO.Log.Warning,
"Node" & Node'Img & " is not a server for any Client");
return;
elsif This.Sessions.Service (Endpoint.Id) /= ACO.SDO_Sessions.None then
Endpoint_Id := ACO.SDO_Sessions.No_Endpoint_Id;
This.SDO_Log (ACO.Log.Warning,
"Client endpoint" & Endpoint.Id'Img & " already in use");
return;
end if;
Cmd := ACO.SDO_Commands.Create ((Index, Subindex));
This.Send_SDO (Endpoint, Cmd.Raw);
This.Start_Alarm (Endpoint.Id);
This.Indicate_Status
(Session =>
ACO.SDO_Sessions.Create_Upload (Endpoint, (Index, Subindex)),
Status => ACO.SDO_Sessions.Pending);
end Read_Remote_Entry;
procedure Get_Read_Entry
(This : in out Client;
Endpoint_Id : in ACO.SDO_Sessions.Valid_Endpoint_Nr;
Read_Entry : in out ACO.OD_Types.Entry_Base'Class)
is
Data : ACO.Messages.Data_Array (0 .. Read_Entry.Data_Length - 1);
begin
This.Sessions.Get_Buffer (Endpoint_Id, Data);
Read_Entry.Write (ACO.OD_Types.Byte_Array (Data));
This.Sessions.Clear (Endpoint_Id);
end Get_Read_Entry;
end ACO.Protocols.Service_Data.Clients;
| 34.897849 | 80 | 0.589277 |
dc1f3664adc1de1af18466b5752e6a8fcb215f01 | 15,397 | ads | Ada | src/yaml.ads | pmderodat/libyaml-ada | 5874fa46e4c032fcbbd12a9f43a81e9597eed8c8 | [
"MIT"
] | 3 | 2017-02-06T14:36:00.000Z | 2017-02-14T09:16:46.000Z | src/yaml.ads | pmderodat/libyaml-ada | 5874fa46e4c032fcbbd12a9f43a81e9597eed8c8 | [
"MIT"
] | null | null | null | src/yaml.ads | pmderodat/libyaml-ada | 5874fa46e4c032fcbbd12a9f43a81e9597eed8c8 | [
"MIT"
] | null | null | null | private with Ada.Finalization;
with Ada.Strings.Unbounded;
private with Interfaces;
private with Interfaces.C;
private with Interfaces.C.Strings;
private with Interfaces.C.Pointers;
private with System;
package YAML is
type UTF8_String is new String;
type Document_Type is tagged limited private;
-- Holder for a YAML document
type Document_Handle (Document : access Document_Type) is
tagged private
with Implicit_Dereference => Document;
-- Reference-counting reference to a dynamically allocated document. Create
-- such references to new Documents using the Create function below.
function "=" (Left, Right : Document_Handle'Class) return Boolean is
(Left.Document = Right.Document);
No_Document_Handle : constant Document_Handle;
-- Special value to mean: no reference. Think of it as a null access.
function Create return Document_Handle;
-- Create a dynamically allocated document and return a handle to it
type Node_Kind is
(No_Node,
-- An empty node
Scalar_Node,
-- A scalar node
Sequence_Node,
-- A sequence node
Mapping_Node
-- A mapping node
) with
Convention => C;
-- Type of a node in a document
type Mark_Type is record
Line, Column : Positive;
end record;
-- Position in a YAML file
type Node_Ref is tagged private;
-- Reference to a node as part of a document. Such values must not outlive
-- the value for the document that owns them.
No_Node_Ref : constant Node_Ref;
function Root_Node (Document : Document_Type'Class) return Node_Ref;
-- Return the root node of a document, or No_Node_Ref for an empty
-- document.
function Start_Mark (Document : Document_Type'Class) return Mark_Type;
-- Return Document's starting position
function End_Mark (Document : Document_Type'Class) return Mark_Type;
-- Return Document's ending position
function Kind (Node : Node_Ref'Class) return Node_Kind;
-- Return the type of a node
function Start_Mark (Node : Node_Ref'Class) return Mark_Type;
-- Return Node's starting position
function End_Mark (Node : Node_Ref'Class) return Mark_Type;
-- Return Node's ending position
function Value (Node : Node_Ref'Class) return UTF8_String
with Pre => Kind (Node) = Scalar_Node;
function Length (Node : Node_Ref'Class) return Natural
with Pre => Kind (Node) in Sequence_Node | Mapping_Node;
-- Return the number of items in the Node sequence/mapping
function Item (Node : Node_Ref'Class; Index : Positive) return Node_Ref
with Pre => Kind (Node) = Sequence_Node
and then Index <= Length (Node);
-- Return the Index'th item in Node. Index is 1-based.
type Node_Pair is record
Key, Value : Node_Ref;
end record;
-- Key/value asssociation in a mapping node
function Item (Node : Node_Ref'Class; Index : Positive) return Node_Pair
with Pre => Kind (Node) = Mapping_Node
and then Index <= Length (Node);
-- Return the Index'th key/value association in Node. Index is 1-based.
function Item (Node : Node_Ref'Class; Key : UTF8_String) return Node_Ref
with Pre => Kind (Node) = Mapping_Node;
-- Look for Key in the Node mapping. If there is one, return the
-- corresponding Value. Return No_Node_Ref otherwise.
type Error_Kind is
(No_Error,
-- No error is produced
Memory_Error,
-- Cannot allocate or reallocate a block of memory
Reader_Error,
-- Cannot read or decode the input stream
Scanner_Error,
-- Cannot scan the input stream
Parser_Error,
-- Cannot parse the input stream
Composer_Error,
-- Cannot compose a YAML document
Writer_Error,
-- Cannot write to the output stream
Emitter_Error
-- Cannot emit a YAML stream
) with Convention => C;
-- Many bad things could happen with the parser and the emitter. Note: as
-- this Ada binding does not cover the emitter yet, some errors cannot
-- occur.
type Error_Type (Kind : Error_Kind := No_Error) is record
Problem : Ada.Strings.Unbounded.Unbounded_String;
-- Error description
case Kind is
when No_Error => null;
when Reader_Error =>
Problem_Offset : Natural;
-- The byte about which the problem occured
Problem_Value : Integer;
-- The problematic value (-1 is none)
when Scanner_Error | Parser_Error =>
Context : Ada.Strings.Unbounded.Unbounded_String;
-- Error context
Context_Mark : Mark_Type;
-- Context position
Problem_Mark : Mark_Type;
-- Problem position
when Composer_Error => null;
when Memory_Error | Writer_Error | Emitter_Error => null;
end case;
end record;
function Image (Error : Error_Type) return String;
-- Return a human-readable representation of Error
type Parser_Type is tagged limited private;
-- YAML document parser
function Has_Input (P : Parser_Type'Class) return Boolean;
-- Return whether a Set_Input_* procedure was called on P
type Encoding_Type is
(Any_Encoding,
-- Let the parser choose the encoding
UTF8_Encoding,
-- The default UTF-8 encoding
UTF16LE_Encoding,
-- The UTF-16-LE encoding with BOM
UTF16BE_Encoding
-- The UTF-16-BE encoding with BOM
) with
Convention => C;
-- Stream encoding
procedure Set_Input_String
(Parser : in out Parser_Type'Class;
Input : String;
Encoding : Encoding_Type)
with Pre => not Parser.Has_Input;
-- Set a string input. This maintains a copy of Input in Parser.
File_Error : exception;
-- Exception raised when file-related errors occurs. For instance: cannot
-- open a file, cannot read a file, etc.
procedure Set_Input_File
(Parser : in out Parser_Type'Class;
Filename : String;
Encoding : Encoding_Type)
with Pre => not Parser.Has_Input;
-- Set a file input. This opens Filename until the parser is destroyed or
-- until another Set_Input_* procedure is successfuly called. If an error
-- occurs while opening the file, raise a File_Error and leave the parser
-- unmodified.
procedure Discard_Input (Parser : in out Parser_Type'Class);
-- If Parser was assigned an input, discard it
procedure Load
(Parser : in out Parser_Type'Class;
Error : out Error_Type;
Document : in out Document_Type'Class)
with Pre => Parser.Has_Input;
-- Parse the input stream and produce the next YAML document.
--
-- Call this function subsequently to produce a sequence of documents
-- constituting the input stream. If the produced document has no root
-- node, it means that the document end has been reached.
--
-- If upon return Error.Kind is different than No_Error, Document must be
-- considered as garbage.
private
subtype C_Int is Interfaces.C.int;
subtype C_Index is C_Int range 0 .. C_Int'Last;
subtype C_Size_T is Interfaces.C.size_t;
subtype C_Ptr_Diff is Interfaces.C.ptrdiff_t;
type C_Char_Array is array (C_Index) of Interfaces.Unsigned_8;
type C_Char_Access is access all C_Char_Array;
type C_Node_T;
type C_Node_Access is access all C_Node_T;
type C_Scalar_Style_T is
(Any_Scalar_Style,
Plain_Scalar_Style,
Single_Quoted_Scalar_Style,
Double_Quoted_Scalar_Style,
Literal_Scalar_Style,
Folded_Scalar_Style) with
Convention => C;
-- Scalar styles
type C_Sequence_Style_T is
(Any_Sequence_Style,
Block_Sequence_Style,
Flow_Sequence_Style) with
Convention => C;
-- Sequence styles
type C_Mapping_Style_T is
(Any_Mapping_Style,
Block_Mapping_Style,
Flow_Mapping_Style) with
Convention => C;
-- Mapping styles
type C_Mark_T is record
Index, Line, Column : Interfaces.C.size_t;
end record with
Convention => C_Pass_By_Copy;
-- The pointer position
type C_Version_Directive_T is record
Major, Minor : C_Int;
-- Major and minor version numbers
end record with
Convention => C_Pass_By_Copy;
-- The version directive data
type C_Version_Directive_Access is access all C_Version_Directive_T;
type C_Tag_Directive_T is record
Handle : C_Char_Access;
-- The tag handle
Prefix : C_Char_Access;
-- The tag prefix
end record with
Convention => C_Pass_By_Copy;
-- The tag directive data
type C_Tag_Directive_Access is access C_Tag_Directive_T;
subtype C_Node_Item_T is C_Int;
type C_Node_Item_Array is array (C_Index range <>) of aliased C_Node_Item_T;
package C_Node_Item_Accesses is new Interfaces.C.Pointers
(Index => C_Index,
Element => C_Node_Item_T,
Element_Array => C_Node_Item_Array,
Default_Terminator => -1);
subtype C_Node_Item_Access is C_Node_Item_Accesses.Pointer;
type C_Node_Pair_T is record
Key, Value : C_Int;
end record with
Convention => C_Pass_By_Copy;
type C_Node_Pair_Array is array (C_Index range <>) of aliased C_Node_Pair_T;
package C_Node_Pair_Accesses is new Interfaces.C.Pointers
(Index => C_Index,
Element => C_Node_Pair_T,
Element_Array => C_Node_Pair_Array,
Default_Terminator => (-1, -1));
subtype C_Node_Pair_Access is C_Node_Pair_Accesses.Pointer;
----------------------------
-- Node structure binding --
----------------------------
type C_Scalar_Node_Data is record
Value : C_Char_Access;
-- The scalar value
Length : Interfaces.C.size_t;
-- The length of the scalar value
Style : C_Scalar_Style_T;
-- The scalar style
end record with
Convention => C_Pass_By_Copy;
type C_Sequence_Items is record
Seq_Start, Seq_End, Seq_Top : C_Node_Item_Access;
end record with
Convention => C_Pass_By_Copy;
type C_Sequence_Node_Data is record
Items : C_Sequence_Items;
-- The stack of sequence items
Style : C_Sequence_Style_T;
-- The sequence style
end record with
Convention => C_Pass_By_Copy;
type C_Mapping_Pairs is record
Map_Start, Map_End, Map_Top : C_Node_Pair_Access;
end record with
Convention => C_Pass_By_Copy;
type C_Mapping_Node_Data is record
Pairs : C_Mapping_Pairs;
-- The stack of mapping pairs
Style : C_Mapping_Style_T;
-- The mapping style
end record with
Convention => C_Pass_By_Copy;
type C_Node_Data (Dummy : Node_Kind := No_Node) is record
case Dummy is
when No_Node =>
null;
when Scalar_Node =>
Scalar : C_Scalar_Node_Data;
-- The scalar parameters (for Scalar_Node)
when Sequence_Node =>
Sequence : C_Sequence_Node_Data;
-- The sequence parameters (for Sequence_Node)
when Mapping_Node =>
Mapping : C_Mapping_Node_Data;
-- The mapping parameters (for Mapping_Node)
end case;
end record with
Convention => C_Pass_By_Copy,
Unchecked_Union;
type C_Node_T is record
Kind : Node_Kind;
-- The node type
Tag : C_Char_Access;
-- The node tag
Data : C_Node_Data;
-- The node data
Start_Mark, End_Mark : C_Mark_T;
end record with
Convention => C_Pass_By_Copy;
--------------------------------
-- Document structure binding --
--------------------------------
type C_Document_Nodes is record
Start_Node, End_Node, Top_Node : C_Node_T;
-- Begining, end and top of the stack
end record with
Convention => C_Pass_By_Copy;
type C_Tag_Directives is record
Start_Dir, End_Dir : C_Tag_Directive_Access;
-- Beginning and end of the tag directives list
end record with
Convention => C_Pass_By_Copy;
type C_Document_T is record
Nodes : C_Document_Nodes;
-- The document nodes
Version_Directives : C_Version_Directive_Access;
-- The version directive
Tag_Directives : C_Tag_Directives;
-- The list of tag directives
Start_Implicit, End_Implicit : C_Int;
-- Is the document start/end indicator explicit?
Start_Mark, End_Mark : C_Mark_T;
-- Beginning and end of the document
end record with
Convention => C_Pass_By_Copy;
-- The document structure
type C_Document_Access is access all C_Document_T;
-------------------------
-- High-level Wrappers --
-------------------------
type Document_Type is limited new Ada.Finalization.Limited_Controlled
with record
C_Doc : aliased C_Document_T;
-- Inlined C document structure. This is the reason Document_Type is
-- limited.
Ref_Count : Natural;
-- Reference counter for Document_Handle. The document must be deleted
-- when the count drops to 0.
To_Delete : Boolean;
-- Whether C_Doc has been initialized. In this case, it must be deleted
-- during finalization.
end record;
overriding procedure Initialize (Document : in out Document_Type);
overriding procedure Finalize (Document : in out Document_Type);
type Document_Access is access all Document_Type;
type Document_Handle (Document : access Document_Type) is new
Ada.Finalization.Controlled with null record;
overriding procedure Adjust (Handle : in out Document_Handle);
overriding procedure Finalize (Handle : in out Document_Handle);
procedure Inc_Ref (Handle : in out Document_Handle'Class);
procedure Dec_Ref (Handle : in out Document_Handle'Class);
No_Document_Handle : constant Document_Handle :=
(Ada.Finalization.Controlled with Document => null);
type Node_Ref is tagged record
Node : C_Node_Access;
-- The referenced node
Document : Document_Access;
-- The document it belongs to
end record;
No_Node_Ref : constant Node_Ref := (null, null);
type C_Parser_Access is new System.Address;
type String_Access is access String;
type C_Parser_Error_View is record
Error : Error_Kind;
Problem : Interfaces.C.Strings.chars_ptr;
Problem_Offset : C_Size_T;
Problem_Value : C_Int;
Problem_Mark : C_Mark_T;
Context : Interfaces.C.Strings.chars_ptr;
Context_Mark : C_Mark_T;
end record with
Convention => C_Pass_By_Copy;
-- Partial view on the yaml_parser_s C structure. Used to access error
-- flags.
type C_File_Ptr is new System.Address;
No_File_Ptr : constant C_File_Ptr := C_File_Ptr (System.Null_Address);
type Parser_Type is limited new Ada.Finalization.Limited_Controlled
with record
C_Parser : C_Parser_Access;
Input_Encoding : Encoding_Type;
Input_String : String_Access;
Input_File : C_File_Ptr;
end record;
overriding procedure Initialize (Parser : in out Parser_Type);
overriding procedure Finalize (Parser : in out Parser_Type);
end YAML;
| 30.732535 | 79 | 0.664415 |
c565599521ef0e58beb4f963410b8b83f5bdce27 | 140 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/iface2.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/iface2.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/iface2.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do compile }
package body Iface2 is
procedure change (This, That : Prot.Any_Future) is
begin
null;
end;
end Iface2;
| 17.5 | 53 | 0.642857 |
4ae7cd7f97b0a7a90ce6df04e7214cf0eedfa411 | 4,157 | adb | Ada | common/configurations.adb | damaki/dw1000-rssi-tester | fef559e58e9a4d1df908e9d4827e96ccce4c6136 | [
"MIT"
] | 2 | 2019-05-15T02:23:01.000Z | 2021-03-05T08:10:26.000Z | common/configurations.adb | damaki/dw1000-rssi-tester | fef559e58e9a4d1df908e9d4827e96ccce4c6136 | [
"MIT"
] | null | null | null | common/configurations.adb | damaki/dw1000-rssi-tester | fef559e58e9a4d1df908e9d4827e96ccce4c6136 | [
"MIT"
] | 1 | 2020-02-11T15:59:51.000Z | 2020-02-11T15:59:51.000Z | -------------------------------------------------------------------------------
-- Copyright (c) 2017 Daniel King
--
-- 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 DW1000.Driver; use DW1000.Driver;
package body Configurations
with SPARK_Mode => On
is
type Preamble_Codes_Array is
array (Positive range 1 .. 7, DW1000.Driver.PRF_Type)
of DW1000.Driver.Preamble_Code_Number;
type PRF_Config_Array is
array (EVB1000.S1.Bit)
of DW1000.Driver.PRF_Type;
type Data_Rate_Config_Array is
array (EVB1000.S1.Bit,
EVB1000.S1.Bit)
of DW1000.Driver.Data_Rates;
type Channels_Config_Array is
array (EVB1000.S1.Bit,
EVB1000.S1.Bit,
EVB1000.S1.Bit)
of DW1000.Driver.Channel_Number;
Preamble_Codes : constant Preamble_Codes_Array :=
(1 => (PRF_16MHz => 1,
PRF_64MHz => 9),
2 => (PRF_16MHz => 3,
PRF_64MHz => 10),
3 => (PRF_16MHz => 5,
PRF_64MHz => 11),
4 => (PRF_16MHz => 7,
PRF_64MHz => 17),
5 => (PRF_16MHz => 4,
PRF_64MHz => 12),
6 => (PRF_16MHz => 1, -- Channel 6 not used
PRF_64MHz => 9),
7 => (PRF_16MHz => 8,
PRF_64MHz => 18));
PRF_Config : constant PRF_Config_Array :=
(0 => PRF_16MHz,
1 => PRF_64MHz);
Data_Rate_Config : constant Data_Rate_Config_Array :=
(0 => (0 => Data_Rate_110k,
1 => Data_Rate_850k),
1 => (0 => Data_Rate_6M8,
1 => Data_Rate_6M8));
Channel_Config : constant Channels_Config_Array :=
(0 => (0 => (0 => 1,
1 => 2),
1 => (0 => 3,
1 => 4)),
1 => (0 => (0 => 5,
1 => 7),
1 => (0 => 7,
1 => 7)));
procedure Get_Switches_Config
(Config : out DecaDriver.Core.Configuration_Type)
is
Switches : EVB1000.S1.Switch_Bit_Array;
Channel : DW1000.Driver.Channel_Number;
PRF : DW1000.Driver.PRF_Type;
Data_Rate : DW1000.Driver.Data_Rates;
begin
EVB1000.S1.Read_All (Switches);
Data_Rate := Data_Rate_Config (Switches (3),
Switches (4));
PRF := PRF_Config (Switches (5));
Channel := Channel_Config (Switches (6),
Switches (7),
Switches (8));
Config := DecaDriver.Core.Configuration_Type'
(Channel => Channel,
PRF => PRF,
Tx_Preamble_Length => PLEN_1024,
Rx_PAC => PAC_32,
Tx_Preamble_Code => Preamble_Codes (Positive (Channel), PRF),
Rx_Preamble_Code => Preamble_Codes (Positive (Channel), PRF),
Use_Nonstandard_SFD => False,
Data_Rate => Data_Rate,
PHR_Mode => Standard_Frames,
SFD_Timeout => 1024 + 64 + 1);
end Get_Switches_Config;
end Configurations;
| 32.992063 | 79 | 0.564109 |
1809889b53f14f3afdb227e7fa28d6f704a06c85 | 2,000 | ads | Ada | boards/nucleo_f103rb/stm32gd-board.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | 1 | 2021-04-06T07:57:56.000Z | 2021-04-06T07:57:56.000Z | boards/nucleo_f103rb/stm32gd-board.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | null | null | null | boards/nucleo_f103rb/stm32gd-board.ads | ekoeppen/STM32_Generic_Ada_Drivers | 4ff29c3026c4b24280baf22a5b81ea9969375466 | [
"MIT"
] | 2 | 2018-05-29T13:59:31.000Z | 2019-02-03T19:48:08.000Z | with STM32GD.GPIO; use STM32GD.GPIO;
with STM32GD.GPIO.Pin;
with STM32GD.USART;
with STM32GD.USART.Peripheral;
with STM32GD.SPI;
with STM32GD.SPI.Peripheral;
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;
package LED is new Pin (Pin => Pin_5, Port => Port_A, Mode => Speed_2MHz, Out_Conf => Out_PushPull);
package LED2 is new Pin (Pin => Pin_8, Port => Port_C, Mode => Speed_2MHz, Out_Conf => Out_PushPull);
package LED3 is new Pin (Pin => Pin_6, Port => Port_C, Mode => Speed_2MHz, Out_Conf => Out_PushPull);
package SCLK is new Pin (Pin => Pin_5, Port => Port_A, Mode => Speed_50MHz, Out_Conf => Alt_PushPull);
package MISO is new Pin (Pin => Pin_6, Port => Port_A, Mode => Speed_50MHz, Out_Conf => Alt_PushPull);
package MOSI is new Pin (Pin => Pin_7, Port => Port_A, Mode => Speed_50MHz, Out_Conf => Alt_PushPull);
package CSN is new Pin (Pin => Pin_4, Port => Port_A, Mode => Speed_50MHz, Out_Conf => Out_PushPull);
package TX is new Pin (Pin => Pin_2, Port => Port_A, Mode => Speed_50MHz, Out_Conf => Alt_PushPull);
package RX is new Pin (Pin => Pin_3, Port => Port_A);
package SCL is new Pin (Pin => Pin_6, Port => Port_B, Mode => Speed_50MHz, Out_Conf => Alt_OpenDrain);
package SDA is new Pin (Pin => Pin_7, Port => Port_B, Mode => Speed_50MHz, Out_Conf => Alt_OpenDrain);
package SPI is new STM32GD.SPI.Peripheral (SPI => STM32GD.SPI.SPI_1);
package USART is new STM32GD.USART.Peripheral (USART => STM32GD.USART.USART_2, Speed => 115200, Clock => 8_000_000);
package Text_IO is new Drivers.Text_IO (USART => STM32GD.Board.USART);
package BUTTON is new Pin (Pin => Pin_13, Port => Port_C, Mode => Input);
package RTC is new STM32GD.RTC (Clock_Tree => STM32GD.Board.Clocks, Clock => STM32GD.Clock.LSI);
procedure Init;
end STM32GD.Board;
| 52.631579 | 123 | 0.672 |
0e2263e6b62384d313d404f46abecfc0a5386fd1 | 3,576 | adb | Ada | samples/render.adb | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 12 | 2015-01-18T23:02:20.000Z | 2022-03-25T15:30:30.000Z | samples/render.adb | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 3 | 2021-01-06T09:44:02.000Z | 2022-02-04T20:20:53.000Z | samples/render.adb | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 4 | 2016-04-12T05:29:00.000Z | 2022-01-24T23:53:59.000Z | -----------------------------------------------------------------------
-- render -- XHTML Rendering example
-- Copyright (C) 2010, 2017, 2020, 2021 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.IO_Exceptions;
with Ada.Strings.Unbounded;
with Ada.Strings.Fixed;
with GNAT.Command_Line;
with ASF.Applications.Main;
with ASF.Requests.Mockup;
with ASF.Responses.Mockup;
with ASF.Servlets;
with ASF.Servlets.Faces;
with ASF.Server;
with EL.Objects;
-- This example reads an XHTML file and renders the result.
procedure Render is
use GNAT.Command_Line;
use Ada.Strings.Fixed;
use ASF;
use EL.Objects;
Factory : ASF.Applications.Main.Application_Factory;
Faces : aliased ASF.Servlets.Faces.Faces_Servlet;
App : aliased Applications.Main.Application;
Conf : Applications.Config;
Container : ASF.Server.Container;
begin
Conf.Set ("view.ignore_white_spaces", "false");
Conf.Set ("view.escape_unknown_tags", "false");
Conf.Set ("view.ignore_empty_lines", "true");
Conf.Set ("view.dir", "./");
Conf.Set ("view.file_ext", "");
App.Initialize (Conf, Factory);
App.Add_Servlet (Name => "file", Server => Faces'Unchecked_Access);
App.Add_Mapping ("*.xhtml", "file");
Container.Register_Application ("/render", App'Unchecked_Access);
loop
case Getopt ("D:") is
when 'D' =>
declare
Value : constant String := Parameter;
Pos : constant Natural := Index (Value, "=");
begin
if Pos > 0 then
App.Set_Global (Name => Value (Value'First .. Pos - 1),
Value => To_Object (Value (Pos + 1 .. Value'Last)));
else
App.Set_Global (Name => Value (Value'First .. Pos - 1),
Value => To_Object (True));
end if;
end;
when others =>
exit;
end case;
end loop;
declare
View_Name : constant String := Get_Argument;
Pos : constant Natural := Index (View_Name, ".");
Req : ASF.Requests.Mockup.Request;
Reply : ASF.Responses.Mockup.Response;
Content : Ada.Strings.Unbounded.Unbounded_String;
begin
if View_Name = "" or Pos = 0 then
Ada.Text_IO.Put_Line ("Usage: render [-DNAME=VALUE ] file");
Ada.Text_IO.Put_Line ("Example: render -DcontextPath=/test samples/web/ajax.xhtml");
return;
end if;
Req.Set_Method ("GET");
Req.Set_Request_URI ("/render/" & View_Name);
App.Dispatch (View_Name, Req, Reply);
Reply.Read_Content (Content);
Ada.Text_IO.Put_Line (Ada.Strings.Unbounded.To_String (Content));
exception
when Ada.IO_Exceptions.Name_Error =>
Ada.Text_IO.Put_Line ("Cannot read file '" & View_Name & "'");
end;
end Render;
| 34.057143 | 93 | 0.604027 |
4a634dd44aad251776d515612efc58f6e6ac2c38 | 434 | ads | Ada | src/base.ads | kanigsson/base58 | 92c9c19ca55d3d147efff0422920aaaafc5b9fa2 | [
"MIT"
] | 2 | 2018-09-21T04:59:45.000Z | 2020-06-02T10:59:52.000Z | src/base.ads | kanigsson/base58 | 92c9c19ca55d3d147efff0422920aaaafc5b9fa2 | [
"MIT"
] | null | null | null | src/base.ads | kanigsson/base58 | 92c9c19ca55d3d147efff0422920aaaafc5b9fa2 | [
"MIT"
] | null | null | null | package Base with SPARK_Mode is
type Number is array (Positive range <>) of Character;
function Encode (S : String) return Number
-- length of result will be longer than input, so need to guard against
-- too large input. Selecting some very restricted value, we could
-- probably bound this much better
with Pre => S'Length < Integer'Last / 200;
function Decode (N : Number) return String;
end Base;
| 33.384615 | 77 | 0.698157 |
0e427982dc509e41589d47889d4a3f5657db8e75 | 2,253 | adb | Ada | source/adam-statement.adb | charlie5/aIDE | fab406dbcd9b72a4cb215ffebb05166c788d6365 | [
"MIT"
] | 3 | 2017-04-29T14:25:22.000Z | 2017-09-29T10:15:28.000Z | source/adam-statement.adb | charlie5/aIDE | fab406dbcd9b72a4cb215ffebb05166c788d6365 | [
"MIT"
] | null | null | null | source/adam-statement.adb | charlie5/aIDE | fab406dbcd9b72a4cb215ffebb05166c788d6365 | [
"MIT"
] | null | null | null | with
AdaM.Factory;
package body AdaM.Statement
is
-- Storage Pool
--
record_Version : constant := 1;
max_Statements : constant := 5_000;
package Pool is new AdaM.Factory.Pools (".adam-store",
"statements",
max_Statements,
record_Version,
Statement.item,
Statement.view);
-- Forge
--
procedure define (Self : in out Item; Line : in String)
is
begin
if Line /= ""
then
Self.Lines.append (+Line);
end if;
end define;
procedure destruct (Self : in out Item)
is
begin
null;
end destruct;
function new_Statement (Line : in String := "") return View
is
new_View : constant Statement.view := Pool.new_Item;
begin
define (Statement.item (new_View.all), Line);
return new_View;
end new_Statement;
procedure free (Self : in out Statement.view)
is
begin
destruct (Statement.item (Self.all));
Pool.free (Self);
end free;
-- Attributes
--
overriding
function Id (Self : access Item) return AdaM.Id
is
begin
return Pool.to_Id (Self);
end Id;
overriding
function Name (Self : in Item) return Identifier
is
pragma Unreferenced (Self);
begin
return "a_Statement";
end Name;
overriding
function to_Source (Self : in Item) return text_Vectors.Vector
is
begin
return Self.Lines;
end to_Source;
-- Operations
--
procedure add (Self : in out Item; the_Line : in String)
is
begin
Self.Lines.Append (+the_Line);
end add;
-- Streams
--
procedure View_write (Stream : not null access Ada.Streams.Root_Stream_Type'Class;
Self : in View)
renames Pool.View_write;
procedure View_read (Stream : not null access Ada.Streams.Root_Stream_Type'Class;
Self : out View)
renames Pool.View_read;
end AdaM.Statement;
| 18.932773 | 85 | 0.528185 |
df233fcb734db2b59d10e5b5b9eccb2b2c8470cd | 2,918 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-sopco5.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-sopco5.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-sopco5.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . S T R I N G _ O P S _ C O N C A T _ 5 --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains the function for concatenating five strings
-- NOTE: This package is obsolescent. It is no longer used by the compiler
-- which now generates concatenation inline. It is retained only because
-- it may be used during bootstrapping using old versions of the compiler.
pragma Compiler_Unit_Warning;
package System.String_Ops_Concat_5 is
pragma Pure;
function Str_Concat_5 (S1, S2, S3, S4, S5 : String) return String;
-- Concatenate five strings and return resulting string
end System.String_Ops_Concat_5;
| 62.085106 | 78 | 0.445853 |
2042a92fca96029cb111a6984948001aac35f800 | 803 | adb | Ada | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/homonym/homonym_main.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | 3 | 2021-05-04T17:09:06.000Z | 2021-10-04T07:19:26.000Z | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/homonym/homonym_main.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/homonym/homonym_main.adb | TheSledgeHammer/2.11BSD | fe61f0b9aaa273783cd027c7b5ec77e95ead2153 | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2008-2020 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with Homonym;
procedure Homonym_Main is
begin
Homonym.Start_Test;
end Homonym_Main;
| 36.5 | 73 | 0.745953 |
4a0657ded3e08cc7caaa41f1c188aa20e729d0db | 944 | ads | Ada | src/Parsers/project_processor-parsers-abstract_parsers.ads | fintatarta/eugen | 2c384838ff0e81b51172310ce5d0e47d71ffd4fd | [
"MIT"
] | null | null | null | src/Parsers/project_processor-parsers-abstract_parsers.ads | fintatarta/eugen | 2c384838ff0e81b51172310ce5d0e47d71ffd4fd | [
"MIT"
] | null | null | null | src/Parsers/project_processor-parsers-abstract_parsers.ads | fintatarta/eugen | 2c384838ff0e81b51172310ce5d0e47d71ffd4fd | [
"MIT"
] | null | null | null | with Ada.Tags;
package Project_Processor.Parsers.Abstract_Parsers is
type Abstract_Parser is interface;
function Create (Params : not null access Plugins.Parameter_Maps.Map)
return Abstract_Parser is abstract;
procedure Parse
(Parser : in out Abstract_Parser;
Project : out EU_Projects.Projects.Project_Descriptor;
Input : String)
is abstract;
procedure Register (Format : Parser_ID;
Tag : Ada.Tags.Tag)
with Pre => Ada.Tags.Is_Descendant_At_Same_Level (Descendant => Tag,
Ancestor => Abstract_Parser'Tag);
function Get_Parser (Format : Parser_ID;
Parameters : Parser_Parameter_access)
return Abstract_Parser'Class;
function Is_Known (Format : Parser_ID) return Boolean;
end Project_Processor.Parsers.Abstract_Parsers;
| 34.962963 | 94 | 0.625 |
2005d9b17e6a4bdb063342439d41c511c9aa270c | 865 | adb | Ada | build_gnu/binutils/gdb/testsuite/gdb.ada/aliased_array/foo.adb | jed-frey/e200-gcc | df1421b421a8ec8729d70791129f5283dee5f9ea | [
"BSD-3-Clause"
] | 1 | 2017-05-31T21:42:12.000Z | 2017-05-31T21:42:12.000Z | build_gnu/binutils/gdb/testsuite/gdb.ada/aliased_array/foo.adb | jed-frey/e200-gcc | df1421b421a8ec8729d70791129f5283dee5f9ea | [
"BSD-3-Clause"
] | null | null | null | build_gnu/binutils/gdb/testsuite/gdb.ada/aliased_array/foo.adb | jed-frey/e200-gcc | df1421b421a8ec8729d70791129f5283dee5f9ea | [
"BSD-3-Clause"
] | 1 | 2019-12-17T22:04:07.000Z | 2019-12-17T22:04:07.000Z | -- Copyright 2012-2014 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
with Pck; use Pck;
procedure Foo is
BT : aliased Bounded := New_Bounded (Low => 1, High => 3);
begin
Do_Nothing (BT'Address); -- STOP
end Foo;
| 37.608696 | 73 | 0.722543 |
d0329f739598fe539b2908a62dcb6f8fcf72e77a | 7,067 | ads | Ada | boards/stm32_common/stm32f407disco/stm32-board.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 192 | 2016-06-01T18:32:04.000Z | 2022-03-26T22:52:31.000Z | boards/stm32f407_discovery/src/stm32-board.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 239 | 2016-05-26T20:02:01.000Z | 2022-03-31T09:46:56.000Z | boards/stm32f407_discovery/src/stm32-board.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 142 | 2016-06-05T08:12:20.000Z | 2022-03-24T17:37:17.000Z | ------------------------------------------------------------------------------
-- --
-- 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 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 stm32f4_discovery.h --
-- @author MCD Application Team --
-- @version V1.1.0 --
-- @date 19-June-2014 --
-- @brief This file contains definitions for STM32F4-Discovery Kit --
-- LEDs, push-buttons hardware resources. --
-- --
-- COPYRIGHT(c) 2014 STMicroelectronics --
------------------------------------------------------------------------------
-- This file provides declarations for devices on the STM32F4 Discovery kits
-- manufactured by ST Microelectronics.
with STM32.Device; use STM32.Device;
with STM32.GPIO; use STM32.GPIO;
with LIS3DSH.SPI; use LIS3DSH.SPI;
with Ada.Interrupts.Names; use Ada.Interrupts;
with STM32.SPI; use STM32.SPI;
with STM32.I2C; use STM32.I2C;
with STM32.I2S; use STM32.I2S;
with HAL.Audio; use HAL.Audio;
with CS43L22;
with Ravenscar_Time;
package STM32.Board is
pragma Elaborate_Body;
subtype User_LED is GPIO_Point;
Green_LED : User_LED renames PD12;
Orange_LED : User_LED renames PD13;
Red_LED : User_LED renames PD14;
Blue_LED : User_LED renames PD15;
All_LEDs : GPIO_Points := Green_LED & Orange_LED & Red_LED & Blue_LED;
LCH_LED : GPIO_Point renames Red_LED;
procedure Initialize_LEDs;
-- MUST be called prior to any use of the LEDs
procedure Turn_On (This : in out User_LED) renames STM32.GPIO.Set;
procedure Turn_Off (This : in out User_LED) renames STM32.GPIO.Clear;
procedure Toggle (This : in out User_LED) renames STM32.GPIO.Toggle;
procedure All_LEDs_Off with Inline;
procedure All_LEDs_On with Inline;
procedure Toggle_LEDs (These : in out GPIO_Points)
renames STM32.GPIO.Toggle;
procedure Initialize_Audio;
Audio_I2C : I2C_Port renames I2C_1;
Audio_I2C_SDA : GPIO_Point renames PB9;
Audio_I2C_SCL : GPIO_Point renames PB6;
Audio_I2S_Points : constant GPIO_Points (1 .. 4) := (PC7, PC10, PC12, PA4);
Audio_I2S : I2S_Port renames I2S_3;
Audio_Rate : constant Audio_Frequency := Audio_Freq_48kHz;
DAC_Reset_Point : GPIO_Point renames PD4;
Audio_DAC : CS43L22.CS43L22_Device (Audio_I2C'Access,
Ravenscar_Time.Delays);
Acc_SPI : SPI_Port renames SPI_1;
Acc_SPI_AF : GPIO_Alternate_Function renames GPIO_AF_SPI1_5;
Acc_Chip_Select_Pin : GPIO_Point renames PE3;
Acc_SPI_SCK_Pin : GPIO_Point renames PA5;
Acc_SPI_MISO_Pin : GPIO_Point renames PA6;
Acc_SPI_MOSI_Pin : GPIO_Point renames PA7;
Accelerometer : Three_Axis_Accelerometer_SPI
(Port => Acc_SPI'Access,
Chip_Select => Acc_Chip_Select_Pin'Access);
procedure Initialize_Accelerometer;
-- GPIO Pins for FMC
FMC_A : constant GPIO_Points :=
(PF0, PF1, PF2, PF3, PF4, PF5,
PF12, PF13, PF14, PF15, PG0, PG1);
FMC_D : constant GPIO_Points :=
(PD14, PD15, PD0, PD1, PE7, PE8, PE9, PE10, PE11, PE12,
PE13, PE14, PE15, PD8, PD9, PD10);
FMC_SDNWE : GPIO_Point renames PH5;
FMC_SDNRAS : GPIO_Point renames PF11;
FMC_SDNCAS : GPIO_Point renames PG15;
FMC_SDCLK : GPIO_Point renames PG8;
FMC_BA0 : GPIO_Point renames PG4;
FMC_BA1 : GPIO_Point renames PG5;
FMC_SDNE0 : GPIO_Point renames PH3;
FMC_SDCKE0 : GPIO_Point renames PC3;
FMC_NBL0 : GPIO_Point renames PE0;
FMC_NBL1 : GPIO_Point renames PE1;
SDRAM_PINS : constant GPIO_Points :=
GPIO_Points'
(FMC_SDNWE,
FMC_SDNRAS,
FMC_SDNCAS,
FMC_SDCLK,
FMC_BA0,
FMC_BA1,
FMC_SDNE0,
FMC_SDCKE0,
FMC_NBL0,
FMC_NBL1) &
FMC_A & FMC_D;
-- User button
User_Button_Point : GPIO_Point renames PA0;
User_Button_Interrupt : constant Interrupt_ID := Names.EXTI0_Interrupt;
procedure Configure_User_Button_GPIO;
-- Configures the GPIO port/pin for the blue user button. Sufficient
-- for polling the button, and necessary for having the button generate
-- interrupts.
end STM32.Board;
| 45.012739 | 78 | 0.552427 |
20ed65eb75115f6df92fd05813845371f818178f | 943 | adb | Ada | examples/ntc/main.adb | ekoeppen/MSP430_Generic_Ada_Drivers | 12b8238ea22dbb0c0c6c63ca46bfa7e2cb80334a | [
"MIT"
] | null | null | null | examples/ntc/main.adb | ekoeppen/MSP430_Generic_Ada_Drivers | 12b8238ea22dbb0c0c6c63ca46bfa7e2cb80334a | [
"MIT"
] | null | null | null | examples/ntc/main.adb | ekoeppen/MSP430_Generic_Ada_Drivers | 12b8238ea22dbb0c0c6c63ca46bfa7e2cb80334a | [
"MIT"
] | null | null | null | with MSP430_SVD; use MSP430_SVD;
with MSPGD.Board; use MSPGD.Board;
with MSPGD.Clock; use MSPGD.Clock;
with MSPGD.Clock.Source;
with MSPGD.GPIO; use MSPGD.GPIO;
with MSPGD.GPIO.Pin;
with Drivers.Text_IO;
with Drivers.NTC;
with Interfaces; use Interfaces;
procedure Main is
pragma Preelaborate;
package Text_IO is new Drivers.Text_IO (USART => UART);
package Delay_Clock is new MSPGD.Clock.Source (Frequency => 12000, Input => VLO, Source => ACLK);
package NTC is new Drivers.NTC;
procedure NTC_Test is
NTC_Value : Unsigned_32;
begin
loop
LED.Set;
NTC_Value := NTC.Value (Integer (Read_NTC));
Text_IO.Put ("NTC Value: ");
Text_IO.Put_Hex (NTC_Value);
Text_IO.New_Line;
LED.Clear;
Delay_Clock.Delay_Slow_Periods (1);
end loop;
end NTC_Test;
begin
Init;
Delay_Clock.Init;
Text_IO.Put_Line ("NTC test ...");
NTC_Test;
end Main;
| 24.179487 | 100 | 0.669141 |
39199a4d4874da88ff861c2b1911514933c86452 | 1,356 | ads | Ada | src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/var_rec_arr/pck.ads | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 31 | 2018-08-01T21:25:24.000Z | 2022-02-14T07:52:34.000Z | src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/var_rec_arr/pck.ads | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 40 | 2018-12-03T19:48:52.000Z | 2021-03-10T06:34:26.000Z | src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/var_rec_arr/pck.ads | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 20 | 2018-11-16T21:19:22.000Z | 2021-10-18T23:08:24.000Z | -- Copyright 2015-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/>.
with System;
package Pck is
subtype Small_Type is Integer range 0 .. 10;
type Record_Type (I : Small_Type := 0) is record
S : String (1 .. I);
end record;
function Ident (R : Record_Type) return Record_Type;
type Array_Type is array (Integer range <>) of Record_Type;
procedure Do_Nothing (A : System.Address);
A1 : Array_Type := (1 => (I => 0, S => <>),
2 => (I => 1, S => "A"),
3 => (I => 2, S => "AB"));
A2 : Array_Type := (1 => (I => 2, S => "AB"),
2 => (I => 1, S => "A"),
3 => (I => 0, S => <>));
end Pck;
| 34.769231 | 73 | 0.603245 |
20f355948174559a43dc6bbc509242b5d799aee2 | 17,481 | adb | Ada | awa/src/awa-events-services.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | 81 | 2015-01-18T23:02:30.000Z | 2022-03-19T17:34:57.000Z | awa/src/awa-events-services.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | 20 | 2015-12-09T19:26:19.000Z | 2022-03-23T14:32:43.000Z | awa/src/awa-events-services.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | 16 | 2015-06-29T02:44:06.000Z | 2021-09-23T18:47:50.000Z | -----------------------------------------------------------------------
-- awa-events-services -- AWA Event Manager
-- Copyright (C) 2012, 2015, 2016, 2018, 2019, 2020 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.Unchecked_Deallocation;
with Util.Log.Loggers;
with ADO.SQL;
with ADO.Sessions;
with AWA.Events.Dispatchers.Tasks;
with AWA.Events.Dispatchers.Actions;
package body AWA.Events.Services is
Log : constant Util.Log.Loggers.Logger
:= Util.Log.Loggers.Create ("AWA.Events.Services");
-- ------------------------------
-- Send the event to the modules that subscribed to it.
-- The event is sent on each event queue. Event queues will dispatch the event
-- by invoking immediately or later on the `Dispatch`> operation.
-- The synchronous or asynchronous reception of the event depends
-- on the event queue.
-- ------------------------------
procedure Send (Manager : in Event_Manager;
Event : in Module_Event'Class) is
procedure Send_Queue (Queue : in Queue_Dispatcher);
procedure Send_Queue (Queue : in Queue_Dispatcher) is
begin
if not Queue.Queue.Has_Queue then
Queue.Dispatcher.Dispatch (Event);
else
Queue.Queue.Enqueue (Event);
end if;
end Send_Queue;
Name : constant Name_Access := Get_Event_Type_Name (Event.Kind);
begin
if Name = null then
Log.Error ("Cannot send event type {0}", Event_Index'Image (Event.Kind));
raise Not_Found;
end if;
-- Find the event queues associated with the event.
-- Post the event on each queue. Some queue can dispatch the event
-- immediately while some others may dispatched it asynchronously.
declare
Pos : Queue_Dispatcher_Lists.Cursor
:= Manager.Actions (Event.Kind).Queues.First;
begin
if not Queue_Dispatcher_Lists.Has_Element (Pos) then
Log.Debug ("Sending event {0} but there is no listener", Name.all);
else
Log.Debug ("Sending event {0}", Name.all);
loop
Queue_Dispatcher_Lists.Query_Element (Pos, Send_Queue'Access);
Queue_Dispatcher_Lists.Next (Pos);
exit when not Queue_Dispatcher_Lists.Has_Element (Pos);
end loop;
end if;
end;
end Send;
-- ------------------------------
-- Set the event message type which correspond to the `Kind` event index.
-- ------------------------------
procedure Set_Message_Type (Manager : in Event_Manager;
Event : in out AWA.Events.Models.Message_Ref;
Kind : in Event_Index) is
begin
if not Event_Arrays.Is_Valid (Kind) then
Log.Error ("Cannot send event type {0}", Event_Index'Image (Kind));
raise Not_Found;
end if;
Event.Set_Status (AWA.Events.Models.QUEUED);
Event.Set_Message_Type (Manager.Actions (Kind).Event);
end Set_Message_Type;
-- ------------------------------
-- Set the event queue associated with the event message.
-- The event queue identified by `Name` is searched to find the
-- `Queue_Ref` instance.
-- ------------------------------
procedure Set_Event_Queue (Manager : in Event_Manager;
Event : in out AWA.Events.Models.Message_Ref;
Name : in String) is
Queue : constant AWA.Events.Queues.Queue_Ref := Manager.Find_Queue (Name);
begin
Event.Set_Queue (Queue.Get_Queue);
end Set_Event_Queue;
-- ------------------------------
-- Dispatch the event identified by `Event` and associated with the event
-- queue `Queue`. The event actions which are associated with the event are
-- executed synchronously.
-- ------------------------------
procedure Dispatch (Manager : in Event_Manager;
Queue : in AWA.Events.Queues.Queue_Ref;
Event : in Module_Event'Class) is
procedure Find_Queue (List : in Queue_Dispatcher);
Found : Boolean := False;
procedure Find_Queue (List : in Queue_Dispatcher) is
begin
if List.Queue = Queue then
List.Dispatcher.Dispatch (Event);
Found := True;
end if;
end Find_Queue;
Name : constant Name_Access := Get_Event_Type_Name (Event.Kind);
begin
if Name = null then
Log.Error ("Cannot dispatch event type {0}", Event_Index'Image (Event.Kind));
raise Not_Found;
end if;
declare
Pos : Queue_Dispatcher_Lists.Cursor
:= Manager.Actions (Event.Kind).Queues.First;
begin
if not Queue_Dispatcher_Lists.Has_Element (Pos) then
Log.Debug ("Dispatching event {0} but there is no listener", Name.all);
else
Log.Debug ("Dispatching event {0}", Name.all);
loop
Queue_Dispatcher_Lists.Query_Element (Pos, Find_Queue'Access);
exit when Found;
Queue_Dispatcher_Lists.Next (Pos);
if not Queue_Dispatcher_Lists.Has_Element (Pos) then
Log.Debug ("Dispatched event {0} but there was no listener", Name.all);
exit;
end if;
end loop;
end if;
end;
end Dispatch;
-- ------------------------------
-- Find the event queue identified by the given name.
-- ------------------------------
function Find_Queue (Manager : in Event_Manager;
Name : in String) return AWA.Events.Queues.Queue_Ref is
Pos : constant Queues.Maps.Cursor := Manager.Queues.Find (Name);
begin
if Queues.Maps.Has_Element (Pos) then
return Queues.Maps.Element (Pos);
else
Log.Error ("Event queue {0} not found", Name);
return AWA.Events.Queues.Null_Queue;
end if;
end Find_Queue;
-- ------------------------------
-- Add the event queue in the registry.
-- ------------------------------
procedure Add_Queue (Manager : in out Event_Manager;
Queue : in AWA.Events.Queues.Queue_Ref) is
Name : constant String := Queue.Get_Name;
begin
if Manager.Queues.Contains (Name) then
Log.Error ("Event queue {0} already defined");
else
Log.Info ("Adding event queue {0}", Name);
end if;
Manager.Queues.Include (Key => Name,
New_Item => Queue);
end Add_Queue;
-- ------------------------------
-- Add an action invoked when the event identified by `Event` is sent.
-- The event is posted on the queue identified by `Queue`.
-- When the event queue dispatches the event, the Ada bean identified
-- by the method action represented by `Action` is created and initialized
-- by evaluating and setting the parameters defined in `Params`.
-- The action method is then invoked.
-- ------------------------------
procedure Add_Action (Manager : in out Event_Manager;
Event : in String;
Queue : in AWA.Events.Queues.Queue_Ref;
Action : in EL.Expressions.Method_Expression;
Params : in EL.Beans.Param_Vectors.Vector) is
procedure Find_Queue (List : in Queue_Dispatcher);
procedure Add_Action (List : in out Queue_Dispatcher);
procedure Add_Action (List : in out Queue_Dispatcher) is
use type AWA.Events.Dispatchers.Dispatcher_Access;
begin
if List.Dispatcher = null then
List.Dispatcher := AWA.Events.Dispatchers.Actions.Create_Dispatcher
(Application => Manager.Application.all'Access);
end if;
List.Dispatcher.Add_Action (Action, Params);
end Add_Action;
Found : Boolean := False;
procedure Find_Queue (List : in Queue_Dispatcher) is
begin
Found := List.Queue = Queue;
end Find_Queue;
Index : constant Event_Index := Find_Event_Index (Event);
Pos : Queue_Dispatcher_Lists.Cursor := Manager.Actions (Index).Queues.First;
begin
Log.Info ("Adding action {0} to event {1}", Action.Get_Expression, Event);
-- Find the queue.
while Queue_Dispatcher_Lists.Has_Element (Pos) loop
Queue_Dispatcher_Lists.Query_Element (Pos, Find_Queue'Access);
exit when Found;
Queue_Dispatcher_Lists.Next (Pos);
end loop;
-- Create it if it does not exist.
if not Found then
declare
New_Queue : Queue_Dispatcher;
begin
New_Queue.Queue := Queue;
Manager.Actions (Index).Queues.Append (New_Queue);
Pos := Manager.Actions (Index).Queues.Last;
end;
end if;
-- And append the new action to the event queue.
Manager.Actions (Index).Queues.Update_Element (Pos, Add_Action'Access);
end Add_Action;
-- ------------------------------
-- Add a dispatcher to process the event queues matching the `Match` string.
-- The dispatcher can create up to `Count` tasks running at the priority
-- `Priority`.
-- ------------------------------
procedure Add_Dispatcher (Manager : in out Event_Manager;
Match : in String;
Count : in Positive;
Priority : in Positive) is
use type AWA.Events.Dispatchers.Dispatcher_Access;
begin
Log.Info ("Adding event dispatcher with {0} tasks prio {1} and "
& "dispatching queues '{2}'",
Positive'Image (Count), Positive'Image (Priority), Match);
for I in Manager.Dispatchers'Range loop
if Manager.Dispatchers (I) = null then
Manager.Dispatchers (I) :=
Dispatchers.Tasks.Create_Dispatcher (Manager'Unchecked_Access,
Match, Count, Priority);
return;
end if;
end loop;
Log.Error ("Implementation limit is reached. Too many dispatcher.");
end Add_Dispatcher;
-- ------------------------------
-- Initialize the event manager.
-- ------------------------------
procedure Initialize (Manager : in out Event_Manager;
App : in Application_Access) is
procedure Set_Events (Msg : in AWA.Events.Models.Message_Type_Ref);
procedure Set_Events (Msg : in AWA.Events.Models.Message_Type_Ref) is
Name : constant String := Msg.Get_Name;
begin
declare
Index : constant Event_Index := Find_Event_Index (Name);
begin
Manager.Actions (Index).Event := Msg;
end;
exception
when others =>
Log.Warn ("Event {0} is no longer used", Name);
end Set_Events;
Msg_Types : AWA.Events.Models.Message_Type_Vector;
Query : ADO.SQL.Query;
DB : ADO.Sessions.Master_Session := App.Get_Master_Session;
begin
Log.Info ("Initializing {0} events", Event_Index'Image (Event_Arrays.Get_Last));
Manager.Application := App;
DB.Begin_Transaction;
Manager.Actions := new Event_Queues_Array (1 .. Event_Arrays.Get_Last);
AWA.Events.Models.List (Object => Msg_Types,
Session => DB,
Query => Query);
declare
Pos : AWA.Events.Models.Message_Type_Vectors.Cursor := Msg_Types.First;
begin
while Models.Message_Type_Vectors.Has_Element (Pos) loop
Models.Message_Type_Vectors.Query_Element (Pos, Set_Events'Access);
Models.Message_Type_Vectors.Next (Pos);
end loop;
end;
for I in Manager.Actions'Range loop
if Manager.Actions (I).Event.Is_Null then
declare
Name : constant Name_Access := Get_Event_Type_Name (I);
begin
Log.Info ("Creating event type {0} in database", Name.all);
Manager.Actions (I).Event.Set_Name (Name.all);
Manager.Actions (I).Event.Save (DB);
end;
end if;
end loop;
DB.Commit;
end Initialize;
-- ------------------------------
-- Start the event manager. The dispatchers are configured to dispatch
-- the event queues and tasks are started to process asynchronous events.
-- ------------------------------
procedure Start (Manager : in out Event_Manager) is
use type AWA.Events.Dispatchers.Dispatcher_Access;
-- Dispatch the event queues to the dispatcher according
-- to the dispatcher configuration.
procedure Associate_Dispatcher (Key : in String;
Queue : in out Events.Queues.Queue_Ref);
procedure Associate_Dispatcher (Key : in String;
Queue : in out Events.Queues.Queue_Ref) is
pragma Unreferenced (Key);
Added : Boolean := False;
begin
for I in reverse Manager.Dispatchers'Range loop
if Manager.Dispatchers (I) /= null then
Manager.Dispatchers (I).Add_Queue (Queue, Added);
exit when Added;
end if;
end loop;
end Associate_Dispatcher;
Iter : AWA.Events.Queues.Maps.Cursor := Manager.Queues.First;
begin
Log.Info ("Starting the event manager");
while AWA.Events.Queues.Maps.Has_Element (Iter) loop
Manager.Queues.Update_Element (Iter, Associate_Dispatcher'Access);
AWA.Events.Queues.Maps.Next (Iter);
end loop;
-- Start the dispatchers.
for I in Manager.Dispatchers'Range loop
exit when Manager.Dispatchers (I) = null;
Manager.Dispatchers (I).Start;
end loop;
end Start;
-- ------------------------------
-- Stop the event manager.
-- ------------------------------
procedure Stop (Manager : in out Event_Manager) is
use type AWA.Events.Dispatchers.Dispatcher_Access;
begin
Log.Info ("Stopping the event manager");
-- Stop the dispatchers.
for I in Manager.Dispatchers'Range loop
exit when Manager.Dispatchers (I) = null;
Manager.Dispatchers (I).Stop;
end loop;
end Stop;
-- ------------------------------
-- Get the application associated with the event manager.
-- ------------------------------
function Get_Application (Manager : in Event_Manager) return Application_Access is
begin
return Manager.Application;
end Get_Application;
-- ------------------------------
-- Finalize the queue dispatcher releasing the dispatcher memory.
-- ------------------------------
procedure Finalize (Object : in out Queue_Dispatcher) is
procedure Free is
new Ada.Unchecked_Deallocation (Object => Dispatchers.Dispatcher'Class,
Name => Dispatchers.Dispatcher_Access);
begin
Free (Object.Dispatcher);
end Finalize;
-- ------------------------------
-- Finalize the event queues and the dispatchers.
-- ------------------------------
procedure Finalize (Object : in out Event_Queues) is
begin
loop
declare
Pos : constant Queue_Dispatcher_Lists.Cursor := Object.Queues.First;
begin
exit when not Queue_Dispatcher_Lists.Has_Element (Pos);
Object.Queues.Update_Element (Position => Pos,
Process => Finalize'Access);
Object.Queues.Delete_First;
end;
end loop;
end Finalize;
-- ------------------------------
-- Finalize the event manager by releasing the allocated storage.
-- ------------------------------
overriding
procedure Finalize (Manager : in out Event_Manager) is
use type AWA.Events.Dispatchers.Dispatcher_Access;
procedure Free is
new Ada.Unchecked_Deallocation (Object => Event_Queues_Array,
Name => Event_Queues_Array_Access);
procedure Free is
new Ada.Unchecked_Deallocation (Object => Dispatchers.Dispatcher'Class,
Name => Dispatchers.Dispatcher_Access);
begin
-- Stop the dispatcher first.
for I in Manager.Dispatchers'Range loop
exit when Manager.Dispatchers (I) = null;
Free (Manager.Dispatchers (I));
end loop;
if Manager.Actions /= null then
for I in Manager.Actions'Range loop
Finalize (Manager.Actions (I));
end loop;
Free (Manager.Actions);
end if;
end Finalize;
end AWA.Events.Services;
| 38.674779 | 89 | 0.573937 |
c5eb1ed85c18535176d22bf630405a5f3a248592 | 5,982 | ads | Ada | source/libgela/gela-hash-crc-b32.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | 4 | 2016-02-05T15:51:56.000Z | 2022-03-25T20:38:32.000Z | source/libgela/gela-hash-crc-b32.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | source/libgela/gela-hash-crc-b32.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- G E L A A S I S --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- - - - - - - - - - - - - - - - --
-- Read copyright and license at the end of this file --
------------------------------------------------------------------------------
-- Purpose:
-- Name : CRC-32 [Ethernet, PKZip, AUTODIN II, FDDI]
-- Width : 32
-- Poly : 0x04C11DB7 x^32 + x^26 + x^22 + x^16 + x^12 + x^11
-- + x^10 + x^8 + x^7 + x^5 + x^4 + x^2 + x^1 + 1
-- Init : 0xFFFFFFFF
-- RefIn : True
-- RefOut: True
-- XorOut: 0xFFFFFFFF
-- Check : 0xCBF43926 ("123456789")
-- MaxLen: 4095 byte (32767 bit)
with Ada.Streams;
with Interfaces;
package Gela.Hash.CRC.b32 is
type CRC32 is new Interfaces.Unsigned_32;
type Hasher is private;
Initial_Hasher : constant Hasher;
procedure Update
(This : in out Hasher;
Value : in String);
procedure Wide_Update
(This : in out Hasher;
Value : in Wide_String);
procedure Wide_Wide_Update
(This : in out Hasher;
Value : in Wide_Wide_String);
procedure Update
(This : in out Hasher;
Value : in Ada.Streams.Stream_Element_Array);
function Result
(This : in Hasher)
return CRC32;
function Calculate
(Value : in String)
return CRC32;
function Wide_Calculate
(Value : in Wide_String)
return CRC32;
function Wide_Wide_Calculate
(Value : in Wide_Wide_String)
return CRC32;
function Calculate
(Value : in Ada.Streams.Stream_Element_Array)
return CRC32;
function To_Hash
(T : in CRC32)
return Hash_Type;
pragma Inline (To_Hash);
function Calculate
(Value : in String)
return Hash_Type;
pragma Inline (Calculate);
function Wide_Calculate
(Value : in Wide_String)
return Hash_Type;
pragma Inline (Calculate);
function Wide_Wide_Calculate
(Value : in Wide_Wide_String)
return Hash_Type;
pragma Inline (Calculate);
function Calculate
(Value : in Ada.Streams.Stream_Element_Array)
return Hash_Type;
pragma Inline (Calculate);
private
type Hasher is record
Length : Integer := 0;
Cm_Reg : CRC32 := 16#FFFFFFFF#;
end record;
Initial_Hasher : constant Hasher :=
(Length => 0, Cm_Reg => 16#FFFFFFFF#);
end Gela.Hash.CRC.b32;
------------------------------------------------------------------------------
-- Copyright (c) 2006, Andry Ogorodnik
-- 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.
--
-- 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.
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Copyright (c) 2006-2013, Maxim Reznik
-- 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 Maxim Reznik, 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 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.
------------------------------------------------------------------------------
| 37.3875 | 79 | 0.618355 |
4aa956586abdee0f7677d92ce053050553715ea9 | 1,315 | adb | Ada | source/Controller_Error.adb | bracke/Meaning | 709f609df916aa9442f9b75c7dcb62ab807a48e9 | [
"MIT"
] | null | null | null | source/Controller_Error.adb | bracke/Meaning | 709f609df916aa9442f9b75c7dcb62ab807a48e9 | [
"MIT"
] | null | null | null | source/Controller_Error.adb | bracke/Meaning | 709f609df916aa9442f9b75c7dcb62ab807a48e9 | [
"MIT"
] | null | null | null | with RASCAL.Toolbox; use RASCAL.Toolbox;
with RASCAL.OS; use RASCAL.OS;
with RASCAL.Error; use RASCAL.Error;
with RASCAL.MessageTrans; use RASCAL.MessageTrans;
with RASCAL.WimpTask; use RASCAL.WimpTask;
with Interfaces.C; use Interfaces.C;
with Main; use Main;
with Ada.Exceptions;
with Reporter;
package body Controller_Error is
--
package Toolbox renames RASCAL.Toolbox;
package OS renames RASCAL.OS;
package Error renames RASCAL.Error;
package MessageTrans renames RASCAL.MessageTrans;
package WimpTask renames RASCAL.WimpTask;
--
procedure Handle (The : in TEL_Toolbox_Error) is
E : Error_Pointer := WimpTask.Get_Error (Main_Task);
M : Error_Message_Pointer := new Error_Message_Type;
Result : Error_Return_Type := XButton1;
TB_Error : String := To_Ada (The.Event.all.Message);
begin
M.all.Message(1..TB_Error'Length) := TB_Error;
M.all.Category := Warning;
M.all.Flags := Error_Flag_OK;
Result := Error.Show_Message (E,M);
exception
when e2: others => Report_Error("TOOLBOXERROR",Ada.Exceptions.Exception_Information (e2));
end Handle;
--
end Controller_Error;
| 31.309524 | 96 | 0.637262 |
c555a82b9c3c149b7a67f757ed626d7d35eaaf47 | 3,818 | adb | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-parame.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-parame.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-parame.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . P A R A M E T E R S --
-- --
-- B o d y --
-- --
-- Copyright (C) 1995-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is the default (used on all native platforms) version of this package
pragma Compiler_Unit_Warning;
package body System.Parameters is
-------------------------
-- Adjust_Storage_Size --
-------------------------
function Adjust_Storage_Size (Size : Size_Type) return Size_Type is
begin
if Size = Unspecified_Size then
return Default_Stack_Size;
elsif Size < Minimum_Stack_Size then
return Minimum_Stack_Size;
else
return Size;
end if;
end Adjust_Storage_Size;
------------------------
-- Default_Stack_Size --
------------------------
function Default_Stack_Size return Size_Type is
Default_Stack_Size : Integer;
pragma Import (C, Default_Stack_Size, "__gl_default_stack_size");
begin
if Default_Stack_Size = -1 then
return 2 * 1024 * 1024;
else
return Size_Type (Default_Stack_Size);
end if;
end Default_Stack_Size;
------------------------
-- Minimum_Stack_Size --
------------------------
function Minimum_Stack_Size return Size_Type is
begin
-- 12K is required for stack-checking to work reliably on most platforms
-- when using the GCC scheme to propagate an exception in the ZCX case.
-- 16K is the value of PTHREAD_STACK_MIN under Linux, so is a reasonable
-- default.
return 16 * 1024;
end Minimum_Stack_Size;
end System.Parameters;
| 46 | 79 | 0.459403 |
10c79f77e57d469f036c3b03a28cf31e9a491b99 | 4,035 | ads | Ada | examples/servlets/sessions/source/servlets-hello.ads | reznikmm/matreshka | 6f4414cb5fc4d6d9ffce3b61347c06ce8d365cee | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | examples/servlets/hello_world/source/servlets-hello.ads | reznikmm/matreshka | 6f4414cb5fc4d6d9ffce3b61347c06ce8d365cee | [
"BSD-3-Clause"
] | 1 | 2021-03-16T16:09:54.000Z | 2021-08-30T10:37:31.000Z | examples/servlets/hello_world/source/servlets-hello.ads | reznikmm/matreshka | 6f4414cb5fc4d6d9ffce3b61347c06ce8d365cee | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Examples Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2016-2019, 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 League.Strings;
with Servlet.Generic_Servlets;
with Servlet.HTTP_Requests;
with Servlet.HTTP_Responses;
with Servlet.HTTP_Servlets;
package Servlets.Hello is
type Hello_Servlet is new Servlet.HTTP_Servlets.HTTP_Servlet
with private;
private
type Hello_Servlet is
new Servlet.HTTP_Servlets.HTTP_Servlet with null record;
overriding function Get_Servlet_Info
(Self : Hello_Servlet) return League.Strings.Universal_String;
overriding procedure Do_Get
(Self : in out Hello_Servlet;
Request : Servlet.HTTP_Requests.HTTP_Servlet_Request'Class;
Response : in out Servlet.HTTP_Responses.HTTP_Servlet_Response'Class);
overriding function Instantiate
(Parameters : not null access
Servlet.Generic_Servlets.Instantiation_Parameters'Class)
return Hello_Servlet;
end Servlets.Hello;
| 54.527027 | 78 | 0.479802 |
4a2ad1926f8f9d8860930b3a27efde27350f56f3 | 269 | ads | Ada | specs/ada/server/ees/tkmrpc-operation_handlers-ees-esa_acquire.ads | DrenfongWong/tkm-rpc | 075d22871cf81d497aac656c7f03a513278b641c | [
"BSD-3-Clause"
] | null | null | null | specs/ada/server/ees/tkmrpc-operation_handlers-ees-esa_acquire.ads | DrenfongWong/tkm-rpc | 075d22871cf81d497aac656c7f03a513278b641c | [
"BSD-3-Clause"
] | null | null | null | specs/ada/server/ees/tkmrpc-operation_handlers-ees-esa_acquire.ads | DrenfongWong/tkm-rpc | 075d22871cf81d497aac656c7f03a513278b641c | [
"BSD-3-Clause"
] | null | null | null | with Tkmrpc.Request;
with Tkmrpc.Response;
package Tkmrpc.Operation_Handlers.Ees.Esa_Acquire is
procedure Handle (Req : Request.Data_Type; Res : out Response.Data_Type);
-- Handler for the esa_acquire operation.
end Tkmrpc.Operation_Handlers.Ees.Esa_Acquire;
| 26.9 | 76 | 0.791822 |
c5417f6b1cfeb4f8bc95aa88c61a908db1ce52c2 | 3,534 | ads | Ada | boards/stm32_common/stm32f769disco/framebuffer_otm8009a.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 6 | 2017-05-28T04:37:11.000Z | 2020-11-22T11:26:19.000Z | boards/stm32_common/stm32f769disco/framebuffer_otm8009a.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 2 | 2019-08-30T10:57:40.000Z | 2020-02-11T21:34:14.000Z | boards/stm32_common/stm32f769disco/framebuffer_otm8009a.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 2 | 2017-02-07T19:42:02.000Z | 2020-11-22T11:26:20.000Z | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015-2017, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with HAL; use HAL;
with HAL.Framebuffer; use HAL.Framebuffer;
with HAL.Bitmap;
with Framebuffer_DSI;
private with STM32.Device;
private with STM32.DMA2D_Bitmap;
private with STM32.DSI;
private with STM32.GPIO;
package Framebuffer_OTM8009A is
LCD_Natural_Width : constant := Framebuffer_DSI.LCD_Natural_Width;
LCD_Natural_Height : constant := Framebuffer_DSI.LCD_Natural_Height;
type Frame_Buffer is limited
new HAL.Framebuffer.Frame_Buffer_Display with private;
procedure Initialize
(Display : in out Frame_Buffer;
Orientation : HAL.Framebuffer.Display_Orientation := Default;
Mode : HAL.Framebuffer.Wait_Mode := Interrupt);
private
DSI_RESET : STM32.GPIO.GPIO_Point renames STM32.Device.PJ15;
PLLSAIN : constant := 417;
PLLSAIR : constant := 5;
PLLSAI_DIVR : constant := 2;
PLL_N_Div : constant := 100;
PLL_IN_Div : constant STM32.DSI.DSI_PLL_IDF := STM32.DSI.PLL_IN_DIV5;
PLL_OUT_Div : constant STM32.DSI.DSI_PLL_ODF := STM32.DSI.PLL_OUT_DIV1;
type Frame_Buffer is limited new Framebuffer_DSI.Frame_Buffer
with null record;
end Framebuffer_OTM8009A;
| 49.774648 | 78 | 0.579796 |
dff12edd76d68bff6827a5de5c3dd3c6cbb788b5 | 82 | ads | Ada | tests/nonsmoke/functional/CompileTests/experimental_ada_tests/tests/aspect_spec.ads | rose-compiler/rose | 01d7439081c13c12ecbca312c04908fe0787f37a | [
"BSD-3-Clause"
] | 488 | 2015-01-09T08:54:48.000Z | 2022-03-30T07:15:46.000Z | tests/nonsmoke/functional/CompileTests/experimental_ada_tests/tests/aspect_spec.ads | rose-compiler/rose | 01d7439081c13c12ecbca312c04908fe0787f37a | [
"BSD-3-Clause"
] | 174 | 2015-01-28T18:41:32.000Z | 2022-03-31T16:51:05.000Z | tests/nonsmoke/functional/CompileTests/experimental_ada_tests/tests/aspect_spec.ads | rose-compiler/rose | 01d7439081c13c12ecbca312c04908fe0787f37a | [
"BSD-3-Clause"
] | 146 | 2015-04-27T02:48:34.000Z | 2022-03-04T07:32:53.000Z | package aspect_spec is
task type T
with Storage_Size => 1000;
end aspect_spec;
| 16.4 | 29 | 0.768293 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.