CombinedText stringlengths 4 3.42M |
|---|
with Ada.Text_IO; use Ada.Text_IO;
procedure Test_Recursion_Depth is
function Recursion (Depth : Positive) return Positive is
begin
return Recursion (Depth + 1);
exception
when Storage_Error =>
return Depth;
end Recursion;
begin
Put_Line ("Recursion depth on this system is" & Integer'Image (Recursion (1)));
end Test_Recursion_Depth;
|
------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding --
-- --
-- Terminal_Interface.Curses.Menus.Menu_User_Data --
-- --
-- B O D Y --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 1998-2014,2018 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Juergen Pfeifer, 1996
-- Version Control:
-- $Revision: 1.16 $
-- Binding Version 01.00
------------------------------------------------------------------------------
with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux;
package body Terminal_Interface.Curses.Menus.Menu_User_Data is
procedure Set_User_Data (Men : Menu;
Data : User_Access)
is
function Set_Menu_Userptr (Men : Menu;
Data : User_Access) return Eti_Error;
pragma Import (C, Set_Menu_Userptr, "set_menu_userptr");
begin
Eti_Exception (Set_Menu_Userptr (Men, Data));
end Set_User_Data;
function Get_User_Data (Men : Menu) return User_Access
is
function Menu_Userptr (Men : Menu) return User_Access;
pragma Import (C, Menu_Userptr, "menu_userptr");
begin
return Menu_Userptr (Men);
end Get_User_Data;
procedure Get_User_Data (Men : Menu;
Data : out User_Access)
is
begin
Data := Get_User_Data (Men);
end Get_User_Data;
end Terminal_Interface.Curses.Menus.Menu_User_Data;
|
package AUnit.Assertions.Generic_Helpers is
procedure Assert_Error
(Message : String;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Object_Type is private;
procedure Assert_Private
(Actual : Object_Type;
Expected : Object_Type;
Message : String;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Object_Type is private;
with function Image (Item : Object_Type) return String is <>;
procedure Assert_Private_Image
(Actual : Object_Type;
Expected : Object_Type;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Object_Type is limited private;
with function Equal (L, R : Object_Type) return Boolean;
procedure Assert_Limited_Private
(Actual : Object_Type;
Expected : Object_Type;
Message : String;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Object_Type is limited private;
with function Equal (L, R : Object_Type) return Boolean;
with function Image (Item : Object_Type) return String is <>;
procedure Assert_Limited_Private_Image
(Actual : Object_Type;
Expected : Object_Type;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
Default_Tolerance : constant := 1.0E-5;
generic
type Num is digits <>;
procedure Assert_Float
(Actual : Num;
Expected : Num;
Tolerance : Num := Default_Tolerance;
Message : String;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Num is digits <>;
procedure Assert_Float_Image
(Actual : Num;
Expected : Num;
Tolerance : Num := Default_Tolerance;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Num is range <>;
procedure Assert_Integer
(Actual : Num;
Expected : Num;
Message : String;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Num is range <>;
procedure Assert_Integer_Image
(Actual : Num;
Expected : Num;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Num is mod <>;
procedure Assert_Modular
(Actual : Num;
Expected : Num;
Message : String;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Num is mod <>;
procedure Assert_Modular_Image
(Actual : Num;
Expected : Num;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Enum is (<>);
procedure Assert_Enumeration
(Actual : Enum;
Expected : Enum;
Message : String;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
generic
type Enum is (<>);
procedure Assert_Enumeration_Image
(Actual : Enum;
Expected : Enum;
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line);
end AUnit.Assertions.Generic_Helpers;
|
-- Copyright 2019-2021 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 Pkg is
type Value_Record is record
I : Integer;
end record;
function Create (I : Integer) return Value is
begin
return new Value_Record'(I => I);
end Create;
end Pkg;
|
-- SPDX-FileCopyrightText: 2019-2021 Max Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
with Program.Cross_Reference_Updaters;
with Program.Element_Vector_Factories;
with Program.Element_Vectors;
with Program.Implicit_Element_Factories;
with Program.Visibility;
package Program.Predefined_Operators is
pragma Preelaborate;
procedure Create_Operators_For_Array
(Self : in out Program.Visibility.Context'Class;
Type_View : Program.Visibility.View;
Setter : not null
Program.Cross_Reference_Updaters.Cross_Reference_Updater_Access;
Factory : Program.Implicit_Element_Factories.Element_Factory;
Vectors : Program.Element_Vector_Factories.Element_Vector_Factory;
Result : out Program.Element_Vectors.Element_Vector_Access);
procedure Create_Operators_For_Integer
(Self : in out Program.Visibility.Context'Class;
Type_View : Program.Visibility.View;
Setter : not null
Program.Cross_Reference_Updaters.Cross_Reference_Updater_Access;
Factory : Program.Implicit_Element_Factories.Element_Factory;
Vectors : Program.Element_Vector_Factories.Element_Vector_Factory;
Result : out Program.Element_Vectors.Element_Vector_Access);
end Program.Predefined_Operators;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- S Y S T E M . I M G _ B I U --
-- --
-- S p e c --
-- --
-- $Revision: 2 $ --
-- --
-- Copyright (c) 1992,1993,1994 NYU, All Rights Reserved --
-- --
-- The GNAT library is free software; you can redistribute it and/or modify --
-- it under terms of the GNU Library General Public License as published by --
-- the Free Software Foundation; either version 2, or (at your option) any --
-- later version. The GNAT library is distributed in the hope that it will --
-- be useful, but WITHOUT ANY WARRANTY; without even the implied warranty --
-- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
-- Library General Public License for more details. You should have --
-- received a copy of the GNU Library General Public License along with --
-- the GNAT library; see the file COPYING.LIB. If not, write to the Free --
-- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
-- --
------------------------------------------------------------------------------
-- Contains the routine for computing the image in based format of signed and
-- unsigned integers whose size <= Integer'Size for use by Text_Io.Integer_Io,
-- Text_Io.Modular_Io, and the Img attribute.
with System.Unsigned_Types;
package System.Img_BIU is
pragma Preelaborate (Img_BIU);
procedure Set_Image_Based_Integer
(V : Integer;
B : Natural;
W : Integer;
S : out String;
P : in out Natural);
-- Sets the signed image of V in based format, using base value B (2..16)
-- starting at S (P + 1), updating P to point to the last character stored.
-- The image includes a leading minus sign if necessary, but no leading
-- spaces unless W is positive, in which case leading spaces are output if
-- necessary to ensure that the output string is no less than W characters
-- long. The caller promises that the buffer is large enough and no check
-- is made for this. Constraint_Error will not necessarily be raised if
-- this is violated, since it is perfectly valid to compile this unit with
-- checks off.
procedure Set_Image_Based_Unsigned
(V : System.Unsigned_Types.Unsigned;
B : Natural;
W : Integer;
S : out String;
P : in out Natural);
-- Sets the unsigned image of V in based format, using base value B (2..16)
-- starting at S (P + 1), updating P to point to the last character stored.
-- The image includes no leading spaces unless W is positive, in which case
-- leading spaces are output if necessary to ensure that the output string
-- is no less than W characters long. The caller promises that the buffer
-- is large enough and no check is made for this. Constraint_Error will not
-- necessarily be raised if this is violated, since it is perfectly valid
-- to compile this unit with checks off).
end System.Img_BIU;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . T A S K _ P R I M I T I V E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2001-2014, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- This is the version of this package for Ravenscar bare board targets
pragma Polling (Off);
-- Turn off polling, we do not want ATC polling to take place during tasking
-- operations. It causes infinite loops and other problems.
with System.OS_Interface;
package System.Task_Primitives
with SPARK_Mode => Off is -- because of access types
pragma Preelaborate;
type Task_Body_Access is access procedure;
-- Pointer to the task body's entry point (or possibly a wrapper
-- declared local to the GNARL).
type Private_Data is limited private;
-- Any information that the GNULLI needs maintained on a per-task
-- basis. A component of this type is guaranteed to be included
-- in the Ada_Task_Control_Block.
subtype Task_Address is System.Address;
Task_Address_Size : constant := Standard'Address_Size;
-- Type used for task addresses and its size
Alternate_Stack_Size : constant := 0;
-- No alternate signal stack is used on this platform
private
pragma SPARK_Mode (Off);
type Private_Data is limited record
Thread_Desc : aliased System.OS_Interface.Thread_Descriptor;
-- Thread descriptor associated to the ATCB to which it belongs
Thread : aliased System.OS_Interface.Thread_Id :=
System.OS_Interface.Null_Thread_Id;
-- Thread Id associated to the ATCB to which it belongs.
-- ??? It is mostly used by GDB, so we may want to remove it at some
-- point.
pragma Atomic (Thread);
-- Thread field may be updated by two different threads of control.
-- (See, Enter_Task and Create_Task in s-taprop.adb).
-- They put the same value (thr_self value). We do not want to
-- use lock on those operations and the only thing we have to
-- make sure is that they are updated in atomic fashion.
Lwp : aliased System.Address := System.Null_Address;
-- This element duplicates the Thread element. It is read by gdb when
-- the remote protocol is used.
end record;
end System.Task_Primitives;
|
<ADSWorkspace Revision="23" Version="100">
<Workspace Name="">
<LibraryDefs Name="lib.defs" />
<ConfigFile Name="dds.cfg" />
<ConfigFile Name="de_sim.cfg" />
<ConfigFile Name="hpeesofsim.cfg" />
<Log Name="netlist.log" />
<Log Name="search_history.log" />
<Preferences Name="layout.prf" />
<Preferences Name="schematic.prf" />
<Preferences Name="TP2_lib_lay.prf" />
<Preferences Name="TP2_lib_sch.prf" />
<Dataset Name="cell_1.ds" />
<Data_Files Name="cell_1.ds" />
<Data_Files Name="cell_1_data\logFile.txt" />
<Library Name="ads_standard_layers_ic" />
<Library Name="ads_schematic_layers_ic" />
<Library Name="ads_schematic_ports_ic" />
<Library Name="ads_sources" />
<Library Name="ads_tlines" />
<Library Name="ads_bondwires" />
<Library Name="ads_behavioral" />
<Library Name="ads_textfonts" />
<Library Name="ads_common_cmps" />
<Library Name="ads_designs" />
<Library Name="ads_pelib" />
<Library Name="ads_standard_layers" />
<Library Name="ads_schematic_layers" />
<Library Name="empro_standard_layers" />
<Library Name="ads_builtin" />
<Library Name="ads_rflib" />
<Library Name="ads_simulation" />
<Library Name="ads_datacmps" />
<Library Name="1xEV" />
<Library Name="3GPPFDD" />
<Library Name="3GPPFDD_10_99" />
<Library Name="Antennas_and_Propagation" />
<Library Name="CDMA" />
<Library Name="cdma2000" />
<Library Name="Circuit_Cosimulation" />
<Library Name="CMMB" />
<Library Name="Controllers" />
<Library Name="DTMB" />
<Library Name="DTV" />
<Library Name="EDGE" />
<Library Name="GSM" />
<Library Name="HDL_Blocks" />
<Library Name="HSDPA" />
<Library Name="HSUPA" />
<Library Name="Instruments" />
<Library Name="Interactive_Controls_and_Displays" />
<Library Name="LTE" />
<Library Name="Numeric" />
<Library Name="Obsolete" />
<Library Name="Signal_Converters" />
<Library Name="Simulation_Sequencing" />
<Library Name="Sinks" />
<Library Name="SystemVue_Cosimulation" />
<Library Name="TDSCDMA" />
<Library Name="Timed" />
<Library Name="UMB" />
<Library Name="UWB" />
<Library Name="WLAN" />
<Library Name="WLAN_11n" />
<Library Name="WMAN" />
<Library Name="WMAN_16e" />
<Library Name="TP2_lib" />
<Cell Name="TP2_lib:cell_1" />
<Log Name="readegs.log" />
<Dataset Name="emFar.ds" />
<Data_Files Name="emFar.ds" />
<Preferences Name="ads_rflib_lay.prf" />
<Preferences Name="ads_tlines_lay.prf" />
<Data_Display Name="cell_1.dds" />
<Data_Display Name="cell_1_v1.dds" />
<Dataset Name="cell_1_MomUW.ds" />
<Substrate Name="TP2_lib:substrate1.subst" />
</Workspace>
</ADSWorkspace>
|
-- OEML _ REST API
-- This section will provide necessary information about the `CoinAPI OEML REST API` protocol. This API is also available in the Postman application: <a href=\"https://postman.coinapi.io/\" target=\"_blank\">https://postman.coinapi.io/</a>
-- ------------ EDIT NOTE ------------
-- This file was generated with openapi-generator. You can modify it to implement
-- the server. After you modify this file, you should add the following line
-- to the .openapi-generator-ignore file:
--
-- src/.ads
--
-- Then, you can drop this edit note comment.
-- ------------ EDIT NOTE ------------
package is
end ;
|
-- Copyright (c) 2016, Matthew Morris <user="anglus"; domain="gmail.com">
--
-- 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 Ada.Text_IO; use Ada.Text_IO;
procedure Fizzbuzz_Newline is
type Range_Type is range 1 .. 100;
package I_IO is new Ada.Text_IO.Integer_IO (Range_Type);
begin
for Num in Range_Type loop
if Num mod 3 = 0 then
Put("fizz");
end if;
if Num mod 5 = 0 then
Put("buzz");
end if;
if Num mod 3 /= 0 and Num mod 5 /= 0 then
I_IO.Put(
Item => Num,
Width => 1,
Base => 10);
end if;
New_Line;
end loop;
end Fizzbuzz_Newline;
|
-- { dg-do compile }
-- { dg-options "-O" }
with Modular4_Pkg; use Modular4_Pkg;
procedure Modular4 is
begin
for I in Zero .. F mod 8 loop
raise Program_Error;
end loop;
end;
|
-- { dg-do compile }
-- { dg-options "-O -gnatws" }
-- PR middle-end/35136
pragma Extend_System(AUX_DEC);
with System;
procedure Loop_Address is
function Y(E : Integer) return String is
begin
return "";
end Y;
function X(C : in System.Address) return String is
D : Integer;
for D use at C;
begin
return Y(D);
end X;
A : System.Address;
B : String := "";
begin
for I in 0..1 loop
B := X(System."+"(A, I));
end loop;
end;
|
------------------------------------------------------------------------------
-- --
-- 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 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_adc.c --
-- @author MCD Application Team --
-- @version V1.3.1 --
-- @date 25-March-2015 --
-- @brief Header file of ADC HAL module. --
-- --
-- COPYRIGHT(c) 2014 STMicroelectronics --
------------------------------------------------------------------------------
with STM32_SVD.ADC; use STM32_SVD.ADC;
package body STM32.ADC is
procedure Set_Sequence_Position
(This : in out Analog_To_Digital_Converter;
Channel : Analog_Input_Channel;
Rank : Regular_Channel_Rank)
with Inline;
procedure Set_Sampling_Time
(This : in out Analog_To_Digital_Converter;
Channel : Analog_Input_Channel;
Sample_Time : Channel_Sampling_Times)
with Inline;
procedure Set_Injected_Channel_Sequence_Position
(This : in out Analog_To_Digital_Converter;
Channel : Analog_Input_Channel;
Rank : Injected_Channel_Rank)
with Inline;
procedure Set_Injected_Channel_Offset
(This : in out Analog_To_Digital_Converter;
Rank : Injected_Channel_Rank;
Offset : Injected_Data_Offset)
with Inline;
function Init (This : in out Analog_To_Digital_Converter) return Boolean is
Cal : Boolean;
begin
-- Exit from deep powerdown if so set
if This.CR.DEEPPWD then
This.CR.DEEPPWD := False; -- Cal is now a must btw
end if;
This.CR.ADVREGEN := True;
-- Wait 10usec per STs code
delay until Clock + ADC_VREG_Stabilization;
Cal := Calibration (This);
if not Cal or not This.CR.ADVREGEN then
return False;
else
return True;
end if;
end Init;
function Calibration (This : in out Analog_To_Digital_Converter) return Boolean is
-- Start : Time_Span;
begin
-- ADC should be disabled here.
This.CR.ADCAL := True;
delay until Clock + ADC_Calibration;
return This.CR.ADCAL = False;
end Calibration;
------------
-- Enable --
------------
procedure Enable (This : in out Analog_To_Digital_Converter) is
begin
if not This.CR.ADEN then
This.CR.ADEN := True;
delay until Clock + ADC_Stabilization;
end if;
end Enable;
-------------
-- Disable --
-------------
procedure Disable (This : in out Analog_To_Digital_Converter) is
begin
This.CR.ADEN := False;
end Disable;
-------------
-- Enabled --
-------------
function Enabled (This : Analog_To_Digital_Converter) return Boolean is
(This.CR.ADEN);
----------------------
-- Conversion_Value --
----------------------
function Conversion_Value
(This : Analog_To_Digital_Converter)
return UInt16
is
begin
return This.DR.regularDATA;
end Conversion_Value;
---------------------------
-- Data_Register_Address --
---------------------------
function Data_Register_Address
(This : Analog_To_Digital_Converter)
return System.Address
is
(This.DR'Address);
-------------------------------
-- Injected_Conversion_Value --
-------------------------------
function Injected_Conversion_Value
(This : Analog_To_Digital_Converter;
Rank : Injected_Channel_Rank)
return UInt16
is
begin
case Rank is
when 1 =>
return This.JDR1.JDATA1;
when 2 =>
return This.JDR2.JDATA2;
when 3 =>
return This.JDR3.JDATA3;
when 4 =>
return This.JDR4.JDATA4;
end case;
end Injected_Conversion_Value;
--------------------------------
-- Multimode_Conversion_Value --
--------------------------------
function Multimode_Conversion_Value return UInt32 is
--(C_ADC_Periph.CDR.Val);
(0);
--------------------
-- Configure_Unit --
--------------------
procedure Configure_Unit
(This : in out Analog_To_Digital_Converter;
Resolution : ADC_Resolution;
Alignment : Data_Alignment)
is
begin
This.CFGR.RES := ADC_Resolution'Enum_Rep (Resolution);
This.CFGR.ALIGN := Alignment = Left_Aligned;
end Configure_Unit;
------------------------
-- Current_Resolution --
------------------------
function Current_Resolution
(This : Analog_To_Digital_Converter)
return ADC_Resolution
is (ADC_Resolution'Val (This.CFGR.RES));
-----------------------
-- Current_Alignment --
-----------------------
function Current_Alignment
(This : Analog_To_Digital_Converter)
return Data_Alignment
is ((if This.CFGR.ALIGN then Left_Aligned else Right_Aligned));
---------------------------------
-- Configure_Common_Properties --
---------------------------------
procedure Configure_Common_Properties
(Mode : Multi_ADC_Mode_Selections;
Prescalar : ADC_Prescalars;
DMA_Mode : Multi_ADC_DMA_Modes;
Sampling_Delay : Sampling_Delay_Selections)
is
begin
-- C_ADC_Periph.CCR.MULT := Multi_ADC_Mode_Selections'Enum_Rep (Mode);
-- C_ADC_Periph.CCR.DELAY_k :=
-- Sampling_Delay_Selections'Enum_Rep (Sampling_Delay);
-- C_ADC_Periph.CCR.DMA := Multi_ADC_DMA_Modes'Enum_Rep (DMA_Mode);
-- C_ADC_Periph.CCR.ADCPRE := ADC_Prescalars'Enum_Rep (Prescalar);
null;
end Configure_Common_Properties;
-----------------------------------
-- Configure_Regular_Conversions --
-----------------------------------
procedure Configure_Regular_Conversions
(This : in out Analog_To_Digital_Converter;
Continuous : Boolean;
Trigger : Regular_Channel_Conversion_Trigger;
Enable_EOC : Boolean;
Conversions : Regular_Channel_Conversions)
is
begin
This.IER.EOCIE := Enable_EOC;
This.CFGR.CONT := Continuous;
--
-- This.CR1.SCAN := Conversions'Length > 1;
--
-- if Trigger.Enabler /= Trigger_Disabled then
-- This.CR2.EXTSEL := External_Events_Regular_Group'Enum_Rep (Trigger.Event);
-- This.CR2.EXTEN := External_Trigger'Enum_Rep (Trigger.Enabler);
-- else
This.CFGR.EXTSEL := 0;
This.CFGR.EXTEN := 0;
-- end if;
--
for Rank in Conversions'Range loop
declare
Conversion : Regular_Channel_Conversion renames Conversions (Rank);
begin
Configure_Regular_Channel
(This, Conversion.Channel, Rank, Conversion.Sample_Time);
--
-- -- We check the VBat first because that channel is also used for
-- -- the temperature sensor channel on some MCUs, in which case the
-- -- VBat conversion is the only one done. This order reflects that
-- -- hardware behavior.
-- if VBat_Conversion (This, Conversion.Channel) then
-- Enable_VBat_Connection;
-- elsif VRef_TemperatureSensor_Conversion (This, Conversion.Channel)
-- then
-- Enable_VRef_TemperatureSensor_Connection;
-- end if;
end;
end loop;
This.SQR1.L3 := UInt4 (Conversions'Length - 1); -- biased rep
end Configure_Regular_Conversions;
------------------------------------
-- Configure_Injected_Conversions --
------------------------------------
procedure Configure_Injected_Conversions
(This : in out Analog_To_Digital_Converter;
AutoInjection : Boolean;
Trigger : Injected_Channel_Conversion_Trigger;
Enable_EOC : Boolean;
Conversions : Injected_Channel_Conversions)
is
begin
This.IER.EOCIE := Enable_EOC;
-- Injected channels cannot be converted continuously. The only
-- exception is when an injected channel is configured to be converted
-- automatically after regular channels in continuous mode. See note in
-- RM 13.3.5, pg 390, and "Auto-injection" section on pg 392.
This.CFGR.JAUTO := AutoInjection;
if Trigger.Enabler /= Trigger_Disabled then
This.JSQR.JEXTEN := External_Trigger'Enum_Rep (Trigger.Enabler);
This.JSQR.JEXTSEL := External_Events_Injected_Group'Enum_Rep (Trigger.Event);
else
This.JSQR.JEXTEN := 0;
This.JSQR.JEXTSEL := 0;
end if;
for Rank in Conversions'Range loop
declare
Conversion : Injected_Channel_Conversion renames
Conversions (Rank);
begin
Configure_Injected_Channel
(This,
Conversion.Channel,
Rank,
Conversion.Sample_Time,
Conversion.Offset);
-- We check the VBat first because that channel is also used for
-- the temperature sensor channel on some MCUs, in which case the
-- VBat conversion is the only one done. This order reflects that
-- hardware behavior.
if VBat_Conversion (This, Conversion.Channel) then
Enable_VBat_Connection;
elsif VRef_TemperatureSensor_Conversion (This, Conversion.Channel)
then
Enable_VRef_TemperatureSensor_Connection;
end if;
end;
end loop;
This.JSQR.JL := UInt2 (Conversions'Length - 1); -- biased rep
end Configure_Injected_Conversions;
----------------------------
-- Enable_VBat_Connection --
----------------------------
procedure Enable_VBat_Connection is
begin
-- C_ADC_Periph.CCR.VBATE := True;
null;
end Enable_VBat_Connection;
------------------
-- VBat_Enabled --
------------------
function VBat_Enabled return Boolean is
-- (C_ADC_Periph.CCR.VBATE);
(False);
----------------------------------------------
-- Enable_VRef_TemperatureSensor_Connection --
----------------------------------------------
procedure Enable_VRef_TemperatureSensor_Connection is
begin
-- C_ADC_Periph.CCR.TSVREFE := True;
-- delay until Clock + Temperature_Sensor_Stabilization;
null;
end Enable_VRef_TemperatureSensor_Connection;
--------------------------------------
-- VRef_TemperatureSensor_Connected --
--------------------------------------
function VRef_TemperatureSensor_Enabled return Boolean is
-- (C_ADC_Periph.CCR.TSVREFE);
(False);
----------------------------------
-- Regular_Conversions_Expected --
----------------------------------
function Regular_Conversions_Expected (This : Analog_To_Digital_Converter)
return Natural is
(Natural (This.SQR1.L3) + 1);
-----------------------------------
-- Injected_Conversions_Expected --
-----------------------------------
function Injected_Conversions_Expected (This : Analog_To_Digital_Converter)
return Natural is
(Natural (This.JSQR.JL) + 1);
-----------------------
-- Scan_Mode_Enabled --
-----------------------
function Scan_Mode_Enabled (This : Analog_To_Digital_Converter)
return Boolean
-- is (This.CFGR.SCAN);
is (False);
---------------------------
-- EOC_Selection_Enabled --
---------------------------
function EOC_Selection_Enabled (This : Analog_To_Digital_Converter)
return Boolean
is (This.IER.EOCIE);
-------------------------------
-- Configure_Regular_Channel --
-------------------------------
procedure Configure_Regular_Channel
(This : in out Analog_To_Digital_Converter;
Channel : Analog_Input_Channel;
Rank : Regular_Channel_Rank;
Sample_Time : Channel_Sampling_Times)
is
begin
Set_Sampling_Time (This, Channel, Sample_Time);
Set_Sequence_Position (This, Channel, Rank);
end Configure_Regular_Channel;
--------------------------------
-- Configure_Injected_Channel --
--------------------------------
procedure Configure_Injected_Channel
(This : in out Analog_To_Digital_Converter;
Channel : Analog_Input_Channel;
Rank : Injected_Channel_Rank;
Sample_Time : Channel_Sampling_Times;
Offset : Injected_Data_Offset)
is
begin
Set_Sampling_Time (This, Channel, Sample_Time);
Set_Injected_Channel_Sequence_Position (This, Channel, Rank);
Set_Injected_Channel_Offset (This, Rank, Offset);
end Configure_Injected_Channel;
----------------------
-- Start_Conversion --
----------------------
procedure Start_Conversion (This : in out Analog_To_Digital_Converter) is
begin
if External_Trigger'Val (This.CFGR.EXTEN) /= Trigger_Disabled then
return;
end if;
-- L4 vvv out till we find out about multi-adc
-- if Multi_ADC_Mode_Selections'Val (C_ADC_Periph.CCR.MULT) = Independent
-- or else This'Address = STM32_SVD.ADC1_Base
-- then
This.CR.ADSTART := True;
-- end if;
end Start_Conversion;
------------------------
-- Conversion_Started --
------------------------
function Conversion_Started (This : Analog_To_Digital_Converter)
return Boolean
is
(This.CR.ADSTART);
-------------------------------
-- Start_Injected_Conversion --
-------------------------------
procedure Start_Injected_Conversion
(This : in out Analog_To_Digital_Converter)
is
begin
This.CR.JADSTART := True;
end Start_Injected_Conversion;
---------------------------------
-- Injected_Conversion_Started --
---------------------------------
function Injected_Conversion_Started (This : Analog_To_Digital_Converter)
return Boolean
is
(This.CR.JADSTART);
------------------------------
-- Watchdog_Enable_Channels --
------------------------------
procedure Watchdog_Enable_Channels
(This : in out Analog_To_Digital_Converter;
Mode : Multiple_Channels_Watchdog;
Low : Watchdog_Threshold;
High : Watchdog_Threshold)
is
begin
This.TR1.HT1 := High;
This.TR1.LT1 := Low;
-- see RM 13.3.7, pg 391, table 66
case Mode is
when Watchdog_All_Regular_Channels =>
This.CFGR.AWD1EN := True;
when Watchdog_All_Injected_Channels =>
This.CFGR.JAWD1EN := True;
when Watchdog_All_Both_Kinds =>
This.CFGR.AWD1EN := True;
This.CFGR.JAWD1EN := True;
end case;
end Watchdog_Enable_Channels;
-----------------------------
-- Watchdog_Enable_Channel --
-----------------------------
procedure Watchdog_Enable_Channel
(This : in out Analog_To_Digital_Converter;
Mode : Single_Channel_Watchdog;
Channel : Analog_Input_Channel;
Low : Watchdog_Threshold;
High : Watchdog_Threshold)
is
begin
This.TR1.HT1 := High;
This.TR1.LT1 := Low;
-- Set then channel
This.CFGR.AWDCH1CH := Channel;
-- Enable single channel mode
This.CFGR.AWD1SGL := True;
case Mode is
when Watchdog_Single_Regular_Channel =>
This.CFGR.AWD1EN := True;
when Watchdog_Single_Injected_Channel =>
This.CFGR.JAWD1EN := True;
when Watchdog_Single_Both_Kinds =>
This.CFGR.AWD1EN := True;
This.CFGR.JAWD1EN := True;
end case;
end Watchdog_Enable_Channel;
----------------------
-- Watchdog_Disable --
----------------------
procedure Watchdog_Disable (This : in out Analog_To_Digital_Converter) is
begin
This.CFGR.AWD1EN := False;
This.CFGR.JAWD1EN := False;
-- clearing the single-channel bit (AWGSDL) is not required to disable,
-- per the RM table 66, section 13.3.7, pg 391, but seems cleanest
This.CFGR.AWD1SGL := False;
end Watchdog_Disable;
----------------------
-- Watchdog_Enabled --
----------------------
function Watchdog_Enabled (This : Analog_To_Digital_Converter)
return Boolean
is
(This.CFGR.AWD1EN or This.CFGR.JAWD1EN);
-- per the RM table 66, section 13.3.7, pg 391
-------------------------------
-- Enable_Discontinuous_Mode --
-------------------------------
procedure Enable_Discontinuous_Mode
(This : in out Analog_To_Digital_Converter;
Regular : Boolean; -- if False, enabling for Injected channels
Count : Discontinuous_Mode_Channel_Count)
is
begin
if Regular then
This.CFGR.JDISCEN := False;
This.CFGR.DISCEN := True;
else -- Injected
This.CFGR.DISCEN := False;
This.CFGR.JDISCEN := True;
end if;
This.CFGR.DISCNUM := UInt3 (Count - 1); -- biased
end Enable_Discontinuous_Mode;
----------------------------------------
-- Disable_Discontinuous_Mode_Regular --
---------------------------------------
procedure Disable_Discontinuous_Mode_Regular
(This : in out Analog_To_Digital_Converter)
is
begin
This.CFGR.DISCEN := False;
end Disable_Discontinuous_Mode_Regular;
-----------------------------------------
-- Disable_Discontinuous_Mode_Injected --
-----------------------------------------
procedure Disable_Discontinuous_Mode_Injected
(This : in out Analog_To_Digital_Converter)
is
begin
This.CFGR.JDISCEN := False;
end Disable_Discontinuous_Mode_Injected;
----------------------------------------
-- Discontinuous_Mode_Regular_Enabled --
----------------------------------------
function Discontinuous_Mode_Regular_Enabled
(This : Analog_To_Digital_Converter)
return Boolean
is (This.CFGR.DISCEN);
-----------------------------------------
-- Discontinuous_Mode_Injected_Enabled --
-----------------------------------------
function Discontinuous_Mode_Injected_Enabled
(This : Analog_To_Digital_Converter)
return Boolean
is (This.CFGR.JDISCEN);
---------------------------
-- AutoInjection_Enabled --
---------------------------
function AutoInjection_Enabled
(This : Analog_To_Digital_Converter)
return Boolean
is (This.CFGR.JAUTO);
----------------
-- Enable_DMA --
----------------
procedure Enable_DMA (This : in out Analog_To_Digital_Converter) is
begin
This.CFGR.DMAEN := True;
end Enable_DMA;
-----------------
-- Disable_DMA --
-----------------
procedure Disable_DMA (This : in out Analog_To_Digital_Converter) is
begin
This.CFGR.DMAEN := False;
end Disable_DMA;
-----------------
-- DMA_Enabled --
-----------------
function DMA_Enabled (This : Analog_To_Digital_Converter) return Boolean is
(This.CFGR.DMAEN);
------------------------------------
-- Enable_DMA_After_Last_Transfer --
------------------------------------
procedure Enable_DMA_After_Last_Transfer
(This : in out Analog_To_Digital_Converter)
is
begin
-- This.CR2.DDS := True; -- doesn't exist on L4?
null;
end Enable_DMA_After_Last_Transfer;
-------------------------------------
-- Disable_DMA_After_Last_Transfer --
-------------------------------------
procedure Disable_DMA_After_Last_Transfer
(This : in out Analog_To_Digital_Converter)
is
begin
-- This.CR2.DDS := False;
null;
end Disable_DMA_After_Last_Transfer;
-------------------------------------
-- DMA_Enabled_After_Last_Transfer --
-------------------------------------
function DMA_Enabled_After_Last_Transfer
(This : Analog_To_Digital_Converter)
return Boolean
-- is (This.CR2.DDS);
is (False);
------------------------------------------
-- Multi_Enable_DMA_After_Last_Transfer --
------------------------------------------
procedure Multi_Enable_DMA_After_Last_Transfer is
begin
-- C_ADC_Periph.CCR.DMA := 1;
null;
end Multi_Enable_DMA_After_Last_Transfer;
-------------------------------------------
-- Multi_Disable_DMA_After_Last_Transfer --
-------------------------------------------
procedure Multi_Disable_DMA_After_Last_Transfer is
begin
-- C_ADC_Periph.CCR.DMA := 0;
null;
end Multi_Disable_DMA_After_Last_Transfer;
-------------------------------------------
-- Multi_DMA_Enabled_After_Last_Transfer --
-------------------------------------------
function Multi_DMA_Enabled_After_Last_Transfer return Boolean is
-- (C_ADC_Periph.CCR.DMA = 1);
(False);
---------------------
-- Poll_For_Status --
---------------------
procedure Poll_For_Status
(This : in out Analog_To_Digital_Converter;
Flag : ADC_Status_Flag;
Success : out Boolean;
Timeout : Time_Span := Time_Span_Last)
is
Deadline : constant Time := Clock + Timeout;
begin
Success := False;
while Clock < Deadline loop
if Status (This, Flag) then
Success := True;
exit;
end if;
end loop;
end Poll_For_Status;
------------
-- Status --
------------
function Status
(This : Analog_To_Digital_Converter;
Flag : ADC_Status_Flag)
return Boolean
is
begin
case Flag is
when Overrun =>
return This.ISR.OVR;
when Regular_Channel_Conversion_Started =>
return This.CR.ADSTART;
when Injected_Channel_Conversion_Started =>
return This.CR.JADSTART;
when Injected_Channel_Conversion_Complete =>
return This.ISR.JEOC;
when Regular_Channel_Conversion_Complete =>
return This.ISR.EOC;
when Analog_Watchdog_Event_Occurred =>
return This.ISR.AWD.Arr (1);
end case;
end Status;
------------------
-- Clear_Status --
------------------
procedure Clear_Status
(This : in out Analog_To_Digital_Converter;
Flag : ADC_Status_Flag)
is
begin
case Flag is
when Overrun =>
This.ISR.OVR := False;
when Regular_Channel_Conversion_Started =>
This.CR.ADSTART := False;
when Injected_Channel_Conversion_Started =>
This.CR.JADSTART := False;
when Injected_Channel_Conversion_Complete =>
This.ISR.JEOC := False;
when Regular_Channel_Conversion_Complete =>
This.ISR.EOC := False;
when Analog_Watchdog_Event_Occurred =>
This.ISR.AWD.Arr (1) := False;
end case;
end Clear_Status;
-----------------------
-- Enable_Interrupts --
-----------------------
procedure Enable_Interrupts
(This : in out Analog_To_Digital_Converter;
Source : ADC_Interrupts)
is
begin
case Source is
when Overrun =>
This.IER.OVRIE := True;
when Injected_Channel_Conversion_Complete =>
This.IER.JEOCIE := True;
when Regular_Channel_Conversion_Complete =>
This.IER.EOCIE := True;
when Analog_Watchdog_Event =>
This.IER.AWD1IE := True;
end case;
end Enable_Interrupts;
-----------------------
-- Interrupt_Enabled --
-----------------------
function Interrupt_Enabled
(This : Analog_To_Digital_Converter;
Source : ADC_Interrupts)
return Boolean
is
begin
case Source is
when Overrun =>
return This.IER.OVRIE;
when Injected_Channel_Conversion_Complete =>
return This.IER.JEOCIE;
when Regular_Channel_Conversion_Complete =>
return This.IER.EOCIE;
when Analog_Watchdog_Event =>
return This.IER.AWD1IE;
end case;
end Interrupt_Enabled;
------------------------
-- Disable_Interrupts --
------------------------
procedure Disable_Interrupts
(This : in out Analog_To_Digital_Converter;
Source : ADC_Interrupts)
is
begin
case Source is
when Overrun =>
This.IER.OVRIE := False;
when Injected_Channel_Conversion_Complete =>
This.IER.JEOCIE := False;
when Regular_Channel_Conversion_Complete =>
This.IER.EOCIE := False;
when Analog_Watchdog_Event =>
This.IER.AWD1IE := False;
end case;
end Disable_Interrupts;
-----------------------------
-- Clear_Interrupt_Pending --
-----------------------------
procedure Clear_Interrupt_Pending
(This : in out Analog_To_Digital_Converter;
Source : ADC_Interrupts)
is
begin
case Source is
when Overrun =>
This.ISR.OVR := False;
when Injected_Channel_Conversion_Complete =>
This.ISR.JEOC := False;
when Regular_Channel_Conversion_Complete =>
This.ISR.EOC := False;
when Analog_Watchdog_Event =>
This.ISR.AWD.Arr (1) := False;
end case;
end Clear_Interrupt_Pending;
---------------------------
-- Set_Sequence_Position --
---------------------------
procedure Set_Sequence_Position
(This : in out Analog_To_Digital_Converter;
Channel : Analog_Input_Channel;
Rank : Regular_Channel_Rank)
is
begin
case Rank is
when 1 =>
This.SQR1.SQ1 := Channel;
when 2 =>
This.SQR1.SQ2 := Channel;
when 3 =>
This.SQR1.SQ3 := Channel;
when 4 =>
This.SQR1.SQ4 := Channel;
when 5 =>
This.SQR2.SQ5 := Channel;
when 6 =>
This.SQR2.SQ6 := Channel;
when 7 =>
This.SQR2.SQ7 := Channel;
when 8 =>
This.SQR2.SQ8 := Channel;
when 9 =>
This.SQR2.SQ9 := Channel;
when 10 =>
This.SQR3.SQ10 := Channel;
when 11 =>
This.SQR3.SQ11 := Channel;
when 12 =>
This.SQR3.SQ12 := Channel;
when 13 =>
This.SQR3.SQ13 := Channel;
when 14 =>
This.SQR3.SQ14 := Channel;
when 15 =>
This.SQR4.SQ15 := Channel;
when 16 =>
This.SQR4.SQ16 := Channel;
when others =>
null;
end case;
end Set_Sequence_Position;
--------------------------------------------
-- Set_Injected_Channel_Sequence_Position --
--------------------------------------------
procedure Set_Injected_Channel_Sequence_Position
(This : in out Analog_To_Digital_Converter;
Channel : Analog_Input_Channel;
Rank : Injected_Channel_Rank)
is
begin
-- alas.. F4 is an array... not here since they alloc 6bits for a 5bit fld.
case Integer (Rank) is
when 1 =>
This.JSQR.JSQ1 := Channel;
when 2 =>
This.JSQR.JSQ2 := Channel;
when 3 =>
This.JSQR.JSQ3 := Channel;
when 4 =>
This.JSQR.JSQ4 := Channel;
when others =>
null;
end case;
end Set_Injected_Channel_Sequence_Position;
-----------------------
-- Set_Sampling_Time --
-----------------------
procedure Set_Sampling_Time
(This : in out Analog_To_Digital_Converter;
Channel : Analog_Input_Channel;
Sample_Time : Channel_Sampling_Times)
is
begin
if Channel > 9 then
This.SMPR2.SMP.Arr (Natural (Channel)) :=
Channel_Sampling_Times'Enum_Rep (Sample_Time);
else
This.SMPR1.SMP.Arr (Natural (Channel)) :=
Channel_Sampling_Times'Enum_Rep (Sample_Time);
end if;
end Set_Sampling_Time;
---------------------------------
-- Set_Injected_Channel_Offset --
---------------------------------
procedure Set_Injected_Channel_Offset
(This : in out Analog_To_Digital_Converter;
Rank : Injected_Channel_Rank;
Offset : Injected_Data_Offset)
is
begin
case Rank is
when 1 => This.OFR1.OFFSET1 := Offset;
when 2 => This.OFR2.OFFSET2 := Offset;
when 3 => This.OFR3.OFFSET3 := Offset;
when 4 => This.OFR4.OFFSET4 := Offset;
end case;
end Set_Injected_Channel_Offset;
end STM32.ADC;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- 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.Read_Variable_Actions.Hash is
new AMF.Elements.Generic_Hash (UML_Read_Variable_Action, UML_Read_Variable_Action_Access);
|
-- Unit.ads
with Interfaces.C; use Interfaces;
package Unit is
function Add (A, B : Integer) return Integer;
pragma Export (C, Add, "add");
end Unit;
|
with Ada.Text_IO, Mod_Inv;
procedure Chin_Rema is
N: array(Positive range <>) of Positive := (3, 5, 7);
A: array(Positive range <>) of Positive := (2, 3, 2);
Tmp: Positive;
Prod: Positive := 1;
Sum: Natural := 0;
begin
for I in N'Range loop
Prod := Prod * N(I);
end loop;
for I in A'Range loop
Tmp := Prod / N(I);
Sum := Sum + A(I) * Mod_Inv.Inverse(Tmp, N(I)) * Tmp;
end loop;
Ada.Text_IO.Put_Line(Integer'Image(Sum mod Prod));
end Chin_Rema;
|
with agar.core.types;
with agar.gui.widget;
with agar.gui.rect;
package agar.gui.draw is
procedure box
(widget : agar.gui.widget.widget_access_t;
rect : agar.gui.rect.rect_t;
color : agar.core.types.uint32_t);
pragma import (c, box, "agar_draw_box");
procedure box_rounded
(widget : agar.gui.widget.widget_access_t;
rect : agar.gui.rect.rect_t;
z : natural;
radius : natural;
color : agar.core.types.uint32_t);
pragma inline (box_rounded);
procedure box_rounded_top
(widget : agar.gui.widget.widget_access_t;
rect : agar.gui.rect.rect_t;
z : natural;
radius : natural;
color : agar.core.types.uint32_t);
pragma inline (box_rounded_top);
procedure frame
(widget : agar.gui.widget.widget_access_t;
rect : agar.gui.rect.rect_t;
color : agar.core.types.uint32_t);
pragma import (c, frame, "agar_draw_frame");
procedure circle
(widget : agar.gui.widget.widget_access_t;
x : natural;
y : natural;
radius : natural;
color : agar.core.types.uint32_t);
pragma inline (circle);
procedure circle2
(widget : agar.gui.widget.widget_access_t;
x : natural;
y : natural;
radius : natural;
color : agar.core.types.uint32_t);
pragma inline (circle2);
procedure line
(widget : agar.gui.widget.widget_access_t;
x1 : natural;
y1 : natural;
x2 : natural;
y2 : natural;
color : agar.core.types.uint32_t);
pragma inline (line);
procedure line_horizontal
(widget : agar.gui.widget.widget_access_t;
x1 : natural;
x2 : natural;
y : natural;
color : agar.core.types.uint32_t);
pragma inline (line_horizontal);
procedure line_vertical
(widget : agar.gui.widget.widget_access_t;
x : natural;
y1 : natural;
y2 : natural;
color : agar.core.types.uint32_t);
pragma inline (line_vertical);
procedure rect_outline
(widget : agar.gui.widget.widget_access_t;
rect : agar.gui.rect.rect_t;
color : agar.core.types.uint32_t);
pragma import (c, rect_outline, "agar_draw_rect_outline");
procedure rect_filled
(widget : agar.gui.widget.widget_access_t;
rect : agar.gui.rect.rect_t;
color : agar.core.types.uint32_t);
pragma import (c, rect_filled, "agar_draw_rect_filled");
end agar.gui.draw;
|
-- Copyright 2008-2014 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package Pck is
procedure Do_Nothing;
end Pck;
|
-- 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.
name = "Digitorus"
type = "cert"
function start()
set_rate_limit(2)
end
function vertical(ctx, domain)
scrape(ctx, {['url']=build_url(domain)})
end
function build_url(domain)
return "https://certificatedetails.com/" .. domain
end
|
with Ada.Finalization;
with kv.avm.Line_Parser;
with kv.avm.Tuples;
package kv.avm.Ini is
type Settings_Type is new Ada.Finalization.Controlled and kv.avm.Line_Parser.Parse_Line_Interface with private;
overriding procedure Initialize (Self : in out Settings_Type);
overriding procedure Adjust (Self : in out Settings_Type);
overriding procedure Finalize (Self : in out Settings_Type);
overriding procedure Parse_Line
(Self : in out Settings_Type;
Line : in String);
function Has(Self : Settings_Type; Key : String) return Boolean;
function Lookup_As_String(Self : Settings_Type; Key : String; Index : Positive := 1) return String;
function Lookup_As_Integer(Self : Settings_Type; Key : String; Index : Positive := 1) return Integer;
function Lookup_As_Tuple(Self : Settings_Type; Key : String; Index : Positive := 1) return kv.avm.Tuples.Tuple_Type;
procedure Add_Value_To_Existing_Key
(Self : in out Settings_Type;
Key : in String;
Value : in String);
procedure Insert
(Self : in out Settings_Type;
Key : in String;
Value : in String);
function Value_Count_For_Key(Self : Settings_Type; Key : String) return Natural;
procedure Parse_Input_File
(Self : in out Settings_Type;
File_In : in String);
private
type Settings_Reference_Counter_Type;
type Settings_Reference_Counter_Access is access all Settings_Reference_Counter_Type;
type Settings_Type is new Ada.Finalization.Controlled and kv.avm.Line_Parser.Parse_Line_Interface with
record
Ref : Settings_Reference_Counter_Access;
end record;
end kv.avm.Ini;
|
------------------------------------------------------------------------------
-- --
-- GNAT SYSTEM UTILITIES --
-- --
-- X U T I L --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2012, 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. --
-- --
------------------------------------------------------------------------------
-- Shared routines for the build-time code generation utilities
with Ada.Streams.Stream_IO;
with Ada.Strings.Unbounded;
package XUtil is
subtype VString is Ada.Strings.Unbounded.Unbounded_String;
subtype Sfile is Ada.Streams.Stream_IO.File_Type;
procedure Put (F : Sfile; S : String);
procedure Put (F : Sfile; S : VString);
procedure Put_Line (F : Sfile; S : String);
procedure Put_Line (F : Sfile; S : VString);
procedure New_Line (F : Sfile);
-- Similar to the same-named Ada.Text_IO routines, but ensure UNIX line
-- ending on all platforms.
end XUtil;
|
-------------------------------------------------------------------------------
-- Copyright (c) 2019 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.Constants; use DW1000.Constants;
with DW1000.Registers; use DW1000.Registers;
with DW1000.Register_Driver; use DW1000.Register_Driver;
with DW1000.Reception_Quality; use DW1000.Reception_Quality;
with Interfaces; use Interfaces;
package body DecaDriver
with SPARK_Mode => On
is
use Implementation;
Default_SFD_Timeout : constant DW1000.Driver.SFD_Timeout_Number := 16#1041#;
Null_Frame_Info : constant Frame_Info_Type
:= (RX_TIME_Reg => (others => <>),
RX_FINFO_Reg => (others => <>),
RX_FQUAL_Reg => (STD_NOISE => 0,
FP_AMPL2 => 0,
FP_AMPL3 => 0,
CIR_PWR => 0),
RXPACC_NOSAT_Reg => (RXPACC_NOSAT => 0),
RX_TTCKI_Reg => (RXTTCKI => 0),
RX_TTCKO_Reg => (RXTOFS => 0,
RSMPDEL => 0,
RCPHASE => 0.0,
Reserved_1 => 0,
Reserved_2 => 0),
SFD_LENGTH => 64,
Non_Standard_SFD => False);
-------------------------
-- Receive_Timestamp --
-------------------------
function Receive_Timestamp (Frame_Info : in Frame_Info_Type)
return Fine_System_Time is
begin
return Frame_Info.RX_TIME_Reg.RX_STAMP;
end Receive_Timestamp;
----------------------------
-- Receive_Signal_Power --
----------------------------
function Receive_Signal_Power (Frame_Info : in Frame_Info_Type)
return Float is
RXBR : RX_FINFO_RXBR_Field;
SFD_LENGTH : Bits_8;
RXPACC : RX_FINFO_RXPACC_Field;
begin
RXBR := Frame_Info.RX_FINFO_Reg.RXBR;
if RXBR = Reserved then -- Detect reserved value
RXBR := Data_Rate_6M8; -- default to 6.8 Mbps
end if;
SFD_LENGTH := Frame_Info.SFD_LENGTH;
if Frame_Info.Non_Standard_SFD and SFD_LENGTH not in 8 | 16 then
SFD_LENGTH := 8; -- default to length 8
end if;
RXPACC := Adjust_RXPACC
(RXPACC => Frame_Info.RX_FINFO_Reg.RXPACC,
RXPACC_NOSAT => Frame_Info.RXPACC_NOSAT_Reg.RXPACC_NOSAT,
RXBR => RXBR,
SFD_LENGTH => SFD_LENGTH,
Non_Standard_SFD => Frame_Info.Non_Standard_SFD);
return Receive_Signal_Power
(Use_16MHz_PRF => Frame_Info.RX_FINFO_Reg.RXPRF = PRF_16MHz,
RXPACC => RXPACC,
CIR_PWR => Frame_Info.RX_FQUAL_Reg.CIR_PWR);
end Receive_Signal_Power;
-------------------------------
-- First_Path_Signal_Power --
-------------------------------
function First_Path_Signal_Power (Frame_Info : in Frame_Info_Type)
return Float is
RXBR : RX_FINFO_RXBR_Field;
SFD_LENGTH : Bits_8;
RXPACC : RX_FINFO_RXPACC_Field;
begin
RXBR := Frame_Info.RX_FINFO_Reg.RXBR;
if RXBR = Reserved then -- Detect reserved value
RXBR := Data_Rate_6M8; -- default to 6.8 Mbps
end if;
SFD_LENGTH := Frame_Info.SFD_LENGTH;
if Frame_Info.Non_Standard_SFD and SFD_LENGTH not in 8 | 16 then
SFD_LENGTH := 8; -- default to length 8
end if;
RXPACC := Adjust_RXPACC
(RXPACC => Frame_Info.RX_FINFO_Reg.RXPACC,
RXPACC_NOSAT => Frame_Info.RXPACC_NOSAT_Reg.RXPACC_NOSAT,
RXBR => RXBR,
SFD_LENGTH => SFD_LENGTH,
Non_Standard_SFD => Frame_Info.Non_Standard_SFD);
return First_Path_Signal_Power
(Use_16MHz_PRF => Frame_Info.RX_FINFO_Reg.RXPRF = PRF_16MHz,
F1 => Frame_Info.RX_TIME_Reg.FP_AMPL1,
F2 => Frame_Info.RX_FQUAL_Reg.FP_AMPL2,
F3 => Frame_Info.RX_FQUAL_Reg.FP_AMPL3,
RXPACC => RXPACC);
end First_Path_Signal_Power;
--------------------------------
-- Transmitter_Clock_Offset --
--------------------------------
function Transmitter_Clock_Offset (Frame_Info : in Frame_Info_Type)
return Long_Float is
begin
return Transmitter_Clock_Offset
(RXTOFS => Frame_Info.RX_TTCKO_Reg.RXTOFS,
RXTTCKI => Frame_Info.RX_TTCKI_Reg.RXTTCKI);
end Transmitter_Clock_Offset;
--------------
-- Driver --
--------------
protected body Driver is
------------------
-- Initialize --
------------------
procedure Initialize (Load_Antenna_Delay : in Boolean;
Load_XTAL_Trim : in Boolean;
Load_UCode_From_ROM : in Boolean) is
Word : Bits_32;
PMSC_CTRL1_Reg : DW1000.Register_Types.PMSC_CTRL1_Type;
SYS_MASK_Reg : DW1000.Register_Types.SYS_MASK_Type;
begin
DW1000.Driver.Enable_Clocks (DW1000.Driver.Force_Sys_XTI);
DW1000.Driver.Read_OTP (OTP_ADDR_CHIP_ID, Part_ID);
DW1000.Driver.Read_OTP (OTP_ADDR_LOT_ID, Lot_ID);
if Load_Antenna_Delay then
DW1000.Driver.Read_OTP (OTP_ADDR_ANTENNA_DELAY,
Word);
-- High 16 bits are the antenna delay with a 64 MHz PRF.
-- Low 16 bits are the antenna delay with a 16 MHz PRF.
Antenna_Delay_PRF_16 := To_Antenna_Delay_Time (Bits_16 (Word and 16#FFFF#));
Word := Shift_Right (Word, 16);
Antenna_Delay_PRF_64 := To_Antenna_Delay_Time (Bits_16 (Word and 16#FFFF#));
else
Antenna_Delay_PRF_16 := 0.0;
Antenna_Delay_PRF_64 := 0.0;
end if;
if Load_XTAL_Trim then
DW1000.Driver.Read_OTP (OTP_ADDR_XTAL_TRIM, Word);
XTAL_Trim := FS_XTALT_Field (Word and 2#1_1111#);
else
XTAL_Trim := 2#1_0000#; -- Set to midpoint
end if;
if Load_UCode_From_ROM then
DW1000.Driver.Load_LDE_From_ROM;
else
-- Should disable LDERUN bit, since the LDE isn't loaded.
DW1000.Registers.PMSC_CTRL1.Read (PMSC_CTRL1_Reg);
PMSC_CTRL1_Reg.LDERUNE := Disabled;
DW1000.Registers.PMSC_CTRL1.Write (PMSC_CTRL1_Reg);
end if;
DW1000.Driver.Enable_Clocks (Force_Sys_PLL);
DW1000.Driver.Enable_Clocks (Enable_All_Seq);
-- Store a local copy of the SYS_CFG register
DW1000.Registers.SYS_CFG.Read (SYS_CFG_Reg);
-- Configure IRQs
DW1000.Registers.SYS_MASK.Read (SYS_MASK_Reg);
SYS_MASK_Reg.MRXRFTO := Not_Masked;
SYS_MASK_Reg.MRXSFDTO := Not_Masked;
SYS_MASK_Reg.MRXPHE := Not_Masked;
SYS_MASK_Reg.MRXRFSL := Not_Masked;
SYS_MASK_Reg.MRXDFR := Not_Masked; -- Always detect frame received
SYS_MASK_Reg.MTXFRS := Not_Masked; -- Always detect frame sent
DW1000.Registers.SYS_MASK.Write (SYS_MASK_Reg);
Detect_Frame_Timeout := True;
Detect_SFD_Timeout := True;
Detect_PHR_Error := True;
Detect_RS_Error := True;
Detect_FCS_Error := True;
end Initialize;
-----------------
-- Configure --
-----------------
procedure Configure (Config : in Configuration_Type) is
begin
-- 110 kbps data rate has special handling
if Config.Data_Rate = DW1000.Driver.Data_Rate_110k then
SYS_CFG_Reg.RXM110K := SFD_110K;
else
SYS_CFG_Reg.RXM110K := SFD_850K_6M8;
end if;
-- Set physical header mode (standard or extended frames)
Long_Frames := Config.PHR_Mode = Extended_Frames;
SYS_CFG_Reg.PHR_MODE := SYS_CFG_PHR_MODE_Field'Val
(Physical_Header_Modes'Pos (Config.PHR_Mode));
DW1000.Registers.SYS_CFG.Write (SYS_CFG_Reg);
DW1000.Driver.Configure_LDE (Config.PRF,
Config.Rx_Preamble_Code,
Config.Data_Rate);
DW1000.Driver.Configure_PLL (Config.Channel);
DW1000.Driver.Configure_RF (Config.Channel);
DW1000.Driver.Configure_DRX
(PRF => Config.PRF,
Data_Rate => Config.Data_Rate,
Tx_Preamble_Length => Config.Tx_Preamble_Length,
PAC => Config.Rx_PAC,
SFD_Timeout => (if Config.SFD_Timeout = 0
then Default_SFD_Timeout
else Config.SFD_Timeout),
Nonstandard_SFD => Config.Use_Nonstandard_SFD);
DW1000.Driver.Configure_AGC (Config.PRF);
DW1000.Driver.Configure_TC (Config.Channel);
-- If a non-std SFD is used then the SFD length must be programmed
-- for the DecaWave SFD, based on the data rate.
if Config.Use_Nonstandard_SFD then
Configure_Nonstandard_SFD_Length (Config.Data_Rate);
end if;
-- Configure the channel, Rx PRF, non-std SFD, and preamble codes
DW1000.Registers.CHAN_CTRL.Write
(DW1000.Register_Types.CHAN_CTRL_Type'
(TX_CHAN => CHAN_CTRL_Channel_Field (Config.Channel),
RX_CHAN => CHAN_CTRL_Channel_Field (Config.Channel),
DWSFD => (if Config.Use_Nonstandard_SFD
then Enabled
else Disabled),
RXPRF => (if Config.PRF = PRF_16MHz
then PRF_16MHz
else PRF_64MHz),
TNSSFD => (if Config.Use_Nonstandard_SFD
then Enabled
else Disabled),
RNSSFD => (if Config.Use_Nonstandard_SFD
then Enabled
else Disabled),
TX_PCODE => CHAN_CTRL_PCODE_Field (Config.Tx_Preamble_Code),
RX_PCODE => CHAN_CTRL_PCODE_Field (Config.Rx_Preamble_Code),
Reserved => 0));
-- Set the Tx frame control (transmit data rate, PRF, ranging bit)
DW1000.Registers.TX_FCTRL.Write
(DW1000.Register_Types.TX_FCTRL_Type'
(TFLEN => 0,
TFLE => 0,
R => 0,
TXBR => (case Config.Data_Rate is
when Data_Rate_110k => Data_Rate_110K,
when Data_Rate_850k => Data_Rate_850K,
when Data_Rate_6M8 => Data_Rate_6M8),
TR => Enabled,
TXPRF => (if Config.PRF = PRF_16MHz then PRF_16MHz else PRF_64MHz),
TXPSR =>
(case Config.Tx_Preamble_Length is
when PLEN_64 | PLEN_128 | PLEN_256 | PLEN_512 => PLEN_64,
when PLEN_1024 | PLEN_1536 | PLEN_2048 => PLEN_1024,
when others => PLEN_4096),
PE =>
(case Config.Tx_Preamble_Length is
when PLEN_64 | PLEN_1024 | PLEN_4096 => 2#00#,
when PLEN_128 | PLEN_1536 => 2#01#,
when PLEN_256 | PLEN_2048 => 2#10#,
when others => 2#11#),
TXBOFFS => 0,
IFSDELAY => 0));
-- Load the crystal trim (if requested)
if Use_OTP_XTAL_Trim then
DW1000.Driver.Set_XTAL_Trim (XTAL_Trim);
end if;
-- Load the antenna delay (if requested)
if Use_OTP_Antenna_Delay then
if Config.PRF = PRF_16MHz then
DW1000.Driver.Write_Tx_Antenna_Delay (Antenna_Delay_PRF_16);
DW1000.Driver.Write_Rx_Antenna_Delay (Antenna_Delay_PRF_16);
else
DW1000.Driver.Write_Tx_Antenna_Delay (Antenna_Delay_PRF_64);
DW1000.Driver.Write_Rx_Antenna_Delay (Antenna_Delay_PRF_64);
end if;
end if;
end Configure;
------------------------
-- Configure_Errors --
------------------------
procedure Configure_Errors (Enable_Frame_Timeout : in Boolean;
Enable_SFD_Timeout : in Boolean;
Enable_PHR_Error : in Boolean;
Enable_RS_Error : in Boolean;
Enable_FCS_Error : in Boolean) is
begin
Detect_Frame_Timeout := Enable_Frame_Timeout;
Detect_SFD_Timeout := Enable_SFD_Timeout;
Detect_PHR_Error := Enable_PHR_Error;
Detect_RS_Error := Enable_RS_Error;
Detect_FCS_Error := Enable_FCS_Error;
end Configure_Errors;
-----------------------
-- Force_Tx_Rx_Off --
-----------------------
procedure Force_Tx_Rx_Off is
begin
DW1000.Driver.Force_Tx_Rx_Off;
-- Set the Tx Complete flag to True to ensure any task waiting for
-- the current transmission to complete.
Ada.Synchronous_Task_Control.Set_True (Tx_Complete_Flag);
end Force_Tx_Rx_Off;
-------------------
-- Get_Part_ID --
-------------------
function Get_Part_ID return Bits_32 is
begin
return Part_ID;
end Get_Part_ID;
------------------
-- Get_Lot_ID --
------------------
function Get_Lot_ID return Bits_32 is
begin
return Lot_ID;
end Get_Lot_ID;
----------------
-- PHR_Mode --
----------------
function PHR_Mode return DW1000.Driver.Physical_Header_Modes is
begin
if Long_Frames then
return Extended_Frames;
else
return Standard_Frames;
end if;
end PHR_Mode;
--------------------------
-- Start_Tx_Immediate --
--------------------------
procedure Start_Tx_Immediate (Rx_After_Tx : in Boolean;
Auto_Append_FCS : in Boolean) is
begin
DW1000.Driver.Start_Tx_Immediate (Rx_After_Tx, Auto_Append_FCS);
Ada.Synchronous_Task_Control.Set_False (Tx_Complete_Flag);
end Start_Tx_Immediate;
------------------------
-- Start_Tx_Delayed --
------------------------
procedure Start_Tx_Delayed
(Rx_After_Tx : in Boolean;
Result : out DW1000.Driver.Result_Type) is
begin
DW1000.Driver.Start_Tx_Delayed (Rx_After_Tx => Rx_After_Tx,
Result => Result);
if Result = DW1000.Driver.Success then
Ada.Synchronous_Task_Control.Set_False (Tx_Complete_Flag);
else
Ada.Synchronous_Task_Control.Set_True (Tx_Complete_Flag);
end if;
end Start_Tx_Delayed;
---------------
-- Rx_Wait --
---------------
entry Rx_Wait (Frame : in out DW1000.Types.Byte_Array;
Length : out Frame_Length_Number;
Frame_Info : out Frame_Info_Type;
Status : out Rx_Status_Type;
Overrun : out Boolean)
when Frame_Ready is
begin
pragma Assume (Frame_Ready,
"barrier condition is true on entry");
pragma Assume ((if Frame_Ready then Rx_Count > 0),
"Invariant for the Receiver protected object");
Length := Frame_Queue (Queue_Head).Length;
Frame_Info := Frame_Queue (Queue_Head).Frame_Info;
Status := Frame_Queue (Queue_Head).Status;
Overrun := Frame_Queue (Queue_Head).Overrun;
if Status = No_Error then
if Length > 0 then
if Frame'Length >= Length then
Frame (Frame'First .. Frame'First + Integer (Length - 1))
:= Frame_Queue (Queue_Head).Frame (1 .. Length);
else
Frame := Frame_Queue (Queue_Head).Frame (1 .. Frame'Length);
end if;
end if;
else
Length := 0;
end if;
Queue_Head := Queue_Head + 1;
Rx_Count := Rx_Count - 1;
Frame_Ready := Rx_Count > 0;
end Rx_Wait;
----------------------------
-- Pending_Frames_Count --
----------------------------
function Pending_Frames_Count return Natural is
begin
return Rx_Count;
end Pending_Frames_Count;
------------------------------
-- Discard_Pending_Frames --
------------------------------
procedure Discard_Pending_Frames is
begin
Rx_Count := 0;
end Discard_Pending_Frames;
--------------------------
-- Start_Rx_Immediate --
--------------------------
procedure Start_Rx_Immediate is
begin
DW1000.Driver.Start_Rx_Immediate;
end Start_Rx_Immediate;
------------------------
-- Start_Rx_Delayed --
------------------------
procedure Start_Rx_Delayed (Result : out Result_Type) is
begin
DW1000.Driver.Start_Rx_Delayed (Result);
end Start_Rx_Delayed;
----------------------
-- Frame_Received --
----------------------
procedure Frame_Received is
RX_FINFO_Reg : DW1000.Register_Types.RX_FINFO_Type;
Frame_Length : Natural;
Next_Idx : Rx_Frame_Queue_Index;
begin
-- Read the frame length from the DW1000
DW1000.Registers.RX_FINFO.Read (RX_FINFO_Reg);
Frame_Length := Natural (RX_FINFO_Reg.RXFLEN) +
Natural (RX_FINFO_Reg.RXFLE) * 2**7;
-- If a frame is received whose length is larger than the configured
-- maximum frame size, then truncate the frame length.
if Frame_Length > Frame_Length_Number'Last then
Frame_Length := Frame_Length_Number'Last;
end if;
pragma Assert (Frame_Length in Frame_Length_Number);
if Frame_Length > 0 then
if Rx_Count = Frame_Queue'Length then
Overrun_Occurred := True;
else
Next_Idx := Queue_Head + Rx_Frame_Queue_Index (Rx_Count);
Rx_Count := Rx_Count + 1;
Frame_Queue (Next_Idx).Status := No_Error;
Frame_Queue (Next_Idx).Length := Frame_Length;
Frame_Queue (Next_Idx).Overrun := Overrun_Occurred;
DW1000.Register_Driver.Read_Register
(Register_ID => DW1000.Registers.RX_BUFFER_Reg_ID,
Sub_Address => 0,
Data =>
Frame_Queue (Next_Idx).Frame (1 .. Frame_Length));
Overrun_Occurred := False;
DW1000.Registers.RX_FINFO.Read
(Frame_Queue (Next_Idx).Frame_Info.RX_FINFO_Reg);
DW1000.Registers.RX_FQUAL.Read
(Frame_Queue (Next_Idx).Frame_Info.RX_FQUAL_Reg);
DW1000.Registers.RX_TIME.Read
(Frame_Queue (Next_Idx).Frame_Info.RX_TIME_Reg);
DW1000.Registers.RX_TTCKI.Read
(Frame_Queue (Next_Idx).Frame_Info.RX_TTCKI_Reg);
DW1000.Registers.RX_TTCKO.Read
(Frame_Queue (Next_Idx).Frame_Info.RX_TTCKO_Reg);
declare
Byte : Byte_Array (1 .. 1);
begin
-- Don't read the entire USR_SFD register. We only need to
-- read the first byte (the SFD_LENGTH field).
DW1000.Register_Driver.Read_Register
(Register_ID => DW1000.Registers.USR_SFD_Reg_ID,
Sub_Address => 0,
Data => Byte);
Frame_Queue (Next_Idx).Frame_Info.SFD_LENGTH := Byte (1);
end;
-- Check the CHAN_CTRL register to determine whether or not a
-- non-standard SFD is being used.
declare
CHAN_CTRL_Reg : CHAN_CTRL_Type;
begin
DW1000.Registers.CHAN_CTRL.Read (CHAN_CTRL_Reg);
Frame_Queue (Next_Idx).Frame_Info.Non_Standard_SFD
:= CHAN_CTRL_Reg.DWSFD = Enabled;
end;
end if;
Frame_Ready := True;
end if;
DW1000.Driver.Toggle_Host_Side_Rx_Buffer_Pointer;
end Frame_Received;
---------------------
-- Receive_Error --
---------------------
procedure Receive_Error (Result : in Rx_Status_Type) is
Next_Idx : Rx_Frame_Queue_Index;
begin
if Rx_Count = Frame_Queue'Length then
Overrun_Occurred := True;
else
Next_Idx := Queue_Head + Rx_Frame_Queue_Index (Rx_Count);
Rx_Count := Rx_Count + 1;
Frame_Queue (Next_Idx).Length := 0;
Frame_Queue (Next_Idx).Status := Result;
Frame_Queue (Next_Idx).Overrun := Overrun_Occurred;
Frame_Queue (Next_Idx).Frame_Info := Null_Frame_Info;
Overrun_Occurred := False;
end if;
Frame_Ready := True;
end Receive_Error;
------------------
-- DW1000_IRQ --
------------------
procedure DW1000_IRQ is
SYS_STATUS_Reg : DW1000.Register_Types.SYS_STATUS_Type;
SYS_STATUS_Clear : DW1000.Register_Types.SYS_STATUS_Type
:= (Reserved_1 => 0,
Reserved_2 => 0,
others => 0);
begin
DW1000.BSP.Acknowledge_DW1000_IRQ;
DW1000.Registers.SYS_STATUS.Read (SYS_STATUS_Reg);
-- The DW1000 User Manual, Section 4.1.6, states that after certain
-- types of errors the receiver should be reset to ensure that the
-- next good frame has the correct timestamp. To handle this, we
-- use the Reset_Rx procedure.
-- Frame timeout?
if SYS_STATUS_Reg.RXRFTO = 1 then
DW1000.Driver.Reset_Rx;
if Detect_Frame_Timeout then
Receive_Error (Frame_Timeout);
else
DW1000.Driver.Start_Rx_Immediate;
end if;
SYS_STATUS_Clear.RXRFTO := 1;
end if;
-- SFD timeout?
if SYS_STATUS_Reg.RXSFDTO = 1 then
if Detect_SFD_Timeout then
Receive_Error (SFD_Timeout);
else
DW1000.Driver.Start_Rx_Immediate;
end if;
SYS_STATUS_Clear.RXSFDTO := 1;
end if;
-- Physical header error?
if SYS_STATUS_Reg.RXPHE = 1 then
DW1000.Driver.Reset_Rx;
if Detect_PHR_Error then
Receive_Error (PHR_Error);
else
DW1000.Driver.Start_Rx_Immediate;
end if;
SYS_STATUS_Clear.RXPHE := 1;
end if;
-- Reed-Solomon error correction error?
if SYS_STATUS_Reg.RXRFSL = 1 then
DW1000.Driver.Reset_Rx;
if Detect_RS_Error then
Receive_Error (RS_Error);
else
DW1000.Driver.Start_Rx_Immediate;
end if;
SYS_STATUS_Clear.RXRFSL := 1;
end if;
-- Packet received?
if SYS_STATUS_Reg.RXDFR = 1 then
if SYS_STATUS_Reg.RXFCE = 1 then
if Detect_FCS_Error then
Receive_Error (FCS_Error);
else
DW1000.Driver.Start_Rx_Immediate;
end if;
else
Frame_Received;
end if;
-- Clear RX flags
SYS_STATUS_Clear.RXDFR := 1;
SYS_STATUS_Clear.RXFCG := 1;
SYS_STATUS_Clear.RXFCE := 1;
SYS_STATUS_Clear.RXPRD := 1;
SYS_STATUS_Clear.RXSFDD := 1;
SYS_STATUS_Clear.LDEDONE := 1;
SYS_STATUS_Clear.RXPHD := 1;
end if;
-- Transmit complete?
if SYS_STATUS_Reg.TXFRS = 1 then
-- Frame sent
Ada.Synchronous_Task_Control.Set_True (Tx_Complete_Flag);
-- Clear all TX events
SYS_STATUS_Clear.AAT := 1;
SYS_STATUS_Clear.TXFRS := 1;
SYS_STATUS_Clear.TXFRB := 1;
SYS_STATUS_Clear.TXPHS := 1;
SYS_STATUS_Clear.TXPRS := 1;
end if;
SYS_STATUS_Clear.AFFREJ := 1;
-- Clear all events that we have seen.
DW1000.Registers.SYS_STATUS.Write (SYS_STATUS_Clear);
end DW1000_IRQ;
end Driver;
pragma Annotate
(GNATprove, False_Positive,
"call to potentially blocking subprogram ""dw1000.bsp.",
"Procedures in DW1000.BSP are not blocking");
pragma Annotate
(GNATprove, False_Positive,
"call to potentially blocking subprogram ""Acknowledge_DW1000_IRQ",
"DW1000.BSP.Acknowledge_DW1000_IRQ is not blocking");
end DecaDriver;
|
with Ada.Text_IO; use Ada.Text_IO;
procedure Test is begin put('''); end;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- G N A T . T R A C E B A C K . S Y M B O L I C --
-- --
-- B o d y --
-- --
-- Copyright (C) 1999-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. --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- Run-time symbolic traceback support
with System.Soft_Links;
with Ada.Exceptions.Traceback; use Ada.Exceptions.Traceback;
package body GNAT.Traceback.Symbolic is
pragma Linker_Options ("-laddr2line");
pragma Linker_Options ("-lbfd");
pragma Linker_Options ("-liberty");
package TSL renames System.Soft_Links;
------------------------
-- Symbolic_Traceback --
------------------------
function Symbolic_Traceback (Traceback : Tracebacks_Array) return String is
procedure convert_addresses
(addrs : System.Address;
n_addr : Integer;
buf : System.Address;
len : System.Address);
pragma Import (C, convert_addresses, "convert_addresses");
-- This is the procedure version of the Ada aware addr2line that will
-- use argv[0] as the executable containing the debug information.
-- This procedure is provided by libaddr2line on targets that support
-- it. A dummy version is in a-adaint.c for other targets so that build
-- of shared libraries doesn't generate unresolved symbols.
--
-- Note that this procedure is *not* thread-safe.
Res : String (1 .. 256 * Traceback'Length);
Len : Integer;
begin
if Traceback'Length > 0 then
TSL.Lock_Task.all;
convert_addresses
(Traceback'Address, Traceback'Length, Res (1)'Address, Len'Address);
TSL.Unlock_Task.all;
return Res (1 .. Len);
else
return "";
end if;
end Symbolic_Traceback;
function Symbolic_Traceback (E : Exception_Occurrence) return String is
begin
return Symbolic_Traceback (Tracebacks (E));
end Symbolic_Traceback;
end GNAT.Traceback.Symbolic;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- SYSTEM.TASK_PRIMITIVES.OPERATIONS.SPECIFIC --
-- --
-- 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/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- This is a VxWorks version of this package using Thread_Local_Storage
-- support (VxWorks 6.6 and higher). The implementation is based on __threads
-- support.
separate (System.Task_Primitives.Operations)
package body Specific is
ATCB : aliased Task_Id := null;
-- Ada Task_Id associated with a thread
pragma Thread_Local_Storage (ATCB);
----------------
-- Initialize --
----------------
procedure Initialize is
begin
null;
end Initialize;
-------------------
-- Is_Valid_Task --
-------------------
function Is_Valid_Task return Boolean is
begin
return ATCB /= Null_Task;
end Is_Valid_Task;
---------
-- Set --
---------
procedure Set (Self_Id : Task_Id) is
begin
ATCB := Self_Id;
end Set;
----------
-- Self --
----------
-- To make Ada tasks and C threads interoperate better, we have added some
-- functionality to Self. Suppose a C main program (with threads) calls an
-- Ada procedure and the Ada procedure calls the tasking runtime system.
-- Eventually, a call will be made to self. Since the call is not coming
-- from an Ada task, there will be no corresponding ATCB.
-- What we do in Self is to catch references that do not come from
-- recognized Ada tasks, and create an ATCB for the calling thread.
-- The new ATCB will be "detached" from the normal Ada task master
-- hierarchy, much like the existing implicitly created signal-server
-- tasks.
function Self return Task_Id is
Result : constant Task_Id := ATCB;
begin
if Result /= null then
return Result;
else
-- If the value is Null then it is a non-Ada task
return Register_Foreign_Thread;
end if;
end Self;
end Specific;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . S E C U R E _ H A S H E S . S H A 2 _ 6 4 --
-- --
-- B o d y --
-- --
-- Copyright (C) 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. --
-- --
------------------------------------------------------------------------------
package body GNAT.Secure_Hashes.SHA2_64 is
use Interfaces;
------------
-- Sigma0 --
------------
function Sigma0 (X : Word) return Word is
begin
return Rotate_Right (X, 28)
xor Rotate_Right (X, 34)
xor Rotate_Right (X, 39);
end Sigma0;
------------
-- Sigma1 --
------------
function Sigma1 (X : Word) return Word is
begin
return Rotate_Right (X, 14)
xor Rotate_Right (X, 18)
xor Rotate_Right (X, 41);
end Sigma1;
--------
-- S0 --
--------
function S0 (X : Word) return Word is
begin
return Rotate_Right (X, 1)
xor Rotate_Right (X, 8)
xor Shift_Right (X, 7);
end S0;
--------
-- S1 --
--------
function S1 (X : Word) return Word is
begin
return Rotate_Right (X, 19)
xor Rotate_Right (X, 61)
xor Shift_Right (X, 6);
end S1;
end GNAT.Secure_Hashes.SHA2_64;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- XML Processor --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014-2015, Vadim Godunko <vgodunko@gmail.com> --
-- 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$
------------------------------------------------------------------------------
private with League.Strings;
private with XML.SAX.Attributes;
private with XML.SAX.Locators;
with XML.SAX.Writers;
with XML.Templates.Streams;
package XML.SAX.Event_Writers is
type Event_Writer is limited new XML.SAX.Writers.SAX_Writer with private;
function Get_Stream
(Self : Event_Writer'Class)
return XML.Templates.Streams.XML_Stream_Element_Vectors.Vector;
-- Returns accumulated stream.
private
type Event_Writer is limited new XML.SAX.Writers.SAX_Writer with record
Locator : XML.SAX.Locators.SAX_Locator;
Stream : XML.Templates.Streams.XML_Stream_Element_Vectors.Vector;
end record;
overriding procedure Characters
(Self : in out Event_Writer;
Text : League.Strings.Universal_String;
Success : in out Boolean);
overriding procedure Comment
(Self : in out Event_Writer;
Text : League.Strings.Universal_String;
Success : in out Boolean);
overriding procedure End_CDATA
(Self : in out Event_Writer;
Success : in out Boolean);
overriding procedure End_DTD
(Self : in out Event_Writer;
Success : in out Boolean);
overriding procedure Set_Document_Locator
(Self : in out Event_Writer;
Locator : XML.SAX.Locators.SAX_Locator);
overriding procedure End_Element
(Self : in out Event_Writer;
Namespace_URI : League.Strings.Universal_String;
Local_Name : League.Strings.Universal_String;
Qualified_Name : League.Strings.Universal_String;
Success : in out Boolean);
overriding procedure End_Prefix_Mapping
(Self : in out Event_Writer;
Prefix : League.Strings.Universal_String;
Success : in out Boolean);
overriding function Error_String
(Self : Event_Writer) return League.Strings.Universal_String;
overriding procedure Ignorable_Whitespace
(Self : in out Event_Writer;
Text : League.Strings.Universal_String;
Success : in out Boolean);
overriding procedure Processing_Instruction
(Self : in out Event_Writer;
Target : League.Strings.Universal_String;
Data : League.Strings.Universal_String;
Success : in out Boolean);
overriding procedure Start_CDATA
(Self : in out Event_Writer;
Success : in out Boolean);
overriding procedure Start_DTD
(Self : in out Event_Writer;
Name : League.Strings.Universal_String;
Public_Id : League.Strings.Universal_String;
System_Id : League.Strings.Universal_String;
Success : in out Boolean);
overriding procedure Start_Element
(Self : in out Event_Writer;
Namespace_URI : League.Strings.Universal_String;
Local_Name : League.Strings.Universal_String;
Qualified_Name : League.Strings.Universal_String;
Attributes : XML.SAX.Attributes.SAX_Attributes;
Success : in out Boolean);
overriding procedure Start_Prefix_Mapping
(Self : in out Event_Writer;
Prefix : League.Strings.Universal_String;
Namespace_URI : League.Strings.Universal_String;
Success : in out Boolean);
end XML.SAX.Event_Writers;
|
-- part of AdaYaml, (c) 2017 Felix Krause
-- released under the terms of the MIT license, see the file "copying.txt"
with Ada.Unchecked_Deallocation;
-- we need to explicitly with all annotations because their package
-- initialization adds them to the annotation map.
with Yaml.Transformator.Annotation.Identity;
with Yaml.Transformator.Annotation.Concatenation;
with Yaml.Transformator.Annotation.Vars;
with Yaml.Transformator.Annotation.For_Loop;
with Yaml.Transformator.Annotation.Inject;
pragma Unreferenced (Yaml.Transformator.Annotation.Concatenation);
pragma Unreferenced (Yaml.Transformator.Annotation.Vars);
pragma Unreferenced (Yaml.Transformator.Annotation.For_Loop);
pragma Unreferenced (Yaml.Transformator.Annotation.Inject);
package body Yaml.Transformator.Annotation_Processor is
use type Text.Reference;
use type Annotation.Node_Context_Type;
procedure Free_Array is new Ada.Unchecked_Deallocation
(Node_Array, Node_Array_Pointer);
procedure Free_Transformator is new Ada.Unchecked_Deallocation
(Transformator.Instance'Class, Transformator.Pointer);
function New_Processor
(Pool : Text.Pool.Reference;
Externals : Events.Store.Reference := Events.Store.New_Store)
return Pointer is
(new Instance'(Ada.Finalization.Limited_Controlled with Pool => Pool,
Context => Events.Context.Create (Externals),
others => <>));
procedure Finalize_Finished_Annotation_Impl (Object : in out Instance) is
begin
if Object.Level_Count = Object.Annotations (Object.Annotation_Count).Depth
and then not Object.Annotations (Object.Annotation_Count).Impl.Has_Next
then
if Object.Annotations (Object.Annotation_Count).Swallows_Next then
Object.Current_State := Swallowing_Document_End;
Object.Current :=
(Kind => Document_End, others => <>);
end if;
Free_Transformator (Object.Annotations
(Object.Annotation_Count).Impl);
Object.Annotation_Count := Object.Annotation_Count - 1;
if Object.Annotation_Count = 0 and Object.Next_Event_Storage = Yes then
if Object.Current_State = Existing then
Object.Next_Event_Storage := Finishing;
else
Object.Next_Event_Storage := No;
end if;
end if;
end if;
end Finalize_Finished_Annotation_Impl;
procedure Shift_Through (Object : in out Instance; Start : Natural;
E : Event)
with Pre => Start <= Object.Annotation_Count is
Cur_Annotation : Natural := Start;
Cur_Event : Event := E;
begin
while Cur_Annotation > 0 loop
Object.Annotations (Cur_Annotation).Impl.Put (Cur_Event);
if Object.Annotations (Cur_Annotation).Impl.Has_Next then
Cur_Event := Object.Annotations (Cur_Annotation).Impl.Next;
if (Cur_Annotation = Object.Annotation_Count and
Object.May_Finish_Transformation)
then
Finalize_Finished_Annotation_Impl (Object);
end if;
Cur_Annotation := Cur_Annotation - 1;
else
loop
Cur_Annotation := Cur_Annotation + 1;
if Cur_Annotation > Object.Annotation_Count then
if Object.May_Finish_Transformation then
Finalize_Finished_Annotation_Impl (Object);
end if;
return;
end if;
if Object.Annotations (Cur_Annotation).Impl.Has_Next then
Cur_Event :=
Object.Annotations (Cur_Annotation).Impl.Next;
if (Cur_Annotation = Object.Annotation_Count and
Object.May_Finish_Transformation)
then
Finalize_Finished_Annotation_Impl (Object);
end if;
Cur_Annotation := Cur_Annotation - 1;
exit;
end if;
end loop;
end if;
end loop;
Object.Current := Cur_Event;
Object.Current_State :=
(if Object.Current_State = Event_Held_Back then
Releasing_Held_Back else Existing);
end Shift_Through;
procedure Append (Object : in out Instance; E : Event) is
begin
if Object.Annotation_Count > 0 then
if Object.Current_State = Event_Held_Back then
Object.May_Finish_Transformation :=
Object.Held_Back.Kind in
Sequence_End | Mapping_End | Scalar | Alias;
if E.Kind = Annotation_Start then
if Object.Annotation_Count = 1 then
Object.Current := Object.Held_Back;
Object.Held_Back := E;
Object.Current_State := Releasing_Held_Back;
return;
else
Shift_Through (Object, Object.Annotation_Count,
Object.Held_Back);
end if;
else
Shift_Through (Object, Object.Annotation_Count,
Object.Held_Back);
end if;
if Object.Current_State = Existing then
Object.Held_Back := E;
Object.Current_State := Releasing_Held_Back;
return;
end if;
Object.Current_State := Absent;
end if;
Object.May_Finish_Transformation :=
E.Kind in Sequence_End | Mapping_End | Scalar | Alias;
Shift_Through (Object, Object.Annotation_Count, E);
elsif Object.Current_State = Event_Held_Back then
Object.Current := Object.Held_Back;
Object.Held_Back := E;
Object.Current_State := Releasing_Held_Back;
else
Object.Current := E;
Object.Current_State := Existing;
end if;
end Append;
generic
type Element_Type is private;
type Array_Type is array (Positive range <>) of Element_Type;
type Pointer_Type is access Array_Type;
procedure Grow (Target : in out not null Pointer_Type;
Last : in out Natural);
procedure Grow (Target : in out not null Pointer_Type;
Last : in out Natural) is
procedure Free_Array is new Ada.Unchecked_Deallocation
(Array_Type, Pointer_Type);
begin
if Last = Target'Last then
declare
Old_Array : Pointer_Type := Target;
begin
Target := new Array_Type (1 .. Last * 2);
Target (1 .. Last) := Old_Array.all;
Free_Array (Old_Array);
end;
end if;
Last := Last + 1;
end Grow;
procedure Grow_Levels is new Grow
(Annotation.Node_Context_Type, Level_Array, Level_Array_Pointer);
procedure Grow_Annotations is new Grow
(Annotated_Node, Node_Array, Node_Array_Pointer);
procedure Put (Object : in out Instance; E : Event) is
Locals : constant Events.Store.Accessor := Object.Context.Document_Store;
begin
if Object.Level_Count > 0 then
case Object.Levels (Object.Level_Count) is
when Annotation.Mapping_Key =>
Object.Levels (Object.Level_Count) := Annotation.Mapping_Value;
when Annotation.Mapping_Value =>
Object.Levels (Object.Level_Count) := Annotation.Mapping_Key;
when others => null;
end case;
end if;
case E.Kind is
when Annotation_Start =>
Locals.Memorize (E);
declare
use type Annotation.Maps.Cursor;
Pos : constant Annotation.Maps.Cursor :=
(if E.Namespace = Standard_Annotation_Namespace then
Annotation.Map.Find (E.Name.Value) else
Annotation.Maps.No_Element);
begin
Grow_Annotations (Object.Annotations, Object.Annotation_Count);
if Object.Annotation_Count = 1 then
Object.Next_Event_Storage :=
(if E.Annotation_Properties.Anchor /= Text.Empty then
Searching else No);
end if;
declare
Swallows_Previous : Boolean := False;
Impl : constant Transformator.Pointer :=
(if Pos = Annotation.Maps.No_Element then
Annotation.Identity.New_Identity else
Annotation.Maps.Element (Pos).all
(Object.Pool, Object.Levels (Object.Level_Count),
Object.Context, Swallows_Previous));
begin
Object.Annotations (Object.Annotation_Count) :=
(Impl => Impl, Depth => Object.Level_Count,
Swallows_Next =>
Swallows_Previous and Object.Level_Count = 1);
if Swallows_Previous then
if Object.Current_State /= Event_Held_Back then
raise Annotation_Error with
E.Namespace & E.Name &
" applied to a value of a non-scalar mapping key";
end if;
Object.Current_State := Absent;
end if;
Object.Append (E);
end;
end;
Grow_Levels (Object.Levels, Object.Level_Count);
Object.Levels (Object.Level_Count) := Annotation.Parameter_Item;
when Annotation_End =>
Locals.Memorize (E);
Object.Append (E);
Object.Level_Count := Object.Level_Count - 1;
when Document_Start =>
Locals.Clear;
Object.Held_Back := E;
Object.Current_State := Event_Held_Back;
Grow_Levels (Object.Levels, Object.Level_Count);
Object.Levels (Object.Level_Count) := Annotation.Document_Root;
when Mapping_Start =>
Locals.Memorize (E);
Object.Append (E);
Grow_Levels (Object.Levels, Object.Level_Count);
Object.Levels (Object.Level_Count) := Annotation.Mapping_Value;
when Sequence_Start =>
Locals.Memorize (E);
Object.Append (E);
Grow_Levels (Object.Levels, Object.Level_Count);
Object.Levels (Object.Level_Count) := Annotation.Sequence_Item;
when Mapping_End | Sequence_End =>
Object.Level_Count := Object.Level_Count - 1;
Locals.Memorize (E);
Object.Append (E);
when Document_End =>
if Object.Current_State = Swallowing_Document_End then
Object.Current_State := Absent;
else
Object.Current := E;
Object.Current_State := Existing;
end if;
Object.Level_Count := Object.Level_Count - 1;
when Scalar =>
Locals.Memorize (E);
if Object.Levels (Object.Level_Count) = Annotation.Mapping_Key then
Object.Held_Back := E;
Object.Current_State := Event_Held_Back;
else
Object.Append (E);
end if;
when Alias =>
Locals.Memorize (E);
Object.Append (E);
when Stream_Start | Stream_End =>
Object.Append (E);
end case;
end Put;
function Has_Next (Object : Instance) return Boolean is
(Object.Current_State in Existing | Releasing_Held_Back | Localizing_Alias or
(Object.Current_State = Swallowing_Document_End and
Object.Current.Kind /= Document_End));
function Next (Object : in out Instance) return Event is
procedure Look_For_Additional_Element is
begin
if Object.Current_State /= Releasing_Held_Back then
Object.Current_State := Absent;
end if;
for Cur_Annotation in 1 .. Object.Annotation_Count loop
if Object.Annotations (Cur_Annotation).Impl.Has_Next then
declare
Next_Event : constant Event :=
Object.Annotations (Cur_Annotation).Impl.Next;
begin
if Cur_Annotation = Object.Annotation_Count and
Object.May_Finish_Transformation then
Finalize_Finished_Annotation_Impl (Object);
end if;
Shift_Through (Object, Cur_Annotation - 1, Next_Event);
end;
exit;
end if;
end loop;
if Object.Current_State = Releasing_Held_Back then
Object.Current_State := Absent;
if Object.Annotation_Count > 0 then
Object.May_Finish_Transformation :=
Object.Held_Back.Kind in
Sequence_End | Mapping_End | Scalar | Alias;
Shift_Through (Object, Object.Annotation_Count,
Object.Held_Back);
else
Object.Current := Object.Held_Back;
Object.Current_State := Existing;
end if;
end if;
end Look_For_Additional_Element;
procedure Update_Exists_In_Output (Anchor : Text.Reference) is
use type Events.Context.Cursor;
begin
if Anchor /= Text.Empty then
declare
Pos : Events.Context.Cursor :=
Events.Context.Position (Object.Context, Anchor);
begin
if Pos /= Events.Context.No_Element then
declare
Referenced : constant Event := Events.Context.First (Pos);
begin
if
Referenced.Start_Position =
Object.Current.Start_Position and
Referenced.Kind = Object.Current.Kind then
Events.Context.Set_Exists_In_Output (Pos);
end if;
end;
end if;
end;
end if;
end Update_Exists_In_Output;
procedure Update_Next_Storage (E : Event) is
begin
case Object.Next_Event_Storage is
when Searching =>
if (case E.Kind is
when Annotation_Start =>
E.Annotation_Properties.Anchor /= Text.Empty,
when Mapping_Start | Sequence_Start =>
E.Collection_Properties.Anchor /= Text.Empty,
when Scalar =>
E.Scalar_Properties.Anchor /= Text.Empty,
when others => False) then
Object.Context.Transformed_Store.Memorize (E);
Object.Next_Event_Storage := Yes;
else
Object.Next_Event_Storage := No;
end if;
when Finishing =>
Object.Context.Transformed_Store.Memorize (E);
Object.Next_Event_Storage := No;
when Yes =>
Object.Context.Transformed_Store.Memorize (E);
when No => null;
end case;
end Update_Next_Storage;
begin
case Object.Current_State is
when Existing | Releasing_Held_Back =>
case Object.Current.Kind is
when Alias =>
if Object.Current_State = Releasing_Held_Back then
raise Program_Error with
"internal error: alias may never generated while event is held back!";
end if;
declare
Pos : Events.Context.Cursor :=
Events.Context.Position
(Object.Context, Object.Current.Target);
begin
if not Events.Context.Exists_In_Ouput (Pos) then
Events.Context.Set_Exists_In_Output (Pos);
Object.Current_Stream :=
Events.Context.Retrieve (Pos).Optional;
return Ret : constant Event :=
Object.Current_Stream.Value.Next do
Update_Next_Storage (Ret);
case Ret.Kind is
when Scalar =>
Object.Current_Stream.Clear;
Look_For_Additional_Element;
when Mapping_Start | Sequence_Start =>
Object.Current_State := Localizing_Alias;
Object.Stream_Depth := Object.Stream_Depth + 1;
when others =>
raise Program_Error with
"alias refers to " & Object.Current.Kind'Img;
end case;
end return;
end if;
end;
when Scalar =>
Update_Exists_In_Output
(Object.Current.Scalar_Properties.Anchor);
when Mapping_Start | Sequence_Start =>
Update_Exists_In_Output
(Object.Current.Collection_Properties.Anchor);
when others => null;
end case;
return Ret : constant Event := Object.Current do
Update_Next_Storage (Ret);
Look_For_Additional_Element;
end return;
when Localizing_Alias =>
return Ret : constant Event := Object.Current_Stream.Value.Next do
Update_Next_Storage (Ret);
case Ret.Kind is
when Mapping_Start | Sequence_Start =>
Object.Stream_Depth := Object.Stream_Depth + 1;
when Mapping_End | Sequence_End =>
Object.Stream_Depth := Object.Stream_Depth - 1;
if Object.Stream_Depth = 0 then
Object.Current_Stream.Clear;
Look_For_Additional_Element;
end if;
when others => null;
end case;
end return;
when Swallowing_Document_End =>
if Object.Current.Kind = Document_End then
raise Constraint_Error with "no event to retrieve";
else
return Ret : constant Event := Object.Current do
Update_Next_Storage (Ret);
Object.Current := (Kind => Document_End, others => <>);
end return;
end if;
when Absent | Event_Held_Back =>
raise Constraint_Error with "no event to retrieve";
end case;
end Next;
procedure Finalize (Object : in out Instance) is
Ptr : Node_Array_Pointer := Object.Annotations;
begin
for I in 1 .. Object.Annotation_Count loop
Free_Transformator (Object.Annotations (I).Impl);
end loop;
Free_Array (Ptr);
end Finalize;
end Yaml.Transformator.Annotation_Processor;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . T A S K _ L O C K --
-- --
-- B o d y --
-- --
-- Copyright (C) 1997-2021, 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. --
-- --
------------------------------------------------------------------------------
with System.Soft_Links;
package body System.Task_Lock is
----------
-- Lock --
----------
procedure Lock is
begin
System.Soft_Links.Lock_Task.all;
end Lock;
------------
-- Unlock --
------------
procedure Unlock is
begin
System.Soft_Links.Unlock_Task.all;
end Unlock;
end System.Task_Lock;
|
------------------------------------------------------------------------------
-- --
-- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . T A S K _ P R I M I T I V E S . O P E R A T I O N S --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 1991-2001, Florida State University --
-- --
-- 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, 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. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. It is --
-- now maintained by Ada Core Technologies Inc. in cooperation with Florida --
-- State University (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
-- This is a IRIX (pthread library) version of this package.
-- This package contains all the GNULL primitives that interface directly
-- with the underlying OS.
pragma Polling (Off);
-- Turn off polling, we do not want ATC polling to take place during
-- tasking operations. It causes infinite loops and other problems.
with Interfaces.C;
-- used for int
-- size_t
with System.Task_Info;
with System.Tasking.Debug;
-- used for Known_Tasks
with System.IO;
-- used for Put_Line
with System.Interrupt_Management;
-- used for Keep_Unmasked
-- Abort_Task_Interrupt
-- Interrupt_ID
with System.Interrupt_Management.Operations;
-- used for Set_Interrupt_Mask
-- All_Tasks_Mask
pragma Elaborate_All (System.Interrupt_Management.Operations);
with System.Parameters;
-- used for Size_Type
with System.Tasking;
-- used for Ada_Task_Control_Block
-- Task_ID
with System.Soft_Links;
-- used for Defer/Undefer_Abort
-- Note that we do not use System.Tasking.Initialization directly since
-- this is a higher level package that we shouldn't depend on. For example
-- when using the restricted run time, it is replaced by
-- System.Tasking.Restricted.Initialization
with System.Program_Info;
-- used for Default_Task_Stack
-- Default_Time_Slice
-- Stack_Guard_Pages
-- Pthread_Sched_Signal
-- Pthread_Arena_Size
with System.OS_Interface;
-- used for various type, constant, and operations
with System.OS_Primitives;
-- used for Delay_Modes
with Unchecked_Conversion;
with Unchecked_Deallocation;
package body System.Task_Primitives.Operations is
use System.Tasking;
use System.Tasking.Debug;
use Interfaces.C;
use System.OS_Interface;
use System.OS_Primitives;
use System.Parameters;
package SSL renames System.Soft_Links;
------------------
-- Local Data --
------------------
-- The followings are logically constants, but need to be initialized
-- at run time.
ATCB_Key : aliased pthread_key_t;
-- Key used to find the Ada Task_ID associated with a thread
All_Tasks_L : aliased System.Task_Primitives.RTS_Lock;
-- See comments on locking rules in System.Locking_Rules (spec).
Environment_Task_ID : Task_ID;
-- A variable to hold Task_ID for the environment task.
Locking_Policy : Character;
pragma Import (C, Locking_Policy, "__gl_locking_policy");
Real_Time_Clock_Id : constant clockid_t := CLOCK_REALTIME;
Unblocked_Signal_Mask : aliased sigset_t;
-----------------------
-- Local Subprograms --
-----------------------
function To_Task_ID is new Unchecked_Conversion (System.Address, Task_ID);
function To_Address is new Unchecked_Conversion (Task_ID, System.Address);
procedure Abort_Handler (Sig : Signal);
-------------------
-- Abort_Handler --
-------------------
procedure Abort_Handler (Sig : Signal) is
T : Task_ID := Self;
Result : Interfaces.C.int;
Old_Set : aliased sigset_t;
begin
if T.Deferral_Level = 0
and then T.Pending_ATC_Level < T.ATC_Nesting_Level
then
-- Make sure signals used for RTS internal purpose are unmasked
Result := pthread_sigmask
(SIG_UNBLOCK,
Unblocked_Signal_Mask'Unchecked_Access,
Old_Set'Unchecked_Access);
pragma Assert (Result = 0);
raise Standard'Abort_Signal;
end if;
end Abort_Handler;
-----------------
-- Stack_Guard --
-----------------
-- The underlying thread system sets a guard page at the
-- bottom of a thread stack, so nothing is needed.
procedure Stack_Guard (T : ST.Task_ID; On : Boolean) is
begin
null;
end Stack_Guard;
-------------------
-- Get_Thread_Id --
-------------------
function Get_Thread_Id (T : ST.Task_ID) return OSI.Thread_Id is
begin
return T.Common.LL.Thread;
end Get_Thread_Id;
----------
-- Self --
----------
function Self return Task_ID is
Result : System.Address;
begin
Result := pthread_getspecific (ATCB_Key);
pragma Assert (Result /= System.Null_Address);
return To_Task_ID (Result);
end Self;
---------------------
-- Initialize_Lock --
---------------------
-- Note: mutexes and cond_variables needed per-task basis are
-- initialized in Initialize_TCB and the Storage_Error is
-- handled. Other mutexes (such as All_Tasks_Lock, Memory_Lock...)
-- used in RTS is initialized before any status change of RTS.
-- Therefore rasing Storage_Error in the following routines
-- should be able to be handled safely.
procedure Initialize_Lock
(Prio : System.Any_Priority;
L : access Lock)
is
Attributes : aliased pthread_mutexattr_t;
Result : Interfaces.C.int;
begin
Result := pthread_mutexattr_init (Attributes'Access);
pragma Assert (Result = 0 or else Result = ENOMEM);
if Result = ENOMEM then
raise Storage_Error;
end if;
if Locking_Policy = 'C' then
Result := pthread_mutexattr_setprotocol
(Attributes'Access, PTHREAD_PRIO_PROTECT);
pragma Assert (Result = 0);
Result := pthread_mutexattr_setprioceiling
(Attributes'Access, Interfaces.C.int (Prio));
pragma Assert (Result = 0);
end if;
Result := pthread_mutex_init (L, Attributes'Access);
pragma Assert (Result = 0 or else Result = ENOMEM);
if Result = ENOMEM then
Result := pthread_mutexattr_destroy (Attributes'Access);
raise Storage_Error;
end if;
Result := pthread_mutexattr_destroy (Attributes'Access);
pragma Assert (Result = 0);
end Initialize_Lock;
procedure Initialize_Lock (L : access RTS_Lock; Level : Lock_Level) is
Attributes : aliased pthread_mutexattr_t;
Result : Interfaces.C.int;
begin
Result := pthread_mutexattr_init (Attributes'Access);
pragma Assert (Result = 0 or else Result = ENOMEM);
if Result = ENOMEM then
raise Storage_Error;
end if;
if Locking_Policy = 'C' then
Result := pthread_mutexattr_setprotocol
(Attributes'Access, PTHREAD_PRIO_PROTECT);
pragma Assert (Result = 0);
Result := pthread_mutexattr_setprioceiling
(Attributes'Access, Interfaces.C.int (System.Any_Priority'Last));
pragma Assert (Result = 0);
end if;
Result := pthread_mutex_init (L, Attributes'Access);
pragma Assert (Result = 0 or else Result = ENOMEM);
if Result = ENOMEM then
Result := pthread_mutexattr_destroy (Attributes'Access);
raise Storage_Error;
end if;
Result := pthread_mutexattr_destroy (Attributes'Access);
end Initialize_Lock;
-------------------
-- Finalize_Lock --
-------------------
procedure Finalize_Lock (L : access Lock) is
Result : Interfaces.C.int;
begin
Result := pthread_mutex_destroy (L);
pragma Assert (Result = 0);
end Finalize_Lock;
procedure Finalize_Lock (L : access RTS_Lock) is
Result : Interfaces.C.int;
begin
Result := pthread_mutex_destroy (L);
pragma Assert (Result = 0);
end Finalize_Lock;
----------------
-- Write_Lock --
----------------
procedure Write_Lock (L : access Lock; Ceiling_Violation : out Boolean) is
Result : Interfaces.C.int;
begin
Result := pthread_mutex_lock (L);
Ceiling_Violation := Result = EINVAL;
-- assumes the cause of EINVAL is a priority ceiling violation
pragma Assert (Result = 0 or else Result = EINVAL);
end Write_Lock;
procedure Write_Lock (L : access RTS_Lock) is
Result : Interfaces.C.int;
begin
Result := pthread_mutex_lock (L);
pragma Assert (Result = 0);
end Write_Lock;
procedure Write_Lock (T : Task_ID) is
Result : Interfaces.C.int;
begin
Result := pthread_mutex_lock (T.Common.LL.L'Access);
pragma Assert (Result = 0);
end Write_Lock;
---------------
-- Read_Lock --
---------------
procedure Read_Lock (L : access Lock; Ceiling_Violation : out Boolean) is
begin
Write_Lock (L, Ceiling_Violation);
end Read_Lock;
------------
-- Unlock --
------------
procedure Unlock (L : access Lock) is
Result : Interfaces.C.int;
begin
Result := pthread_mutex_unlock (L);
pragma Assert (Result = 0);
end Unlock;
procedure Unlock (L : access RTS_Lock) is
Result : Interfaces.C.int;
begin
Result := pthread_mutex_unlock (L);
pragma Assert (Result = 0);
end Unlock;
procedure Unlock (T : Task_ID) is
Result : Interfaces.C.int;
begin
Result := pthread_mutex_unlock (T.Common.LL.L'Access);
pragma Assert (Result = 0);
end Unlock;
-----------
-- Sleep --
-----------
procedure Sleep
(Self_ID : ST.Task_ID;
Reason : System.Tasking.Task_States)
is
Result : Interfaces.C.int;
begin
pragma Assert (Self_ID = Self);
Result := pthread_cond_wait (Self_ID.Common.LL.CV'Access,
Self_ID.Common.LL.L'Access);
-- EINTR is not considered a failure.
pragma Assert (Result = 0 or else Result = EINTR);
end Sleep;
-----------------
-- Timed_Sleep --
-----------------
procedure Timed_Sleep
(Self_ID : Task_ID;
Time : Duration;
Mode : ST.Delay_Modes;
Reason : Task_States;
Timedout : out Boolean;
Yielded : out Boolean)
is
Check_Time : constant Duration := Monotonic_Clock;
Abs_Time : Duration;
Request : aliased timespec;
Result : Interfaces.C.int;
begin
Timedout := True;
Yielded := False;
if Mode = Relative then
Abs_Time := Duration'Min (Time, Max_Sensible_Delay) + Check_Time;
else
Abs_Time := Duration'Min (Check_Time + Max_Sensible_Delay, Time);
end if;
if Abs_Time > Check_Time then
Request := To_Timespec (Abs_Time);
loop
exit when Self_ID.Pending_ATC_Level < Self_ID.ATC_Nesting_Level
or else Self_ID.Pending_Priority_Change;
Result := pthread_cond_timedwait (Self_ID.Common.LL.CV'Access,
Self_ID.Common.LL.L'Access, Request'Access);
exit when Abs_Time <= Monotonic_Clock;
if Result = 0 or else errno = EINTR then
Timedout := False;
exit;
end if;
end loop;
end if;
end Timed_Sleep;
-----------------
-- Timed_Delay --
-----------------
-- This is for use in implementing delay statements, so
-- we assume the caller is abort-deferred but is holding
-- no locks.
procedure Timed_Delay
(Self_ID : Task_ID;
Time : Duration;
Mode : ST.Delay_Modes)
is
Check_Time : constant Duration := Monotonic_Clock;
Abs_Time : Duration;
Request : aliased timespec;
Result : Interfaces.C.int;
begin
-- Only the little window between deferring abort and
-- locking Self_ID is the reason we need to
-- check for pending abort and priority change below! :(
SSL.Abort_Defer.all;
Write_Lock (Self_ID);
if Mode = Relative then
Abs_Time := Time + Check_Time;
else
Abs_Time := Duration'Min (Check_Time + Max_Sensible_Delay, Time);
end if;
if Abs_Time > Check_Time then
Request := To_Timespec (Abs_Time);
Self_ID.Common.State := Delay_Sleep;
loop
if Self_ID.Pending_Priority_Change then
Self_ID.Pending_Priority_Change := False;
Self_ID.Common.Base_Priority := Self_ID.New_Base_Priority;
Set_Priority (Self_ID, Self_ID.Common.Base_Priority);
end if;
exit when Self_ID.Pending_ATC_Level < Self_ID.ATC_Nesting_Level;
Result := pthread_cond_timedwait (Self_ID.Common.LL.CV'Access,
Self_ID.Common.LL.L'Access, Request'Access);
exit when Abs_Time <= Monotonic_Clock;
pragma Assert (Result = 0
or else Result = ETIMEDOUT
or else Result = EINTR);
end loop;
Self_ID.Common.State := Runnable;
end if;
Unlock (Self_ID);
Yield;
SSL.Abort_Undefer.all;
end Timed_Delay;
---------------------
-- Monotonic_Clock --
---------------------
function Monotonic_Clock return Duration is
TS : aliased timespec;
Result : Interfaces.C.int;
begin
Result := clock_gettime (Real_Time_Clock_Id, TS'Unchecked_Access);
pragma Assert (Result = 0);
return To_Duration (TS);
end Monotonic_Clock;
-------------------
-- RT_Resolution --
-------------------
function RT_Resolution return Duration is
begin
-- The clock_getres (Real_Time_Clock_Id) function appears to return
-- the interrupt resolution of the realtime clock and not the actual
-- resolution of reading the clock. Even though this last value is
-- only guaranteed to be 100 Hz, at least the Origin 200 appears to
-- have a microsecond resolution or better.
-- ??? We should figure out a method to return the right value on
-- all SGI hardware.
return 0.000_001; -- Assume microsecond resolution of clock
end RT_Resolution;
------------
-- Wakeup --
------------
procedure Wakeup (T : ST.Task_ID; Reason : System.Tasking.Task_States) is
Result : Interfaces.C.int;
begin
Result := pthread_cond_signal (T.Common.LL.CV'Access);
pragma Assert (Result = 0);
end Wakeup;
-----------
-- Yield --
-----------
procedure Yield (Do_Yield : Boolean := True) is
Result : Interfaces.C.int;
begin
if Do_Yield then
Result := sched_yield;
end if;
end Yield;
------------------
-- Set_Priority --
------------------
procedure Set_Priority
(T : Task_ID;
Prio : System.Any_Priority;
Loss_Of_Inheritance : Boolean := False)
is
Result : Interfaces.C.int;
Param : aliased struct_sched_param;
Sched_Policy : Interfaces.C.int;
use type System.Task_Info.Task_Info_Type;
function To_Int is new Unchecked_Conversion
(System.Task_Info.Thread_Scheduling_Policy, Interfaces.C.int);
begin
T.Common.Current_Priority := Prio;
Param.sched_priority := Interfaces.C.int (Prio);
if T.Common.Task_Info /= null then
Sched_Policy := To_Int (T.Common.Task_Info.Policy);
else
Sched_Policy := SCHED_FIFO;
end if;
Result := pthread_setschedparam (T.Common.LL.Thread, Sched_Policy,
Param'Access);
pragma Assert (Result = 0);
end Set_Priority;
------------------
-- Get_Priority --
------------------
function Get_Priority (T : Task_ID) return System.Any_Priority is
begin
return T.Common.Current_Priority;
end Get_Priority;
----------------
-- Enter_Task --
----------------
procedure Enter_Task (Self_ID : Task_ID) is
Result : Interfaces.C.int;
function To_Int is new Unchecked_Conversion
(System.Task_Info.CPU_Number, Interfaces.C.int);
use System.Task_Info;
begin
Self_ID.Common.LL.Thread := pthread_self;
Result := pthread_setspecific (ATCB_Key, To_Address (Self_ID));
pragma Assert (Result = 0);
if Self_ID.Common.Task_Info /= null
and then Self_ID.Common.Task_Info.Scope = PTHREAD_SCOPE_SYSTEM
and then Self_ID.Common.Task_Info.Runon_CPU /= ANY_CPU
then
Result := pthread_setrunon_np
(To_Int (Self_ID.Common.Task_Info.Runon_CPU));
pragma Assert (Result = 0);
end if;
Lock_All_Tasks_List;
for J in Known_Tasks'Range loop
if Known_Tasks (J) = null then
Known_Tasks (J) := Self_ID;
Self_ID.Known_Tasks_Index := J;
exit;
end if;
end loop;
Unlock_All_Tasks_List;
end Enter_Task;
--------------
-- New_ATCB --
--------------
function New_ATCB (Entry_Num : Task_Entry_Index) return Task_ID is
begin
return new Ada_Task_Control_Block (Entry_Num);
end New_ATCB;
--------------------
-- Initialize_TCB --
--------------------
procedure Initialize_TCB (Self_ID : Task_ID; Succeeded : out Boolean) is
Result : Interfaces.C.int;
Cond_Attr : aliased pthread_condattr_t;
begin
Initialize_Lock (Self_ID.Common.LL.L'Access, All_Tasks_Level);
Result := pthread_condattr_init (Cond_Attr'Access);
pragma Assert (Result = 0 or else Result = ENOMEM);
if Result /= 0 then
Result := pthread_mutex_destroy (Self_ID.Common.LL.L'Access);
pragma Assert (Result = 0);
Succeeded := False;
return;
end if;
Result := pthread_cond_init (Self_ID.Common.LL.CV'Access,
Cond_Attr'Access);
pragma Assert (Result = 0 or else Result = ENOMEM);
if Result = 0 then
Succeeded := True;
else
Result := pthread_mutex_destroy (Self_ID.Common.LL.L'Access);
pragma Assert (Result = 0);
Succeeded := False;
end if;
Result := pthread_condattr_destroy (Cond_Attr'Access);
pragma Assert (Result = 0);
end Initialize_TCB;
-----------------
-- Create_Task --
-----------------
procedure Create_Task
(T : Task_ID;
Wrapper : System.Address;
Stack_Size : System.Parameters.Size_Type;
Priority : System.Any_Priority;
Succeeded : out Boolean)
is
use System.Task_Info;
Attributes : aliased pthread_attr_t;
Sched_Param : aliased struct_sched_param;
Adjusted_Stack_Size : Interfaces.C.size_t;
Result : Interfaces.C.int;
function Thread_Body_Access is new
Unchecked_Conversion (System.Address, Thread_Body);
function To_Int is new Unchecked_Conversion
(System.Task_Info.Thread_Scheduling_Scope, Interfaces.C.int);
function To_Int is new Unchecked_Conversion
(System.Task_Info.Thread_Scheduling_Inheritance, Interfaces.C.int);
function To_Int is new Unchecked_Conversion
(System.Task_Info.Thread_Scheduling_Policy, Interfaces.C.int);
begin
if Stack_Size = System.Parameters.Unspecified_Size then
Adjusted_Stack_Size :=
Interfaces.C.size_t (System.Program_Info.Default_Task_Stack);
elsif Stack_Size < Size_Type (Minimum_Stack_Size) then
Adjusted_Stack_Size :=
Interfaces.C.size_t (Minimum_Stack_Size);
else
Adjusted_Stack_Size := Interfaces.C.size_t (Stack_Size);
end if;
Result := pthread_attr_init (Attributes'Access);
pragma Assert (Result = 0 or else Result = ENOMEM);
if Result /= 0 then
Succeeded := False;
return;
end if;
Result := pthread_attr_setdetachstate
(Attributes'Access, PTHREAD_CREATE_DETACHED);
pragma Assert (Result = 0);
Result := pthread_attr_setstacksize
(Attributes'Access, Interfaces.C.size_t (Adjusted_Stack_Size));
pragma Assert (Result = 0);
if T.Common.Task_Info /= null then
Result := pthread_attr_setscope
(Attributes'Access, To_Int (T.Common.Task_Info.Scope));
pragma Assert (Result = 0);
Result := pthread_attr_setinheritsched
(Attributes'Access, To_Int (T.Common.Task_Info.Inheritance));
pragma Assert (Result = 0);
Result := pthread_attr_setschedpolicy
(Attributes'Access, To_Int (T.Common.Task_Info.Policy));
pragma Assert (Result = 0);
Sched_Param.sched_priority :=
Interfaces.C.int (T.Common.Task_Info.Priority);
Result := pthread_attr_setschedparam
(Attributes'Access, Sched_Param'Access);
pragma Assert (Result = 0);
end if;
-- Since the initial signal mask of a thread is inherited from the
-- creator, and the Environment task has all its signals masked, we
-- do not need to manipulate caller's signal mask at this point.
-- All tasks in RTS will have All_Tasks_Mask initially.
Result := pthread_create
(T.Common.LL.Thread'Access,
Attributes'Access,
Thread_Body_Access (Wrapper),
To_Address (T));
if Result /= 0
and then T.Common.Task_Info /= null
and then T.Common.Task_Info.Scope = PTHREAD_SCOPE_SYSTEM
then
-- The pthread_create call may have failed because we
-- asked for a system scope pthread and none were
-- available (probably because the program was not executed
-- by the superuser). Let's try for a process scope pthread
-- instead of raising Tasking_Error.
System.IO.Put_Line
("Request for PTHREAD_SCOPE_SYSTEM in Task_Info pragma for task");
System.IO.Put ("""");
System.IO.Put (T.Common.Task_Image.all);
System.IO.Put_Line (""" could not be honored. ");
System.IO.Put_Line ("Scope changed to PTHREAD_SCOPE_PROCESS");
T.Common.Task_Info.Scope := PTHREAD_SCOPE_PROCESS;
Result := pthread_attr_setscope
(Attributes'Access, To_Int (T.Common.Task_Info.Scope));
pragma Assert (Result = 0);
Result := pthread_create
(T.Common.LL.Thread'Access,
Attributes'Access,
Thread_Body_Access (Wrapper),
To_Address (T));
end if;
pragma Assert (Result = 0 or else Result = EAGAIN);
Succeeded := Result = 0;
Set_Priority (T, Priority);
Result := pthread_attr_destroy (Attributes'Access);
pragma Assert (Result = 0);
end Create_Task;
------------------
-- Finalize_TCB --
------------------
procedure Finalize_TCB (T : Task_ID) is
Result : Interfaces.C.int;
Tmp : Task_ID := T;
procedure Free is new
Unchecked_Deallocation (Ada_Task_Control_Block, Task_ID);
begin
Result := pthread_mutex_destroy (T.Common.LL.L'Access);
pragma Assert (Result = 0);
Result := pthread_cond_destroy (T.Common.LL.CV'Access);
pragma Assert (Result = 0);
if T.Known_Tasks_Index /= -1 then
Known_Tasks (T.Known_Tasks_Index) := null;
end if;
Free (Tmp);
end Finalize_TCB;
---------------
-- Exit_Task --
---------------
procedure Exit_Task is
begin
pthread_exit (System.Null_Address);
end Exit_Task;
----------------
-- Abort_Task --
----------------
procedure Abort_Task (T : Task_ID) is
Result : Interfaces.C.int;
begin
Result := pthread_kill (T.Common.LL.Thread,
Signal (System.Interrupt_Management.Abort_Task_Interrupt));
pragma Assert (Result = 0);
end Abort_Task;
----------------
-- Check_Exit --
----------------
-- Dummy versions. The only currently working versions is for solaris
-- (native).
function Check_Exit (Self_ID : ST.Task_ID) return Boolean is
begin
return True;
end Check_Exit;
--------------------
-- Check_No_Locks --
--------------------
function Check_No_Locks (Self_ID : ST.Task_ID) return Boolean is
begin
return True;
end Check_No_Locks;
----------------------
-- Environment_Task --
----------------------
function Environment_Task return Task_ID is
begin
return Environment_Task_ID;
end Environment_Task;
-------------------------
-- Lock_All_Tasks_List --
-------------------------
procedure Lock_All_Tasks_List is
begin
Write_Lock (All_Tasks_L'Access);
end Lock_All_Tasks_List;
---------------------------
-- Unlock_All_Tasks_List --
---------------------------
procedure Unlock_All_Tasks_List is
begin
Unlock (All_Tasks_L'Access);
end Unlock_All_Tasks_List;
------------------
-- Suspend_Task --
------------------
function Suspend_Task
(T : ST.Task_ID;
Thread_Self : Thread_Id) return Boolean is
begin
return False;
end Suspend_Task;
-----------------
-- Resume_Task --
-----------------
function Resume_Task
(T : ST.Task_ID;
Thread_Self : Thread_Id) return Boolean is
begin
return False;
end Resume_Task;
----------------
-- Initialize --
----------------
procedure Initialize (Environment_Task : Task_ID) is
act : aliased struct_sigaction;
old_act : aliased struct_sigaction;
Tmp_Set : aliased sigset_t;
Result : Interfaces.C.int;
begin
Environment_Task_ID := Environment_Task;
-- Initialize the lock used to synchronize chain of all ATCBs.
Initialize_Lock (All_Tasks_L'Access, All_Tasks_Level);
Enter_Task (Environment_Task);
-- Install the abort-signal handler
act.sa_flags := 0;
act.sa_handler := Abort_Handler'Address;
Result := sigemptyset (Tmp_Set'Access);
pragma Assert (Result = 0);
act.sa_mask := Tmp_Set;
Result :=
sigaction (
Signal (System.Interrupt_Management.Abort_Task_Interrupt),
act'Unchecked_Access,
old_act'Unchecked_Access);
pragma Assert (Result = 0);
end Initialize;
begin
declare
Result : Interfaces.C.int;
begin
-- Mask Environment task for all signals. The original mask of the
-- Environment task will be recovered by Interrupt_Server task
-- during the elaboration of s-interr.adb.
System.Interrupt_Management.Operations.Set_Interrupt_Mask
(System.Interrupt_Management.Operations.All_Tasks_Mask'Access);
-- Prepare the set of signals that should unblocked in all tasks
Result := sigemptyset (Unblocked_Signal_Mask'Access);
pragma Assert (Result = 0);
for J in Interrupt_Management.Interrupt_ID loop
if System.Interrupt_Management.Keep_Unmasked (J) then
Result := sigaddset (Unblocked_Signal_Mask'Access, Signal (J));
pragma Assert (Result = 0);
end if;
end loop;
Result := pthread_key_create (ATCB_Key'Access, null);
pragma Assert (Result = 0);
-- Pick the highest resolution Clock for Clock_Realtime
-- ??? This code currently doesn't work (see c94007[ab] for example)
--
-- if syssgi (SGI_CYCLECNTR_SIZE) = 64 then
-- Real_Time_Clock_Id := CLOCK_SGI_CYCLE;
-- else
-- Real_Time_Clock_Id := CLOCK_REALTIME;
-- end if;
end;
end System.Task_Primitives.Operations;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2018, Fabien Chouteau --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
package AGATE_Types_Data.Traces is
type Task_Data is null record;
type Semaphore_Data is null record;
type Mutex_Data is null record;
end AGATE_Types_Data.Traces;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY COMPONENTS --
-- --
-- S Y S T E M . C O M P A R E _ A R R A Y _ U N S I G N E D _ 8 --
-- --
-- B o d y --
-- --
-- Copyright (C) 2002-2019, 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. --
-- --
------------------------------------------------------------------------------
pragma Compiler_Unit_Warning;
with System.Address_Operations; use System.Address_Operations;
with Ada.Unchecked_Conversion;
package body System.Compare_Array_Unsigned_8 is
type Word is mod 2 ** 32;
-- Used to process operands by words
type Big_Words is array (Natural) of Word;
type Big_Words_Ptr is access Big_Words;
for Big_Words_Ptr'Storage_Size use 0;
-- Array type used to access by words
type Byte is mod 2 ** 8;
-- Used to process operands by bytes
type Big_Bytes is array (Natural) of Byte;
type Big_Bytes_Ptr is access Big_Bytes;
for Big_Bytes_Ptr'Storage_Size use 0;
-- Array type used to access by bytes
function To_Big_Words is new
Ada.Unchecked_Conversion (System.Address, Big_Words_Ptr);
function To_Big_Bytes is new
Ada.Unchecked_Conversion (System.Address, Big_Bytes_Ptr);
----------------------
-- Compare_Array_U8 --
----------------------
function Compare_Array_U8
(Left : System.Address;
Right : System.Address;
Left_Len : Natural;
Right_Len : Natural) return Integer
is
Compare_Len : constant Natural := Natural'Min (Left_Len, Right_Len);
begin
-- If operands are non-aligned, or length is too short, go by bytes
if (ModA (OrA (Left, Right), 4) /= 0) or else Compare_Len < 4 then
return Compare_Array_U8_Unaligned (Left, Right, Left_Len, Right_Len);
end if;
-- Here we can go by words
declare
LeftP : constant Big_Words_Ptr :=
To_Big_Words (Left);
RightP : constant Big_Words_Ptr :=
To_Big_Words (Right);
Words_To_Compare : constant Natural := Compare_Len / 4;
Bytes_Compared_As_Words : constant Natural := Words_To_Compare * 4;
begin
for J in 0 .. Words_To_Compare - 1 loop
if LeftP (J) /= RightP (J) then
return Compare_Array_U8_Unaligned
(AddA (Left, Address (4 * J)),
AddA (Right, Address (4 * J)),
4, 4);
end if;
end loop;
return Compare_Array_U8_Unaligned
(AddA (Left, Address (Bytes_Compared_As_Words)),
AddA (Right, Address (Bytes_Compared_As_Words)),
Left_Len - Bytes_Compared_As_Words,
Right_Len - Bytes_Compared_As_Words);
end;
end Compare_Array_U8;
--------------------------------
-- Compare_Array_U8_Unaligned --
--------------------------------
function Compare_Array_U8_Unaligned
(Left : System.Address;
Right : System.Address;
Left_Len : Natural;
Right_Len : Natural) return Integer
is
Compare_Len : constant Natural := Natural'Min (Left_Len, Right_Len);
LeftP : constant Big_Bytes_Ptr := To_Big_Bytes (Left);
RightP : constant Big_Bytes_Ptr := To_Big_Bytes (Right);
begin
for J in 0 .. Compare_Len - 1 loop
if LeftP (J) /= RightP (J) then
if LeftP (J) > RightP (J) then
return +1;
else
return -1;
end if;
end if;
end loop;
if Left_Len = Right_Len then
return 0;
elsif Left_Len > Right_Len then
return +1;
else
return -1;
end if;
end Compare_Array_U8_Unaligned;
end System.Compare_Array_Unsigned_8;
|
with Ahven.Framework;
package math_Tests.linear_Algebra_3d
is
type Test is new Ahven.Framework.Test_Case with null record;
procedure Initialize (T : in out Test);
end math_Tests.linear_Algebra_3d;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- A D A . U N C H E C K E D _ C O N V E R S I O N --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
generic
type Source (<>) is limited private;
type Target (<>) is limited private;
function Ada.Unchecked_Conversion (S : Source) return Target;
pragma Pure (Unchecked_Conversion);
pragma Import (Intrinsic, Unchecked_Conversion);
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with AMF.Elements;
with AMF.Internals.Element_Collections;
with AMF.Internals.Helpers;
with AMF.Internals.Tables.UML_Attributes;
with AMF.Visitors.UML_Iterators;
with AMF.Visitors.UML_Visitors;
with League.Strings.Internals;
with Matreshka.Internals.Strings;
package body AMF.Internals.UML_Literal_Unlimited_Naturals is
-------------------
-- Enter_Element --
-------------------
overriding procedure Enter_Element
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then
AMF.Visitors.UML_Visitors.UML_Visitor'Class
(Visitor).Enter_Literal_Unlimited_Natural
(AMF.UML.Literal_Unlimited_Naturals.UML_Literal_Unlimited_Natural_Access (Self),
Control);
end if;
end Enter_Element;
-------------------
-- Leave_Element --
-------------------
overriding procedure Leave_Element
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then
AMF.Visitors.UML_Visitors.UML_Visitor'Class
(Visitor).Leave_Literal_Unlimited_Natural
(AMF.UML.Literal_Unlimited_Naturals.UML_Literal_Unlimited_Natural_Access (Self),
Control);
end if;
end Leave_Element;
-------------------
-- Visit_Element --
-------------------
overriding procedure Visit_Element
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Iterator in AMF.Visitors.UML_Iterators.UML_Iterator'Class then
AMF.Visitors.UML_Iterators.UML_Iterator'Class
(Iterator).Visit_Literal_Unlimited_Natural
(Visitor,
AMF.UML.Literal_Unlimited_Naturals.UML_Literal_Unlimited_Natural_Access (Self),
Control);
end if;
end Visit_Element;
---------------------------
-- Get_Client_Dependency --
---------------------------
overriding function Get_Client_Dependency
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency is
begin
return
AMF.UML.Dependencies.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Client_Dependency
(Self.Element)));
end Get_Client_Dependency;
-------------------------
-- Get_Name_Expression --
-------------------------
overriding function Get_Name_Expression
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access is
begin
return
AMF.UML.String_Expressions.UML_String_Expression_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Name_Expression
(Self.Element)));
end Get_Name_Expression;
-------------------
-- Get_Namespace --
-------------------
overriding function Get_Namespace
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access is
begin
return
AMF.UML.Namespaces.UML_Namespace_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Namespace
(Self.Element)));
end Get_Namespace;
-----------------------------------
-- Get_Owning_Template_Parameter --
-----------------------------------
overriding function Get_Owning_Template_Parameter
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Template_Parameters.UML_Template_Parameter_Access is
begin
return
AMF.UML.Template_Parameters.UML_Template_Parameter_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Owning_Template_Parameter
(Self.Element)));
end Get_Owning_Template_Parameter;
------------------------
-- Get_Qualified_Name --
------------------------
overriding function Get_Qualified_Name
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.Optional_String is
begin
declare
use type Matreshka.Internals.Strings.Shared_String_Access;
Aux : constant Matreshka.Internals.Strings.Shared_String_Access
:= AMF.Internals.Tables.UML_Attributes.Internal_Get_Qualified_Name (Self.Element);
begin
if Aux = null then
return (Is_Empty => True);
else
return (False, League.Strings.Internals.Create (Aux));
end if;
end;
end Get_Qualified_Name;
----------------------------
-- Get_Template_Parameter --
----------------------------
overriding function Get_Template_Parameter
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Template_Parameters.UML_Template_Parameter_Access is
begin
return
AMF.UML.Template_Parameters.UML_Template_Parameter_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Template_Parameter
(Self.Element)));
end Get_Template_Parameter;
--------------
-- Get_Type --
--------------
overriding function Get_Type
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Types.UML_Type_Access is
begin
return
AMF.UML.Types.UML_Type_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Type
(Self.Element)));
end Get_Type;
---------------
-- Get_Value --
---------------
overriding function Get_Value
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.Unlimited_Natural is
begin
return
AMF.Internals.Tables.UML_Attributes.Internal_Get_Value
(Self.Element);
end Get_Value;
-------------------------
-- Set_Name_Expression --
-------------------------
overriding procedure Set_Name_Expression
(Self : not null access UML_Literal_Unlimited_Natural_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Name_Expression
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Name_Expression;
-----------------------------------
-- Set_Owning_Template_Parameter --
-----------------------------------
overriding procedure Set_Owning_Template_Parameter
(Self : not null access UML_Literal_Unlimited_Natural_Proxy;
To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Owning_Template_Parameter
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Owning_Template_Parameter;
----------------------------
-- Set_Template_Parameter --
----------------------------
overriding procedure Set_Template_Parameter
(Self : not null access UML_Literal_Unlimited_Natural_Proxy;
To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Template_Parameter
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Template_Parameter;
--------------
-- Set_Type --
--------------
overriding procedure Set_Type
(Self : not null access UML_Literal_Unlimited_Natural_Proxy;
To : AMF.UML.Types.UML_Type_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Type
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Type;
---------------
-- Set_Value --
---------------
overriding procedure Set_Value
(Self : not null access UML_Literal_Unlimited_Natural_Proxy;
To : AMF.Unlimited_Natural) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Value
(Self.Element, To);
end Set_Value;
---------------------
-- Unlimited_Value --
---------------------
overriding function Unlimited_Value
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.Unlimited_Natural
is
-- 7.3.32 LiteralUnlimitedNatural (from Kernel)
--
-- [2] The query unlimitedValue() gives the value.
--
-- LiteralUnlimitedNatural::unlimitedValue() : [UnlimitedNatural];
-- unlimitedValue = value
begin
return UML_Literal_Unlimited_Natural_Proxy'Class (Self.all).Get_Value;
end Unlimited_Value;
---------------------
-- Unlimited_Value --
---------------------
overriding function Unlimited_Value
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.Optional_Unlimited_Natural
is
-- 7.3.32 LiteralUnlimitedNatural (from Kernel)
--
-- [2] The query unlimitedValue() gives the value.
--
-- LiteralUnlimitedNatural::unlimitedValue() : [UnlimitedNatural];
-- unlimitedValue = value
begin
return
(False, UML_Literal_Unlimited_Natural_Proxy'Class (Self.all).Get_Value);
end Unlimited_Value;
-------------------
-- Is_Computable --
-------------------
overriding function Is_Computable
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Computable unimplemented");
raise Program_Error with "Unimplemented procedure UML_Literal_Unlimited_Natural_Proxy.Is_Computable";
return Is_Computable (Self);
end Is_Computable;
------------------------
-- Is_Compatible_With --
------------------------
overriding function Is_Compatible_With
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy;
P : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Compatible_With unimplemented");
raise Program_Error with "Unimplemented procedure UML_Literal_Unlimited_Natural_Proxy.Is_Compatible_With";
return Is_Compatible_With (Self, P);
end Is_Compatible_With;
-------------------------
-- All_Owning_Packages --
-------------------------
overriding function All_Owning_Packages
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "All_Owning_Packages unimplemented");
raise Program_Error with "Unimplemented procedure UML_Literal_Unlimited_Natural_Proxy.All_Owning_Packages";
return All_Owning_Packages (Self);
end All_Owning_Packages;
-----------------------------
-- Is_Distinguishable_From --
-----------------------------
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented");
raise Program_Error with "Unimplemented procedure UML_Literal_Unlimited_Natural_Proxy.Is_Distinguishable_From";
return Is_Distinguishable_From (Self, N, Ns);
end Is_Distinguishable_From;
---------------
-- Namespace --
---------------
overriding function Namespace
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Namespace unimplemented");
raise Program_Error with "Unimplemented procedure UML_Literal_Unlimited_Natural_Proxy.Namespace";
return Namespace (Self);
end Namespace;
---------------------------
-- Is_Template_Parameter --
---------------------------
overriding function Is_Template_Parameter
(Self : not null access constant UML_Literal_Unlimited_Natural_Proxy)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Template_Parameter unimplemented");
raise Program_Error with "Unimplemented procedure UML_Literal_Unlimited_Natural_Proxy.Is_Template_Parameter";
return Is_Template_Parameter (Self);
end Is_Template_Parameter;
end AMF.Internals.UML_Literal_Unlimited_Naturals;
|
-- Abstract :
--
-- Support Emacs Ada mode and gpr-query minor mode queries about
-- GNAT projects and cross reference data
--
-- requires gnatcoll 1.7w 20140330, gnat 7.2.1
--
-- Copyright (C) 2014-2016 Free Software Foundation All Rights Reserved.
--
-- This program is free software; you can redistribute it and/or
-- modify it under terms of the GNU General Public License as
-- published by the Free Software Foundation; either version 3, or (at
-- your option) any later version. This program is distributed in the
-- hope that it will be useful, but WITHOUT ANY WARRANTY; without even
-- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
-- PURPOSE. See the GNU General Public License for more details. You
-- should have received a copy of the GNU General Public License
-- distributed with this program; see file COPYING. If not, write to
-- the Free Software Foundation, 51 Franklin Street, Suite 500, Boston,
-- MA 02110-1335, USA.
pragma License (GPL);
with Ada.Characters.Handling;
with Ada.Command_Line;
with Ada.Directories;
with Ada.Environment_Variables;
with Ada.Exceptions.Traceback;
with Ada.Strings.Fixed;
with Ada.Strings.Unbounded;
with Ada.Text_IO;
with GNAT.Command_Line;
with GNAT.Directory_Operations;
with GNAT.OS_Lib;
with GNAT.Strings;
with GNAT.Traceback.Symbolic;
with GNATCOLL.Arg_Lists;
with GNATCOLL.Paragraph_Filling;
with GNATCOLL.Projects;
with GNATCOLL.SQL.Sqlite;
with GNATCOLL.Traces; use GNATCOLL.Traces;
with GNATCOLL.Utils;
with GNATCOLL.VFS;
with GNATCOLL.VFS_Utils;
with GNATCOLL.Xref;
with Prj;
procedure Gpr_Query is
use GNATCOLL;
Me : constant GNATCOLL.Traces.Trace_Handle := GNATCOLL.Traces.Create ("gpr_query");
Db_Error : exception;
Invalid_Command : exception;
function "+" (Item : in Ada.Strings.Unbounded.Unbounded_String) return String
renames Ada.Strings.Unbounded.To_String;
function "+" (Item : in GNATCOLL.VFS.Filesystem_String) return String
is begin
return String (Item);
end "+";
procedure Process_Line (Line : String);
-- Process a full line of commands.
-- Raise Invalid_Command when the command is invalid.
function Get_Entity (Arg : String) return GNATCOLL.Xref.Entity_Information;
-- Return the entity matching the "name:file:line:column" argument
type My_Xref_Database is new GNATCOLL.Xref.Xref_Database with null record;
-- Derived so we can override Image to output full paths
overriding function Image (Self : My_Xref_Database; File : GNATCOLL.VFS.Virtual_File) return String;
function Image (Self : GNATCOLL.Xref.Entity_Information) return String;
-- Return a display version of the argument
Xref : aliased My_Xref_Database;
Env : GNATCOLL.Projects.Project_Environment_Access;
Tree : aliased GNATCOLL.Projects.Project_Tree;
Previous_Progress : Natural := 0;
Progress_Reporter : access procedure (Current, Total : Integer) := null;
-- Subprogram specs for subprograms used before bodies
procedure Check_Arg_Count (Args : in GNATCOLL.Arg_Lists.Arg_List; Expected : in Integer);
procedure Dump (Curs : in out GNATCOLL.Xref.Entities_Cursor'Class);
procedure Dump (Refs : in out GNATCOLL.Xref.References_Cursor'Class);
-- Display the results of a query
procedure Put (Item : GNATCOLL.VFS.File_Array);
generic
with function Compute
(Self : in GNATCOLL.Xref.Xref_Database'Class;
Entity : in GNATCOLL.Xref.Entity_Information)
return GNATCOLL.Xref.Entity_Information;
procedure Process_Command_Single (Args : GNATCOLL.Arg_Lists.Arg_List);
-- Get the entity identified by Args, which must contain a single
-- argument. Then call Compute, and output the result.
--
-- Appropriate for queries that return a single entity result.
procedure Process_Command_Single (Args : GNATCOLL.Arg_Lists.Arg_List)
is
use GNATCOLL.Arg_Lists;
use GNATCOLL.Xref;
Entity : Entity_Information;
Comp : Entity_Information;
begin
Check_Arg_Count (Args, 1);
Entity := Get_Entity (Nth_Arg (Args, 1));
Comp := Compute (Xref, Entity);
if Comp /= No_Entity then
Ada.Text_IO.Put_Line (Image (Comp));
end if;
end Process_Command_Single;
generic
with procedure Compute
(Self : in GNATCOLL.Xref.Xref_Database'Class;
Entity : in GNATCOLL.Xref.Entity_Information;
Cursor : out GNATCOLL.Xref.Entities_Cursor'Class);
procedure Process_Command_Multiple (Args : GNATCOLL.Arg_Lists.Arg_List);
procedure Process_Command_Multiple (Args : GNATCOLL.Arg_Lists.Arg_List)
is
use GNATCOLL.Arg_Lists;
use GNATCOLL.Xref;
Entity : Entity_Information;
Descendants : Recursive_Entities_Cursor;
-- Apparently a generic formal parameter cannot match a subprogram access type, so we need this:
procedure Do_Compute
(Self : in GNATCOLL.Xref.Xref_Database'Class;
Entity : in GNATCOLL.Xref.Entity_Information;
Cursor : out GNATCOLL.Xref.Entities_Cursor'Class)
is begin
Compute (Self, Entity, Cursor);
end Do_Compute;
begin
Check_Arg_Count (Args, 1);
Entity := Get_Entity (Nth_Arg (Args, 1));
Recursive
(Self => Xref'Unchecked_Access,
Entity => Entity,
Compute => Do_Compute'Unrestricted_Access,
Cursor => Descendants);
Dump (Descendants);
end Process_Command_Multiple;
-- Command procedures; Args is the command line.
--
-- Infrastructure commands
procedure Process_Help (Args : GNATCOLL.Arg_Lists.Arg_List);
procedure Process_Refresh (Args : GNATCOLL.Arg_Lists.Arg_List);
-- Queries; alphabetical
procedure Process_Overridden is new Process_Command_Single (GNATCOLL.Xref.Overrides);
procedure Process_Overriding is new Process_Command_Multiple (GNATCOLL.Xref.Overridden_By);
procedure Process_Parent_Types is new Process_Command_Multiple (GNATCOLL.Xref.Parent_Types);
procedure Process_Project_Path (Args : GNATCOLL.Arg_Lists.Arg_List);
procedure Process_Refs (Args : GNATCOLL.Arg_Lists.Arg_List);
procedure Process_Source_Dirs (Args : GNATCOLL.Arg_Lists.Arg_List);
type Command_Descr is record
Name : GNAT.Strings.String_Access;
Args : GNAT.Strings.String_Access;
Help : GNAT.Strings.String_Access;
Handler : access procedure (Args : GNATCOLL.Arg_Lists.Arg_List);
end record;
Commands : constant array (Natural range <>) of Command_Descr :=
((new String'("help"),
new String'("[command or variable name]"),
new String'("Display the list of commands and their syntax."),
Process_Help'Access),
(new String'("refresh"),
null,
new String'("Refresh the contents of the xref database."),
Process_Refresh'Access),
-- queries
(new String'("overridden"),
new String'("name:file:line:column"),
new String'("The entity that is overridden by the parameter"),
Process_Overridden'Access),
(new String'("overriding"),
new String'("name:file:line:column"),
new String'("The entities that override the parameter"),
Process_Overriding'Access),
(new String'("parent_types"),
new String'("name:file:line:column"),
new String'("The parent types of the entity."),
Process_Parent_Types'Access),
(new String'("project_path"),
null,
new String'("The project search path."),
Process_Project_Path'Access),
(new String'("refs"),
new String'("name:file:line:column"),
new String'("All known references to the entity."),
Process_Refs'Access),
(new String'("source_dirs"),
null,
new String'("The project source directories, recursively."),
Process_Source_Dirs'Access));
-- Parsed command line info
Cmdline : GNAT.Command_Line.Command_Line_Configuration;
Commands_From_Switch : aliased GNAT.Strings.String_Access;
DB_Name : aliased GNAT.Strings.String_Access := new String'("gpr_query.db");
Force_Refresh : aliased Boolean;
Nightly_DB_Name : aliased GNAT.Strings.String_Access;
Show_Progress : aliased Boolean;
Project_Name : aliased GNAT.Strings.String_Access;
Traces_Config_File : aliased GNAT.Strings.String_Access;
Gpr_Config_File : aliased GNAT.Strings.String_Access;
ALI_Encoding : aliased GNAT.Strings.String_Access := new String'("");
----------
-- Procedure bodies, alphabetical
procedure Display_Progress (Current, Total : Integer) is
Now : constant Integer := Integer (Float'Floor
(Float (Current) / Float (Total) * 100.0));
begin
if Now /= Previous_Progress then
Ada.Text_IO.Put_Line
("completed" & Current'Img
& " out of" & Total'Img
& " (" & GNATCOLL.Utils.Image (Now, Min_Width => 0) & "%)...");
Previous_Progress := Now;
end if;
end Display_Progress;
procedure Dump (Curs : in out GNATCOLL.Xref.Entities_Cursor'Class)
is
use GNATCOLL.Xref;
begin
while Curs.Has_Element loop
Ada.Text_IO.Put_Line (Image (Curs.Element));
Curs.Next;
end loop;
end Dump;
procedure Dump (Refs : in out GNATCOLL.Xref.References_Cursor'Class)
is
use GNATCOLL.Xref;
begin
while Has_Element (Refs) loop
declare
Ref : constant Entity_Reference := Refs.Element;
begin
Ada.Text_IO.Put_Line (Xref.Image (Ref) & " (" & (+Ref.Kind) & ")");
end;
Next (Refs);
end loop;
end Dump;
function Get_Entity (Arg : String) return GNATCOLL.Xref.Entity_Information
is
use GNAT.Directory_Operations;
use GNATCOLL.Xref;
Words : GNAT.Strings.String_List_Access := GNATCOLL.Utils.Split (Arg, On => ':');
Ref : GNATCOLL.Xref.Entity_Reference;
begin
case Words'Length is
when 4 =>
Ref := Xref.Get_Entity
(Name => Words (Words'First).all,
File => Format_Pathname
(Style => UNIX,
Path => Words (Words'First + 1).all),
Project => GNATCOLL.Projects.No_Project,
Line => Integer'Value (Words (Words'First + 2).all),
Column => Visible_Column
(Integer'Value (Words (Words'First + 3).all)));
when 3 =>
Ref := Xref.Get_Entity
(Name => Words (Words'First).all,
File => Format_Pathname
(Style => UNIX,
Path => Words (Words'First + 1).all),
Project => GNATCOLL.Projects.No_Project,
Line => Integer'Value (Words (Words'First + 2).all));
when 2 =>
Ref := Xref.Get_Entity
(Name => Words (Words'First).all,
File => Format_Pathname
(Style => UNIX,
Path => Words (Words'First + 1).all),
Project => GNATCOLL.Projects.No_Project);
-- Xref.Get_Entity treats 'File => ""' as searching for pre-defined entities such as "Integer".
when others =>
raise Invalid_Command with "Invalid parameter '" & Arg & "', expecting name:file:line:column";
end case;
GNAT.Strings.Free (Words);
if Ref.Entity = GNATCOLL.Xref.No_Entity then
Ada.Text_IO.Put_Line ("Error: entity not found '" & Arg & "'");
elsif GNATCOLL.Xref.Is_Fuzzy_Match (Ref.Entity) then
Ada.Text_IO.Put_Line ("warning: fuzzy match for the entity");
-- FIXME: gnat-query.el look for this, prompt for reparse?
end if;
return Ref.Entity;
end Get_Entity;
overriding function Image (Self : My_Xref_Database; File : GNATCOLL.VFS.Virtual_File) return String
is
pragma Unreferenced (Self);
begin
return File.Display_Full_Name;
end Image;
function Image (Self : GNATCOLL.Xref.Entity_Information) return String
is
use GNATCOLL.Xref;
begin
if Self = No_Entity then
return "Unknown entity";
else
declare
Decl : constant Entity_Declaration := Xref.Declaration (Self);
begin
if Is_Predefined_Entity (Decl) then
return "predefined entity: " & (+Decl.Name);
else
return Xref.Image (Decl.Location);
end if;
end;
end if;
end Image;
procedure Check_Arg_Count (Args : in GNATCOLL.Arg_Lists.Arg_List; Expected : in Integer)
is
Count : constant Integer := GNATCOLL.Arg_Lists.Args_Length (Args);
begin
if Count /= Expected then
raise Invalid_Command with "Invalid number of arguments" & Integer'Image (Count) &
"; expecting" & Integer'Image (Expected);
end if;
end Check_Arg_Count;
procedure Process_Help (Args : GNATCOLL.Arg_Lists.Arg_List)
is
use Ada.Text_IO;
use GNATCOLL.Arg_Lists;
use type GNAT.Strings.String_Access;
begin
for C in Commands'Range loop
if Args_Length (Args) <= 0 -- Empty_Command_Line returns -1
or else Nth_Arg (Args, 1) = Commands (C).Name.all
then
Put (" " & Commands (C).Name.all);
if Commands (C).Args = null then
New_Line;
else
Put_Line (" " & Commands (C).Args.all);
end if;
Put
(Ada.Strings.Unbounded.To_String
(GNATCOLL.Paragraph_Filling.Knuth_Fill
(Commands (C).Help.all,
Max_Line_Length => 70,
Line_Prefix => " ")));
end if;
end loop;
New_Line;
Put_Line ("'exit' to quit");
end Process_Help;
procedure Process_Line (Line : String)
is
Expr : GNAT.Strings.String_List_Access;
begin
if Ada.Strings.Fixed.Trim (Line, Ada.Strings.Both) = "" then
return;
end if;
Expr := GNATCOLL.Utils.Split (Line, On => ';');
for C in Expr'Range loop
if Ada.Strings.Fixed.Trim (Expr (C).all, Ada.Strings.Both) = "" then
null;
else
declare
use GNATCOLL.Arg_Lists;
List : constant Arg_List := Parse_String (Expr (C).all, Mode => Separate_Args);
Cmd : constant String := Ada.Characters.Handling.To_Lower (Get_Command (List));
Found : Boolean := False;
begin
for Co in Commands'Range loop
if Commands (Co).Name.all = Cmd then
Commands (Co).Handler (List);
Found := True;
exit;
end if;
end loop;
if not Found then
raise Invalid_Command with "Invalid command: '" & Cmd & "'";
end if;
end;
end if;
end loop;
GNAT.Strings.Free (Expr);
end Process_Line;
procedure Process_Project_Path (Args : GNATCOLL.Arg_Lists.Arg_List)
is
pragma Unreferenced (Args);
Dirs : constant GNATCOLL.VFS.File_Array := GNATCOLL.Projects.Predefined_Project_Path (Env.all);
begin
Put (Dirs);
end Process_Project_Path;
procedure Process_Refresh (Args : GNATCOLL.Arg_Lists.Arg_List)
is
use type GNATCOLL.Projects.Project_Environment_Access;
pragma Unreferenced (Args);
begin
Xref.Parse_All_LI_Files
(Tree => Tree,
Project => Tree.Root_Project,
Parse_Runtime_Files => False, -- True encounters bug in gnatcoll.projects; null pointer
Show_Progress => Progress_Reporter,
ALI_Encoding => ALI_Encoding.all,
From_DB_Name => Nightly_DB_Name.all,
To_DB_Name => DB_Name.all,
Force_Refresh => Force_Refresh);
end Process_Refresh;
procedure Process_Refs (Args : GNATCOLL.Arg_Lists.Arg_List)
is
use GNATCOLL.Arg_Lists;
begin
Check_Arg_Count (Args, 1);
declare
use GNATCOLL.Xref;
Entity : constant Entity_Information := Get_Entity (Nth_Arg (Args, 1));
Refs : References_Cursor;
begin
Xref.References (Entity, Cursor => Refs);
Dump (Refs);
end;
end Process_Refs;
procedure Process_Source_Dirs (Args : GNATCOLL.Arg_Lists.Arg_List)
is
pragma Unreferenced (Args);
use GNATCOLL.VFS;
use GNATCOLL.Projects;
Dirs : constant File_Array := Source_Dirs
(Project => Tree.Root_Project,
Recursive => True) &
Predefined_Source_Path (Env.all);
begin
Put (Dirs);
end Process_Source_Dirs;
procedure Put (Item : GNATCOLL.VFS.File_Array)
is
use GNATCOLL.VFS;
begin
for I in Item'Range loop
Ada.Text_IO.Put_Line (+Full_Name (Item (I)));
end loop;
end Put;
begin
declare
use GNAT.Command_Line;
begin
Set_Usage
(Cmdline,
Help => "Query project info and cross-references on source code. See ada-mode docs for more help.");
-- Switch variable alphabetic order
Define_Switch
(Cmdline,
Output => ALI_Encoding'Access,
Long_Switch => "--encoding=",
Switch => "-e=",
Help => "The character encoding used for source and ALI files");
Define_Switch
(Cmdline,
Output => Commands_From_Switch'Access,
Switch => "-c:",
Long_Switch => "--command=",
Help => "Execute the commands from ARG, and exit");
Define_Switch
(Cmdline,
Output => DB_Name'Access,
Long_Switch => "--db=",
Help => "Specifies the name of the database (or ':memory:')");
Define_Switch
(Cmdline,
Output => Force_Refresh'Access,
Long_Switch => "--force_refresh",
Help => "Force rebuilding the database.");
Define_Switch
(Cmdline,
Output => Gpr_Config_File'Access,
Long_Switch => "--autoconf=",
Help => "Specify the gpr configuration file (.cgpr)");
Define_Switch
(Cmdline,
Output => Nightly_DB_Name'Access,
Long_Switch => "--nightlydb=",
Help => "Specifies the name of a prebuilt database");
Define_Switch
(Cmdline,
Output => Project_Name'Access,
Switch => "-P:",
Long_Switch => "--project=",
Help => "Load the given project (mandatory)");
Define_Switch
(Cmdline,
Output => Show_Progress'Access,
Long_Switch => "--display_progress",
Switch => "-d",
Help => "Show progress as LI files are parsed");
Define_Switch
(Cmdline,
Output => Traces_Config_File'Access,
Long_Switch => "--tracefile=",
Help => "Specify a traces configuration file");
Getopt (Cmdline, Callback => null);
end;
if Project_Name.all = "" then
Ada.Text_IO.Put_Line ("No project file specified");
GNAT.Command_Line.Display_Help (Cmdline);
return;
end if;
-- Only trace if user specifies --tracefile
if Traces_Config_File.all /= "" and then GNAT.OS_Lib.Is_Regular_File (Traces_Config_File.all) then
GNATCOLL.Traces.Parse_Config_File
(Filename => Traces_Config_File.all,
Force_Activation => False);
Trace (Me, "trace enabled");
-- Prj.* not controlled by Traces
Prj.Current_Verbosity := Prj.High;
end if;
GNATCOLL.Projects.Initialize (Env); -- for register_default_language
if Gpr_Config_File.all /= "" and then GNAT.OS_Lib.Is_Regular_File (Gpr_Config_File.all) then
Env.Set_Config_File
(GNATCOLL.VFS.Create_From_UTF8
(GNAT.OS_Lib.Normalize_Pathname
(Name => Gpr_Config_File.all,
Directory => GNAT.Directory_Operations.Get_Current_Dir)));
else
-- Apparently Ada language extensions are already registered (sigh)
Env.Register_Default_Language_Extension
(Language_Name => "C",
Default_Spec_Suffix => ".h",
Default_Body_Suffix => ".c");
Env.Register_Default_Language_Extension
(Language_Name => "C++",
Default_Spec_Suffix => ".hh",
Default_Body_Suffix => ".cpp");
end if;
declare
use Ada.Environment_Variables;
use Ada.Text_IO;
use GNATCOLL.VFS;
use GNATCOLL.VFS_Utils;
use GNAT.Directory_Operations;
use type GNAT.Strings.String_Access;
Gpr_Project_Path : constant String :=
(if Exists ("GPR_PROJECT_PATH") then Ada.Directories.Current_Directory &
GNAT.OS_Lib.Path_Separator &
Value ("GPR_PROJECT_PATH")
else Ada.Directories.Current_Directory);
Path : constant Virtual_File := -- must be an absolute file name
(if Is_Absolute_Path (+Project_Name.all) then
Create_From_UTF8 (Project_Name.all, Normalize => True)
else
Locate_Regular_File (+Project_Name.all, From_Path (+Gpr_Project_Path)));
begin
if not Path.Is_Regular_File then
Put (Project_Name.all & ": not found on path " & Gpr_Project_Path);
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
return;
end if;
Trace (Me, "using project file " & (+Path.Full_Name));
if Show_Progress then
Progress_Reporter := Display_Progress'Unrestricted_Access;
end if;
begin
-- Recompute_View => True registers all the source files
-- (among other things), so we will know that a .[ag]li
-- belongs to this project
Tree.Load
(Path, Env,
Errors => Ada.Text_IO.Put_Line'Access,
Recompute_View => True);
exception
when GNATCOLL.Projects.Invalid_Project =>
Ada.Text_IO.Put_Line ("project search path:");
Put (GNATCOLL.Projects.Predefined_Project_Path (Env.all));
raise GNATCOLL.Projects.Invalid_Project with +Path.Full_Name & ": invalid project";
end;
end;
if DB_Name.all /= ":memory:" then
declare
use GNATCOLL.VFS;
N : constant String := DB_Name.all;
Temp : Virtual_File := Tree.Root_Project.Object_Dir;
Dir2 : Virtual_File;
begin
GNAT.Strings.Free (DB_Name);
-- If the project does not have an object directory, create
-- the database in the directory containing the project file.
if Temp = No_File then
Temp := Tree.Root_Project.Project_Path.Dir;
end if;
Temp := Create_From_Base (Base_Dir => Temp.Full_Name.all, Base_Name => +N);
Dir2 := Create (Temp.Dir_Name);
if not Dir2.Is_Directory then
Dir2.Make_Dir (Recursive => True);
end if;
DB_Name := new String'(Temp.Display_Full_Name);
end;
end if;
declare
use type GNAT.Strings.String_Access;
Error : GNAT.Strings.String_Access;
begin
Trace (Me, "using database " & DB_Name.all);
Setup_DB
(Self => Xref,
Tree => Tree'Unchecked_Access,
DB => GNATCOLL.SQL.Sqlite.Setup (Database => DB_Name.all),
Error => Error);
if Error /= null then
-- old db schema
raise Db_Error with Error.all;
end if;
end;
Process_Refresh (GNATCOLL.Arg_Lists.Empty_Command_Line);
if Commands_From_Switch.all /= "" then
Process_Line (Commands_From_Switch.all);
return;
end if;
loop
Ada.Text_IO.Put (">>> ");
declare
Input : constant String := Ada.Text_IO.Get_Line;
begin
exit when Input = "exit";
Process_Line (Input);
exception
when E : Invalid_Command =>
Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Message (E));
Process_Help (GNATCOLL.Arg_Lists.Empty_Command_Line);
end;
end loop;
exception
when E : GNATCOLL.Projects.Invalid_Project =>
Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Message (E));
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
when E : Db_Error =>
Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Message (E));
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
when E : Invalid_Command =>
Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Message (E));
Process_Help (GNATCOLL.Arg_Lists.Empty_Command_Line);
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
when GNAT.Command_Line.Invalid_Switch =>
GNAT.Command_Line.Display_Help (Cmdline);
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
when E : others =>
Ada.Text_IO.Put_Line ("Unexpected exception");
Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Information (E));
Ada.Text_IO.Put_Line (GNAT.Traceback.Symbolic.Symbolic_Traceback (Ada.Exceptions.Traceback.Tracebacks (E)));
Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure);
end Gpr_Query;
|
-- Copyright (C) 2019 Thierry Rascle <thierr26@free.fr>
-- MIT license. Please refer to the LICENSE file.
generic
with procedure Work (Obj : Test_Node_Interfa'Class;
Outcome : out Test_Outcome;
Kind : Run_Kind);
procedure Apsepp.Test_Node_Class.Generic_Case_And_Suite_Run_Body
(Obj : Test_Node_Interfa'Class;
Outcome : out Test_Outcome;
Kind : Run_Kind;
Cond : not null access function return Boolean);
|
-- Copyright 2008-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 Pck; use Pck;
procedure Foo is
My_String : constant String := "Hello World";
begin
First := ASCII.NUL;
Last := ASCII.NUL;
Length := -1;
Call_Me (My_String); -- STOP
end Foo;
|
-- Swaggy Jenkins
-- Jenkins API clients generated from Swagger / Open API specification
-- ------------ EDIT NOTE ------------
-- This file was generated with openapi-generator. You can modify it to implement
-- the server. After you modify this file, you should add the following line
-- to the .openapi-generator-ignore file:
--
-- src/-servers.ads
--
-- Then, you can drop this edit note comment.
-- ------------ EDIT NOTE ------------
with Swagger.Servers;
with .Models;
with .Skeletons;
package .Servers is
pragma Warnings (Off, "*use clause for package*");
use .Models;
type Server_Type is limited new .Skeletons.Server_Type with null record;
--
-- Retrieve CSRF protection token
overriding
procedure Get_Crumb
(Server : in out Server_Type
;
Result : out .Models.DefaultCrumbIssuer_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Delete queue item from an organization pipeline queue
overriding
procedure Delete_Pipeline_Queue_Item
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Queue : in Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve authenticated user details for an organization
overriding
procedure Get_Authenticated_User
(Server : in out Server_Type;
Organization : in Swagger.UString;
Result : out .Models.User_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Get a list of class names supported by a given class
overriding
procedure Get_Classes
(Server : in out Server_Type;
Class : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve JSON Web Key
overriding
procedure Get_Json_Web_Key
(Server : in out Server_Type;
Key : in Integer;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve JSON Web Token
overriding
procedure Get_Json_Web_Token
(Server : in out Server_Type;
Expiry_Time_In_Mins : in Swagger.Nullable_Integer;
Max_Expiry_Time_In_Mins : in Swagger.Nullable_Integer;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve organization details
overriding
procedure Get_Organisation
(Server : in out Server_Type;
Organization : in Swagger.UString;
Result : out .Models.Organisation_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve all organizations details
overriding
procedure Get_Organisations
(Server : in out Server_Type
;
Result : out .Models.Organisation_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve pipeline details for an organization
overriding
procedure Get_Pipeline
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.Pipeline_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve all activities details for an organization pipeline
overriding
procedure Get_Pipeline_Activities
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.PipelineActivity_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve branch details for an organization pipeline
overriding
procedure Get_Pipeline_Branch
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Branch : in Swagger.UString;
Result : out .Models.BranchImpl_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve branch run details for an organization pipeline
overriding
procedure Get_Pipeline_Branch_Run
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Branch : in Swagger.UString;
Run : in Swagger.UString;
Result : out .Models.PipelineRun_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve all branches details for an organization pipeline
overriding
procedure Get_Pipeline_Branches
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.MultibranchPipeline_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve pipeline folder for an organization
overriding
procedure Get_Pipeline_Folder
(Server : in out Server_Type;
Organization : in Swagger.UString;
Folder : in Swagger.UString;
Result : out .Models.PipelineFolderImpl_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve pipeline details for an organization folder
overriding
procedure Get_Pipeline_Folder_Pipeline
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Folder : in Swagger.UString;
Result : out .Models.PipelineImpl_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve queue details for an organization pipeline
overriding
procedure Get_Pipeline_Queue
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.QueueItemImpl_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve run details for an organization pipeline
overriding
procedure Get_Pipeline_Run
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Result : out .Models.PipelineRun_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Get log for a pipeline run
overriding
procedure Get_Pipeline_Run_Log
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Start : in Swagger.Nullable_Integer;
Download : in Swagger.Nullable_Boolean;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve run node details for an organization pipeline
overriding
procedure Get_Pipeline_Run_Node
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Node : in Swagger.UString;
Result : out .Models.PipelineRunNode_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve run node details for an organization pipeline
overriding
procedure Get_Pipeline_Run_Node_Step
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Node : in Swagger.UString;
Step : in Swagger.UString;
Result : out .Models.PipelineStepImpl_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Get log for a pipeline run node step
overriding
procedure Get_Pipeline_Run_Node_Step_Log
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Node : in Swagger.UString;
Step : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve run node steps details for an organization pipeline
overriding
procedure Get_Pipeline_Run_Node_Steps
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Node : in Swagger.UString;
Result : out .Models.PipelineStepImpl_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve run nodes details for an organization pipeline
overriding
procedure Get_Pipeline_Run_Nodes
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Result : out .Models.PipelineRunNode_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve all runs details for an organization pipeline
overriding
procedure Get_Pipeline_Runs
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.PipelineRun_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve all pipelines details for an organization
overriding
procedure Get_Pipelines
(Server : in out Server_Type;
Organization : in Swagger.UString;
Result : out .Models.Pipeline_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve SCM details for an organization
overriding
procedure Get_SCM
(Server : in out Server_Type;
Organization : in Swagger.UString;
Scm : in Swagger.UString;
Result : out .Models.GithubScm_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve SCM organization repositories details for an organization
overriding
procedure Get_SCMOrganisation_Repositories
(Server : in out Server_Type;
Organization : in Swagger.UString;
Scm : in Swagger.UString;
Scm_Organisation : in Swagger.UString;
Credential_Id : in Swagger.Nullable_UString;
Page_Size : in Swagger.Nullable_Integer;
Page_Number : in Swagger.Nullable_Integer;
Result : out .Models.GithubOrganization_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve SCM organization repository details for an organization
overriding
procedure Get_SCMOrganisation_Repository
(Server : in out Server_Type;
Organization : in Swagger.UString;
Scm : in Swagger.UString;
Scm_Organisation : in Swagger.UString;
Repository : in Swagger.UString;
Credential_Id : in Swagger.Nullable_UString;
Result : out .Models.GithubOrganization_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve SCM organizations details for an organization
overriding
procedure Get_SCMOrganisations
(Server : in out Server_Type;
Organization : in Swagger.UString;
Scm : in Swagger.UString;
Credential_Id : in Swagger.Nullable_UString;
Result : out .Models.GithubOrganization_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve user details for an organization
overriding
procedure Get_User
(Server : in out Server_Type;
Organization : in Swagger.UString;
User : in Swagger.UString;
Result : out .Models.User_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve user favorites details for an organization
overriding
procedure Get_User_Favorites
(Server : in out Server_Type;
User : in Swagger.UString;
Result : out .Models.FavoriteImpl_Type_Vectors.Vector;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve users details for an organization
overriding
procedure Get_Users
(Server : in out Server_Type;
Organization : in Swagger.UString;
Result : out .Models.User_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Replay an organization pipeline run
overriding
procedure Post_Pipeline_Run
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Result : out .Models.QueueItemImpl_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Start a build for an organization pipeline
overriding
procedure Post_Pipeline_Runs
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Result : out .Models.QueueItemImpl_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Favorite/unfavorite a pipeline
overriding
procedure Put_Pipeline_Favorite
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
P_Body : in Boolean;
Result : out .Models.FavoriteImpl_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Stop a build of an organization pipeline
overriding
procedure Put_Pipeline_Run
(Server : in out Server_Type;
Organization : in Swagger.UString;
Pipeline : in Swagger.UString;
Run : in Swagger.UString;
Blocking : in Swagger.Nullable_UString;
Time_Out_In_Secs : in Swagger.Nullable_Integer;
Result : out .Models.PipelineRun_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Search for any resource details
overriding
procedure Search
(Server : in out Server_Type;
Q : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Get classes details
overriding
procedure Search_Classes
(Server : in out Server_Type;
Q : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve computer details
overriding
procedure Get_Computer
(Server : in out Server_Type;
Depth : in Integer;
Result : out .Models.ComputerSet_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve Jenkins details
overriding
procedure Get_Jenkins
(Server : in out Server_Type
;
Result : out .Models.Hudson_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve job details
overriding
procedure Get_Job
(Server : in out Server_Type;
Name : in Swagger.UString;
Result : out .Models.FreeStyleProject_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve job configuration
overriding
procedure Get_Job_Config
(Server : in out Server_Type;
Name : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve job's last build details
overriding
procedure Get_Job_Last_Build
(Server : in out Server_Type;
Name : in Swagger.UString;
Result : out .Models.FreeStyleBuild_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve job's build progressive text output
overriding
procedure Get_Job_Progressive_Text
(Server : in out Server_Type;
Name : in Swagger.UString;
Number : in Swagger.UString;
Start : in Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve queue details
overriding
procedure Get_Queue
(Server : in out Server_Type
;
Result : out .Models.Queue_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve queued item details
overriding
procedure Get_Queue_Item
(Server : in out Server_Type;
Number : in Swagger.UString;
Result : out .Models.Queue_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve view details
overriding
procedure Get_View
(Server : in out Server_Type;
Name : in Swagger.UString;
Result : out .Models.ListView_Type;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve view configuration
overriding
procedure Get_View_Config
(Server : in out Server_Type;
Name : in Swagger.UString;
Result : out Swagger.UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Retrieve Jenkins headers
overriding
procedure Head_Jenkins
(Server : in out Server_Type
;
Context : in out Swagger.Servers.Context_Type);
--
-- Create a new job using job configuration, or copied from an existing job
overriding
procedure Post_Create_Item
(Server : in out Server_Type;
Name : in Swagger.UString;
From : in Swagger.Nullable_UString;
Mode : in Swagger.Nullable_UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Content_Type : in Swagger.Nullable_UString;
P_Body : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Create a new view using view configuration
overriding
procedure Post_Create_View
(Server : in out Server_Type;
Name : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Content_Type : in Swagger.Nullable_UString;
P_Body : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Build a job
overriding
procedure Post_Job_Build
(Server : in out Server_Type;
Name : in Swagger.UString;
Json : in Swagger.UString;
Token : in Swagger.Nullable_UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Update job configuration
overriding
procedure Post_Job_Config
(Server : in out Server_Type;
Name : in Swagger.UString;
P_Body : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Delete a job
overriding
procedure Post_Job_Delete
(Server : in out Server_Type;
Name : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Disable a job
overriding
procedure Post_Job_Disable
(Server : in out Server_Type;
Name : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Enable a job
overriding
procedure Post_Job_Enable
(Server : in out Server_Type;
Name : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Stop a job
overriding
procedure Post_Job_Last_Build_Stop
(Server : in out Server_Type;
Name : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type);
--
-- Update view configuration
overriding
procedure Post_View_Config
(Server : in out Server_Type;
Name : in Swagger.UString;
P_Body : in Swagger.UString;
Jenkins_Crumb : in Swagger.Nullable_UString;
Context : in out Swagger.Servers.Context_Type);
package Server_Impl is
new .Skeletons.Shared_Instance (Server_Type);
end .Servers;
|
-- RUN: %llvmgcc -S %s -I%p/Support
package body Global_Constant is
begin
raise An_Error;
end;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- XML Processor --
-- --
-- Testsuite Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2010-2014, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Ada.Wide_Wide_Text_IO;
with League.Strings;
with XML.SAX.Attributes;
with XML.SAX.String_Output_Destinations;
with XML.SAX.Pretty_Writers;
use League.Strings;
procedure Escape_Test is
Output : aliased
XML.SAX.String_Output_Destinations.String_Output_Destination;
Writer : XML.SAX.Pretty_Writers.XML_Pretty_Writer;
OK : Boolean := True;
Attrs : XML.SAX.Attributes.SAX_Attributes;
NS_URI : constant Universal_String := To_Universal_String ("");
Local_Name : constant Universal_String := To_Universal_String ("");
Qualified_Name : constant Universal_String := To_Universal_String ("A");
Reference : constant Universal_String
:= To_Universal_String ("<?xml version='1.1'?>"
& "<A>some_text</A>"
& "<A>alert('hello');</A>"
& "<A>aa&bb'cc<dd>ee</A>");
------------
-- Assert --
------------
procedure Assert (OK : Boolean) is
begin
if not OK then
Ada.Wide_Wide_Text_IO.Put_Line
(Writer.Error_String.To_Wide_Wide_String);
raise Program_Error with "Assertion Failed";
end if;
end Assert;
begin
-- Creating document
Writer.Set_Output_Destination (Output'Unchecked_Access);
Writer.Set_Version (XML.SAX.Pretty_Writers.XML_1_1);
-- Adding first tag
Writer.Start_Document (OK);
Assert (OK);
Writer.Start_Element (NS_URI, Local_Name, Qualified_Name, Attrs, OK);
Assert (OK);
Writer.Characters (To_Universal_String ("some_text"), OK);
Assert (OK);
Writer.End_Element (NS_URI, Local_Name, Qualified_Name, OK);
Assert (OK);
Writer.Start_Element (NS_URI, Local_Name, Qualified_Name, Attrs, OK);
Assert (OK);
Writer.Characters (To_Universal_String ("alert('hello');"), OK);
Assert (OK);
Writer.End_Element (NS_URI, Local_Name, Qualified_Name, OK);
Assert (OK);
Writer.Start_Element (NS_URI, Local_Name, Qualified_Name, Attrs, OK);
Assert (OK);
Writer.Characters (To_Universal_String ("aa&bb'cc<dd>ee"), OK);
Assert (OK);
Writer.End_Element (NS_URI, Local_Name, Qualified_Name, OK);
Assert (OK);
Writer.End_Document (OK);
Assert (OK);
Assert (Output.Get_Text = Reference);
-- Ada.Wide_Wide_Text_IO.Put_Line (Writer.Text.To_Wide_Wide_String);
end Escape_Test;
|
with Ada.Text_IO;
with Ada.Containers.Ordered_Maps;
package body Problem_61 is
package IO renames Ada.Text_IO;
package Map is new Ada.Containers.Ordered_Maps(Element_Type => Integer, Key_Type => Integer);
procedure Solve is
-- Triangle: n(n+1)/2 => n + 1
-- Square: n(n) => 2n + 1
-- Pentagonal: n(3n-1)/2 => 3n + 1
-- Hexagonal: n(2n-1) => 4n + 1
-- Heptagonal: n(5n-3)/2 => 5n + 1
-- Octagonal: n(3n-2) => 6n + 1
figurate : Map.Map;
procedure Fill_Figurate is
n, m : Integer;
begin
for i in 2 .. 6 loop
n := 1;
m := 1;
loop
m := m + i*n + 1;
exit when m >= 10_000;
if m >= 1_000 and then m /= 9801 and then m /= 1225 and then m /= 4347 and then m /= 5929 then
figurate.Insert(m, i);
end if;
n := n + 1;
end loop;
end loop;
end Fill_Figurate;
function Triangular return Integer is
n : Integer := 45;
m : Integer := 1035;
seen : Array(2 .. 6) of Boolean := (others => false);
sum : Integer := 0;
function Check(remaining, search, goal : Integer) return Boolean is
low : constant Map.Cursor := figurate.Floor(search);
high : constant Map.Cursor := figurate.Floor(search + 99);
current : Map.Cursor := low;
use Map;
begin
if remaining = 0 then
return search = goal;
elsif search <= 1_000 then
return false;
end if;
loop
if Key(current) >= search and then not seen(Element(current)) then
seen(Element(current)) := true;
if Check(remaining - 1, 100*(Key(current) mod 100), goal) then
sum := sum + Key(current);
return true;
end if;
seen(Element(current)) := false;
end if;
exit when current = high;
current := Map.Next(current);
null;
end loop;
return false;
end Check;
begin
loop
m := m + n + 1;
exit when m >= 10_000;
if m /= 9801 and then m /= 1225 and then m /= 4347 and then m /= 5929 and then not figurate.Contains(m) and then Check(5, 100*(m mod 100), 100*(m / 100)) then
sum := sum + m;
exit;
end if;
n := n + 1;
end loop;
return sum;
end;
result : Integer;
begin
Fill_Figurate;
result := Triangular;
IO.Put_Line(Integer'Image(result));
end Solve;
end Problem_61;
|
-----------------------------------------------------------------------
-- ADO Databases -- Database Objects
-- Copyright (C) 2009, 2010, 2011, 2012, 2015, 2018, 2019 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Strings.Unbounded;
with Ada.Streams;
with Ada.Calendar;
with Util.Refs;
with Util.Nullables;
package ADO is
type Int64 is range -2**63 .. 2**63 - 1;
for Int64'Size use 64;
type Unsigned64 is mod 2**64;
for Unsigned64'Size use 64;
DEFAULT_TIME : constant Ada.Calendar.Time;
-- ------------------------------
-- Database Identifier
-- ------------------------------
--
type Identifier is range -2**47 .. 2**47 - 1;
NO_IDENTIFIER : constant Identifier := -1;
type Entity_Type is range 0 .. 2**16 - 1;
NO_ENTITY_TYPE : constant Entity_Type := 0;
type Object_Id is record
Id : Identifier;
Kind : Entity_Type;
end record;
pragma Pack (Object_Id);
-- ------------------------------
-- Nullable Types
-- ------------------------------
-- Most database allow to store a NULL instead of an actual integer, date or string value.
-- Unlike Java, there is no easy way to distinguish between a NULL and an actual valid value.
-- The <b>Nullable_T</b> types provide a way to specify and check whether a value is null
-- or not.
subtype Nullable_Boolean is Util.Nullables.Nullable_Boolean;
function "=" (Left, Right : in Nullable_Boolean) return Boolean
renames Util.Nullables."=";
Null_Boolean : constant Nullable_Boolean;
-- An integer which can be null.
subtype Nullable_Integer is Util.Nullables.Nullable_Integer;
function "=" (Left, Right : in Nullable_Integer) return Boolean
renames Util.Nullables."=";
Null_Integer : constant Nullable_Integer;
-- A string which can be null.
subtype Nullable_String is Util.Nullables.Nullable_String;
Null_String : constant Nullable_String;
-- A date which can be null.
subtype Nullable_Time is Util.Nullables.Nullable_Time;
Null_Time : constant Nullable_Time;
-- Return True if the two nullable times are identical (both null or both same time).
function "=" (Left, Right : in Nullable_Time) return Boolean;
type Nullable_Entity_Type is record
Value : Entity_Type := 0;
Is_Null : Boolean := True;
end record;
Null_Entity_Type : constant Nullable_Entity_Type;
-- ------------------------------
-- Blob data type
-- ------------------------------
-- The <b>Blob</b> type is used to represent database blobs. The data is stored
-- in an <b>Ada.Streams.Stream_Element_Array</b> pointed to by the <b>Data</b> member.
-- The query statement and bind parameter will use a <b>Blob_Ref</b> which represents
-- a reference to the blob data. This is intended to minimize data copy.
type Blob (Len : Ada.Streams.Stream_Element_Offset) is new Util.Refs.Ref_Entity with record
Data : Ada.Streams.Stream_Element_Array (1 .. Len);
end record;
type Blob_Access is access all Blob;
package Blob_References is new Util.Refs.Indefinite_References (Blob, Blob_Access);
subtype Blob_Ref is Blob_References.Ref;
subtype Blob_Accessor is Blob_References.Element_Accessor;
-- Create a blob with an allocated buffer of <b>Size</b> bytes.
function Create_Blob (Size : in Natural) return Blob_Ref;
-- Create a blob initialized with the given data buffer.
function Create_Blob (Data : in Ada.Streams.Stream_Element_Array) return Blob_Ref;
-- Create a blob initialized with the content from the file whose path is <b>Path</b>.
-- Raises an IO exception if the file does not exist.
function Create_Blob (Path : in String) return Blob_Ref;
-- Return a null blob.
function Null_Blob return Blob_Ref;
private
DEFAULT_TIME : constant Ada.Calendar.Time := Ada.Calendar.Time_Of (Year => 1901,
Month => 1,
Day => 2,
Seconds => 0.0);
Null_Boolean : constant Nullable_Boolean
:= Nullable_Boolean '(Is_Null => True,
Value => False);
Null_Integer : constant Nullable_Integer
:= Nullable_Integer '(Is_Null => True,
Value => 0);
Null_String : constant Nullable_String
:= Nullable_String '(Is_Null => True,
Value => Ada.Strings.Unbounded.Null_Unbounded_String);
Null_Time : constant Nullable_Time
:= Nullable_Time '(Is_Null => True,
Value => DEFAULT_TIME);
Null_Entity_Type : constant Nullable_Entity_Type
:= Nullable_Entity_Type '(Is_Null => True,
Value => 0);
end ADO;
|
--
-- Jan & Uwe R. Zimmer, Australia, July 2011
--
with Real_Type; use Real_Type;
with Vectors_xD; pragma Elaborate_All (Vectors_xD);
package Vectors_2D is
type xy_Coordinates is (x, y);
package Vectors_2Di is new Vectors_xD (Real, xy_Coordinates);
subtype Vector_2D is Vectors_2Di.Vector_xD;
Zero_Vector_2D : constant Vector_2D := Vectors_2Di.Zero_Vector_xD;
function Image (V : Vector_2D) return String renames Vectors_2Di.Image;
function Norm (V : Vector_2D) return Vector_2D renames Vectors_2Di.Norm;
function "*" (Scalar : Real; V : Vector_2D) return Vector_2D renames Vectors_2Di."*";
function "*" (V : Vector_2D; Scalar : Real) return Vector_2D renames Vectors_2Di."*";
function "/" (V : Vector_2D; Scalar : Real) return Vector_2D renames Vectors_2Di."/";
function "*" (V_Left, V_Right : Vector_2D) return Real renames Vectors_2Di."*";
function Angle_Between (V_Left, V_Right : Vector_2D) return Real renames Vectors_2Di.Angle_Between;
function "+" (V_Left, V_Right : Vector_2D) return Vector_2D renames Vectors_2Di."+";
function "-" (V_Left, V_Right : Vector_2D) return Vector_2D renames Vectors_2Di."-";
function "abs" (V : Vector_2D) return Real renames Vectors_2Di."abs";
end Vectors_2D;
|
-- WORDS, a Latin dictionary, by Colonel William Whitaker (USAF, Retired)
--
-- Copyright William A. Whitaker (1936–2010)
--
-- This is a free program, which means it is proper to copy it and pass
-- it on to your friends. Consider it a developmental item for which
-- there is no charge. However, just for form, it is Copyrighted
-- (c). Permission is hereby freely given for any and all use of program
-- and data. You can sell it as your own, but at least tell me.
--
-- This version is distributed without obligation, but the developer
-- would appreciate comments and suggestions.
--
-- All parts of the WORDS system, source code and data files, are made freely
-- available to anyone who wishes to use them, for whatever purpose.
with Latin_Utils.Strings_Package; use Latin_Utils.Strings_Package;
package body Latin_Utils.Dictionary_Package is
---------------------------------------------------------------------------
MNPC_IO_Default_Width : constant Natural := 6;
Numeral_Value_Type_IO_Default_Width : constant Natural := 5;
---------------------------------------------------------------------------
function Number_Of_Stems (Part : Part_Of_Speech_Type) return Stem_Key_Type is
begin
case Part is
when N => return 2;
when Pron => return 2;
when Pack => return 2;
when Adj => return 4;
when Num => return 4;
when Adv => return 3;
when V => return 4;
when Vpar => return 0;
when Supine => return 0;
when Prep => return 1;
when Conj => return 1;
when Interj => return 1;
when X => return 0;
when Tackon .. Suffix => return 0;
end case;
end Number_Of_Stems;
---------------------------------------------------------------------------
package body Parse_Record_IO is separate;
package body Noun_Entry_IO is separate;
package body Pronoun_Entry_IO is separate;
package body Propack_Entry_IO is separate;
package body Adjective_Entry_IO is separate;
package body Numeral_Entry_IO is separate;
package body Adverb_Entry_IO is separate;
package body Verb_Entry_IO is separate;
package body Preposition_Entry_IO is separate;
package body Conjunction_Entry_IO is separate;
package body Interjection_Entry_IO is separate;
package body Part_Entry_IO is separate;
package body Kind_Entry_IO is separate;
package body Translation_Record_IO is separate;
package body Dictionary_Entry_IO is separate;
---------------------------------------------------------------------------
function "<" (Left, Right : Part_Entry) return Boolean is
begin
if Left.Pofs = Right.Pofs then
case Left.Pofs is
when N =>
if Left.N.Decl < Right.N.Decl or else
(Left.N.Decl = Right.N.Decl and then
Left.N.Gender < Right.N.Gender) or else
((Left.N.Decl = Right.N.Decl and
Left.N.Gender = Right.N.Gender) and then
Left.N.Kind < Right.N.Kind)
then
return True;
end if;
when Pron =>
if Left.Pron.Decl < Right.Pron.Decl or else
(Left.Pron.Decl = Right.Pron.Decl and then
Left.Pron.Kind < Right.Pron.Kind)
then
return True;
end if;
when Pack =>
if Left.Pack.Decl < Right.Pack.Decl or else
(Left.Pack.Decl = Right.Pack.Decl and then
Left.Pack.Kind < Right.Pack.Kind)
then
return True;
end if;
when Adj =>
if Left.Adj.Decl < Right.Adj.Decl or else
(Left.Adj.Decl = Right.Adj.Decl and then
Left.Adj.Co < Right.Adj.Co)
then
return True;
end if;
when Num =>
if Left.Num.Decl < Right.Num.Decl or else
(Left.Num.Decl = Right.Num.Decl and then
Left.Num.Sort < Right.Num.Sort) or else
((Left.Num.Decl = Right.Num.Decl) and then
(Left.Num.Sort = Right.Num.Sort) and then
Left.Num.Value < Right.Num.Value)
then
return True;
end if;
when Adv =>
return Left.Adv.Co < Right.Adv.Co;
when V =>
if (Left.V.Con < Right.V.Con) or else
(Left.V.Con = Right.V.Con and then
Left.V.Kind < Right.V.Kind)
then
return True;
end if;
when Prep =>
return Left.Prep.Obj < Right.Prep.Obj;
when Vpar .. Supine =>
null;
when X =>
null;
when Conj .. Suffix =>
null;
end case;
else
return Left.Pofs < Right.Pofs;
end if;
return False;
exception
when Constraint_Error =>
return Left.Pofs < Right.Pofs;
end "<";
---------------------------------------------------------------------------
overriding function "<=" (Left, Right : Area_Type) return Boolean is
begin
if Right = Left or else Right = X then
return True;
else
return False;
end if;
end "<=";
---------------------------------------------------------------------------
-- Used to initialize Latin_Utils Dictionary_Package by setting various vars.
-- FIXME: Make AT LEAST some of these initializations to happen in spec,
-- thus eliminating risks of someone modifying them and in result breaking
-- every nested package.
procedure Initialize
is
begin
Dictionary_Kind_IO.Default_Width := Dictionary_Kind'Width;
Area_Type_IO.Default_Width := Area_Type'Width;
Geo_Type_IO.Default_Width := Geo_Type'Width;
Frequency_Type_IO.Default_Width := Frequency_Type'Width;
Source_Type_IO.Default_Width := Source_Type'Width;
Parse_Record_IO.Default_Width :=
Stem_Type_IO.Default_Width + 1 +
Inflection_Record_IO.Default_Width + 1 +
Dictionary_Kind_IO.Default_Width + 1 +
MNPC_IO_Default_Width;
Noun_Entry_IO.Default_Width :=
Decn_Record_IO.Default_Width + 1 +
Gender_Type_IO.Default_Width + 1 +
Noun_Kind_Type_IO.Default_Width;
Pronoun_Entry_IO.Default_Width :=
Decn_Record_IO.Default_Width + 1 +
Pronoun_Kind_Type_IO.Default_Width;
Propack_Entry_IO.Default_Width :=
Decn_Record_IO.Default_Width + 1 +
Pronoun_Kind_Type_IO.Default_Width;
Adjective_Entry_IO.Default_Width :=
Decn_Record_IO.Default_Width + 1 +
Comparison_Type_IO.Default_Width;
Adverb_Entry_IO.Default_Width :=
Comparison_Type_IO.Default_Width;
Verb_Entry_IO.Default_Width :=
Decn_Record_IO.Default_Width + 1 +
Verb_Kind_Type_IO.Default_Width;
Preposition_Entry_IO.Default_Width := 0;
Conjunction_Entry_IO.Default_Width := 0;
Interjection_Entry_IO.Default_Width := 0;
Numeral_Entry_IO.Default_Width :=
Decn_Record_IO.Default_Width + 1 +
Numeral_Sort_Type_IO.Default_Width + 1 +
Numeral_Value_Type_IO_Default_Width;
Part_Entry_IO.Default_Width := Part_Of_Speech_Type_IO.Default_Width + 1 +
Numeral_Entry_IO.Default_Width; -- Largest
Translation_Record_IO.Default_Width :=
Age_Type_IO.Default_Width + 1 +
Area_Type_IO.Default_Width + 1 +
Geo_Type_IO.Default_Width + 1 +
Frequency_Type_IO.Default_Width + 1 +
Source_Type_IO.Default_Width;
Dictionary_Entry_IO.Default_Width := 4 * (Max_Stem_Size + 1) +
Part_Entry_IO.Default_Width + 1 +
Translation_Record_IO.Default_Width + 1 +
Max_Meaning_Size;
end Initialize;
---------------------------------------------------------------------------
begin
Initialize;
end Latin_Utils.Dictionary_Package;
|
with Ada.Integer_Text_IO;
-- Copyright 2021 Melwyn Francis Carlo
procedure A014 is
use Ada.Integer_Text_IO;
N_Count : Integer := 1E5;
Max_Count : Integer := 0;
Max_Count_Number : Integer := 0;
I_Count : Integer;
N : Long_Integer;
begin
while N_Count < 1E6 loop
I_Count := 0;
N := Long_Integer (N_Count);
while N /= 1 loop
if (N mod Long_Integer (2)) = 0 then
N := N / 2;
else
N := (3 * N) + 1;
end if;
I_Count := I_Count + 1;
end loop;
I_Count := I_Count + 1;
if I_Count > Max_Count then
Max_Count := I_Count;
Max_Count_Number := N_Count;
end if;
N_Count := N_Count + 1;
end loop;
Put (Max_Count_Number, Width => 0);
end A014;
|
-- { dg-do compile }
-- { dg-options "-O2" }
procedure Range_Check2 is
subtype Block_Subtype is String(1 .. 6);
type Color is (Black, Red, Green, Yellow, Blue, Magenta, Cyan, White);
Foregrnd_Color : Color := White;
Block : Block_Subtype := "123456";
begin
Foregrnd_Color := Color'Val(Integer'Value(Block(5 .. 6)));
end;
|
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Lexical_Elements; use Program.Lexical_Elements;
package Program.Symbols is
pragma Pure;
type Symbol is mod 2 ** 32;
-- Symbol is case-insensitive representation of identifiers, operators
-- and character literals
function No_Symbol return Symbol is (0);
subtype Operator_Symbol is Symbol range 1 .. 19;
function Less_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Less) + 1);
function Equal_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Equal) + 1);
function Greater_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Greater) + 1);
function Hyphen_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Hyphen) + 1);
function Slash_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Slash) + 1);
function Star_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Star) + 1);
function Ampersand_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Ampersand) + 1);
function Plus_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Plus) + 1);
function Less_Or_Equal_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Less_Or_Equal) + 1);
function Greater_Or_Equal_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Greater_Or_Equal) + 1);
function Inequality_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Inequality) + 1);
function Double_Star_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Double_Star) + 1);
function Or_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Or_Keyword) + 1);
function And_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (And_Keyword) + 1);
function Xor_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Xor_Keyword) + 1);
function Mod_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Mod_Keyword) + 1);
function Rem_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Rem_Keyword) + 1);
function Abs_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Abs_Keyword) + 1);
function Not_Symbol return Operator_Symbol is
(Lexical_Element_Kind'Pos (Not_Keyword) + 1);
subtype Character_Literal_Symbol is Symbol range 16#00_0020# .. 16#10_FFFF#;
subtype X_Symbol is Symbol range 16#11_0000# .. 16#11_0097#;
function All_Calls_Remote return X_Symbol is (16#11_0000#);
function Assert return X_Symbol is (16#11_0001#);
function Assertion_Policy return X_Symbol is (16#11_0002#);
function Asynchronous return X_Symbol is (16#11_0003#);
function Atomic return X_Symbol is (16#11_0004#);
function Atomic_Components return X_Symbol is (16#11_0005#);
function Attach_Handler return X_Symbol is (16#11_0006#);
function Controlled return X_Symbol is (16#11_0007#);
function Convention return X_Symbol is (16#11_0008#);
function Detect_Blocking return X_Symbol is (16#11_0009#);
function Discard_Names return X_Symbol is (16#11_000A#);
function Elaborate return X_Symbol is (16#11_000B#);
function Elaborate_All return X_Symbol is (16#11_000C#);
function Elaborate_Body return X_Symbol is (16#11_000D#);
function Export return X_Symbol is (16#11_000E#);
function Import return X_Symbol is (16#11_000F#);
function Inline return X_Symbol is (16#11_0010#);
function Inspection_Point return X_Symbol is (16#11_0011#);
function Interrupt_Handler return X_Symbol is (16#11_0012#);
function Interrupt_Priority return X_Symbol is (16#11_0013#);
function Linker_Options return X_Symbol is (16#11_0014#);
function List return X_Symbol is (16#11_0015#);
function Locking_Policy return X_Symbol is (16#11_0016#);
function No_Return return X_Symbol is (16#11_0017#);
function Normalize_Scalars return X_Symbol is (16#11_0018#);
function Optimize return X_Symbol is (16#11_0019#);
function Pack return X_Symbol is (16#11_001A#);
function Page return X_Symbol is (16#11_001B#);
function Partition_Elaboration_Policy return X_Symbol is (16#11_001C#);
function Preelaborable_Initialization return X_Symbol is (16#11_001D#);
function Preelaborate return X_Symbol is (16#11_001E#);
function Priority_Specific_Dispatching return X_Symbol is (16#11_001F#);
function Profile return X_Symbol is (16#11_0020#);
function Pure return X_Symbol is (16#11_0021#);
function Queuing_Policy return X_Symbol is (16#11_0022#);
function Relative_Deadline return X_Symbol is (16#11_0023#);
function Remote_Call_Interface return X_Symbol is (16#11_0024#);
function Remote_Types return X_Symbol is (16#11_0025#);
function Restrictions return X_Symbol is (16#11_0026#);
function Reviewable return X_Symbol is (16#11_0027#);
function Shared_Passive return X_Symbol is (16#11_0028#);
function Suppress return X_Symbol is (16#11_0029#);
function Task_Dispatching_Policy return X_Symbol is (16#11_002A#);
function Unchecked_Union return X_Symbol is (16#11_002B#);
function Unsuppress return X_Symbol is (16#11_002C#);
function Volatile return X_Symbol is (16#11_002D#);
function Volatile_Components return X_Symbol is (16#11_002E#);
-- Attributes:
function Access_Symbol return X_Symbol is (16#11_002F#);
function Address return X_Symbol is (16#11_0030#);
function Adjacent return X_Symbol is (16#11_0031#);
function Aft return X_Symbol is (16#11_0032#);
function Alignment return X_Symbol is (16#11_0033#);
function Base return X_Symbol is (16#11_0034#);
function Bit_Order return X_Symbol is (16#11_0035#);
function Body_Version return X_Symbol is (16#11_0036#);
function Callable return X_Symbol is (16#11_0037#);
function Caller return X_Symbol is (16#11_0038#);
function Ceiling return X_Symbol is (16#11_0039#);
function Class return X_Symbol is (16#11_003A#);
function Component_Size return X_Symbol is (16#11_003B#);
function Compose return X_Symbol is (16#11_003C#);
function Constrained return X_Symbol is (16#11_003D#);
function Copy_Sign return X_Symbol is (16#11_003E#);
function Count return X_Symbol is (16#11_003F#);
function Definite return X_Symbol is (16#11_0040#);
function Delta_Symbol return X_Symbol is (16#11_0041#);
function Denorm return X_Symbol is (16#11_0042#);
function Digits_Symbol return X_Symbol is (16#11_0043#);
function Exponent return X_Symbol is (16#11_0044#);
function External_Tag return X_Symbol is (16#11_0045#);
function First return X_Symbol is (16#11_0046#);
function First_Bit return X_Symbol is (16#11_0047#);
function Floor return X_Symbol is (16#11_0048#);
function Fore return X_Symbol is (16#11_0049#);
function Fraction return X_Symbol is (16#11_004A#);
function Identity return X_Symbol is (16#11_004B#);
function Image return X_Symbol is (16#11_004C#);
function Input return X_Symbol is (16#11_004D#);
function Last return X_Symbol is (16#11_004E#);
function Last_Bit return X_Symbol is (16#11_004F#);
function Leading_Part return X_Symbol is (16#11_0050#);
function Length return X_Symbol is (16#11_0051#);
function Machine return X_Symbol is (16#11_0052#);
function Machine_Emax return X_Symbol is (16#11_0053#);
function Machine_Emin return X_Symbol is (16#11_0054#);
function Machine_Mantissa return X_Symbol is (16#11_0055#);
function Machine_Overflows return X_Symbol is (16#11_0056#);
function Machine_Radix return X_Symbol is (16#11_0057#);
function Machine_Rounding return X_Symbol is (16#11_0058#);
function Machine_Rounds return X_Symbol is (16#11_0059#);
function Max return X_Symbol is (16#11_005A#);
function Max_Size_In_Storage_Elements return X_Symbol is (16#11_005B#);
function Min return X_Symbol is (16#11_005C#);
function Mod_Keyword return X_Symbol is (16#11_005D#);
function Model return X_Symbol is (16#11_005E#);
function Model_Emin return X_Symbol is (16#11_005F#);
function Model_Epsilon return X_Symbol is (16#11_0060#);
function Model_Mantissa return X_Symbol is (16#11_0061#);
function Model_Small return X_Symbol is (16#11_0062#);
function Modulus return X_Symbol is (16#11_0063#);
function Output return X_Symbol is (16#11_0064#);
function Partition_ID return X_Symbol is (16#11_0065#);
function Pos return X_Symbol is (16#11_0066#);
function Position return X_Symbol is (16#11_0067#);
function Pred return X_Symbol is (16#11_0068#);
function Priority return X_Symbol is (16#11_0069#);
function Range_Keyword return X_Symbol is (16#11_006A#);
function Read return X_Symbol is (16#11_006B#);
function Remainder return X_Symbol is (16#11_006C#);
function Round return X_Symbol is (16#11_006D#);
function Rounding return X_Symbol is (16#11_006E#);
function Safe_First return X_Symbol is (16#11_006F#);
function Safe_Last return X_Symbol is (16#11_0070#);
function Scale return X_Symbol is (16#11_0071#);
function Scaling return X_Symbol is (16#11_0072#);
function Signed_Zeros return X_Symbol is (16#11_0073#);
function Size return X_Symbol is (16#11_0074#);
function Small return X_Symbol is (16#11_0075#);
function Storage_Pool return X_Symbol is (16#11_0076#);
function Storage_Size return X_Symbol is (16#11_0077#);
function Stream_Size return X_Symbol is (16#11_0078#);
function Succ return X_Symbol is (16#11_0079#);
function Tag return X_Symbol is (16#11_007A#);
function Terminated return X_Symbol is (16#11_007B#);
function Truncation return X_Symbol is (16#11_007C#);
function Unbiased_Rounding return X_Symbol is (16#11_007D#);
function Unchecked_Access return X_Symbol is (16#11_007E#);
function Val return X_Symbol is (16#11_007F#);
function Valid return X_Symbol is (16#11_0080#);
function Value return X_Symbol is (16#11_0081#);
function Version return X_Symbol is (16#11_0082#);
function Wide_Image return X_Symbol is (16#11_0083#);
function Wide_Value return X_Symbol is (16#11_0084#);
function Wide_Wide_Image return X_Symbol is (16#11_0085#);
function Wide_Wide_Value return X_Symbol is (16#11_0086#);
function Wide_Wide_Width return X_Symbol is (16#11_0087#);
function Wide_Width return X_Symbol is (16#11_0088#);
function Width return X_Symbol is (16#11_0089#);
function Write return X_Symbol is (16#11_008A#);
-- Other names:
package S renames Standard;
function Standard return X_Symbol is (16#11_008B#);
function Boolean return X_Symbol is (16#11_008C#);
function Integer return X_Symbol is (16#11_008D#);
function Float return X_Symbol is (16#11_008E#);
function Character return X_Symbol is (16#11_008F#);
function Wide_Character return X_Symbol is (16#11_0090#);
function Wide_Wide_Character return X_Symbol is (16#11_0091#);
function String return X_Symbol is (16#11_0092#);
function Wide_String return X_Symbol is (16#11_0093#);
function Wide_Wide_String return X_Symbol is (16#11_0094#);
function Duration return X_Symbol is (16#11_0095#);
function Root_Integer return X_Symbol is (16#11_0096#);
function Root_Real return X_Symbol is (16#11_0097#);
end Program.Symbols;
|
--------------------------------------------------------------------------------
-- Copyright (C) 2020 by Heisenbug Ltd. (gh+si_units@heisenbug.eu)
--
-- This work is free. You can redistribute it and/or modify it under the
-- terms of the Do What The Fuck You Want To Public License, Version 2,
-- as published by Sam Hocevar. See the LICENSE file for more details.
--------------------------------------------------------------------------------
pragma License (Unrestricted);
with Ada.IO_Exceptions;
with SI_Units.Float_IO;
package body SI_Units.Metric is
function Prefix (S : in Prefixes) return String is
(case S is
when yocto => "y",
when zepto => "z",
when atto => "a",
when femto => "f",
when pico => "p",
when nano => "n",
when micro => Micro_Sign,
when milli => "m",
when None => "",
when kilo => "k",
when Mega => "M",
when Giga => "G",
when Tera => "T",
when Peta => "P",
when Exa => "E",
when Zetta => "Z",
when Yotta => "Y") with
Inline => True;
function General_Image (Value : in Float_IO.General_Float;
Aft : in Ada.Text_IO.Field;
Unit : in String) return String;
-- The actual implementation of each of the Image subprograms.
--
-- Finds the best match for a value such that the value to be displayed will
-- be in the interval (0.0 .. 1000.0] with an appropriate prefix for the
-- unit name, i.e. a call to
--
-- General_Image (123_456_789.0, 3, "Hz");
--
-- will return the string
--
-- 123.457 MHz
function General_Image (Value : in Float_IO.General_Float;
Aft : in Ada.Text_IO.Field;
Unit : in String) return String
is
use type Float_IO.General_Float;
Temp : Float_IO.General_Float := abs Value;
-- Ignore sign for temporary value.
Scale : Prefixes := None;
begin
-- No prefix if no unit is given or value is exactly zero.
if Unit /= No_Unit and then Temp /= 0.0 then
-- We ignored the sign of the input value, so we only have to cope
-- with positive values here.
if Temp < 1.0 then
Handle_Small_Prefixes :
declare
-- Set threshold, if the value is less than that it will be
-- rounded down. Please note, that an Aft of 0 will be handled
-- like an Aft of 1 (as we always emit at least one digit after
-- the decimal point.
Threshold : constant Float_IO.General_Float
:= 1.0 - (0.1 ** (Ada.Text_IO.Field'Max (1, Aft))) / 2.0;
begin
Find_Best_Small_Prefix :
while Temp <= Threshold loop
exit Find_Best_Small_Prefix when Scale = Prefixes'First;
-- Value is too small to be optimally represented.
-- Down to next prefix.
Scale := Prefixes'Pred (Scale);
Temp := Temp * Magnitude;
end loop Find_Best_Small_Prefix;
-- Value is (still) too small to be properly represented, treat
-- as zero.
if Temp < 1.0 - Threshold then
Temp := 0.0;
Scale := None;
end if;
end Handle_Small_Prefixes;
else
Handle_Large_Prefixes :
declare
Threshold : constant Float_IO.General_Float :=
Magnitude - ((0.1 ** Aft) / 2.0);
-- If the value is greater than that it will be rounded up.
begin
Find_Best_Large_Prefix :
while Temp >= Threshold loop
exit Find_Best_Large_Prefix when Scale = Prefixes'Last;
-- Value is too large to be optimally represented.
-- Up to next prefix.
Scale := Prefixes'Succ (Scale);
Temp := Temp / Magnitude;
end loop Find_Best_Large_Prefix;
end Handle_Large_Prefixes;
end if;
end if;
-- Restore sign before converting into string.
if Value < 0.0 then
Temp := -Temp;
end if;
Convert_To_Postfixed_String :
declare
Result : String (1 .. 5 + Ada.Text_IO.Field'Max (1, Aft));
-- "-999.[...]";
begin
Try_Numeric_To_String_Conversion :
begin
Float_IO.General_Float_IO.Put (To => Result,
Item => Temp,
Aft => Aft,
Exp => 0);
exception
when Ada.IO_Exceptions.Layout_Error =>
-- Value was larger than 999 Yunits and didn't fit into the
-- string.
-- Reset Scale and return "<inf>"inity instead.
Scale := None;
Result (1 .. 4) := (if Temp < 0.0
then Minus_Sign
else Plus_Sign) & "inf";
Result (5 .. Result'Last) := (others => ' ');
end Try_Numeric_To_String_Conversion;
return Trim (Result &
(if Unit = No_Unit
then ""
else No_Break_Space & Prefix (Scale) & Unit));
end Convert_To_Postfixed_String;
end General_Image;
function Fixed_Image
(Value : in Item;
Aft : in Ada.Text_IO.Field := Default_Aft) return String is
(General_Image (Value => Float_IO.General_Float (Value),
Aft => Aft,
Unit => Unit));
function Float_Image
(Value : in Item;
Aft : in Ada.Text_IO.Field := Default_Aft) return String is
(General_Image (Value => Float_IO.General_Float (Value),
Aft => Aft,
Unit => Unit));
function Integer_Image
(Value : in Item;
Aft : in Ada.Text_IO.Field := Default_Aft) return String is
(General_Image (Value => Float_IO.General_Float (Value),
Aft => Aft,
Unit => Unit));
function Mod_Image
(Value : in Item;
Aft : in Ada.Text_IO.Field := Default_Aft) return String is
(General_Image (Value => Float_IO.General_Float (Value),
Aft => Aft,
Unit => Unit));
end SI_Units.Metric;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- M D L L --
-- --
-- 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. 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. --
-- --
------------------------------------------------------------------------------
-- This package provides the core high level routines used by GNATDLL
-- to build Windows DLL.
with Ada.Text_IO;
with GNAT.Directory_Operations;
with MDLL.Utl;
with MDLL.Fil;
package body MDLL is
use Ada;
use GNAT;
-- Convention used for the library names on Windows:
-- DLL: <name>.dll
-- Import library: lib<name>.dll
function Get_Dll_Name (Lib_Filename : String) return String;
-- Returns <Lib_Filename> if it contains a file extension otherwise it
-- returns <Lib_Filename>.dll.
---------------------------
-- Build_Dynamic_Library --
---------------------------
procedure Build_Dynamic_Library
(Ofiles : Argument_List;
Afiles : Argument_List;
Options : Argument_List;
Bargs_Options : Argument_List;
Largs_Options : Argument_List;
Lib_Filename : String;
Def_Filename : String;
Lib_Address : String := "";
Build_Import : Boolean := False;
Relocatable : Boolean := False;
Map_File : Boolean := False)
is
use type OS_Lib.Argument_List;
Base_Filename : constant String := MDLL.Fil.Ext_To (Lib_Filename);
Def_File : aliased constant String := Def_Filename;
Jnk_File : aliased String := Base_Filename & ".jnk";
Bas_File : aliased constant String := Base_Filename & ".base";
Dll_File : aliased String := Get_Dll_Name (Lib_Filename);
Exp_File : aliased String := Base_Filename & ".exp";
Lib_File : aliased constant String := "lib" & Base_Filename & ".dll.a";
Bas_Opt : aliased String := "-Wl,--base-file," & Bas_File;
Lib_Opt : aliased String := "-mdll";
Out_Opt : aliased String := "-o";
Adr_Opt : aliased String := "-Wl,--image-base=" & Lib_Address;
Map_Opt : aliased String := "-Wl,-Map," & Lib_Filename & ".map";
L_Afiles : Argument_List := Afiles;
-- Local afiles list. This list can be reordered to ensure that the
-- binder ALI file is not the first entry in this list.
All_Options : constant Argument_List := Options & Largs_Options;
procedure Build_Reloc_DLL;
-- Build a relocatable DLL with only objects file specified. This uses
-- the well known five step build (see GNAT User's Guide).
procedure Ada_Build_Reloc_DLL;
-- Build a relocatable DLL with Ada code. This uses the well known five
-- step build (see GNAT User's Guide).
procedure Build_Non_Reloc_DLL;
-- Build a non relocatable DLL containing no Ada code
procedure Ada_Build_Non_Reloc_DLL;
-- Build a non relocatable DLL with Ada code
---------------------
-- Build_Reloc_DLL --
---------------------
procedure Build_Reloc_DLL is
Objects_Exp_File : constant OS_Lib.Argument_List :=
Exp_File'Unchecked_Access & Ofiles;
-- Objects plus the export table (.exp) file
Success : Boolean;
pragma Warnings (Off, Success);
begin
if not Quiet then
Text_IO.Put_Line ("building relocatable DLL...");
Text_IO.Put ("make " & Dll_File);
if Build_Import then
Text_IO.Put_Line (" and " & Lib_File);
else
Text_IO.New_Line;
end if;
end if;
-- 1) Build base file with objects files
Utl.Gcc (Output_File => Jnk_File,
Files => Ofiles,
Options => All_Options,
Base_File => Bas_File,
Build_Lib => True);
-- 2) Build exp from base file
Utl.Dlltool (Def_File, Dll_File, Lib_File,
Base_File => Bas_File,
Exp_Table => Exp_File,
Build_Import => False);
-- 3) Build base file with exp file and objects files
Utl.Gcc (Output_File => Jnk_File,
Files => Objects_Exp_File,
Options => All_Options,
Base_File => Bas_File,
Build_Lib => True);
-- 4) Build new exp from base file and the lib file (.a)
Utl.Dlltool (Def_File, Dll_File, Lib_File,
Base_File => Bas_File,
Exp_Table => Exp_File,
Build_Import => Build_Import);
-- 5) Build the dynamic library
declare
Params : constant OS_Lib.Argument_List :=
Map_Opt'Unchecked_Access &
Adr_Opt'Unchecked_Access & All_Options;
First_Param : Positive := Params'First + 1;
begin
if Map_File then
First_Param := Params'First;
end if;
Utl.Gcc
(Output_File => Dll_File,
Files => Objects_Exp_File,
Options => Params (First_Param .. Params'Last),
Build_Lib => True);
end;
OS_Lib.Delete_File (Exp_File, Success);
OS_Lib.Delete_File (Bas_File, Success);
OS_Lib.Delete_File (Jnk_File, Success);
exception
when others =>
OS_Lib.Delete_File (Exp_File, Success);
OS_Lib.Delete_File (Bas_File, Success);
OS_Lib.Delete_File (Jnk_File, Success);
raise;
end Build_Reloc_DLL;
-------------------------
-- Ada_Build_Reloc_DLL --
-------------------------
procedure Ada_Build_Reloc_DLL is
Success : Boolean;
pragma Warnings (Off, Success);
begin
if not Quiet then
Text_IO.Put_Line ("Building relocatable DLL...");
Text_IO.Put ("make " & Dll_File);
if Build_Import then
Text_IO.Put_Line (" and " & Lib_File);
else
Text_IO.New_Line;
end if;
end if;
-- 1) Build base file with objects files
Utl.Gnatbind (L_Afiles, Options & Bargs_Options);
declare
Params : constant OS_Lib.Argument_List :=
Out_Opt'Unchecked_Access &
Jnk_File'Unchecked_Access &
Lib_Opt'Unchecked_Access &
Bas_Opt'Unchecked_Access &
Ofiles &
All_Options;
begin
Utl.Gnatlink (L_Afiles (L_Afiles'Last).all, Params);
end;
-- 2) Build exp from base file
Utl.Dlltool (Def_File, Dll_File, Lib_File,
Base_File => Bas_File,
Exp_Table => Exp_File,
Build_Import => False);
-- 3) Build base file with exp file and objects files
Utl.Gnatbind (L_Afiles, Options & Bargs_Options);
declare
Params : constant OS_Lib.Argument_List :=
Out_Opt'Unchecked_Access &
Jnk_File'Unchecked_Access &
Lib_Opt'Unchecked_Access &
Bas_Opt'Unchecked_Access &
Exp_File'Unchecked_Access &
Ofiles &
All_Options;
begin
Utl.Gnatlink (L_Afiles (L_Afiles'Last).all, Params);
end;
-- 4) Build new exp from base file and the lib file (.a)
Utl.Dlltool (Def_File, Dll_File, Lib_File,
Base_File => Bas_File,
Exp_Table => Exp_File,
Build_Import => Build_Import);
-- 5) Build the dynamic library
Utl.Gnatbind (L_Afiles, Options & Bargs_Options);
declare
Params : constant OS_Lib.Argument_List :=
Map_Opt'Unchecked_Access &
Out_Opt'Unchecked_Access &
Dll_File'Unchecked_Access &
Lib_Opt'Unchecked_Access &
Exp_File'Unchecked_Access &
Adr_Opt'Unchecked_Access &
Ofiles &
All_Options;
First_Param : Positive := Params'First + 1;
begin
if Map_File then
First_Param := Params'First;
end if;
Utl.Gnatlink
(L_Afiles (L_Afiles'Last).all,
Params (First_Param .. Params'Last));
end;
OS_Lib.Delete_File (Exp_File, Success);
OS_Lib.Delete_File (Bas_File, Success);
OS_Lib.Delete_File (Jnk_File, Success);
exception
when others =>
OS_Lib.Delete_File (Exp_File, Success);
OS_Lib.Delete_File (Bas_File, Success);
OS_Lib.Delete_File (Jnk_File, Success);
raise;
end Ada_Build_Reloc_DLL;
-------------------------
-- Build_Non_Reloc_DLL --
-------------------------
procedure Build_Non_Reloc_DLL is
Success : Boolean;
pragma Warnings (Off, Success);
begin
if not Quiet then
Text_IO.Put_Line ("building non relocatable DLL...");
Text_IO.Put ("make " & Dll_File &
" using address " & Lib_Address);
if Build_Import then
Text_IO.Put_Line (" and " & Lib_File);
else
Text_IO.New_Line;
end if;
end if;
-- Build exp table and the lib .a file
Utl.Dlltool (Def_File, Dll_File, Lib_File,
Exp_Table => Exp_File,
Build_Import => Build_Import);
-- Build the DLL
declare
Params : OS_Lib.Argument_List :=
Adr_Opt'Unchecked_Access & All_Options;
begin
if Map_File then
Params := Map_Opt'Unchecked_Access & Params;
end if;
Utl.Gcc (Output_File => Dll_File,
Files => Exp_File'Unchecked_Access & Ofiles,
Options => Params,
Build_Lib => True);
end;
OS_Lib.Delete_File (Exp_File, Success);
exception
when others =>
OS_Lib.Delete_File (Exp_File, Success);
raise;
end Build_Non_Reloc_DLL;
-----------------------------
-- Ada_Build_Non_Reloc_DLL --
-----------------------------
-- Build a non relocatable DLL with Ada code
procedure Ada_Build_Non_Reloc_DLL is
Success : Boolean;
pragma Warnings (Off, Success);
begin
if not Quiet then
Text_IO.Put_Line ("building non relocatable DLL...");
Text_IO.Put ("make " & Dll_File &
" using address " & Lib_Address);
if Build_Import then
Text_IO.Put_Line (" and " & Lib_File);
else
Text_IO.New_Line;
end if;
end if;
-- Build exp table and the lib .a file
Utl.Dlltool (Def_File, Dll_File, Lib_File,
Exp_Table => Exp_File,
Build_Import => Build_Import);
-- Build the DLL
Utl.Gnatbind (L_Afiles, Options & Bargs_Options);
declare
Params : OS_Lib.Argument_List :=
Out_Opt'Unchecked_Access &
Dll_File'Unchecked_Access &
Lib_Opt'Unchecked_Access &
Exp_File'Unchecked_Access &
Adr_Opt'Unchecked_Access &
Ofiles &
All_Options;
begin
if Map_File then
Params := Map_Opt'Unchecked_Access & Params;
end if;
Utl.Gnatlink (L_Afiles (L_Afiles'Last).all, Params);
end;
OS_Lib.Delete_File (Exp_File, Success);
exception
when others =>
OS_Lib.Delete_File (Exp_File, Success);
raise;
end Ada_Build_Non_Reloc_DLL;
-- Start of processing for Build_Dynamic_Library
begin
-- On Windows the binder file must not be in the first position in the
-- list. This is due to the way DLL's are built on Windows. We swap the
-- first ali with the last one if it is the case.
if L_Afiles'Length > 1 then
declare
Filename : constant String :=
Directory_Operations.Base_Name
(L_Afiles (L_Afiles'First).all);
First : constant Positive := Filename'First;
begin
if Filename (First .. First + 1) = "b~" then
L_Afiles (L_Afiles'Last) := Afiles (Afiles'First);
L_Afiles (L_Afiles'First) := Afiles (Afiles'Last);
end if;
end;
end if;
case Relocatable is
when True =>
if L_Afiles'Length = 0 then
Build_Reloc_DLL;
else
Ada_Build_Reloc_DLL;
end if;
when False =>
if L_Afiles'Length = 0 then
Build_Non_Reloc_DLL;
else
Ada_Build_Non_Reloc_DLL;
end if;
end case;
end Build_Dynamic_Library;
--------------------------
-- Build_Import_Library --
--------------------------
procedure Build_Import_Library
(Lib_Filename : String;
Def_Filename : String)
is
procedure Build_Import_Library (Lib_Filename : String);
-- Build an import library. This is to build only a .a library to link
-- against a DLL.
--------------------------
-- Build_Import_Library --
--------------------------
procedure Build_Import_Library (Lib_Filename : String) is
function No_Lib_Prefix (Filename : String) return String;
-- Return Filename without the lib prefix if present
-------------------
-- No_Lib_Prefix --
-------------------
function No_Lib_Prefix (Filename : String) return String is
begin
if Filename (Filename'First .. Filename'First + 2) = "lib" then
return Filename (Filename'First + 3 .. Filename'Last);
else
return Filename;
end if;
end No_Lib_Prefix;
-- Local variables
Def_File : String renames Def_Filename;
Dll_File : constant String := Get_Dll_Name (Lib_Filename);
Base_Filename : constant String :=
MDLL.Fil.Ext_To (No_Lib_Prefix (Lib_Filename));
Lib_File : constant String := "lib" & Base_Filename & ".dll.a";
-- Start of processing for Build_Import_Library
begin
if not Quiet then
Text_IO.Put_Line ("Building import library...");
Text_IO.Put_Line
("make " & Lib_File & " to use dynamic library " & Dll_File);
end if;
Utl.Dlltool
(Def_File, Dll_File, Lib_File, Build_Import => True);
end Build_Import_Library;
-- Start of processing for Build_Import_Library
begin
Build_Import_Library (Lib_Filename);
end Build_Import_Library;
------------------
-- Get_Dll_Name --
------------------
function Get_Dll_Name (Lib_Filename : String) return String is
begin
if MDLL.Fil.Get_Ext (Lib_Filename) = "" then
return Lib_Filename & ".dll";
else
return Lib_Filename;
end if;
end Get_Dll_Name;
end MDLL;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . F O R E _ F I X E D _ 6 4 --
-- --
-- S p e c --
-- --
-- Copyright (C) 2020-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains the routine used for the 'Fore attribute for ordinary
-- fixed point types up to 64-bit small and mantissa.
with Interfaces;
with System.Arith_64;
with System.Fore_F;
package System.Fore_Fixed_64 is
pragma Pure;
subtype Int64 is Interfaces.Integer_64;
package Impl is new Fore_F (Int64, Arith_64.Scaled_Divide64);
function Fore_Fixed64
(Lo, Hi, Num, Den : Int64; Scale : Integer) return Natural
renames Impl.Fore_Fixed;
end System.Fore_Fixed_64;
|
with AUnit.Assertions; use AUnit.Assertions;
package body Day.Test is
procedure Test_Part1 (T : in out AUnit.Test_Cases.Test_Case'Class) is
pragma Unreferenced (T);
cups : constant Cup_Array := (3,8,9,1,2,5,4,6,7);
t1 : constant String := play(cups, 10);
t2 : constant Long_Integer := play2(cups, 9, 10);
begin
Assert(t1 = "92658374", "Wrong number, expected 92658374, got" & t1);
Assert(t2 = 18, "Wrong number, expected 18, got" & t2'IMAGE);
end Test_Part1;
procedure Test_Part2 (T : in out AUnit.Test_Cases.Test_Case'Class) is
pragma Unreferenced (T);
cups : constant Cup_Array := (3,8,9,1,2,5,4,6,7);
t2 : constant Long_Integer := play2(cups, 1000000, 10000000);
begin
Assert(t2 = 149245887792, "Wrong number, expected 149245887792, got" & t2'IMAGE);
end Test_Part2;
function Name (T : Test) return AUnit.Message_String is
pragma Unreferenced (T);
begin
return AUnit.Format ("Test Day package");
end Name;
procedure Register_Tests (T : in out Test) is
use AUnit.Test_Cases.Registration;
begin
Register_Routine (T, Test_Part1'Access, "Test Part 1");
Register_Routine (T, Test_Part2'Access, "Test Part 2");
end Register_Tests;
end Day.Test;
|
-- C35503C.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- OBJECTIVE:
-- CHECK THAT 'IMAGE' AND 'VALUE' YIELD THE CORRECT RESULTS WHEN
-- THE PREFIX IS AN INTEGER TYPE.
-- SUBTESTS ARE :
-- PART (A). TESTS FOR 'IMAGE'.
-- PART (B). TESTS FOR 'VALUE'.
-- HISTORY:
-- RJW 03/17/86 CREATED ORIGINAL TEST.
-- VCL 10/23/87 MODIFIED THIS HEADER, ADDED A CHECK THAT
-- CONSTRAINT_ERROR IS RAISED FOR THE ATTRIBUTE
-- 'VALUE' IF THE FINAL SHARP OR COLON IS MISSING
-- FROM A BASED LITERAL.
WITH REPORT; USE REPORT;
PROCEDURE C35503C IS
TYPE NEWINT IS NEW INTEGER;
TYPE INT IS RANGE -1000 .. 1000;
FUNCTION IDENT (X : INT) RETURN INT IS
BEGIN
IF EQUAL (INT'POS (X), INT'POS(X)) THEN
RETURN X;
END IF;
RETURN INT'FIRST;
END IDENT;
BEGIN
TEST ("C35503C", "THE ATTIBUTES 'IMAGE' AND 'VALUE' YIELD THE " &
"CORRECT RESULTS WHEN THE PREFIX IS AN " &
"INTEGER TYPE" );
-- PART (A).
BEGIN
IF INTEGER'IMAGE (-500) /= "-500" THEN
FAILED ( "INCORRECT 'IMAGE' OF '-500'" );
END IF;
IF INTEGER'IMAGE (-500)'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '-500'" );
END IF;
IF NEWINT'IMAGE (2 ** 6) /= " 64" THEN
FAILED ( "INCORRECT 'IMAGE' OF '2 ** 6'" );
END IF;
IF NEWINT'IMAGE (2 ** 6)'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '2 ** 6'" );
END IF;
IF NATURAL'IMAGE (-1E2) /= "-100" THEN
FAILED ( "INCORRECT 'IMAGE' OF '-1E2'" );
END IF;
IF NATURAL'IMAGE (-1E2)'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '-1E2'" );
END IF;
IF NEWINT'IMAGE (3_45) /= " 345" THEN
FAILED ( "INCORRECT 'IMAGE' OF '3_45'" );
END IF;
IF NEWINT'IMAGE (3_45)'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '3_45'" );
END IF;
IF INTEGER'IMAGE (-2#1111_1111#) /= "-255" THEN
FAILED ( "INCORRECT 'IMAGE' OF '-2#1111_1111#'" );
END IF;
IF INTEGER'IMAGE (-2#1111_1111#)'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '-2#1111_1111#'" );
END IF;
IF NEWINT'IMAGE (16#FF#) /= " 255" THEN
FAILED ( "INCORRECT 'IMAGE' OF '16#FF#'" );
END IF;
IF NEWINT'IMAGE (16#FF#)'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '16#FF#'" );
END IF;
IF INTEGER'IMAGE (-016#0FF#) /= "-255" THEN
FAILED ( "INCORRECT 'IMAGE' OF '-016#0FF#'" );
END IF;
IF INTEGER'IMAGE (-016#0FF#)'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '-016#0FF#'" );
END IF;
IF NEWINT'IMAGE (2#1110_0000#) /= " 224" THEN
FAILED ( "INCORRECT 'IMAGE' OF '2#1110_0000#'" );
END IF;
IF NEWINT'IMAGE (2#1110_0000#)'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '2#1110_0000#'" );
END IF;
IF POSITIVE'IMAGE (-16#E#E1) /= "-224" THEN
FAILED ( "INCORRECT 'IMAGE' OF '-16#E#E1'" );
END IF;
IF POSITIVE'IMAGE (-16#E#E1)'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '-16#E#E1'" );
END IF;
IF INT'IMAGE (IDENT(-1000)) /= "-1000" THEN
FAILED ( "INCORRECT 'IMAGE' OF '-1000'" );
END IF;
IF INT'IMAGE (IDENT(-1000))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '-1000'" );
END IF;
IF INT'IMAGE (IDENT(-999)) /= "-999" THEN
FAILED ( "INCORRECT 'IMAGE' OF '-999'" );
END IF;
IF INT'IMAGE (IDENT(-999))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '-999'" );
END IF;
IF INT'IMAGE (IDENT(-10)) /= "-10" THEN
FAILED ( "INCORRECT 'IMAGE' OF '-1000'" );
END IF;
IF INT'IMAGE (IDENT(-10))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '-10'" );
END IF;
IF INT'IMAGE (IDENT(-9)) /= "-9" THEN
FAILED ( "INCORRECT 'IMAGE' OF '-9'" );
END IF;
IF INT'IMAGE (IDENT(-9))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '-9'" );
END IF;
IF INT'IMAGE (IDENT(-1)) /= "-1" THEN
FAILED ( "INCORRECT 'IMAGE' OF '-1'" );
END IF;
IF INT'IMAGE (IDENT(-1))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '-1'" );
END IF;
IF INT'IMAGE (IDENT(0)) /= " 0" THEN
FAILED ( "INCORRECT 'IMAGE' OF '0'" );
END IF;
IF INT'IMAGE (IDENT(0))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '0'" );
END IF;
IF INT'IMAGE (IDENT(1)) /= " 1" THEN
FAILED ( "INCORRECT 'IMAGE' OF '1'" );
END IF;
IF INT'IMAGE (IDENT(1))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '1'" );
END IF;
IF INT'IMAGE (IDENT(9)) /= " 9" THEN
FAILED ( "INCORRECT 'IMAGE' OF '9'" );
END IF;
IF INT'IMAGE (IDENT(9))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '9'" );
END IF;
IF INT'IMAGE (IDENT(10)) /= " 10" THEN
FAILED ( "INCORRECT 'IMAGE' OF '10'" );
END IF;
IF INT'IMAGE (IDENT(10))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '10'" );
END IF;
IF INT'IMAGE (IDENT(999)) /= " 999" THEN
FAILED ( "INCORRECT 'IMAGE' OF '999'" );
END IF;
IF INT'IMAGE (IDENT(999))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '999'" );
END IF;
IF INT'IMAGE (IDENT(1000)) /= " 1000" THEN
FAILED ( "INCORRECT 'IMAGE' OF '1000'" );
END IF;
IF INT'IMAGE (IDENT(1000))'FIRST /= 1 THEN
FAILED ( "INCORRECT LOWER BOUND FOR '1000'" );
END IF;
END;
-----------------------------------------------------------------------
-- PART (B).
BEGIN
IF POSITIVE'VALUE (IDENT_STR("-500")) /= -500 THEN
FAILED ( "INCORRECT 'VALUE' OF ""-500""" );
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ( "EXCEPTION RAISED - 'VALUE' OF ""-500""" );
END;
BEGIN
IF NEWINT'VALUE (" -001E2") /= -100 THEN
FAILED ( "INCORRECT 'VALUE' OF "" -001E2""" );
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ( "EXCEPTION RAISED - 'VALUE' OF "" -001E2""" );
END;
BEGIN
IF INTEGER'VALUE ("03_45") /= 345 THEN
FAILED ( "INCORRECT 'VALUE' OF ""03_45""" );
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ( "EXCEPTION RAISED - 'VALUE' OF ""03_45""" );
END;
BEGIN
IF NEWINT'VALUE ("-2#1111_1111#") /= -255 THEN
FAILED ( "INCORRECT 'VALUE' OF ""-2#1111_1111#""" );
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ( "EXCEPTION RAISED - 'VALUE' OF "&
"""-2#1111_1111#""" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("16#FF#")) /= 255 THEN
FAILED ( "INCORRECT 'VALUE' OF ""16#FF#""" );
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ( "EXCEPTION RAISED - 'VALUE' OF ""16#FF#""" );
END;
BEGIN
IF NATURAL'VALUE (IDENT_STR("-016#0FF#")) /= -255 THEN
FAILED ( "INCORRECT 'VALUE' OF ""-016#0FF#""" );
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ( "EXCEPTION RAISED - 'VALUE' OF " &
"""-016#0FF#""" );
END;
BEGIN
IF INTEGER'VALUE ("2#1110_0000# ") /= 224 THEN
FAILED ( "INCORRECT 'VALUE' OF " &
"""2#1110_0000# """ );
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ( "EXCEPTION RAISED - 'VALUE' OF " &
"""2#1110_0000# """ );
END;
BEGIN
IF NEWINT'VALUE (" -16#E#E1") /= -224 THEN
FAILED ( "INCORRECT 'VALUE' OF "" -16#E#E1""" );
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ( "EXCEPTION RAISED - 'VALUE' OF " &
""" -16#E#E1""" );
END;
BEGIN
IF INTEGER'VALUE ("5/0") = 0 THEN
FAILED ( "NO EXCEPTION RAISED - ""5/0"" - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - ""5/0"" - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED - ""5/0""" );
END;
DECLARE
SUBTYPE SUBINT IS INTEGER RANGE 0 .. 10;
BEGIN
IF SUBINT'VALUE (IDENT_STR("-500")) /= -500 THEN
FAILED ( "INCORRECT VALUE WITH ""-500"" AND SUBINT" );
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ( "EXCEPTION RAISED - SUBINT" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("1.0")) = 1 THEN
FAILED ( "NO EXCEPTION RAISED - "" 1.0"" - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - ""1.0"" - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED - ""1.0"" " );
END;
BEGIN
IF INTEGER'VALUE (IDENT_CHAR(ASCII.HT) & "244") /= 244 THEN
FAILED ( "NO EXCEPTION RAISED - LEADING 'HT' - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - LEADING 'HT' - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED - LEADING 'HT'" );
END;
BEGIN
IF INTEGER'VALUE ("244" & (IDENT_CHAR(ASCII.HT))) /= 244 THEN
FAILED ( "NO EXCEPTION RAISED - TRAILING 'HT' - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - TRAILING 'HT' - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED - TRAILING 'HT'" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("2__44")) /= 244 THEN
FAILED ( "NO EXCEPTION RAISED - CONSECUTIVE '_' - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - CONSECUTIVE '_' - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED " &
"WITH CONSECUTIVE '_'" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("_244")) /= 244 THEN
FAILED ( "NO EXCEPTION RAISED - LEADING '_' - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - LEADING '_' - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED - LEADING '_'" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("244_")) /= 244 THEN
FAILED ( "NO EXCEPTION RAISED - TRAILING '_' - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - TRAILING '_' - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED - TRAILING '_'" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("244_E1")) /= 2440 THEN
FAILED ( "NO EXCEPTION RAISED - '_' BEFORE 'E' - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - '_' BEFORE 'E' - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED - '_' BEFORE 'E'" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("244E_1")) /= 2440 THEN
FAILED ( "NO EXCEPTION RAISED - '_' " &
"FOLLOWING 'E' - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - '_' FOLLOWING 'E' - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED " &
"- '_' FOLLOWING 'E'" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("244_e1")) /= 2440 THEN
FAILED ( "NO EXCEPTION RAISED - '_' BEFORE 'e' - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - '_' BEFORE 'e' - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED - '_' BEFORE 'e'" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("16#_FF#")) /= 255 THEN
FAILED ( "NO EXCEPTION RAISED - LEADING '_' IN BASED " &
"LITERAL - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - LEADING '_' IN BASED " &
"LITERAL - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED " &
"- LEADING '_' IN BASED LITERAL" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("1E-0")) /= 1 THEN
FAILED ( "NO EXCEPTION RAISED - NEGATIVE " &
"EXPONENT - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - NEGATIVE EXPONENT - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED " &
"- NEGATIVE EXPONENT" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("244.")) /= 244 THEN
FAILED ( "NO EXCEPTION RAISED - TRAILING '.' - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - TRAILING '.' - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED - TRAILING '.'" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("8#811#")) /= 0 THEN
FAILED ( "NO EXCEPTION RAISED - " &
"DIGITS NOT IN CORRECT RANGE - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - " &
"DIGITS NOT IN CORRECT RANGE - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED - " &
"DIGITS NOT IN CORRECT RANGE" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("1#000#")) /= 0 THEN
FAILED ( "NO EXCEPTION RAISED - BASE LESS THAN 2 - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED - BASE LESS THAN 2 - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED " &
"- BASE LESS THAN 2" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("17#0#")) /= 0 THEN
FAILED ( "NO EXCEPTION RAISED " &
"- BASE GREATER THAN 16 - 1" );
ELSE
FAILED ( "NO EXCEPTION RAISED " &
"- BASE GREATER THAN 16 - 2" );
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ( "WRONG EXCEPTION RAISED " &
"- BASE GREATER THAN 16" );
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("8#666")) /= 438 THEN
FAILED ("NO EXCEPTION RAISED - MISSING FINAL SHARP - 1");
ELSE
FAILED ("NO EXCEPTION RAISED - MISSING FINAL SHARP - 2");
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED - MISSING FINAL SHARP");
END;
BEGIN
IF INTEGER'VALUE (IDENT_STR("16:FF")) /= 255 THEN
FAILED ("NO EXCEPTION RAISED - MISSING FINAL COLON - 1");
ELSE
FAILED ("NO EXCEPTION RAISED - MISSING FINAL COLON - 2");
END IF;
EXCEPTION
WHEN CONSTRAINT_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED - MISSING FINAL COLON");
END;
RESULT;
END C35503C;
|
with
openGL.Texture,
openGL.GlyphImpl.texture;
package openGL.Font.texture
--
-- A texture font is a specialisation of the font class for handling texture mapped fonts.
--
is
type Item is new Font.item with private;
type View is access all Item'Class;
---------
-- Forge
--
function to_Font_texture (fontFilePath : in String) return Font.texture.item;
--
--
-- Open and read a font file. Sets Error flag.
function new_Font_texture (fontFilePath : in String) return Font.texture.view;
function to_Font_texture (pBufferBytes : in FontImpl.unsigned_char_Pointer;
bufferSizeInBytes : in Natural) return Font.texture.item;
--
-- Open and read a font from a buffer in memory. Sets Error flag.
--
-- The buffer is owned by the client and is NOT copied by FTGL. The
-- pointer must be valid while using FTGL.
--
-- pBufferBytes: The in-memory buffer.
-- bufferSizeInBytes: The length of the buffer in bytes.
overriding
procedure destruct (Self : in out Item);
procedure free (Self : in out View);
--------------
-- Attributes
--
function gl_Texture (Self : in Item) return openGL.Texture.texture_Name;
function Quad (Self : in Item; for_Character : in Character) return GlyphImpl.Texture.Quad_t;
private
type Item is new Font.item with null record;
overriding
function MakeGlyph (Self : access Item; Slot : in freetype_c.FT_GlyphSlot.item) return glyph.Container.Glyph_view;
--
-- Construct a glyph of the correct type.
--
-- Clients must override the function and return their specialised FTGlyph.
-- Returns an FTGlyph or null on failure.
--
-- Slot: A FreeType glyph slot.
end openGL.Font.texture;
|
------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding Samples --
-- --
-- Sample.Manifest --
-- --
-- S P E C --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 1998,2003 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Juergen Pfeifer, 1996
-- Version Control
-- $Revision: 1.12 $
-- Binding Version 01.00
------------------------------------------------------------------------------
with Terminal_Interface.Curses; use Terminal_Interface.Curses;
package Sample.Manifest is
QUIT : constant User_Key_Code := User_Key_Code'First;
SELECT_ITEM : constant User_Key_Code := QUIT + 1;
FKEY_HELP : constant Label_Number := 1;
HELP_CODE : constant Special_Key_Code := Key_F1;
FKEY_EXPLAIN : constant Label_Number := 2;
EXPLAIN_CODE : constant Special_Key_Code := Key_F2;
FKEY_QUIT : constant Label_Number := 3;
QUIT_CODE : constant Special_Key_Code := Key_F3;
Menu_Marker : constant String := "=> ";
Default_Colors : constant Redefinable_Color_Pair := 1;
Menu_Fore_Color : constant Redefinable_Color_Pair := 2;
Menu_Back_Color : constant Redefinable_Color_Pair := 3;
Menu_Grey_Color : constant Redefinable_Color_Pair := 4;
Form_Fore_Color : constant Redefinable_Color_Pair := 5;
Form_Back_Color : constant Redefinable_Color_Pair := 6;
Notepad_Color : constant Redefinable_Color_Pair := 7;
Help_Color : constant Redefinable_Color_Pair := 8;
Header_Color : constant Redefinable_Color_Pair := 9;
end Sample.Manifest;
|
<?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>Block_ZN2xf2cv3MatILi9ELi2160ELi3840ELi1ELi2EEC2Eii_exit2_proc</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>16</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>rows</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</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>cols</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>49</coreId>
</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="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>imgInput_rows_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>155</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="8" tracking_level="0" version="0">
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second class_id="9" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first class_id="11" tracking_level="0" version="0">
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>155</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgInput.rows</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>3405245360</coreId>
</Obj>
<bitwidth>32</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>imgInput_cols_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>155</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>155</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgInput.cols</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</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="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>rgb2hsv_rows_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>156</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>156</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>rgb2hsv.rows</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>129</coreId>
</Obj>
<bitwidth>32</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="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>rgb2hsv_cols_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>156</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>156</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>rgb2hsv.cols</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>161</coreId>
</Obj>
<bitwidth>32</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="_7">
<Value>
<Obj>
<type>1</type>
<id>7</id>
<name>imgHelper1_rows_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>158</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>158</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgHelper1.rows</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>32</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="_8">
<Value>
<Obj>
<type>1</type>
<id>8</id>
<name>imgHelper1_cols_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>158</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>158</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgHelper1.cols</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>305</coreId>
</Obj>
<bitwidth>32</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="_9">
<Value>
<Obj>
<type>1</type>
<id>9</id>
<name>imgHelper2_rows_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgHelper2.rows</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>3405527033</coreId>
</Obj>
<bitwidth>32</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="_10">
<Value>
<Obj>
<type>1</type>
<id>10</id>
<name>imgHelper2_cols_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>159</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>159</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgHelper2.cols</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>32</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="_11">
<Value>
<Obj>
<type>1</type>
<id>11</id>
<name>imgHelper3_rows_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>160</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>160</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgHelper3.rows</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>32</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="_12">
<Value>
<Obj>
<type>1</type>
<id>12</id>
<name>imgHelper3_cols_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>160</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>160</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgHelper3.cols</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>545</coreId>
</Obj>
<bitwidth>32</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="_13">
<Value>
<Obj>
<type>1</type>
<id>13</id>
<name>imgHelper4_rows_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>161</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>161</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgHelper4.rows</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>32</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="_14">
<Value>
<Obj>
<type>1</type>
<id>14</id>
<name>imgHelper4_cols_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>161</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>161</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgHelper4.cols</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>32</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="_15">
<Value>
<Obj>
<type>1</type>
<id>15</id>
<name>imgOutput_rows_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgOutput.rows</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>913</coreId>
</Obj>
<bitwidth>32</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="_16">
<Value>
<Obj>
<type>1</type>
<id>16</id>
<name>imgOutput_cols_out</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>imgOutput.cols</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</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="12" tracking_level="0" version="0">
<count>17</count>
<item_version>0</item_version>
<item class_id="13" tracking_level="1" version="0" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>rows_read</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>614</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>614</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>52</item>
<item>53</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>cols_read</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>54</item>
<item>55</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>imgInput_rows_out_write_ln614</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>614</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>614</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>57</item>
<item>58</item>
<item>59</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>imgInput_cols_out_write_ln615</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>60</item>
<item>61</item>
<item>62</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>rgb2hsv_rows_out_write_ln614</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>614</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>614</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>63</item>
<item>64</item>
<item>65</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>rgb2hsv_cols_out_write_ln615</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>66</item>
<item>67</item>
<item>68</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.40</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>imgHelper1_rows_out_write_ln614</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>614</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>614</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>69</item>
<item>70</item>
<item>71</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.36</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>imgHelper1_cols_out_write_ln615</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>72</item>
<item>73</item>
<item>74</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.36</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>imgHelper2_rows_out_write_ln614</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>614</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>614</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>75</item>
<item>76</item>
<item>77</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.32</m_delay>
<m_topoIndex>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>imgHelper2_cols_out_write_ln615</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</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>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.32</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>imgHelper3_rows_out_write_ln614</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>614</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>614</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>81</item>
<item>82</item>
<item>83</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.28</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>imgHelper3_cols_out_write_ln615</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>84</item>
<item>85</item>
<item>86</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.28</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>imgHelper4_rows_out_write_ln614</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>614</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>614</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>87</item>
<item>88</item>
<item>89</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.24</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>imgHelper4_cols_out_write_ln615</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</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>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.24</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>imgOutput_rows_out_write_ln614</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>614</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>614</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>93</item>
<item>94</item>
<item>95</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.26</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>imgOutput_cols_out_write_ln615</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>init</contextFuncName>
<contextNormFuncName>init</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/common/xf_structs.hpp</first>
<second>init</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control>auto</control>
<opType>fifo</opType>
<implIndex>srl</implIndex>
<coreName>FIFO_SRL</coreName>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>96</item>
<item>97</item>
<item>98</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.26</m_delay>
<m_topoIndex>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="13" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>_ln132</name>
<fileName>src/xf_colordetect_accel_stream.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>132</lineNumber>
<contextFuncName>colordetect_accel</contextFuncName>
<contextNormFuncName>colordetect_accel</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>src/xf_colordetect_accel_stream.cpp</first>
<second>colordetect_accel</second>
</first>
<second>132</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>3406190656</coreId>
</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_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>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</consts>
<blocks class_id="16" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="17" tracking_level="1" version="0" object_id="_34">
<Obj>
<type>3</type>
<id>50</id>
<name>Block__ZN2xf2cv3MatILi9ELi2160ELi3840ELi1ELi2EEC2Eii.exit2_proc</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1768189039</coreId>
</Obj>
<node_objs>
<count>17</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>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
</node_objs>
</item>
</blocks>
<edges class_id="18" tracking_level="0" version="0">
<count>30</count>
<item_version>0</item_version>
<item class_id="19" tracking_level="1" version="0" object_id="_35">
<id>53</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_36">
<id>55</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_37">
<id>58</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_38">
<id>59</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_39">
<id>61</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_40">
<id>62</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="19" object_id="_41">
<id>64</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_42">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_43">
<id>67</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_44">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_45">
<id>70</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_46">
<id>71</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_47">
<id>73</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_48">
<id>74</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_49">
<id>76</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_50">
<id>77</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_51">
<id>79</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_52">
<id>80</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_53">
<id>82</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_54">
<id>83</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_55">
<id>85</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_56">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_57">
<id>88</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_58">
<id>89</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_59">
<id>91</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_60">
<id>92</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_61">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_62">
<id>95</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_63">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="19" object_id="_64">
<id>98</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="20" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="21" tracking_level="1" version="0" object_id="_65">
<mId>1</mId>
<mTag>Block__ZN2xf2cv3MatILi9ELi2160ELi3840ELi1ELi2EEC2Eii.exit2_proc</mTag>
<mNormTag>Block_ZN2xf2cv3MatILi9ELi2160ELi3840ELi1ELi2EEC2Eii_exit2_proc</mNormTag>
<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>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
</cdfg_regions>
<fsm class_id="23" tracking_level="1" version="0" object_id="_66">
<states class_id="24" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="25" tracking_level="1" version="0" object_id="_67">
<id>1</id>
<operations class_id="26" tracking_level="0" version="0">
<count>33</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="1" version="0" object_id="_68">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_69">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_70">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_71">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_72">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_73">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_74">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_75">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_76">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_77">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_78">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_79">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_80">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_81">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_82">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_83">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_84">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_85">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_86">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_87">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_88">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_89">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_90">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_91">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_92">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_93">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_94">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_95">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_96">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_97">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_98">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_99">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="27" object_id="_100">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="28" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</transitions>
</fsm>
<res class_id="29" tracking_level="1" version="0" object_id="_101">
<dp_component_resource class_id="30" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_resource>
<dp_expression_resource>
<count>1</count>
<item_version>0</item_version>
<item class_id="31" tracking_level="0" version="0">
<first>ap_block_state1 ( or ) </first>
<second class_id="32" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="0" version="0">
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>1</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>18</count>
<item_version>0</item_version>
<item>
<first>ap_done</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>cols_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgHelper1_cols_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgHelper1_rows_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgHelper2_cols_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgHelper2_rows_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgHelper3_cols_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgHelper3_rows_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgHelper4_cols_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgHelper4_rows_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgInput_cols_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgInput_rows_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgOutput_cols_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgOutput_rows_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>real_start</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>rgb2hsv_cols_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>rgb2hsv_rows_out_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>rows_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
</dp_multiplexer_resource>
<dp_register_resource>
<count>3</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>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_done_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>start_once_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>
</dp_register_resource>
<dp_dsp_resource>
<count>0</count>
<item_version>0</item_version>
</dp_dsp_resource>
<dp_component_map class_id="34" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_map>
<dp_expression_map>
<count>0</count>
<item_version>0</item_version>
</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="35" tracking_level="0" version="0">
<count>17</count>
<item_version>0</item_version>
<item class_id="36" tracking_level="0" version="0">
<first>33</first>
<second class_id="37" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="38" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="39" tracking_level="0" version="0">
<first>50</first>
<second class_id="40" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="41" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="42" tracking_level="0" version="0">
<count>16</count>
<item_version>0</item_version>
<item class_id="43" tracking_level="0" version="0">
<first>50</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>56</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>62</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>70</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>78</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>86</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>94</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>102</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>118</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>126</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>134</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>150</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="45" 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>16</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>cols_read_read_fu_56</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>rows_read_read_fu_50</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>write_ln614_write_fu_110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>write_ln614_write_fu_126</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>write_ln614_write_fu_142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>write_ln614_write_fu_158</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>write_ln614_write_fu_62</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>write_ln614_write_fu_78</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>write_ln614_write_fu_94</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>write_ln615_write_fu_102</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>write_ln615_write_fu_118</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>write_ln615_write_fu_134</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>write_ln615_write_fu_150</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>write_ln615_write_fu_166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>write_ln615_write_fu_70</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>write_ln615_write_fu_86</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</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="47" 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="48" tracking_level="0" version="0">
<count>16</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>cols</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
</second>
</item>
<item>
<first>imgHelper1_cols_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
</second>
</item>
<item>
<first>imgHelper1_rows_out</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>imgHelper2_cols_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
</second>
</item>
<item>
<first>imgHelper2_rows_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
</second>
</item>
<item>
<first>imgHelper3_cols_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
</second>
</item>
<item>
<first>imgHelper3_rows_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
</second>
</item>
<item>
<first>imgHelper4_cols_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
</second>
</item>
<item>
<first>imgHelper4_rows_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
</second>
</item>
<item>
<first>imgInput_cols_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
</second>
</item>
<item>
<first>imgInput_rows_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
</second>
</item>
<item>
<first>imgOutput_cols_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
</second>
</item>
<item>
<first>imgOutput_rows_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
</second>
</item>
<item>
<first>rgb2hsv_cols_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
</second>
</item>
<item>
<first>rgb2hsv_rows_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
</second>
</item>
<item>
<first>rows</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core>
<count>16</count>
<item_version>0</item_version>
<item>
<first>1</first>
<second>
<first>1150</first>
<second>10</second>
</second>
</item>
<item>
<first>2</first>
<second>
<first>1150</first>
<second>10</second>
</second>
</item>
<item>
<first>3</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>4</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>5</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>6</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>7</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>8</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
</port2core>
<node2core>
<count>16</count>
<item_version>0</item_version>
<item>
<first>33</first>
<second>
<first>1150</first>
<second>10</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>1150</first>
<second>10</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
</node2core>
</syndb>
</boost_serialization>
|
-- Copyright (c) 2013, Nordic Semiconductor ASA
-- 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 Nordic Semiconductor ASA 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 spec has been automatically generated from nrf51.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package NRF_SVD.RNG is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- Shortcut between VALRDY event and STOP task.
type SHORTS_VALRDY_STOP_Field is
(-- Shortcut disabled.
Disabled,
-- Shortcut enabled.
Enabled)
with Size => 1;
for SHORTS_VALRDY_STOP_Field use
(Disabled => 0,
Enabled => 1);
-- Shortcuts for the RNG.
type SHORTS_Register is record
-- Shortcut between VALRDY event and STOP task.
VALRDY_STOP : SHORTS_VALRDY_STOP_Field := NRF_SVD.RNG.Disabled;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for SHORTS_Register use record
VALRDY_STOP at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Enable interrupt on VALRDY event.
type INTENSET_VALRDY_Field is
(-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENSET_VALRDY_Field use
(Disabled => 0,
Enabled => 1);
-- Enable interrupt on VALRDY event.
type INTENSET_VALRDY_Field_1 is
(-- Reset value for the field
Intenset_Valrdy_Field_Reset,
-- Enable interrupt on write.
Set)
with Size => 1;
for INTENSET_VALRDY_Field_1 use
(Intenset_Valrdy_Field_Reset => 0,
Set => 1);
-- Interrupt enable set register
type INTENSET_Register is record
-- Enable interrupt on VALRDY event.
VALRDY : INTENSET_VALRDY_Field_1 := Intenset_Valrdy_Field_Reset;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for INTENSET_Register use record
VALRDY at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Disable interrupt on VALRDY event.
type INTENCLR_VALRDY_Field is
(-- Interrupt disabled.
Disabled,
-- Interrupt enabled.
Enabled)
with Size => 1;
for INTENCLR_VALRDY_Field use
(Disabled => 0,
Enabled => 1);
-- Disable interrupt on VALRDY event.
type INTENCLR_VALRDY_Field_1 is
(-- Reset value for the field
Intenclr_Valrdy_Field_Reset,
-- Disable interrupt on write.
Clear)
with Size => 1;
for INTENCLR_VALRDY_Field_1 use
(Intenclr_Valrdy_Field_Reset => 0,
Clear => 1);
-- Interrupt enable clear register
type INTENCLR_Register is record
-- Disable interrupt on VALRDY event.
VALRDY : INTENCLR_VALRDY_Field_1 := Intenclr_Valrdy_Field_Reset;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for INTENCLR_Register use record
VALRDY at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Digital error correction enable.
type CONFIG_DERCEN_Field is
(-- Digital error correction disabled.
Disabled,
-- Digital error correction enabled.
Enabled)
with Size => 1;
for CONFIG_DERCEN_Field use
(Disabled => 0,
Enabled => 1);
-- Configuration register.
type CONFIG_Register is record
-- Digital error correction enable.
DERCEN : CONFIG_DERCEN_Field := NRF_SVD.RNG.Disabled;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for CONFIG_Register use record
DERCEN at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype VALUE_VALUE_Field is HAL.UInt8;
-- RNG random number.
type VALUE_Register is record
-- Read-only. Generated random number.
VALUE : VALUE_VALUE_Field;
-- unspecified
Reserved_8_31 : HAL.UInt24;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for VALUE_Register use record
VALUE at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- Peripheral power control.
type POWER_POWER_Field is
(-- Module power disabled.
Disabled,
-- Module power enabled.
Enabled)
with Size => 1;
for POWER_POWER_Field use
(Disabled => 0,
Enabled => 1);
-- Peripheral power control.
type POWER_Register is record
-- Peripheral power control.
POWER : POWER_POWER_Field := NRF_SVD.RNG.Disabled;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for POWER_Register use record
POWER at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Random Number Generator.
type RNG_Peripheral is record
-- Start the random number generator.
TASKS_START : aliased HAL.UInt32;
-- Stop the random number generator.
TASKS_STOP : aliased HAL.UInt32;
-- New random number generated and written to VALUE register.
EVENTS_VALRDY : aliased HAL.UInt32;
-- Shortcuts for the RNG.
SHORTS : aliased SHORTS_Register;
-- Interrupt enable set register
INTENSET : aliased INTENSET_Register;
-- Interrupt enable clear register
INTENCLR : aliased INTENCLR_Register;
-- Configuration register.
CONFIG : aliased CONFIG_Register;
-- RNG random number.
VALUE : aliased VALUE_Register;
-- Peripheral power control.
POWER : aliased POWER_Register;
end record
with Volatile;
for RNG_Peripheral use record
TASKS_START at 16#0# range 0 .. 31;
TASKS_STOP at 16#4# range 0 .. 31;
EVENTS_VALRDY at 16#100# range 0 .. 31;
SHORTS at 16#200# range 0 .. 31;
INTENSET at 16#304# range 0 .. 31;
INTENCLR at 16#308# range 0 .. 31;
CONFIG at 16#504# range 0 .. 31;
VALUE at 16#508# range 0 .. 31;
POWER at 16#FFC# range 0 .. 31;
end record;
-- Random Number Generator.
RNG_Periph : aliased RNG_Peripheral
with Import, Address => RNG_Base;
end NRF_SVD.RNG;
|
pragma Ada_2012;
package body DDS.Request_Reply.Connext_C_Replier.Generic_REPLIER is
use type DDS.ReturnCode_T;
With_Warnings : constant boolean := False;
-- =========================================================================
-- =========================================================================
--
-- DDS_ReturnCode_t TReqTRepReplier_loan_or_copy_samplesI(
-- TReqTRepReplier * self,
-- DDS_ReturnCode_t inRetCode,
-- struct TReqSeq* received_data,
-- DDS_Boolean isLoan,
-- void **dataPtrArray,
-- int dataCount,
-- struct DDS_SampleInfoSeq* info_seq)
-- {
-- DDS_ReturnCode_t result = inRetCode;
--
-- if (inRetCode == DDS_RETCODE_NO_DATA) {
-- TReqSeq_set_length(received_data, 0);
-- goto done;
-- }
--
-- if (inRetCode != DDS_RETCODE_OK) {
-- goto done;
-- }
--
-- if (isLoan) {
-- /* loan buffer to sequence */
-- if (!TReqSeq_loan_discontiguous(received_data,
-- (TReq **)dataPtrArray, dataCount,
-- dataCount)) {
-- /* this should never happen */
-- result = DDS_RETCODE_ERROR;
-- /* since we failed to loan data to data seq, but data is already
-- taken, we will need to return it still.
-- Note that data will be lost in this case */
-- RTI_Connext_EntityUntypedImpl_return_loan(
-- self->parent._impl, dataPtrArray, info_seq);
-- }
-- } else {
-- /* data is already copied to dataSeqContiguousBuffer */
-- if (!TReqSeq_set_length(received_data, dataCount)) {
-- /* this should never happen */
-- result = DDS_RETCODE_ERROR;
-- }
-- }
--
-- done:
--
-- return result;
-- }
function Loan_Or_Copy_SamplesI
(Self : TReplier;
InRetCode : DDS.ReturnCode_T;
Received_Data : not null access ReqDataReader.Treats.Data_Sequences.Sequence;
IsLoan : DDS.Boolean;
DataPtrArray : not null access ReqDataReader.Treats.Data_Array;
DataCount : ReqDataReader.Treats.Index_Type;
Info_Seq : DDS.SampleInfo_Seq.Sequence) return DDS.ReturnCode_T is
Result : DDS.ReturnCode_T := InRetCode;
use ReqDataReader.Treats.Data_Sequences;
begin
if InRetCode = DDS.RETCODE_NO_DATA then
Set_Length (Received_Data, 0);
return Result;
end if;
if IsLoan then
-- /* loan buffer to sequence */
pragma Compile_Time_Warning (With_Warnings, "Check");
-- Loan_Discontiguous (Self => Received_Data,
-- Buffer => ReqDataReader.Treats.Element_Access'(DataPtrArray.all (DataPtrArray.all'First)'Access),
-- New_Length => DataCount,
-- New_Max => DataCount);
Set_Length (Received_Data, DataCount);
end if;
return DDS.RETCODE_OK;
exception
when others =>
return Result;
-- RTI.Connext_EntityUntypedImpl_Return_Loan (Self.Parent, DataPtrArray, Info_Seq);
end;
-- =========================================================================
-- =========================================================================
-- DDS_ReturnCode_t TReqTRepReplier_take_request(
-- TReqTRepReplier* self,
-- TReq * request,
-- struct DDS_SampleInfo * sample_info)
-- {
-- DDS_ReturnCode_t retCode = DDS_RETCODE_OK;
--
-- struct DDS_SampleInfoSeq info_seq = DDS_SEQUENCE_INITIALIZER;
-- void ** data = NULL;
-- int count = 0;
-- DDS_Boolean isLoan = DDS_BOOLEAN_TRUE;
--
-- if(self == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "self");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(request == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "request");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(sample_info == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "sample_info");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- sample_info->valid_data = DDS_BOOLEAN_FALSE;
--
-- /* No read condition, get any reply */
-- retCode = RTI_Connext_EntityUntypedImpl_get_sample_loaned(
-- self->parent._impl,
-- &data,
-- &count,
-- &isLoan,
-- NULL,
-- &info_seq,
-- (DDS_Long)0, /* dataSeqLen */
-- (DDS_Long)0, /* dataSeqMaxLen */
-- DDS_BOOLEAN_TRUE, /* dataSeqHasOwnership */
-- 1,
-- NULL,
-- RTI_TRUE);
--
-- if (retCode != DDS_RETCODE_OK) {
-- if (retCode != DDS_RETCODE_NO_DATA ) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "get sample");
-- }
-- return retCode;
-- }
--
-- retCode = TReqTypeSupport_copy_data(request, *((TReq**)data));
-- if(retCode != DDS_RETCODE_OK) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "copy sample");
-- goto done;
-- }
--
-- if(DDS_SampleInfoSeq_get_length(&info_seq) != 0) {
-- /* TODO: implement copy function? */
-- *sample_info = DDS_SampleInfoSeq_get(&info_seq, 0);
-- }
--
-- done:
-- RTI_Connext_EntityUntypedImpl_return_loan(self->parent._impl, data, &info_seq);
-- return retCode;
-- }
------------------
-- Take_Request --
------------------
function Take_Request
(Self : not null access TReplier;
Request : out TReq.Data_Type;
Sample_Info : out DDS.SampleInfo) return DDS.ReturnCode_T
is
RetCode : ReturnCode_T;
--
-- struct DDS_SampleInfoSeq info_seq = DDS_SEQUENCE_INITIALIZER;
-- void ** data = NULL;
-- int count = 0;
-- DDS_Boolean isLoan = DDS_BOOLEAN_TRUE;
begin
sample_info.valid_data := False;
--
-- /* No read condition, get any reply */
-- retCode = RTI_Connext_EntityUntypedImpl_get_sample_loaned(
-- self->parent._impl,
-- &data,
-- &count,
-- &isLoan,
-- NULL,
-- &info_seq,
-- (DDS_Long)0, /* dataSeqLen */
-- (DDS_Long)0, /* dataSeqMaxLen */
-- DDS_BOOLEAN_TRUE, /* dataSeqHasOwnership */
-- 1,
-- NULL,
-- RTI_TRUE);
if (retCode /= DDS.RETCODE_OK) then
if (retCode /= DDS.RETCODE_NO_DATA ) then
DDSLog_Exception ("get sample");
end if;
return retCode;
end if;
--
-- retCode = TReqTypeSupport_copy_data(request, *((TReq**)data));
-- if(retCode != DDS_RETCODE_OK) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "copy sample");
-- goto done;
-- }
--
-- if(DDS_SampleInfoSeq_get_length(&info_seq) != 0) {
-- /* TODO: implement copy function? */
-- *sample_info = DDS_SampleInfoSeq_get(&info_seq, 0);
-- }
--
-- done:
-- RTI_Connext_EntityUntypedImpl_return_loan(self->parent._impl, data, &info_seq);
-- return retCode;
pragma Compile_Time_Warning (Standard.True,
"Take_Request unimplemented");
return raise Program_Error with "Unimplemented function Take_Request";
end Take_Request;
--
-- /* TODO: do checking on params */
-- DDS_ReturnCode_t TReqTRepReplier_take_requests(
-- TReqTRepReplier* self,
-- struct TReqSeq* requests,
-- struct DDS_SampleInfoSeq * info_seq,
-- DDS_Long max_request_count)
-- {
--
-- DDS_Long dataSeqLen = 0;
-- DDS_Long dataSeqMaxLen = 0;
-- DDS_Boolean dataSeqHasOwnership = DDS_BOOLEAN_FALSE;
-- DDS_Boolean isLoan = DDS_BOOLEAN_TRUE;
-- void **dataPtrArray = NULL;
-- int dataCount = 0;
-- DDS_ReturnCode_t result = DDS_RETCODE_OK;
-- TReq *dataSeqContiguousBuffer = NULL;
--
-- /* --- Check parameters --- */
-- if (requests == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "requests is NULL");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
--
-- /* --- get dataSeq information --- */
-- dataSeqLen = TReqSeq_get_length(requests);
-- dataSeqMaxLen = TReqSeq_get_maximum(requests);
-- dataSeqHasOwnership = TReqSeq_has_ownership(requests);
-- dataSeqContiguousBuffer = TReqSeq_get_contiguous_bufferI(requests);
--
-- result = RTI_Connext_EntityUntypedImpl_get_sample_loaned(
-- self->parent._impl,
-- &dataPtrArray,
-- &dataCount,
-- &isLoan,
-- (void*)dataSeqContiguousBuffer,
-- info_seq,
-- dataSeqLen,
-- dataSeqMaxLen,
-- dataSeqHasOwnership,
-- max_request_count,
-- NULL,
-- RTI_TRUE);
--
-- result = TReqTRepReplier_loan_or_copy_samplesI(
-- self, result, requests,
-- isLoan, dataPtrArray, dataCount, info_seq);
--
-- if(result != DDS_RETCODE_OK && result != DDS_RETCODE_NO_DATA) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "error loan or copying data");
-- }
--
-- return result;
-- }
-------------------
-- Take_Requests --
-------------------
function Take_Requests
(Self : not null access TReplier;
Request : out TReq.Data_Array;
Sample_Info : out DDS.SampleInfo_Seq.Sequence) return DDS.ReturnCode_T
is
begin
pragma Compile_Time_Warning (Standard.True,
"Take_Requests unimplemented");
return raise Program_Error with "Unimplemented function Take_Requests";
end Take_Requests;
-- =========================================================================
-- =========================================================================
--
-- DDS_ReturnCode_t TReqTRepReplier_read_request(
-- TReqTRepReplier* self,
-- TReq * request,
-- struct DDS_SampleInfo * sample_info)
-- {
-- DDS_ReturnCode_t retCode = DDS_RETCODE_OK;
--
-- struct DDS_SampleInfoSeq info_seq = DDS_SEQUENCE_INITIALIZER;
-- void ** data = NULL;
-- int count = 0;
-- DDS_Boolean isLoan = DDS_BOOLEAN_TRUE;
--
-- if(self == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "self");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(request == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "request");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(sample_info == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "sample_info");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- sample_info->valid_data = DDS_BOOLEAN_FALSE;
--
-- /* No read condition, get any reply */
-- retCode = RTI_Connext_EntityUntypedImpl_get_sample_loaned(
-- self->parent._impl,
-- &data,
-- &count,
-- &isLoan,
-- NULL,
-- &info_seq,
-- (DDS_Long)0, /* dataSeqLen */
-- (DDS_Long)0, /* dataSeqMaxLen */
-- DDS_BOOLEAN_TRUE, /* dataSeqHasOwnership */
-- 1,
-- NULL,
-- RTI_FALSE);
--
-- if (retCode != DDS_RETCODE_OK) {
-- if (retCode != DDS_RETCODE_NO_DATA ) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "get sample");
-- }
-- return retCode;
-- }
--
-- retCode = TReqTypeSupport_copy_data(request, *((TReq**)data));
-- if(retCode != DDS_RETCODE_OK) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "copy sample");
-- goto done;
-- }
--
-- if(DDS_SampleInfoSeq_get_length(&info_seq) != 0) {
-- /* TODO: implement copy function? */
-- *sample_info = DDS_SampleInfoSeq_get(&info_seq, 0);
-- }
--
-- done:
-- RTI_Connext_EntityUntypedImpl_return_loan(self->parent._impl, data, &info_seq);
-- return retCode;
-- }
--
------------------
-- Read_Request --
------------------
function Read_Request
(Self : not null access TReplier;
Request : out TReq.Data_Type;
Sample_Info : out DDS.SampleInfo) return DDS.ReturnCode_T
is
begin
pragma Compile_Time_Warning (Standard.True,
"Read_Request unimplemented");
return raise Program_Error with "Unimplemented function Read_Request";
end Read_Request;
-- =========================================================================
-- =========================================================================
-- /* TODO: do checking on params */
-- DDS_ReturnCode_t TReqTRepReplier_read_requests(
-- TReqTRepReplier* self,
-- struct TReqSeq* requests,
-- struct DDS_SampleInfoSeq * info_seq,
-- DDS_Long max_request_count)
-- {
--
-- DDS_Long dataSeqLen = 0;
-- DDS_Long dataSeqMaxLen = 0;
-- DDS_Boolean dataSeqHasOwnership = DDS_BOOLEAN_FALSE;
-- DDS_Boolean isLoan = DDS_BOOLEAN_TRUE;
-- void **dataPtrArray = NULL;
-- int dataCount = 0;
-- DDS_ReturnCode_t result = DDS_RETCODE_OK;
-- TReq *dataSeqContiguousBuffer = NULL;
--
-- /* --- Check parameters --- */
-- if (requests == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "requests is NULL");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
--
-- /* --- get dataSeq information --- */
-- dataSeqLen = TReqSeq_get_length(requests);
-- dataSeqMaxLen = TReqSeq_get_maximum(requests);
-- dataSeqHasOwnership = TReqSeq_has_ownership(requests);
-- dataSeqContiguousBuffer = TReqSeq_get_contiguous_bufferI(requests);
--
-- result = RTI_Connext_EntityUntypedImpl_get_sample_loaned(
-- self->parent._impl,
-- &dataPtrArray,
-- &dataCount,
-- &isLoan,
-- (void*)dataSeqContiguousBuffer,
-- info_seq,
-- dataSeqLen,
-- dataSeqMaxLen,
-- dataSeqHasOwnership,
-- max_request_count,
-- NULL,
-- RTI_FALSE);
--
-- result = TReqTRepReplier_loan_or_copy_samplesI(
-- self, result, requests,
-- isLoan, dataPtrArray, dataCount, info_seq);
--
-- if(result != DDS_RETCODE_OK && result != DDS_RETCODE_NO_DATA) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "error loan or copying data");
-- }
--
-- return result;
-- }
------------------
-- Read_Request --
------------------
function Read_Requests
(Self : not null access TReplier;
Request : out TReq.Data_Type;
Sample_Info : out DDS.SampleInfo) return DDS.ReturnCode_T
is
begin
pragma Compile_Time_Warning (Standard.True,
"Read_Request unimplemented");
return raise Program_Error with "Unimplemented function Read_Request";
end Read_Requests;
-- =========================================================================
-- =========================================================================
--
-- DDS_ReturnCode_t TReqTRepReplier_receive_request(
-- TReqTRepReplier * self,
-- TReq * request,
-- struct DDS_SampleInfo * sample_info,
-- const struct DDS_Duration_t * max_wait)
-- {
-- DDS_ReturnCode_t retCode = DDS_RETCODE_OK;
--
-- if(self == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "self");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(request == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "request");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(sample_info == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "sample_info");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(max_wait == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "max_wait");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- sample_info->valid_data = DDS_BOOLEAN_FALSE;
--
-- retCode = RTI_Connext_Replier_wait_for_requests(
-- (RTI_Connext_Replier *) self, 1, max_wait);
-- if (retCode != DDS_RETCODE_OK) {
-- if (retCode != DDS_RETCODE_TIMEOUT) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "wait for requests");
-- }
-- return retCode;
-- }
--
-- retCode = TReqTRepReplier_take_request(self, request, sample_info);
-- if (retCode != DDS_RETCODE_OK) {
-- if (retCode != DDS_RETCODE_NO_DATA) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "get request");
-- }
-- return retCode;
-- }
--
-- return DDS_RETCODE_OK;
-- }
---------------------
-- Receive_Request --
---------------------
function Receive_Request
(Self : not null access TReplier; Request : out TReq.Data_Type;
Sample_Info : out DDS.SampleInfo; Max_Wait : DDS.Duration_T) return DDS
.ReturnCode_T
is
begin
pragma Compile_Time_Warning (Standard.True,
"Receive_Request unimplemented");
return raise Program_Error with "Unimplemented function Receive_Request";
end Receive_Request;
-- =========================================================================
-- =========================================================================
--
-- DDS_ReturnCode_t TReqTRepReplier_receive_requests(
-- TReqTRepReplier * self,
-- struct TReqSeq * requests,
-- struct DDS_SampleInfoSeq * info_seq,
-- DDS_Long min_count,
-- DDS_Long max_count,
-- const struct DDS_Duration_t * max_wait)
-- {
-- DDS_ReturnCode_t retCode = DDS_RETCODE_OK;
--
-- if(self == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "self");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(requests == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "requests");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(info_seq == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "info_seq");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(max_wait == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "max_wait");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
--
-- if (!RTI_Connext_EntityUntypedImpl_validate_receive_params(
-- self->parent._impl, RTI_FUNCTION_NAME, min_count, max_count, max_wait)) {
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
--
-- retCode = RTI_Connext_Replier_wait_for_requests(
-- (RTI_Connext_Replier *) self, min_count, max_wait);
-- if (retCode != DDS_RETCODE_OK) {
-- if (retCode != DDS_RETCODE_TIMEOUT) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "wait for requests");
-- }
-- return retCode;
-- }
--
-- retCode = TReqTRepReplier_take_requests(
-- self, requests, info_seq, max_count);
-- if (retCode != DDS_RETCODE_OK) {
-- if (retCode != DDS_RETCODE_NO_DATA) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "get requests");
-- }
-- return retCode;
-- }
--
-- return DDS_RETCODE_OK;
-- }
--
----------------------
-- Receive_Requests --
----------------------
function Receive_Requests
(Self : not null access TReplier; Request : out TReq.Data_Array;
Sample_Info : out DDS.SampleInfo_Seq.Sequence;
Min_Reply_Count : DDS.long; Max_Reply_Count : DDS.long;
Max_Wait : DDS.Duration_T) return DDS.ReturnCode_T
is
begin
pragma Compile_Time_Warning (Standard.True,
"Receive_Requests unimplemented");
return raise Program_Error
with "Unimplemented function Receive_Requests";
end Receive_Requests;
-------------------
-- Read_Requests --
-------------------
function Read_Requests
(Self : not null access TReplier; Request : out TReq.Data_Array;
Sample_Info : out DDS.SampleInfo_Seq.Sequence) return DDS.ReturnCode_T
is
begin
pragma Compile_Time_Warning (Standard.True,
"Read_Requests unimplemented");
return raise Program_Error with "Unimplemented function Read_Requests";
end Read_Requests;
-- =========================================================================
-- =========================================================================
-- /* TODO: add TReqTRepReplier_send_reply_w_params API */
-- DDS_ReturnCode_t TReqTRepReplier_send_reply(
-- TReqTRepReplier* self,
-- TRep* reply,
-- const struct DDS_SampleIdentity_t * related_request_id)
-- {
-- DDS_ReturnCode_t retCode = DDS_RETCODE_OK;
-- struct DDS_WriteParams_t params = DDS_WRITEPARAMS_DEFAULT;
--
-- if(self == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "self");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(reply == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "reply");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(related_request_id == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "related_request_id");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
--
-- retCode = RTI_Connext_ReplierUntypedImpl_send_sample(
-- self->parent._impl, (void*)reply, related_request_id, ¶ms);
--
-- if(retCode != DDS_RETCODE_OK) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "send reply");
-- }
-- return retCode;
-- }
----------------
-- Send_Reply --
----------------
function Send_Reply
(Self : not null access TReplier; Reply : TRep.Data_Type;
Related_Request_Info : DDS.SampleIdentity_T) return Dds.ReturnCode_T
is
begin
pragma Compile_Time_Warning (Standard.True, "Send_Reply unimplemented");
return raise Program_Error with "Unimplemented function Send_Reply";
end Send_Reply;
-- =========================================================================
-- =========================================================================
--
-- TRepDataWriter* TReqTRepReplier_get_reply_datawriter(TReqTRepReplier* self)
-- {
--
-- DDS_DataWriter * internal_writer = NULL;
--
-- if(self == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "self");
-- return NULL;
-- }
--
-- internal_writer = RTI_Connext_EntityUntypedImpl_get_datawriter(self->parent._impl);
-- if(internal_writer == NULL) {
-- DDSLog_exception(&RTI_LOG_GET_FAILURE_s,
-- "reply DataWriter");
-- return NULL;
-- }
--
-- return TRepDataWriter_narrow(internal_writer);
-- }
----------------------------
-- Get_Reply_Datawriter --
----------------------------
function Get_Reply_Datawriter
(Self : not null access TReplier) return DDS.DataWriter.Ref_Access
is
begin
pragma Compile_Time_Warning (Standard.True,
"Get_Reply_Datawriter unimplemented");
return raise Program_Error
with "Unimplemented function Get_Reply_Datawriter";
end Get_Reply_Datawriter;
-- =========================================================================
-- =========================================================================
--
-- TReqDataReader * TReqTRepReplier_get_request_datareader(TReqTRepReplier* self)
-- {
--
-- DDS_DataReader* internal_reader = NULL;
--
-- if(self == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "self");
-- return NULL;
-- }
--
-- internal_reader = RTI_Connext_EntityUntypedImpl_get_datareader(self->parent._impl);
-- if(internal_reader == NULL) {
-- DDSLog_exception(&RTI_LOG_GET_FAILURE_s,
-- "request DataReader");
-- return NULL;
-- }
--
-- return TReqDataReader_narrow(internal_reader);
-- }
----------------------------
-- Get_Request_Datareader --
----------------------------
function Get_Request_Datareader
(Self : not null access TReplier) return DDS.DataReader.Ref_Access
is
begin
pragma Compile_Time_Warning (Standard.True,
"Get_Request_Datareader unimplemented");
return raise Program_Error
with "Unimplemented function Get_Request_Datareader";
end Get_Request_Datareader;
-- =========================================================================
-- =========================================================================
--
-- DDS_ReturnCode_t TReqTRepReplier_return_loan(
-- TReqTRepReplier* self,
-- struct TReqSeq *replies,
-- struct DDS_SampleInfoSeq *info_seq)
-- {
-- DDS_ReturnCode_t retCode = DDS_RETCODE_OK;
-- TReqDataReader * reader = NULL;
--
-- if(self == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "self");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(replies == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "replies");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
-- if(info_seq == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "info_seq");
-- return DDS_RETCODE_BAD_PARAMETER;
-- }
--
-- reader = TReqTRepReplier_get_request_datareader(self);
-- if (reader == NULL) {
-- DDSLog_exception(&RTI_LOG_GET_FAILURE_s,
-- "reader to return loan");
-- return DDS_RETCODE_ERROR;
-- }
--
-- retCode = TReqDataReader_return_loan(reader, replies, info_seq);
-- if(retCode != DDS_RETCODE_OK) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "return loan");
-- return retCode;
-- }
--
-- return retCode;
-- }
-----------------
-- Return_Loan --
-----------------
function Return_Loan
(Self : not null access TReplier; Request : out TReq.Data_Array;
Sample_Info : out DDS.SampleInfo_Seq.Sequence) return Dds.ReturnCode_T
is
begin
pragma Compile_Time_Warning (Standard.True, "Return_Loan unimplemented");
return raise Program_Error with "Unimplemented function Return_Loan";
end Return_Loan;
--
-- /* ----------------------------------------------------------------- */
-- /* End of $Id$ */
Dummy : Integer;
-- =========================================================================
-- =========================================================================
--
-- TReqTRepReplier * TReqTRepReplier_create(
-- DDS_DomainParticipant * participant,
-- char* service_name)
-- {
-- TReqTRepReplier* replier = NULL;
--
-- RTI_Connext_ReplierParams params = RTI_Connext_ReplierParams_INITIALIZER;
--
-- params.participant = participant;
-- params.service_name = (char*) service_name;
--
-- replier = TReqTRepReplier_create_w_params(¶ms);
-- if(replier == NULL) {
-- DDSLog_exception(&RTI_LOG_CREATION_FAILURE_s,
-- "replier with params");
-- return NULL;
-- }
--
-- return replier;
-- }
------------
-- Create --
------------
function Create
(Participant : DDS.DomainParticipant.Ref_Access;
Service_Name : DDS.String) return TReplier_Access
is
Params : RTI_Connext_ReplierParams;
begin
return Ret : TReplier_Access do
Params.Participant := Participant;
DDS.Copy (Params.Service_Name, Service_Name);
Ret := Create_W_Params (Params);
if Ret = null then
raise Constraint_Error with "unable to create Replier";
end if;
end return;
end Create;
-- =========================================================================
-- =========================================================================
--
-- TReqTRepReplier* TReqTRepReplier_create_w_params(
-- const RTI_Connext_ReplierParams* params)
-- {
-- TReqTRepReplier* replier = NULL;
-- struct DDS_DataReaderListener reader_listener =
-- DDS_DataReaderListener_INITIALIZER;
-- RTI_Connext_EntityParams entity_params;
-- DDS_ReturnCode_t retcode;
--
-- if(params == NULL) {
-- DDSLog_exception(&DDS_LOG_BAD_PARAMETER_s,
-- "params");
-- return NULL;
-- }
--
-- RTIOsapiHeap_allocateStructure(&replier, TReqTRepReplier);
-- if(replier == NULL) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "error creating a TReqTRepReplier");
-- goto finish;
-- }
--
-- if (params->listener != NULL) {
-- replier->parent.listener = *params->listener;
-- } else {
-- replier->parent.listener.on_request_available = NULL;
-- }
--
-- replier->parent._impl = RTI_Connext_ReplierUntypedImpl_create();
-- if(replier->parent._impl == NULL) {
-- DDSLog_exception(&RTI_LOG_CREATION_FAILURE_s,
-- "ReplierUntypedImpl");
-- goto finish;
-- }
--
-- RTI_Connext_ReplierParams_toEntityParams(params, &entity_params);
--
-- reader_listener.on_data_available = RTI_Connext_Replier_on_data_available;
-- reader_listener.as_listener.listener_data = replier;
--
-- retcode = RTI_Connext_ReplierUntypedImpl_initialize(
-- replier->parent._impl,
-- &entity_params,
-- &TReqTypeSupport_register_type,
-- TReqTypeSupport_get_type_name(),
-- &TRepTypeSupport_register_type,
-- TRepTypeSupport_get_type_name(),
-- sizeof(TReq),
-- params->listener != NULL ? &reader_listener : NULL);
--
-- if (retcode != DDS_RETCODE_OK) {
-- DDSLog_exception(&RTI_LOG_ANY_FAILURE_s,
-- "initialize ReplierUntypedImpl");
-- goto finish;
-- }
--
-- return replier;
--
-- finish:
-- if(replier != NULL) {
-- RTI_Connext_Replier_delete((RTI_Connext_Replier *) replier);
-- }
-- return NULL;
-- }
--
---------------------
-- Create_W_Params --
---------------------
function Create_W_Params
(Params : RTI_Connext_ReplierParams) return TReplier_Access
is
RetCode : Dds.ReturnCode_T;
Replier : TReplier_Access;
begin
Replier := new TReplier;
if Params.Listener /= null then
Replier.Listener := Params.Listener;
end if;
RetCode := RTI_Connext_ReplierParams_ToEntityParams (Params, Ret.Entity_Params);
-- reader_listener.on_data_available = RTI_Connext_Replier_on_data_available;
-- reader_listener.as_listener.listener_data = replier;
return Replier;
end Create_W_Params;
--------------------------
-- Get_Reply_Datawriter --
--------------------------
end DDS.Request_Reply.Connext_C_Replier.Generic_REPLIER;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . O S _ I N T E R F A C E --
-- --
-- B o d y --
-- --
-- Copyright (C) 1991-1994, Florida State University --
-- Copyright (C) 1995-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. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies, Inc. --
-- --
------------------------------------------------------------------------------
-- This is a Solaris version of this package
-- This package encapsulates all direct interfaces to OS services
-- that are needed by children of System.
pragma Polling (Off);
-- Turn off polling, we do not want ATC polling to take place during
-- tasking operations. It causes infinite loops and other problems.
with Interfaces.C; use Interfaces.C;
package body System.OS_Interface is
-----------------
-- To_Duration --
-----------------
function To_Duration (TS : timespec) return Duration is
begin
return Duration (TS.tv_sec) + Duration (TS.tv_nsec) / 10#1#E9;
end To_Duration;
-----------------
-- To_Timespec --
-----------------
function To_Timespec (D : Duration) return timespec is
S : time_t;
F : Duration;
begin
S := time_t (Long_Long_Integer (D));
F := D - Duration (S);
-- If F has negative value due to a round-up, adjust for positive F
if F < 0.0 then
S := S - 1;
F := F + 1.0;
end if;
return timespec'(tv_sec => S,
tv_nsec => long (Long_Long_Integer (F * 10#1#E9)));
end To_Timespec;
------------------
-- pthread_init --
------------------
procedure pthread_init is
begin
null;
end pthread_init;
end System.OS_Interface;
|
-----------------------------------------------------------------------
-- EL testsuite - EL Testsuite
-- Copyright (C) 2009, 2010, 2011, 2012, 2013 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- 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 EL.Functions;
with EL.Functions.Default;
with EL.Expressions;
with EL.Functions.Namespaces;
with EL.Variables.Default;
with Test_Bean;
with Action_Bean;
with Ada.Strings.Unbounded;
with Ada.Unchecked_Deallocation;
with Util.Log.Loggers;
with Util.Test_Caller;
with Util.Measures;
with Util.Beans.Objects;
package body EL.Expressions.Tests is
use Test_Bean;
use EL.Expressions;
use Ada.Strings.Unbounded;
use Util.Log;
use Util.Tests;
LOG : constant Util.Log.Loggers.Logger := Loggers.Create ("Tests");
procedure Free is
new Ada.Unchecked_Deallocation (Object => EL.Contexts.Default.Default_Context'Class,
Name => EL.Contexts.Default.Default_Context_Access);
function Format1 (Arg : EL.Objects.Object) return EL.Objects.Object;
function Format2 (Arg1, Arg2 : EL.Objects.Object) return EL.Objects.Object;
function Format3 (Arg1, Arg2, Arg3 : EL.Objects.Object) return EL.Objects.Object;
function Format4 (Arg1, Arg2, Arg3, Arg4 : EL.Objects.Object) return EL.Objects.Object;
procedure Check_Error (T : in out Test'Class;
Expr : in String);
-- Set up performed before each test case
procedure Set_Up (T : in out Test) is
begin
-- Ada.Text_IO.Put_Line ("Allocate context");
T.Context := new EL.Contexts.Default.Default_Context;
end Set_Up;
-- Tear down performed after each test case
procedure Tear_Down (T : in out Test) is
begin
-- Ada.Text_IO.Put_Line ("Free context");
Free (T.Context);
end Tear_Down;
-- Check that evaluating an expression raises an exception
procedure Check_Error (T : in out Test'Class;
Expr : in String) is
E : Expression;
begin
begin
E := Create_Expression (Context => T.Context.all, Expr => Expr);
T.Assert (Condition => False,
Message => "Evaluation of '" & Expr & "' should raise an exception");
exception
when Invalid_Expression =>
T.Assert (Condition => E.Is_Constant,
Message => "Invalid expression value");
end;
end Check_Error;
-- ------------------------------
-- Check that evaluating an expression returns the expected result
-- (to keep the test simple, results are only checked using strings)
-- ------------------------------
procedure Check (T : in out Test;
Expr : in String;
Expect : in String) is
E : constant Expression := Create_Expression (Context => T.Context.all,
Expr => Expr);
V : constant Object := E.Get_Value (Context => T.Context.all);
begin
T.Assert (Condition => To_String (V) = Expect,
Message => "Evaluate '" & Expr & "' returned '" & To_String (V)
& "' when we expect '" & Expect & "'");
declare
E2 : constant Expression := E.Reduce_Expression (Context => T.Context.all);
V2 : constant Object := E2.Get_Value (Context => T.Context.all);
begin
T.Assert (To_String (V2) = Expect,
"Reduce produced incorrect result: " & To_String (V2));
end;
T.Assert_Equals (Expr, E.Get_Expression, "Invalid expression stored");
end Check;
-- ------------------------------
-- Test evaluation of expression using a bean
-- ------------------------------
procedure Test_Simple_Evaluation (T : in out Test) is
begin
Check (T, "#{true}", "TRUE");
Check (T, "#{false}", "FALSE");
Check (T, "#{not false}", "TRUE");
Check (T, "#{! false}", "TRUE");
Check (T, "#{4 * 3}", "12");
Check (T, "#{12 / 3}", "4");
Check (T, "#{12 div 3}", "4");
Check (T, "#{3 % 2}", "1");
Check (T, "#{3 mod 2}", "1");
Check (T, "#{(3 * 2) + (5 * 4) - (2*3)}", "20");
Check (T, "#{3 <= 2}", "FALSE");
Check (T, "#{3 < 2}", "FALSE");
Check (T, "#{3 > 2}", "TRUE");
Check (T, "#{3 >= 2}", "TRUE");
Check (T, "#{3 >= 2 && 2 >= 3}", "FALSE");
Check (T, "#{3 >= 4 || 2 < 3}", "TRUE");
Check (T, "#{3 > 4 ? 1 : 2}", "2");
Check (T, "#{3 < 4 ? 1 : 2}", "1");
Check (T, "#{3 == 3}", "TRUE");
Check (T, "#{3 != 3}", "FALSE");
Check (T, "#{true and false}", "FALSE");
Check (T, "#{true or false}", "TRUE");
Check (T, "#{- 23}", "-23");
Check (T, "#{1.0}", "1");
Check (T, "#{'a\'b'}", "a'b");
Check (T, "'a'", "'a'");
Check (T, "\#{test}", "#{test}");
Check (T, "\${test}", "${test}");
end Test_Simple_Evaluation;
-- ------------------------------
-- Test evaluation of expression using a bean
-- ------------------------------
procedure Test_Bean_Evaluation (T : in out Test) is
P : Person_Access := Create_Person ("Joe", "Black", 42);
begin
T.Context.all.Set_Variable ("user", P);
Check (T, "#{user ne null}", "TRUE");
Check (T, "#{empty user}", "FALSE");
Check (T, "#{not empty user}", "TRUE");
Check (T, "#{user.firstName}", "Joe");
Check (T, "#{user.lastName}", "Black");
Check (T, "#{user.age}", "42");
Check (T, "#{user.age le 42}", "TRUE");
Check (T, "#{user.age lt 44}", "TRUE");
Check (T, "#{user.age ge 42}", "TRUE");
Check (T, "#{user.age ge 45}", "FALSE");
Check (T, "#{user.age gt 42}", "FALSE");
-- Check (T, "#{user.date}", To_String (To_Object (P.Date)));
Check (T, "#{user.weight}", To_String (To_Object (P.Weight)));
P.Age := P.Age + 1;
Check (T, "#{user.age}", "43");
Check (T, "#{user.firstName & ' ' & user.lastName}", "Joe Black");
Check (T, "#{user.firstName eq 'Joe'}", "TRUE");
Check (T, "#{user.firstName ne 'Joe'}", "FALSE");
Check (T, "#{user.firstName eq 'Boe' or user.firstName eq 'Joe'}", "TRUE");
Check (T, "Joe is #{user.age} year#{user.age > 0 ? 's' : ''} old",
"Joe is 43 years old");
Free (P);
end Test_Bean_Evaluation;
-- ------------------------------
-- Test evaluation of expression using a bean
-- ------------------------------
procedure Test_Parse_Error (T : in out Test) is
begin
Check_Error (T, "#{1 +}");
Check_Error (T, "#{12(}");
Check_Error (T, "#{foo(1)}");
Check_Error (T, "#{1+2+'abc}");
Check_Error (T, "#{1+""}");
Check_Error (T, "#{12");
Check_Error (T, "${1");
Check_Error (T, "test #{'}");
Check_Error (T, "#{12 > 23 ? 44}");
Check_Error (T, "#{");
Check_Error (T, "${(12+1}");
Check_Error (T, "#{'a\\'b'}");
Check_Error (T, "#");
Check_Error (T, "$");
Check_Error (T, "#{name");
Check_Error (T, "#{name.name");
Check_Error (T, "#{name.name.name");
Check_Error (T, "#{name:");
Check_Error (T, "#{name:name");
Check_Error (T, "#{name:name(");
Check_Error (T, "#{name:name(12");
Check_Error (T, "#{name:name(12,");
Check_Error (T, "#{name:name(12,+");
Check_Error (T, "#{name:name(12,12");
Check_Error (T, "#{name:name(12,12,");
Check_Error (T, "#{name:name(12,12,+");
Check_Error (T, "#{name:name(12,12,12");
Check_Error (T, "#{name:name(12,12,12.12");
Check_Error (T, "#{name:name(12,12,12.12,12");
Check_Error (T, "#{,}");
Check_Error (T, "#{.}");
Check_Error (T, "#{:}");
Check_Error (T, "#{~}");
Check_Error (T, "#{@}");
Check_Error (T, "#{name['index'}");
Check_Error (T, "#{name[1+1]}");
end Test_Parse_Error;
-- ------------------------------
-- Function to format a string
-- ------------------------------
function Format1 (Arg : EL.Objects.Object) return EL.Objects.Object is
S : constant String := To_String (Arg);
begin
return To_Object ("[" & S & "]");
end Format1;
-- ------------------------------
-- Function to format a string
-- ------------------------------
function Format2 (Arg1, Arg2 : EL.Objects.Object) return EL.Objects.Object is
S1 : constant String := To_String (Arg1);
S2 : constant String := To_String (Arg2);
begin
return To_Object ("[" & S1 & "-" & S2 & "]");
end Format2;
-- ------------------------------
-- Function to format a string
-- ------------------------------
function Format3 (Arg1, Arg2, Arg3 : EL.Objects.Object) return EL.Objects.Object is
S1 : constant String := To_String (Arg1);
S2 : constant String := To_String (Arg2);
S3 : constant String := To_String (Arg3);
begin
return To_Object ("[" & S1 & "-" & S2 & "-" & S3 & "]");
end Format3;
-- ------------------------------
-- Function to format a string
-- ------------------------------
function Format4 (Arg1, Arg2, Arg3, Arg4 : EL.Objects.Object) return EL.Objects.Object is
S1 : constant String := To_String (Arg1);
S2 : constant String := To_String (Arg2);
S3 : constant String := To_String (Arg3);
S4 : constant String := To_String (Arg4);
begin
return To_Object ("[" & S1 & "-" & S2 & "-" & S3 & "-" & S4 & "]");
end Format4;
-- ------------------------------
-- Test function evaluation
-- ------------------------------
procedure Test_Function_Evaluation (T : in out Test) is
P : Person_Access := Create_Person ("Joe", "Black", 42);
Fn : aliased EL.Functions.Default.Default_Function_Mapper;
begin
T.Context.all.Set_Variable ("user", P);
-- Register the 'format' function.
Fn.Set_Function (Namespace => "fn",
Name => "format1",
Func => Format1'Access);
Fn.Set_Function (Namespace => "fn",
Name => "format2",
Func => Format2'Access);
Fn.Set_Function (Namespace => "fn",
Name => "format3",
Func => Format3'Access);
Fn.Set_Function (Namespace => "fx",
Name => "format4",
Func => Format4'Access);
T.Context.Set_Function_Mapper (Fn'Unchecked_Access);
-- Create the expression with function call and check the result
Check (T, "#{fn:format1(10)} #{fn:format2(10,12)}", "[10] [10-12]");
Check (T, "#{fn:format2(10,20)} #{fn:format3(20,32,33)}", "[10-20] [20-32-33]");
Check (T, "#{fx:format4(10,20,30,40)}", "[10-20-30-40]");
Check (T, "#{fn:format1(user.age)}", "[42]");
Check (T, "#{fn:format2(user.age,10)}", "[42-10]");
Check (T, "#{fn:format2(10,user.age)}", "[10-42]");
Check (T, "#{fn:format3(user.age,user.age,user.age)}", "[42-42-42]");
Check (T, "#{fn:format3(10,user.age,user.age)}", "[10-42-42]");
Check (T, "#{fn:format3(10,10,user.age)}", "[10-10-42]");
Check (T, "#{fx:format4(user.age,user.age,user.age,user.age)}", "[42-42-42-42]");
Check (T, "#{fx:format4(user.age,10,user.age,user.age)}", "[42-10-42-42]");
Check (T, "#{fx:format4(user.age,10,10,user.age)}", "[42-10-10-42]");
Check (T, "#{fx:format4(user.age,10,10,10)}", "[42-10-10-10]");
Check_Error (T, "#{fx:format4(12(");
Check_Error (T, "#{fx:format4(12,12(");
Check_Error (T, "#{fx:format4(12,12,12(");
Check_Error (T, "#{fx:format4(12,12,12,12(");
Free (P);
end Test_Function_Evaluation;
-- ------------------------------
-- Test function namespace
-- ------------------------------
procedure Test_Function_Namespace (T : in out Test) is
P : Person_Access := Create_Person ("Joe", "Black", 42);
Fn : aliased EL.Functions.Default.Default_Function_Mapper;
Ns : aliased EL.Functions.Namespaces.NS_Function_Mapper;
begin
T.Context.all.Set_Variable ("user", P);
-- Register the 'format' function (use a different URI for each function).
Fn.Set_Function (Namespace => "http://code.google.com/p/ada-el",
Name => "format1",
Func => Format1'Access);
Fn.Set_Function (Namespace => "http://code.google.com/p/ada-asf",
Name => "format2",
Func => Format2'Access);
Fn.Set_Function (Namespace => "http://code.google.com/p/ada-awa",
Name => "format3",
Func => Format3'Access);
Fn.Set_Function (Namespace => "http://code.google.com/p/ada-util",
Name => "format4",
Func => Format4'Access);
Ns.Set_Function_Mapper (Fn'Unchecked_Access);
Ns.Set_Namespace (Prefix => "fn",
URI => "http://code.google.com/p/ada-el");
Ns.Set_Namespace (Prefix => "fp",
URI => "http://code.google.com/p/ada-asf");
Ns.Set_Namespace (Prefix => "fa",
URI => "http://code.google.com/p/ada-awa");
Ns.Set_Namespace (Prefix => "fu",
URI => "http://code.google.com/p/ada-util");
T.Context.Set_Function_Mapper (Ns'Unchecked_Access);
-- Create the expression with function call and check the result
Check (T, "#{fn:format1(10)} #{fp:format2(10,12)}", "[10] [10-12]");
Check (T, "#{fp:format2(10,20)} #{fa:format3(20,32,33)}", "[10-20] [20-32-33]");
Check (T, "#{fu:format4(10,20,30,40)}", "[10-20-30-40]");
Check (T, "#{fn:format1(user.age)}", "[42]");
Check (T, "#{fp:format2(user.age,10)}", "[42-10]");
Check (T, "#{fp:format2(10,user.age)}", "[10-42]");
Check (T, "#{fa:format3(user.age,user.age,user.age)}", "[42-42-42]");
Check (T, "#{fa:format3(10,user.age,user.age)}", "[10-42-42]");
Check (T, "#{fa:format3(10,10,user.age)}", "[10-10-42]");
Check (T, "#{fu:format4(user.age,user.age,user.age,user.age)}", "[42-42-42-42]");
Check (T, "#{fu:format4(user.age,10,user.age,user.age)}", "[42-10-42-42]");
Check (T, "#{fu:format4(user.age,10,10,user.age)}", "[42-10-10-42]");
Check (T, "#{fu:format4(user.age,10,10,10)}", "[42-10-10-10]");
--
-- Check_Error (T, "#{fx:format4(12(");
-- Check_Error (T, "#{fx:format4(12,12(");
-- Check_Error (T, "#{fx:format4(12,12,12(");
-- Check_Error (T, "#{fx:format4(12,12,12,12(");
Free (P);
end Test_Function_Namespace;
-- ------------------------------
-- Test to verify the Is_Valid operation
-- ------------------------------
procedure Test_Method_Is_Valid (T : in out Test) is
use Action_Bean;
A1 : aliased Action;
M : constant EL.Expressions.Method_Expression :=
Create_Expression (Context => T.Context.all,
Expr => "#{action.notify}");
begin
declare
Method : Method_Info;
begin
T.Assert (not Proc_Action.Is_Valid (Method), "Method is invalid");
end;
T.Context.all.Set_Variable ("action", A1'Unchecked_Access);
declare
Method : constant Method_Info := M.Get_Method_Info (T.Context.all);
begin
T.Assert (Proc_Action.Is_Valid (Method), "Method is invalid");
T.Assert (not Proc2_Action.Is_Valid (Method), "Method is invalid");
end;
end Test_Method_Is_Valid;
-- ------------------------------
-- Test evaluation of method expression
-- ------------------------------
procedure Test_Method_Evaluation (T : in out Test) is
use Action_Bean;
A1 : aliased Action;
A2 : aliased Action;
P : Person_Access := Create_Person ("Joe", "Black", 42);
M : EL.Expressions.Method_Expression :=
Create_Expression (Context => T.Context.all,
Expr => "#{action.notify}");
E : constant EL.Expressions.Expression :=
Create_Expression (Context => T.Context.all,
Expr => "#{action.notify}");
begin
T.Context.all.Set_Variable ("action", A1'Unchecked_Access);
A1.Count := 0;
A2.Count := 0;
Proc_Action.Execute (M, Person (P.all), T.Context.all);
T.Assert (P.Last_Name = A1.Person.Last_Name, "Name was not set");
P.Last_Name := To_Unbounded_String ("John");
T.Context.all.Set_Variable ("action", A2'Unchecked_Access);
Proc_Action.Execute (M, Person (P.all), T.Context.all);
T.Assert ("John" = A2.Person.Last_Name, "Name was not set");
-- Build the method expression from the expression
M := Create_Expression (Expr => E);
P.Last_Name := To_Unbounded_String ("Harry");
Proc_Action.Execute (M, Person (P.all), T.Context.all);
T.Assert ("Harry" = A2.Person.Last_Name, "Name was not set");
M := Create_Expression (Context => T.Context.all,
Expr => "#{action.notify2}");
-- Execute the method expression and check the count value.
for I in 1 .. 5 loop
Proc2_Action.Execute (M, Person (P.all), I, T.Context.all);
T.Assert (I = A2.Count, "Count was not set");
T.Assert (0 = A1.Count, "First action modified as side effect");
end loop;
Free (P);
-- Free (A1);
-- Free (A2);
end Test_Method_Evaluation;
-- ------------------------------
-- Test evaluation of invalid method expression
-- ------------------------------
procedure Test_Invalid_Method (T : in out Test) is
use Action_Bean;
A1 : aliased Action;
P : Person_Access := Create_Person ("Joe", "Black", 42);
M2 : EL.Expressions.Method_Expression;
M : EL.Expressions.Method_Expression :=
Create_Expression (Context => T.Context.all,
Expr => "#{action2.bar}");
begin
-- Bean is not found
begin
Proc_Action.Execute (M, Person (P.all), T.Context.all);
T.Assert (False, "The Invalid_Variable exception was not raised");
exception
when EL.Expressions.Invalid_Variable =>
null;
end;
T.Context.all.Set_Variable ("action2", A1'Unchecked_Access);
begin
Proc_Action.Execute (M, Person (P.all), T.Context.all);
T.Assert (False, "The Invalid_Method exception was not raised");
exception
when EL.Expressions.Invalid_Method =>
null;
end;
-- M2 is not initialized, this should raise Invalid_Expression
begin
Proc_Action.Execute (M2, Person (P.all), T.Context.all);
T.Assert (False, "The Invalid_Method exception was not raised");
exception
when EL.Expressions.Invalid_Expression =>
null;
end;
-- Create a method expression with an invalid expression
begin
M := Create_Expression ("#{12+13}", T.Context.all);
T.Assert (False, "The Invalid_Expression exception was not raised");
exception
when EL.Expressions.Invalid_Expression =>
null;
end;
-- Create a method expression from a valid expression
declare
D : constant Expression := Create_Expression ("#{12+13}", T.Context.all);
begin
-- This should raise an Invalid_Expression exception
M := Create_Expression (D);
T.Assert (False, "The Invalid_Expression exception was not raised");
exception
when EL.Expressions.Invalid_Expression =>
null;
end;
Free (P);
-- Free (A1);
-- Free (A2);
end Test_Invalid_Method;
-- ------------------------------
-- Test the use of a value expression.
-- ------------------------------
procedure Test_Value_Expression (T : in out Test) is
P : Person_Access := Create_Person ("Joe", "Black", 42);
V1 : constant Expression := Create_Expression (Context => T.Context.all,
Expr => "#{user.age}");
begin
T.Context.all.Set_Variable ("user", P);
for I in 1 .. 30 loop
declare
VE : constant Value_Expression := Create_Expression (V1);
begin
VE.Set_Value (Context => T.Context.all,
Value => EL.Objects.To_Object (I));
Assert_Equals (T, I, P.Age, "The value expression did not set the age");
T.Assert (not VE.Is_Readonly (T.Context.all),
"Value expression should not be readonly");
end;
end loop;
Free (P);
end Test_Value_Expression;
-- ------------------------------
-- Test the invalid value expression
-- ------------------------------
procedure Test_Invalid_Value_Expression (T : in out Test) is
V1 : constant Expression := Create_Expression (Context => T.Context.all,
Expr => "#{12 + 3}");
V2 : constant Expression := Create_Expression (Context => T.Context.all,
Expr => "#{user.firstName}");
begin
-- Check that an exception is raised when the expression is not a value expression.
begin
declare
VE : constant Value_Expression := Create_Expression (V1);
begin
T.Assert (False, "No exception raised for an invalid value expression");
VE.Set_Value (Context => T.Context.all, Value => EL.Objects.Null_Object);
end;
exception
when Invalid_Expression =>
null;
end;
-- Check that an exception is raised when the bean is not found.
declare
VE : constant Value_Expression := Create_Expression (V2);
begin
VE.Set_Value (Context => T.Context.all,
Value => EL.Objects.To_Object (Integer (2)));
T.Assert (False, "No exception raised when setting the value expression");
exception
when Invalid_Variable =>
null;
end;
end Test_Invalid_Value_Expression;
-- ------------------------------
-- Info about object sizes
-- ------------------------------
procedure Test_Object_Sizes (T : in out Test) is
pragma Unreferenced (T);
V : EL.Objects.Object;
Expr : EL.Expressions.Expression;
begin
LOG.Info ("EL.Objects.Object size = {0} bytes", Integer'Image (V'Size / 8));
LOG.Info ("EL.Expression.Expression size = {0} bytes", Integer'Image (Expr'Size / 8));
end Test_Object_Sizes;
-- ------------------------------
-- Test some reductions.
-- ------------------------------
procedure Test_Reduce_Expression (T : in out Test) is
Expr : EL.Expressions.Expression;
Red : EL.Expressions.Expression;
Count : constant Positive := 100_000;
begin
declare
S : Util.Measures.Stamp;
begin
for I in 1 .. Count loop
Expr := Create_Expression ("#{bean.name}", T.Context.all);
end loop;
Util.Measures.Report (S, "Create_Expression", Count);
end;
declare
S : Util.Measures.Stamp;
begin
for I in 1 .. Count loop
Red := Reduce_Expression (Expr, T.Context.all);
end loop;
Util.Measures.Report (S, "Reduce_Expression", Count);
T.Assert (not Red.Is_Null, "Null expr after reduce");
T.Assert (not Red.Is_Constant, "Expression was not constant");
end;
Expr := Create_Expression ("#{1+2+3+4+5}", T.Context.all);
Red := Reduce_Expression (Expr, T.Context.all);
T.Assert (not Red.Is_Null, "Null expr after reduce");
T.Assert (Red.Is_Constant, "Expression was not constant");
Util.Tests.Assert_Equals (T, 15,
Util.Beans.Objects.To_Integer (Red.Get_Value (T.Context.all)),
"Invalid reduction");
end Test_Reduce_Expression;
-- ------------------------------
-- Test some reductions.
-- ------------------------------
procedure Test_Reduce_Expression_Variable (T : in out Test) is
Expr : EL.Expressions.Expression;
Red : EL.Expressions.Expression;
Var : aliased EL.Variables.Default.Default_Variable_Mapper;
begin
Expr := Create_Expression (" this is a sting ", T.Context.all);
Var.Set_Variable (To_Unbounded_String ("param_name"), Expr);
T.Context.Set_Variable_Mapper (Var'Unchecked_Access);
Expr := Create_Expression ("|#{param_name}|", T.Context.all);
Red := Reduce_Expression (Expr, T.Context.all);
T.Assert (Red.Is_Constant, "Expression was not constant");
Util.Tests.Assert_Equals (T, "| this is a sting |",
Util.Beans.Objects.To_String (Red.Get_Value (T.Context.all)),
"Invalid reduction");
end Test_Reduce_Expression_Variable;
package Caller is new Util.Test_Caller (Test, "EL.Expressions");
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is
begin
-- Test_Bean verifies several methods. Register several times
-- to enumerate what is tested.
Caller.Add_Test (Suite, "Object sizes",
Test_Object_Sizes'Access);
Caller.Add_Test (Suite, "Test EL.Beans.Get_Value (constant expressions)",
Test_Simple_Evaluation'Access);
Caller.Add_Test (Suite, "Test EL.Contexts.Set_Variable",
Test_Bean_Evaluation'Access);
Caller.Add_Test (Suite, "Test EL.Beans.Get_Value",
Test_Bean_Evaluation'Access);
Caller.Add_Test (Suite, "Test EL.Expressions.Create_Expression",
Test_Bean_Evaluation'Access);
Caller.Add_Test (Suite, "Test EL.Expressions.Get_Value",
Test_Bean_Evaluation'Access);
Caller.Add_Test (Suite, "Test EL.Expressions.Create_Expression (Parse Error)",
Test_Parse_Error'Access);
Caller.Add_Test (Suite, "Test EL.Expressions.Get_Method_Info",
Test_Method_Evaluation'Access);
Caller.Add_Test (Suite, "Test EL.Expressions.Get_Method_Info (Invalid_method)",
Test_Invalid_Method'Access);
Caller.Add_Test (Suite, "Test EL.Functions.Set_Function (and evaluation)",
Test_Function_Evaluation'Access);
Caller.Add_Test (Suite, "Test EL.Expressions.Set_Value",
Test_Value_Expression'Access);
Caller.Add_Test (Suite, "Test EL.Expressions.Set_Value (raise Invalid_Variable)",
Test_Invalid_Value_Expression'Access);
Caller.Add_Test (Suite, "Test EL.Expressions.Get_Method_Info (Invalid_method)",
Test_Invalid_Method'Access);
Caller.Add_Test (Suite, "Test EL.Functions.Namespaces.Set_Namespace (and evaluation)",
Test_Function_Namespace'Access);
Caller.Add_Test (Suite, "Test EL.Expressions.Reduce_Expression",
Test_Reduce_Expression'Access);
Caller.Add_Test (Suite, "Test EL.Expressions.Reduce_Expression (reduce variable)",
Test_Reduce_Expression_Variable'Access);
Caller.Add_Test (Suite, "Test EL.Methods.Proc_1.Is_Valid",
Test_Method_Is_Valid'Access);
end Add_Tests;
end EL.Expressions.Tests;
|
------------------------------------------------------------------------------
-- Copyright (c) 2014, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR --
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES --
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN --
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF --
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Natools.Web is a collection of miscellaneous small web-related utilities --
-- gathered in one shared library. --
------------------------------------------------------------------------------
package Natools.Web is
pragma Preelaborate;
package Severities is
type Code is (Critical, Error, Warning, Info);
end Severities;
procedure Default_Log
(Severity : in Severities.Code;
Message : in String)
is null;
Log : not null access procedure
(Severity : in Severities.Code;
Message : in String)
:= Default_Log'Access;
end Natools.Web;
|
-- CE3112D.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- OBJECTIVE:
-- CHECK THAT AN EXTERNAL TEXT FILE SPECIFIED BY A NON-NULL STRING
-- NAME IS ACCESSIBLE AFTER THE COMPLETION OF THE MAIN PROGRAM.
-- THIS TEST CHECKS THE CREATION OF A TEXT FILE X3112C, WHICH WAS
-- CREATED BY CE3112C.ADA.
-- APPLICABILITY CRITERIA:
-- THIS TEST IS APPLICABLE ONLY TO IMPLEMENTATIONS WHICH SUPPORT
-- TEXT FILES.
-- HISTORY:
-- GMT 08/13/87 CREATED ORIGINAL TEST.
WITH REPORT; USE REPORT;
WITH TEXT_IO;
PROCEDURE CE3112D IS
INCOMPLETE : EXCEPTION;
CHECK_SUPPORT, FILE_NAME : TEXT_IO.FILE_TYPE;
PREVENT_EMPTY_FILE : STRING (1..5);
BEGIN
TEST ("CE3112D", "CHECK THAT AN EXTERNAL TEXT FILE SPECIFIED BY " &
"A NON-NULL STRING NAME IS ACCESSIBLE AFTER " &
"THE COMPLETION OF THE MAIN PROGRAM");
-- TEST FOR TEXT FILE SUPPORT.
BEGIN
TEXT_IO.CREATE (CHECK_SUPPORT, TEXT_IO.OUT_FILE,
LEGAL_FILE_NAME);
BEGIN
TEXT_IO.DELETE (CHECK_SUPPORT);
EXCEPTION
WHEN TEXT_IO.USE_ERROR =>
NULL;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED ON " &
"DELETE - 1");
END;
EXCEPTION
WHEN TEXT_IO.USE_ERROR =>
NOT_APPLICABLE ("USE_ERROR RAISED ON TEXT CREATE WITH " &
"OUT_FILE MODE - 2");
RAISE INCOMPLETE;
WHEN TEXT_IO.NAME_ERROR =>
NOT_APPLICABLE ("NAME_ERROR RAISED ON TEXT CREATE " &
"WITH OUT_FILE MODE - 3");
RAISE INCOMPLETE;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED ON TEXT " &
"CREATE - 4");
RAISE INCOMPLETE;
END;
-- BEGIN TEST OBJECTIVE.
BEGIN
TEXT_IO.OPEN (FILE_NAME, TEXT_IO.IN_FILE,
LEGAL_FILE_NAME (1, "CE3112C"));
EXCEPTION
WHEN TEXT_IO.USE_ERROR =>
NOT_APPLICABLE("USE_ERROR RAISED ON OPEN FOR TEXT " &
"FILE WITH IN_FILE MODE - 5");
RAISE INCOMPLETE;
END;
TEXT_IO.GET (FILE_NAME, PREVENT_EMPTY_FILE);
IF PREVENT_EMPTY_FILE /= "HELLO" THEN
FAILED ("OPENED WRONG FILE OR DATA ERROR - 6");
END IF;
BEGIN
TEXT_IO.DELETE (FILE_NAME);
EXCEPTION
WHEN TEXT_IO.USE_ERROR =>
COMMENT ("IMPLEMENTATION WOULD NOT ALLOW DELETION OF " &
"EXTERNAL FILE - 7");
END;
RESULT;
EXCEPTION
WHEN INCOMPLETE =>
RESULT;
END CE3112D;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M --
-- --
-- S p e c --
-- (LynxOS PPC Version) --
-- --
-- Copyright (C) 1992-2005, 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 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. --
-- --
------------------------------------------------------------------------------
package System is
pragma Pure;
-- Note that we take advantage of the implementation permission to make
-- this unit Pure instead of Preelaborable; see RM 13.7.1(15). In Ada
-- 2005, this is Pure in any case (AI-362).
type Name is (SYSTEM_NAME_GNAT);
System_Name : constant Name := SYSTEM_NAME_GNAT;
-- System-Dependent Named Numbers
Min_Int : constant := Long_Long_Integer'First;
Max_Int : constant := Long_Long_Integer'Last;
Max_Binary_Modulus : constant := 2 ** Long_Long_Integer'Size;
Max_Nonbinary_Modulus : constant := Integer'Last;
Max_Base_Digits : constant := Long_Long_Float'Digits;
Max_Digits : constant := Long_Long_Float'Digits;
Max_Mantissa : constant := 63;
Fine_Delta : constant := 2.0 ** (-Max_Mantissa);
Tick : constant := 0.01;
-- Storage-related Declarations
type Address is private;
Null_Address : constant Address;
Storage_Unit : constant := 8;
Word_Size : constant := 32;
Memory_Size : constant := 2 ** 32;
-- Address comparison
function "<" (Left, Right : Address) return Boolean;
function "<=" (Left, Right : Address) return Boolean;
function ">" (Left, Right : Address) return Boolean;
function ">=" (Left, Right : Address) return Boolean;
function "=" (Left, Right : Address) return Boolean;
pragma Import (Intrinsic, "<");
pragma Import (Intrinsic, "<=");
pragma Import (Intrinsic, ">");
pragma Import (Intrinsic, ">=");
pragma Import (Intrinsic, "=");
-- Other System-Dependent Declarations
type Bit_Order is (High_Order_First, Low_Order_First);
Default_Bit_Order : constant Bit_Order := High_Order_First;
-- Priority-related Declarations (RM D.1)
-- 17 is the system determined default priority for user applications
-- running on LynxOS.
-- The standard (Rm 13.7) requires that Default_Priority has the value:
-- (Priority'First + Priority'Last) / 2.
-- To allow an appropriate value for Default_Priority and expose a useful
-- range of priorities to the user, we use a range of 0 .. 34 for subtype
-- Priority.
-- The rest of the range allowed by the system from 35 to 255 is made
-- available here in Interrupt_Priority.
Max_Priority : constant Positive := 34;
Max_Interrupt_Priority : constant Positive := 255;
subtype Any_Priority is Integer range 0 .. 255;
subtype Priority is Any_Priority range 0 .. 34;
subtype Interrupt_Priority is Any_Priority range 35 .. 255;
Default_Priority : constant Priority := 17;
private
type Address is mod Memory_Size;
Null_Address : constant Address := 0;
--------------------------------------
-- System Implementation Parameters --
--------------------------------------
-- These parameters provide information about the target that is used
-- by the compiler. They are in the private part of System, where they
-- can be accessed using the special circuitry in the Targparm unit
-- whose source should be consulted for more detailed descriptions
-- of the individual switch values.
AAMP : constant Boolean := False;
Backend_Divide_Checks : constant Boolean := False;
Backend_Overflow_Checks : constant Boolean := False;
Command_Line_Args : constant Boolean := True;
Compiler_System_Version : constant Boolean := False;
Configurable_Run_Time : constant Boolean := False;
Denorm : constant Boolean := True;
Duration_32_Bits : constant Boolean := False;
Exit_Status_Supported : constant Boolean := True;
Fractional_Fixed_Ops : constant Boolean := False;
Frontend_Layout : constant Boolean := False;
Functions_Return_By_DSP : constant Boolean := False;
Machine_Overflows : constant Boolean := False;
Machine_Rounds : constant Boolean := True;
OpenVMS : constant Boolean := False;
Preallocated_Stacks : constant Boolean := False;
Signed_Zeros : constant Boolean := True;
Stack_Check_Default : constant Boolean := False;
Stack_Check_Probes : constant Boolean := False;
Support_64_Bit_Divides : constant Boolean := True;
Support_Aggregates : constant Boolean := True;
Support_Composite_Assign : constant Boolean := True;
Support_Composite_Compare : constant Boolean := True;
Support_Long_Shifts : constant Boolean := True;
Suppress_Standard_Library : constant Boolean := False;
Use_Ada_Main_Program_Name : constant Boolean := False;
ZCX_By_Default : constant Boolean := False;
GCC_ZCX_Support : constant Boolean := False;
Front_End_ZCX_Support : constant Boolean := False;
-- Obsolete entries, to be removed eventually (bootstrap issues!)
High_Integrity_Mode : constant Boolean := False;
Long_Shifts_Inlined : constant Boolean := True;
end System;
|
-- ----------------------------------------------------------------- --
-- --
-- This 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 2 of the License, or (at your option) any later version. --
-- --
-- This software is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
-- General Public License for more details. --
-- --
-- You should have received a copy of the GNU General Public --
-- License along with this library; if not, write to the --
-- Free Software Foundation, Inc., 59 Temple Place - Suite 330, --
-- Boston, MA 02111-1307, USA. --
-- --
-- ----------------------------------------------------------------- --
-- ----------------------------------------------------------------- --
-- This is a translation, to the Ada programming language, of the --
-- original C test files written by Sam Lantinga - www.libsdl.org --
-- translation made by Antonio F. Vargas - www.adapower.net/~avargas --
-- ----------------------------------------------------------------- --
with System;
with Interfaces.C;
with Interfaces.C.Strings;
package TestError_TFunc is
package C renames Interfaces.C;
use type C.int;
alive : C.int := 0;
package CS renames Interfaces.C.Strings;
function ThreadFunc (data : System.Address) return Interfaces.C.int;
pragma Convention (C, ThreadFunc);
end TestError_TFunc;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Web API Definition --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014-2015, Vadim Godunko <vgodunko@gmail.com> --
-- 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 package provides binding to interface Document.
------------------------------------------------------------------------------
with WebAPI.DOM.Comments;
with WebAPI.DOM.Document_Fragments;
with WebAPI.DOM.Document_Types;
with WebAPI.DOM.Elements;
with WebAPI.DOM.HTML_Collections;
with WebAPI.DOM.Nodes;
with WebAPI.DOM.Non_Element_Parent_Nodes;
with WebAPI.DOM.Parent_Nodes;
with WebAPI.DOM.Processing_Instructions;
with WebAPI.DOM.Texts;
package WebAPI.DOM.Documents is
pragma Preelaborate;
type Document is limited interface
and WebAPI.DOM.Nodes.Node
and WebAPI.DOM.Non_Element_Parent_Nodes.Non_Element_Parent_Node
and WebAPI.DOM.Parent_Nodes.Parent_Node;
type Document_Access is access all Document'Class
with Storage_Size => 0;
-- XXX Not binded yet:
-- [SameObject] readonly attribute DOMImplementation implementation;
not overriding function Get_URL
(Self : not null access constant Document)
return WebAPI.DOM_String is abstract
with Import => True,
Convention => JavaScript_Property_Getter,
Link_Name => "URL";
-- Returns document's URL.
not overriding function Get_Document_URI
(Self : not null access constant Document)
return WebAPI.DOM_String is abstract
with Import => True,
Convention => JavaScript_Property_Getter,
Link_Name => "documentURI";
-- Returns document's URL.
not overriding function Get_Compat_Mode
(Self : not null access constant Document)
return WebAPI.DOM_String is abstract
with Import => True,
Convention => JavaScript_Property_Getter,
Link_Name => "compatMode";
-- Returns the string "CSS1Compat" if document is in no-quirks mode or
-- limited-quirks mode, and "BackCompat", if document is in quirks mode.
not overriding function Get_Character_Set
(Self : not null access constant Document)
return WebAPI.DOM_String is abstract
with Import => True,
Convention => JavaScript_Property_Getter,
Link_Name => "characterSet";
-- Returns document's encoding.
not overriding function Get_Content_Type
(Self : not null access constant Document)
return WebAPI.DOM_String is abstract
with Import => True,
Convention => JavaScript_Property_Getter,
Link_Name => "contentType";
-- Returns document's content type.
not overriding function Get_Doctype
(Self : not null access constant Document)
return WebAPI.DOM.Document_Types.Document_Type_Access is abstract
with Import => True,
Convention => JavaScript_Property_Getter,
Link_Name => "doctype";
-- Returns the doctype or null if there is none.
not overriding function Get_Document_Element
(Self : not null access constant Document)
return WebAPI.DOM.Elements.Element_Access is abstract
with Import => True,
Convention => JavaScript_Property_Getter,
Link_Name => "documentElement";
-- Returns the document element.
not overriding function Get_Elements_By_Tag_Name
(Self : not null access constant Document;
Local_Name : WebAPI.DOM_String)
return WebAPI.DOM.HTML_Collections.HTML_Collection is abstract
with Import => True,
Convention => JavaScript_Function,
Link_Name => "getElementsByTagName";
-- If localName is "*" returns a HTMLCollection of all descendant elements.
--
-- Otherwise, returns a HTMLCollection of all descendant elements whose
-- local name is localName. (Matches case-insensitively against elements in
-- the HTML namespace within an HTML document.)
not overriding function Get_Elements_By_Tag_Name_NS
(Self : not null access constant Document;
Namespace_URI : WebAPI.DOM_String;
Local_Name : WebAPI.DOM_String)
return WebAPI.DOM.HTML_Collections.HTML_Collection is abstract
with Import => True,
Convention => JavaScript_Function,
Link_Name => "getElementsByTagNameNS";
-- If namespace and localName are "*" returns a HTMLCollection of all
-- descendant elements.
--
-- If only namespace is "*" returns a HTMLCollection of all descendant
-- elements whose local name is localName.
--
-- If only localName is "*" returns a HTMLCollection of all descendant
-- elements whose namespace is namespace.
--
-- Otherwise, returns a HTMLCollection of all descendant elements whose
-- namespace is namespace and local name is localName.
not overriding function Get_Elements_By_Class_Name
(Self : not null access constant Document;
Class_Names : WebAPI.DOM_String)
return WebAPI.DOM.HTML_Collections.HTML_Collection is abstract
with Import => True,
Convention => JavaScript_Function,
Link_Name => "getElementsByClassName";
-- Returns a HTMLCollection of the elements in the object on which the
-- method was invoked (a document or an element) that have all the classes
-- given by classes.
--
-- The classes argument is interpreted as a space-separated list of
-- classes.
not overriding function Create_Element
(Self : not null access Document;
Local_Name : WebAPI.DOM_String)
return not null WebAPI.DOM.Elements.Element_Access is abstract
with Import => True,
Convention => JavaScript_Method,
Link_Name => "createElement";
-- Returns an element in the HTML namespace with localName as local name.
-- (In an HTML document localName is lowercased.)
--
-- If localName does not match the Name production an
-- "InvalidCharacterError" exception will be thrown.
not overriding function Create_Element_NS
(Self : not null access Document;
Namespace_URI : WebAPI.DOM_String;
Qialified_Name : WebAPI.DOM_String)
return not null WebAPI.DOM.Elements.Element_Access is abstract
with Import => True,
Convention => JavaScript_Method,
Link_Name => "createElementNS";
-- Returns an element with namespace namespace. Its namespace prefix will
-- be everything before ":" (U+003E) in qualifiedName or null. Its local
-- name will be everything after ":" (U+003E) in qualifiedName or
-- qualifiedName.
--
-- If localName does not match the Name production an
-- "InvalidCharacterError" exception will be thrown.
--
-- If one of the following conditions is true a "NamespaceError" exception
-- will be thrown:
--
-- - localName does not match the QName production.
-- - Namespace prefix is not null and namespace is the empty string.
-- - Namespace prefix is "xml" and namespace is not the XML namespace.
-- - qualifiedName or namespace prefix is "xmlns" and namespace is not the
-- XMLNS namespace.
-- - namespace is the XMLNS namespace and neither qualifiedName nor
-- namespace prefix is "xmlns".
not overriding function Create_Document_Fragment
(Self : not null access Document)
return not null WebAPI.DOM.Document_Fragments.Document_Fragment_Access
is abstract
with Import => True,
Convention => JavaScript_Method,
Link_Name => "createDocumentFragment";
-- Returns a DocumentFragment node.
not overriding function Create_Text_Node
(Self : not null access Document;
Data : WebAPI.DOM_String)
return not null WebAPI.DOM.Texts.Text_Access is abstract
with Import => True,
Convention => JavaScript_Method,
Link_Name => "createTextNode";
-- Returns a Text node whose data is data.
not overriding function Create_Comment
(Self : not null access Document;
Data : WebAPI.DOM_String)
return WebAPI.DOM.Comments.Comment_Access is abstract
with Import => True,
Convention => JavaScript_Method,
Link_Name => "createComment";
-- Returns a Comment node whose data is data.
not overriding function Create_Processing_Instruction
(Self : not null access Document;
Target : WebAPI.DOM_String;
Data : WebAPI.DOM_String)
return WebAPI.DOM.Processing_Instructions.Processing_Instruction_Access
is abstract
with Import => True,
Convention => JavaScript_Method,
Link_Name => "createProcessingInstruction";
-- Returns a ProcessingInstruction node whose target is target and data is
-- data.
--
-- If target does not match the Name production an "InvalidCharacterError"
-- exception will be thrown.
--
-- If data contains "?>" an "InvalidCharacterError" exception will be
-- thrown.
not overriding function Import_Node
(Self : not null access Document;
Node : not null access WebAPI.DOM.Nodes.Node'Class;
Deep : Boolean := False)
return WebAPI.DOM.Nodes.Node_Access is abstract
with Import => True,
Convention => JavaScript_Method,
Link_Name => "importNode";
-- Returns a copy of node. If deep is true, the copy also includes the
-- node's descendants.
--
-- If node is a document throws a "NotSupportedError" exception.
not overriding function Adopt_Node
(Self : not null access Document;
Node : not null access WebAPI.DOM.Nodes.Node'Class)
return WebAPI.DOM.Nodes.Node_Access is abstract
with Import => True,
Convention => JavaScript_Method,
Link_Name => "adoptNode";
procedure Adopt_Node
(Self : not null access Document'Class;
Node : not null access WebAPI.DOM.Nodes.Node'Class)
with Import => True,
Convention => JavaScript_Method,
Link_Name => "adoptNode";
-- Moves node from another document and returns it.
--
-- If node is a document throws a "NotSupportedError" exception.
-- XXX Not binded yet:
-- [NewObject] Event createEvent(DOMString interface);
-- XXX Not binded yet:
-- [NewObject] Range createRange();
-- XXX Not binded yet:
-- // NodeFilter.SHOW_ALL = 0xFFFFFFFF
-- [NewObject] NodeIterator createNodeIterator(Node root, optional unsigned long whatToShow = 0xFFFFFFFF, optional NodeFilter? filter = null);
-- [NewObject] TreeWalker createTreeWalker(Node root, optional unsigned long whatToShow = 0xFFFFFFFF, optional NodeFilter? filter = null);
end WebAPI.DOM.Documents;
|
-----------------------------------------------------------------------
-- wiki-streams-builders -- Wiki writer to a string builder
-- Copyright (C) 2011, 2012, 2013, 2015, 2016 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- 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 Wiki.Strings;
-- === Output Builder Stream ==
-- The <tt>Output_Builder_Stream</tt> is a concrete in-memory output stream.
-- It collects the output in a <tt>Wiki.Strings.Bstring</tt> object and the
-- content can be retrieved at the end by using the <tt>To_String</tt>
-- or <tt>Iterate</tt> operation.
package Wiki.Streams.Builders is
type Output_Builder_Stream is limited new Output_Stream with private;
type Output_Builder_Stream_Access is access all Output_Builder_Stream'Class;
-- Write the content to the string builder.
overriding
procedure Write (Stream : in out Output_Builder_Stream;
Content : in Wiki.Strings.WString);
-- Write a single character to the string builder.
overriding
procedure Write (Stream : in out Output_Builder_Stream;
Content : in Wiki.Strings.WChar);
-- Write the string to the string builder.
procedure Write_String (Stream : in out Output_Builder_Stream;
Content : in String);
-- Iterate over the buffer content calling the <tt>Process</tt> procedure with each
-- chunk.
procedure Iterate (Source : in Output_Builder_Stream;
Process : not null access procedure (Chunk : in Wiki.Strings.WString));
-- Convert what was collected in the writer builder to a string and return it.
function To_String (Source : in Output_Builder_Stream) return String;
private
BLOCK_SIZE : constant Positive := 512;
type Output_Builder_Stream is limited new Output_Stream with record
Content : Wiki.Strings.BString (BLOCK_SIZE);
end record;
end Wiki.Streams.Builders;
|
separate(Formatter.Get)
procedure Format_Number(Data : in Contents;
In_The_String : in out String;
Location : in out Natural;
Number_Base : in Natural := 10;
Width : in Natural := 0;
Left_Justify : in Boolean := False;
Fill_With_Zeros : in Boolean := False) is
-- ++
--
-- FUNCTIONAL DESCRIPTION:
--
-- Formats non-real number based on input parameters.
--
-- FORMAL PARAMETERS:
--
-- Data:
-- The input data to format, contained in a variant record.
--
-- In_The_String:
-- The output string where the formatted number is placed.
--
-- Location:
-- The position where the formatted number is placed.
--
-- Number_Base:
-- Which base to convert the number to: 8, 10, or 16.
--
-- Width:
-- The width of the formatted number.
--
-- Left_Justify:
-- Logical (Boolean) switch which causes the formatted number to be
-- left justified in the output field.
--
-- Fill_With_Zeros:
-- Logical (Boolean) switch which causes the right-justified, formatted
-- number to be padded with leading zeros.
--
-- DESIGN:
--
-- Determine output field width.
-- Convert number to correct number base.
-- Strip off number base delimiters.
-- Convert number to string.
-- Call Format_String to format number string.
--
-- EXCEPTIONS:
--
-- A constraint error will generate a default field of all asterisks.
--
-- --
-- Local variables
Temp_String : String(1..255) := (others => ' ');
Field_Width : Natural; -- Output field width
Based_Width : Natural; -- Width of based number
Number_String : Formatter.Contents;
-- Local functions
function Based_Value_Of(The_String : in String) return String is
-- PURPOSE: Returns based value string without base type or delimiters
-- Local constant
Delimiter : constant Character := ASCII.SHARP; -- '#'
-- Character indices
First : Positive; -- Position of first digit after '#' delimiter
Last : Positive; -- Position of last digit before '#' delimiter
begin -- Based_Value_Of
-- Find first digit after initial Delimiter
First := The_String'First;
while The_String(First) /= Delimiter loop
if First = The_String'Last then -- Decimal number
return The_String; -- No Delimiter found
else
First := First + 1; -- Check next char
end if;
end loop;
First := First + 1; -- Skip Initial Delimiter
-- Find last digit before final Delimiter
Last := First;
while The_String(Last) /= Delimiter loop
Last := Last + 1;
end loop;
Last := Last - 1; -- Ignore Terminal Delimiter
return The_String(First..Last);
end Based_Value_Of;
begin -- Format_Number
-- Determine width of output
if Width = 0 then
Field_Width := Get.Default_Width;
else
Field_Width := Width;
end if;
-- Check for correct data type to format
if Data.Class = Integer_type then
-- Adjust field width for based value delimiters
if Number_Base = 10 then
Based_Width := Field_Width;
else
Based_Width := Field_Width + 4;
end if;
-- Convert integer value to string in correct Number_Base
Io.Put(Item => Data.Integer_value,
To => Temp_string(1..Based_width),
Base => Number_base);
if Left_Justify then
Temp_String(1..Based_Width) :=
Get.Left_Justified(Temp_String(1..Based_Width));
end if;
if Number_Base = Base_Ten then
if Fill_With_Zeros then
-- Generate zero-filled Number_String
Number_String := Contents'(Class => String_Type,
String_Value => (The_String => new
String'(Get.Zero_Fill(Temp_String(1..Based_Width))),
The_Length => Based_Width));
else
-- Generate Number_String
Number_String := Contents'(Class => String_Type,
String_Value => (The_String => new
String'(Temp_String(1..Based_Width)),
The_Length => Based_Width));
end if;
else
Non_Decimal_Base:
declare
-- Strip off Based value delimiters
Based_Value_String : constant String := Based_Value_Of(Temp_String(1..Based_Width));
begin
if Fill_With_Zeros then
-- Generate zero-filled Number_String
Number_String := Contents'(Class => String_Type,
String_Value => (The_String => new String'(Get.Zero_Fill(Based_Value_String)),
The_Length => Based_Value_String'length));
else
-- Generate Number_String
Number_String := Contents'(Class => String_Type,
String_Value => (The_String => new String'(Based_Value_String),
The_Length => Based_Value_String'length));
end if;
end Non_Decimal_Base;
end if;
-- Insert Number_String into Output String
Format_String(Number_String,In_The_String,Location,Field_Width);
else -- Incorrect data type
-- Fill field with error symbols
Format_Error(In_The_String, Location, Field_Width);
end if;
exception
when others =>
Format_Error(In_The_String, Location, Field_Width);
end Format_Number;
|
with
FLTK.Text_Buffers;
private with
Interfaces.C,
System.Address_To_Access_Conversions;
package FLTK.Widgets.Groups.Text_Displays is
type Text_Display is new Group with private;
type Text_Display_Reference (Data : not null access Text_Display'Class) is
limited null record with Implicit_Dereference => Data;
type Wrap_Mode is (None, Column, Pixel, Bounds);
type Cursor_Style is (Normal, Caret, Dim, Block, Heavy, Simple);
Bounds_Error : exception;
package Forge is
function Create
(X, Y, W, H : in Integer;
Text : in String)
return Text_Display;
end Forge;
package Styles is
type Style_Entry is private;
type Style_Index is new Character range 'A' .. '~';
type Style_Array is array (Style_Index range <>) of Style_Entry;
type Unfinished_Style_Callback is access procedure
(Char : in Character;
Display : in out Text_Display);
function Item
(Tint : in Color;
Font : in Font_Kind;
Size : in Font_Size)
return Style_Entry;
private
type Style_Entry is record
Attr : Interfaces.C.unsigned;
Col : Interfaces.C.unsigned;
Font : Interfaces.C.int;
Size : Interfaces.C.int;
end record;
pragma Convention (C, Style_Entry);
pragma Convention (C, Style_Array);
end Styles;
function Get_Buffer
(This : in Text_Display)
return FLTK.Text_Buffers.Text_Buffer_Reference;
procedure Set_Buffer
(This : in out Text_Display;
Buff : in out FLTK.Text_Buffers.Text_Buffer);
procedure Highlight_Data
(This : in out Text_Display;
Buff : in out FLTK.Text_Buffers.Text_Buffer;
Table : in Styles.Style_Array);
procedure Highlight_Data
(This : in out Text_Display;
Buff : in out FLTK.Text_Buffers.Text_Buffer;
Table : in Styles.Style_Array;
Unfinished : in Styles.Style_Index;
Callback : in Styles.Unfinished_Style_Callback);
function Col_To_X
(This : in Text_Display;
Col_Num : in Integer)
return Integer;
function X_To_Col
(This : in Text_Display;
X_Pos : in Integer)
return Integer;
function In_Selection
(This : in Text_Display;
X, Y : in Integer)
return Boolean;
procedure Position_To_XY
(This : in Text_Display;
Pos : in Integer;
X, Y : out Integer;
Vert_Out : out Boolean);
function Get_Cursor_Color
(This : in Text_Display)
return Color;
procedure Set_Cursor_Color
(This : in out Text_Display;
Col : in Color);
procedure Set_Cursor_Style
(This : in out Text_Display;
Style : in Cursor_Style);
procedure Hide_Cursor
(This : in out Text_Display);
procedure Show_Cursor
(This : in out Text_Display);
function Get_Text_Color
(This : in Text_Display)
return Color;
procedure Set_Text_Color
(This : in out Text_Display;
Col : in Color);
function Get_Text_Font
(This : in Text_Display)
return Font_Kind;
procedure Set_Text_Font
(This : in out Text_Display;
Font : in Font_Kind);
function Get_Text_Size
(This : in Text_Display)
return Font_Size;
procedure Set_Text_Size
(This : in out Text_Display;
Size : in Font_Size);
procedure Insert_Text
(This : in out Text_Display;
Item : in String);
procedure Overstrike
(This : in out Text_Display;
Text : in String);
function Get_Insert_Position
(This : in Text_Display)
return Natural;
procedure Set_Insert_Position
(This : in out Text_Display;
Pos : in Natural);
procedure Show_Insert_Position
(This : in out Text_Display);
function Word_Start
(This : in out Text_Display;
Pos : in Natural)
return Natural;
function Word_End
(This : in out Text_Display;
Pos : in Natural)
return Natural;
procedure Next_Word
(This : in out Text_Display);
procedure Previous_Word
(This : in out Text_Display);
procedure Set_Wrap_Mode
(This : in out Text_Display;
Mode : in Wrap_Mode;
Margin : in Natural := 0);
-- takes into account word wrap
function Line_Start
(This : in Text_Display;
Pos : in Natural)
return Natural;
-- takes into account word wrap
function Line_End
(This : in Text_Display;
Pos : in Natural;
Start_Pos_Is_Line_Start : in Boolean := False)
return Natural;
function Count_Lines
(This : in Text_Display;
Start, Finish : in Natural;
Start_Pos_Is_Line_Start : in Boolean := False)
return Natural;
-- takes into account word wrap as well as newline characters
function Skip_Lines
(This : in Text_Display;
Start, Lines : in Natural;
Start_Pos_Is_Line_Start : in Boolean := False)
return Natural;
-- takes into account word wrap as well as newline characters
function Rewind_Lines
(This : in Text_Display;
Start, Lines : in Natural)
return Natural;
function Get_Linenumber_Alignment
(This : in Text_Display)
return Alignment;
procedure Set_Linenumber_Alignment
(This : in out Text_Display;
To : in Alignment);
function Get_Linenumber_Back_Color
(This : in Text_Display)
return Color;
procedure Set_Linenumber_Back_Color
(This : in out Text_Display;
To : in Color);
function Get_Linenumber_Fore_Color
(This : in Text_Display)
return Color;
procedure Set_Linenumber_Fore_Color
(This : in out Text_Display;
To : in Color);
function Get_Linenumber_Font
(This : in Text_Display)
return Font_Kind;
procedure Set_Linenumber_Font
(This : in out Text_Display;
To : in Font_Kind);
function Get_Linenumber_Size
(This : in Text_Display)
return Font_Size;
procedure Set_Linenumber_Size
(This : in out Text_Display;
To : in Font_Size);
function Get_Linenumber_Width
(This : in Text_Display)
return Natural;
procedure Set_Linenumber_Width
(This : in out Text_Display;
Width : in Natural);
procedure Move_Down
(This : in out Text_Display);
procedure Move_Left
(This : in out Text_Display);
procedure Move_Right
(This : in out Text_Display);
procedure Move_Up
(This : in out Text_Display);
procedure Scroll_To
(This : in out Text_Display;
Line : in Natural);
function Get_Scrollbar_Alignment
(This : in Text_Display)
return Alignment;
procedure Set_Scrollbar_Alignment
(This : in out Text_Display;
Align : in Alignment);
function Get_Scrollbar_Width
(This : in Text_Display)
return Natural;
procedure Set_Scrollbar_Width
(This : in out Text_Display;
Width : in Natural);
procedure Redisplay_Range
(This : in out Text_Display;
Start, Finish : in Natural);
procedure Draw
(This : in out Text_Display);
function Handle
(This : in out Text_Display;
Event : in Event_Kind)
return Event_Outcome;
private
type Text_Display is new Group with
record
Buffer : access FLTK.Text_Buffers.Text_Buffer;
Style_Callback : Styles.Unfinished_Style_Callback;
end record;
overriding procedure Finalize
(This : in out Text_Display);
package Text_Display_Convert is new System.Address_To_Access_Conversions (Text_Display'Class);
pragma Inline (Get_Buffer);
pragma Inline (Set_Buffer);
pragma Inline (Highlight_Data);
pragma Inline (Col_To_X);
pragma Inline (X_To_Col);
pragma Inline (In_Selection);
pragma Inline (Position_To_XY);
pragma Inline (Get_Cursor_Color);
pragma Inline (Set_Cursor_Color);
pragma Inline (Set_Cursor_Style);
pragma Inline (Hide_Cursor);
pragma Inline (Show_Cursor);
pragma Inline (Get_Text_Color);
pragma Inline (Set_Text_Color);
pragma Inline (Get_Text_Font);
pragma Inline (Set_Text_Font);
pragma Inline (Get_Text_Size);
pragma Inline (Set_Text_Size);
pragma Inline (Insert_Text);
pragma Inline (Overstrike);
pragma Inline (Get_Insert_Position);
pragma Inline (Set_Insert_Position);
pragma Inline (Show_Insert_Position);
pragma Inline (Word_Start);
pragma Inline (Word_End);
pragma Inline (Next_Word);
pragma Inline (Previous_Word);
pragma Inline (Set_Wrap_Mode);
pragma Inline (Line_Start);
pragma Inline (Line_End);
pragma Inline (Count_Lines);
pragma Inline (Skip_Lines);
pragma Inline (Rewind_Lines);
pragma Inline (Get_Linenumber_Alignment);
pragma Inline (Set_Linenumber_Alignment);
pragma Inline (Get_Linenumber_Back_Color);
pragma Inline (Set_Linenumber_Back_Color);
pragma Inline (Get_Linenumber_Fore_Color);
pragma Inline (Set_Linenumber_Fore_Color);
pragma Inline (Get_Linenumber_Font);
pragma Inline (Set_Linenumber_Font);
pragma Inline (Get_Linenumber_Size);
pragma Inline (Set_Linenumber_Size);
pragma Inline (Get_Linenumber_Width);
pragma Inline (Set_Linenumber_Width);
pragma Inline (Move_Down);
pragma Inline (Move_Left);
pragma Inline (Move_Right);
pragma Inline (Move_Up);
pragma Inline (Scroll_To);
pragma Inline (Get_Scrollbar_Alignment);
pragma Inline (Set_Scrollbar_Alignment);
pragma Inline (Get_Scrollbar_Width);
pragma Inline (Set_Scrollbar_Width);
pragma Inline (Redisplay_Range);
pragma Inline (Draw);
pragma Inline (Handle);
end FLTK.Widgets.Groups.Text_Displays;
|
--//////////////////////////////////////////////////////////
-- //
-- // SFML - Simple and Fast Multimedia Library
-- // Copyright (C) 2007-2009 Laurent Gomila (laurent.gom@gmail.com)
-- //
-- // This software is provided 'as-is', without any express or implied warranty.
-- // In no event will the authors be held liable for any damages arising from the use of this software.
-- //
-- // Permission is granted to anyone to use this software for any purpose,
-- // including commercial applications, and to alter it and redistribute it freely,
-- // subject to the following restrictions:
-- //
-- // 1. The origin of this software must not be misrepresented;
-- // you must not claim that you wrote the original software.
-- // If you use this software in a product, an acknowledgment
-- // in the product documentation would be appreciated but is not required.
-- //
-- // 2. Altered source versions must be plainly marked as such,
-- // and must not be misrepresented as being the original software.
-- //
-- // 3. This notice may not be removed or altered from any source distribution.
-- //
--//////////////////////////////////////////////////////////
--//////////////////////////////////////////////////////////
--//////////////////////////////////////////////////////////
with Interfaces.C.Strings;
package body Sf.Graphics.RenderWindow is
use Interfaces.C.Strings;
--//////////////////////////////////////////////////////////
--/ Construct a new renderwindow
--/
--/ @param Mode Video mode to use
--/ @param Title Title of the window
--/ @param Style Window style
--/ @param Params Creation settings
--/
--//////////////////////////////////////////////////////////
function create
(mode : Sf.Window.VideoMode.sfVideoMode;
title : Standard.String;
style : Sf.Window.Window.sfWindowStyle :=
Sf.Window.Window.sfResize or Sf.Window.Window.sfClose;
settings : Sf.Window.Window.sfContextSettings := Sf.Window.Window.sfDefaultContextSettings)
return sfRenderWindow_Ptr
is
function Internal
(mode : Sf.Window.VideoMode.sfVideoMode;
title : chars_ptr;
style : Sf.Window.Window.sfWindowStyle;
settings : Sf.Window.Window.sfContextSettings)
return sfRenderWindow_Ptr;
pragma Import (C, Internal, "sfRenderWindow_create");
Temp : chars_ptr := New_String (Title);
R : sfRenderWindow_Ptr := Internal (mode, Temp, style, settings);
begin
Free (Temp);
return R;
end Create;
--//////////////////////////////////////////////////////////
--/ @brief Change the title of a render window
--/
--/ @param renderWindow Render window object
--/ @param title New title
--/
--//////////////////////////////////////////////////////////
procedure setTitle (renderWindow : sfRenderWindow_Ptr; title : Standard.String)
is
procedure Internal
(renderWindow : sfRenderWindow_Ptr;
Title : chars_ptr);
pragma Import (C, Internal, "sfRenderWindow_setTitle");
Temp : chars_ptr := New_String (Title);
begin
Internal (renderWindow, Temp);
Free (Temp);
end setTitle;
end Sf.Graphics.RenderWindow;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2010-2020, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Ada.Unchecked_Deallocation;
with Matreshka.Internals.Strings.Configuration;
package body Matreshka.Internals.Strings.Operations is
use Matreshka.Internals.Strings.Configuration;
use Matreshka.Internals.Unicode;
use Matreshka.Internals.Utf16;
procedure Free is
new Ada.Unchecked_Deallocation (Index_Map, Index_Map_Access);
------------
-- Append --
------------
procedure Append
(Self : in out not null Shared_String_Access;
Code : Matreshka.Internals.Unicode.Code_Point)
is
Next_Unused : Utf16_String_Index;
begin
-- Assigning of the "default" value to the variable and use of simple
-- operation in if statement helps to compiler to use conditional move
-- instruction instead of branch instruction.
Next_Unused := Self.Unused + 1;
if Code > 16#FFFF# then
Next_Unused := Self.Unused + 2;
end if;
if not Can_Be_Reused (Self, Next_Unused) then
declare
Old : Shared_String_Access := Self;
begin
Self := Allocate (Next_Unused);
Self.Value (Old.Value'Range) := Old.Value;
Self.Unused := Old.Unused;
Self.Length := Old.Length;
Dereference (Old);
end;
else
Free (Self.Index_Map);
end if;
Self.Length := Self.Length + 1;
Unchecked_Store (Self.Value, Self.Unused, Code);
String_Handler.Fill_Null_Terminator (Self);
end Append;
------------
-- Append --
------------
procedure Append
(Self : in out not null Shared_String_Access;
Item : Shared_String_Access)
is
Source : Shared_String_Access := Self;
Size : constant Utf16_String_Index := Source.Unused + Item.Unused;
begin
if Size = 0 then
if Self /= Shared_Empty'Access then
Dereference (Self);
Self := Shared_Empty'Access;
end if;
elsif Item.Unused = 0 then
null;
elsif Self.Unused = 0 then
Self := Item;
Reference (Self);
Dereference (Source);
else
if not Can_Be_Reused (Self, Size) then
Self := Allocate (Size);
end if;
Self.Value (Source.Unused .. Size - 1) :=
Item.Value (0 .. Item.Unused - 1);
Self.Unused := Size;
Self.Length := Source.Length + Item.Length;
Free (Self.Index_Map);
String_Handler.Fill_Null_Terminator (Self);
if Self /= Source then
Self.Value (0 .. Source.Unused - 1) :=
Source.Value (0 .. Source.Unused - 1);
Dereference (Source);
end if;
end if;
end Append;
----------------
-- Copy_Slice --
----------------
procedure Copy_Slice
(Self : in out not null Shared_String_Access;
Source : not null Shared_String_Access;
First : Matreshka.Internals.Utf16.Utf16_String_Index;
Size : Matreshka.Internals.Utf16.Utf16_String_Index;
Length : Natural)
is
pragma Assert (First < Source.Unused);
pragma Assert (First + Size <= Source.Unused);
pragma Assert (Utf16_String_Index (Length) in (Size + 1) / 2 .. Size);
begin
if Size = 0 then
if Self /= Shared_Empty'Access then
Dereference (Self);
Self := Shared_Empty'Access;
end if;
else
if not Can_Be_Reused (Self, Size) then
declare
Old : Shared_String_Access := Self;
begin
Self := Allocate (Size);
Dereference (Old);
end;
else
Free (Self.Index_Map);
end if;
Self.Value (0 .. Size - 1) :=
Source.Value (First .. First + Size - 1);
Self.Unused := Size;
Self.Length := Length;
String_Handler.Fill_Null_Terminator (Self);
end if;
end Copy_Slice;
-------------
-- Prepend --
-------------
procedure Prepend
(Target : in out not null Shared_String_Access;
Code : Matreshka.Internals.Unicode.Code_Point)
is
Source : Shared_String_Access := Target;
Position : Utf16_String_Index := 0;
Offset : Utf16_String_Index;
begin
if Source.Unused = 0 then
-- Source string is empty, allocate new shared string and save given
-- character into it. Length of the allocated shared string for any
-- one character is same on almost all platforms, so shared string is
-- allocated for longest possible character.
Target := Allocate (2);
Target.Unused := 0;
Target.Length := 1;
Unchecked_Store (Target.Value, Target.Unused, Code);
String_Handler.Fill_Null_Terminator (Target);
else
-- Assigning of the "default" value to the variable and use of simple
-- operation in if statement helps to compiler to use conditional
-- move instruction instead of branch instruction.
Offset := 1;
if Code > 16#FFFF# then
Offset := 2;
end if;
if not Can_Be_Reused (Source, Source.Unused + Offset) then
-- Allocate new shared string when shared source string can't be
-- reused.
Target := Allocate (Source.Unused + Offset);
end if;
-- Copy source data before store prepended character because source
-- string can be rewritten overwise.
Target.Value (Offset .. Offset + Source.Unused - 1) :=
Source.Value (0 .. Source.Unused - 1);
Unchecked_Store (Target.Value, Position, Code);
Target.Unused := Source.Unused + Offset;
Target.Length := Source.Length + 1;
Free (Target.Index_Map);
String_Handler.Fill_Null_Terminator (Target);
if Target /= Source then
-- Release shared source string when new shared string was
-- allocated for target.
Dereference (Source);
end if;
end if;
end Prepend;
-------------
-- Prepend --
-------------
procedure Prepend
(Target : in out not null Shared_String_Access;
Item : Shared_String_Access)
is
Source : Shared_String_Access := Target;
Size : constant Utf16_String_Index := Source.Unused + Item.Unused;
begin
if Item.Unused = 0 then
-- Prepended string is empty, nothing to be done.
null;
elsif Source.Unused = 0 then
-- Source string is empty, share data of prepended string.
Reference (Item);
Target := Item;
Dereference (Source);
else
if not Can_Be_Reused (Source, Size) then
-- Allocate new shared segment when source string can't be reused.
Target := Allocate (Size);
end if;
-- Copy data starting from the source string, because it can be
-- overwritten otherwise.
Target.Value (Item.Unused .. Item.Unused + Source.Unused - 1) :=
Source.Value (0 .. Source.Unused - 1);
Target.Value (0 .. Item.Unused - 1) :=
Item.Value (0 .. Item.Unused - 1);
Target.Unused := Size;
Target.Length := Source.Length + Item.Length;
Free (Target.Index_Map);
String_Handler.Fill_Null_Terminator (Target);
if Target /= Source then
-- Release shared source string when new shared string was
-- allocated for target.
Dereference (Source);
end if;
end if;
end Prepend;
-------------
-- Replace --
-------------
procedure Replace
(String : in out not null Shared_String_Access;
First : Matreshka.Internals.Utf16.Utf16_String_Index;
Size : Matreshka.Internals.Utf16.Utf16_String_Index;
Length : Natural;
By : not null Shared_String_Access)
is
pragma Assert (First < String.Unused);
pragma Assert (First + Size <= String.Unused);
pragma Assert (Utf16_String_Index (Length) in (Size + 1) / 2 .. Size);
Source : Shared_String_Access := String;
Destination : Shared_String_Access renames String;
New_Length : constant Natural := Source.Length - Length + By.Length;
New_Size : constant Matreshka.Internals.Utf16.Utf16_String_Index
:= Source.Unused - Size + By.Unused;
begin
if New_Size = 0 then
if Destination /= Shared_Empty'Access then
Dereference (Destination);
Destination := Shared_Empty'Access;
end if;
elsif By.Unused = New_Size then
Dereference (Source);
Destination := By;
Reference (Destination);
else
if not Can_Be_Reused (Source, New_Size) then
Destination := Allocate (New_Size);
else
Free (Destination.Index_Map);
Destination.Index_Map := null;
-- GNAT GPL 2014: Index_Map doesn't sets to null by Free.
end if;
Destination.Value (First + By.Unused .. New_Size - 1) :=
Source.Value (First + Size .. Source.Unused - 1);
if By.Length /= 0 then
Destination.Value (First .. First + By.Unused - 1) :=
By.Value (0 .. By.Unused - 1);
end if;
Destination.Unused := New_Size;
Destination.Length := New_Length;
String_Handler.Fill_Null_Terminator (Destination);
if Source /= Destination then
if First /= 0 then
Destination.Value (0 .. First - 1) :=
Source.Value (0 .. First - 1);
end if;
Dereference (Source);
end if;
end if;
end Replace;
-----------
-- Reset --
-----------
procedure Reset (Self : in out not null Shared_String_Access) is
begin
if Can_Be_Reused (Self, Self.Capacity) then
Free (Self.Index_Map);
Self.Unused := 0;
Self.Length := 0;
String_Handler.Fill_Null_Terminator (Self);
else
declare
Old : Shared_String_Access := Self;
begin
Self := Shared_Empty'Access;
Dereference (Old);
end;
end if;
end Reset;
-----------
-- Slice --
-----------
function Slice
(Source : not null Shared_String_Access;
First : Matreshka.Internals.Utf16.Utf16_String_Index;
Size : Matreshka.Internals.Utf16.Utf16_String_Index;
Length : Natural)
return not null Shared_String_Access
is
pragma Assert (Size = 0 or First < Source.Unused);
-- For convenience, it is allowied to get empty slice from any string;
-- otherwise First must be valid position of character.
pragma Assert (First + Size <= Source.Unused);
pragma Assert (Utf16_String_Index (Length) in (Size + 1) / 2 .. Size);
begin
if Size = 0 then
-- Requested slice is empty.
return Shared_Empty'Access;
elsif Size = Source.Unused then
-- Requested slice is whole string.
Reference (Source);
return Source;
else
return Destination : constant not null Shared_String_Access
:= Allocate (Size)
do
Destination.Value (0 .. Size - 1) :=
Source.Value (First .. First + Size - 1);
Destination.Unused := Size;
Destination.Length := Length;
String_Handler.Fill_Null_Terminator (Destination);
end return;
end if;
end Slice;
-----------
-- Slice --
-----------
procedure Slice
(Item : in out not null Shared_String_Access;
First : Matreshka.Internals.Utf16.Utf16_String_Index;
Size : Matreshka.Internals.Utf16.Utf16_String_Index;
Length : Natural)
is
pragma Assert (Size = 0 or First < Item.Unused);
-- For convenience, it is allowied to get empty slice from any string;
-- otherwise First must be valid position of character.
pragma Assert (First + Size <= Item.Unused);
pragma Assert (Utf16_String_Index (Length) in (Size + 1) / 2 .. Size);
Source : Shared_String_Access := Item;
Destination : Shared_String_Access renames Item;
begin
if Size = 0 then
-- Requested slice is empty.
Destination := Shared_Empty'Access;
Dereference (Source);
elsif Size = Source.Unused then
-- Requested slice is whole string.
null;
else
if not Can_Be_Reused (Source, Size) then
Destination := Allocate (Size);
end if;
Free (Destination.Index_Map);
Destination.Value (0 .. Size - 1) :=
Source.Value (First .. First + Size - 1);
Destination.Unused := Size;
Destination.Length := Length;
String_Handler.Fill_Null_Terminator (Destination);
if Source /= Destination then
Dereference (Source);
end if;
end if;
end Slice;
-------------------------
-- Unterminated_Append --
-------------------------
procedure Unterminated_Append
(Self : in out not null Shared_String_Access;
Code : Matreshka.Internals.Unicode.Code_Point)
is
Next_Unused : Utf16_String_Index;
begin
-- Assigning of the "default" value to the variable and use of simple
-- operation in if statement helps to compiler to use conditional move
-- instruction instead of branch instruction.
Next_Unused := Self.Unused + 1;
if Code > 16#FFFF# then
Next_Unused := Self.Unused + 2;
end if;
if not Can_Be_Reused (Self, Next_Unused) then
declare
Old : Shared_String_Access := Self;
begin
Self := Allocate (Next_Unused);
Self.Value (Old.Value'Range) := Old.Value;
Self.Unused := Old.Unused;
Self.Length := Old.Length;
Dereference (Old);
end;
else
Free (Self.Index_Map);
end if;
Self.Length := Self.Length + 1;
Unchecked_Store (Self.Value, Self.Unused, Code);
end Unterminated_Append;
end Matreshka.Internals.Strings.Operations;
|
with Ada.Text_Io;
package body Slots is
procedure Xaa is
begin
Ada.Text_Io.Put_Line("Xaa() called");
end;
procedure Xab is
begin
Ada.Text_Io.Put_Line("Xab() called");
end;
procedure Xac is
begin
Ada.Text_Io.Put_Line("Xac() called");
end;
end Slots;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Tools Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2015, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Asis.Statements;
with Properties.Tools;
package body Properties.Statements.For_Loop_Statement is
----------
-- Code --
----------
function Code
(Engine : access Engines.Contexts.Context;
Element : Asis.Expression;
Name : Engines.Text_Property) return League.Strings.Universal_String
is
Iter : constant Asis.Declaration :=
Asis.Statements.For_Loop_Parameter_Specification (Element);
List : constant Asis.Statement_List :=
Asis.Statements.Loop_Statements (Element);
Text : League.Strings.Universal_String;
Down : League.Strings.Universal_String;
begin
Text.Append ("for (");
Down := Engine.Text.Get_Property (Iter, Engines.Initialize);
Text.Append (Down);
Text.Append (";");
Down := Engine.Text.Get_Property (Iter, Engines.Condition);
Text.Append (Down);
Text.Append (";");
Down := Engine.Text.Get_Property (Iter, Engines.Code);
Text.Append (Down);
Text.Append ("){");
Down := Engine.Text.Get_Property
(List => List,
Name => Name,
Empty => League.Strings.Empty_Universal_String,
Sum => Properties.Tools.Join'Access);
Text.Append (Down);
Text.Append ("};");
return Text;
end Code;
end Properties.Statements.For_Loop_Statement;
|
package body impact.d3.collision.Algorithm
is
function to_AlgorithmConstructionInfo (dispatcher : access impact.d3.Dispatcher.item'Class; temp : in Integer) return AlgorithmConstructionInfo
is
pragma Unreferenced (temp);
Self : AlgorithmConstructionInfo;
begin
Self.m_dispatcher1 := dispatcher;
return Self;
end to_AlgorithmConstructionInfo;
procedure define (Self : in out Item; ci : in AlgorithmConstructionInfo)
is
begin
Self.m_dispatcher := ci.m_dispatcher1;
end define;
procedure destruct (Self : in out Item)
is
begin
null;
end destruct;
procedure set_m_dispatcher (Self : in out Item; To : access impact.d3.Dispatcher.item'Class)
is
begin
Self.m_dispatcher := To;
end set_m_dispatcher;
function get_m_dispatcher (Self : in Item) return access impact.d3.Dispatcher.item'Class
is
begin
return Self.m_dispatcher;
end get_m_dispatcher;
end impact.d3.collision.Algorithm;
|
-- { dg-options "-gnatws" }
package body test_prio_p is
protected body Protected_Queue_T is
entry Seize when True is begin null; end;
end Protected_Queue_T;
end test_prio_p;
|
package body Complejos is
function "+" (C1,C2 : Complejo) return Complejo is
begin
return (C1.Re+C2.Re,C1.Im+C2.Im);
end "+";
function Haz_Complejo (Re,Im : Float) return Complejo is
begin
return (Re,Im);
end Haz_Complejo;
function Imag (C : Complejo) return Float is
begin
return C.Im;
end Imag;
function Image (C : Complejo) return String is
begin
if C.Im>=0.0 then
return Float'Image(C.Re)&" + "&Float'Image(C.Im)&" J";
else
return Float'Image(C.Re)&" - "&Float'Image(abs C.Im)&" J";
end if;
end Image;
function Real (C : Complejo) return Float is
begin
return C.Re;
end Real;
end Complejos;
|
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
with Program.Lexical_Elements;
with Program.Elements.Expressions;
with Program.Elements.Use_Clauses;
with Program.Element_Visitors;
package Program.Nodes.Use_Clauses is
pragma Preelaborate;
type Use_Clause is
new Program.Nodes.Node and Program.Elements.Use_Clauses.Use_Clause
and Program.Elements.Use_Clauses.Use_Clause_Text
with private;
function Create
(Use_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
All_Token : Program.Lexical_Elements.Lexical_Element_Access;
Type_Token : Program.Lexical_Elements.Lexical_Element_Access;
Clause_Names : not null Program.Elements.Expressions
.Expression_Vector_Access;
Semicolon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access)
return Use_Clause;
type Implicit_Use_Clause is
new Program.Nodes.Node and Program.Elements.Use_Clauses.Use_Clause
with private;
function Create
(Clause_Names : not null Program.Elements.Expressions
.Expression_Vector_Access;
Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False;
Has_All : Boolean := False;
Has_Type : Boolean := False)
return Implicit_Use_Clause
with Pre =>
Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance;
private
type Base_Use_Clause is
abstract new Program.Nodes.Node
and Program.Elements.Use_Clauses.Use_Clause
with record
Clause_Names : not null Program.Elements.Expressions
.Expression_Vector_Access;
end record;
procedure Initialize (Self : in out Base_Use_Clause'Class);
overriding procedure Visit
(Self : not null access Base_Use_Clause;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class);
overriding function Clause_Names
(Self : Base_Use_Clause)
return not null Program.Elements.Expressions.Expression_Vector_Access;
overriding function Is_Use_Clause (Self : Base_Use_Clause) return Boolean;
overriding function Is_Clause (Self : Base_Use_Clause) return Boolean;
type Use_Clause is
new Base_Use_Clause and Program.Elements.Use_Clauses.Use_Clause_Text
with record
Use_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
All_Token : Program.Lexical_Elements.Lexical_Element_Access;
Type_Token : Program.Lexical_Elements.Lexical_Element_Access;
Semicolon_Token : not null Program.Lexical_Elements
.Lexical_Element_Access;
end record;
overriding function To_Use_Clause_Text
(Self : in out Use_Clause)
return Program.Elements.Use_Clauses.Use_Clause_Text_Access;
overriding function Use_Token
(Self : Use_Clause)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function All_Token
(Self : Use_Clause)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Type_Token
(Self : Use_Clause)
return Program.Lexical_Elements.Lexical_Element_Access;
overriding function Semicolon_Token
(Self : Use_Clause)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Has_All (Self : Use_Clause) return Boolean;
overriding function Has_Type (Self : Use_Clause) return Boolean;
type Implicit_Use_Clause is
new Base_Use_Clause
with record
Is_Part_Of_Implicit : Boolean;
Is_Part_Of_Inherited : Boolean;
Is_Part_Of_Instance : Boolean;
Has_All : Boolean;
Has_Type : Boolean;
end record;
overriding function To_Use_Clause_Text
(Self : in out Implicit_Use_Clause)
return Program.Elements.Use_Clauses.Use_Clause_Text_Access;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Use_Clause)
return Boolean;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Use_Clause)
return Boolean;
overriding function Is_Part_Of_Instance
(Self : Implicit_Use_Clause)
return Boolean;
overriding function Has_All (Self : Implicit_Use_Clause) return Boolean;
overriding function Has_Type (Self : Implicit_Use_Clause) return Boolean;
end Program.Nodes.Use_Clauses;
|
package GESTE_Fonts.FreeMonoOblique18pt7b is
Font : constant Bitmap_Font_Ref;
private
FreeMonoOblique18pt7bBitmaps : aliased constant Font_Bitmap := (
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#07#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#07#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#0E#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#08#, 16#00#,
16#00#, 16#08#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#78#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#70#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#F0#,
16#00#, 16#F0#, 16#F0#, 16#00#, 16#E0#, 16#E0#, 16#01#, 16#E1#, 16#E0#,
16#01#, 16#E1#, 16#E0#, 16#01#, 16#C1#, 16#C0#, 16#01#, 16#C1#, 16#C0#,
16#01#, 16#C1#, 16#C0#, 16#01#, 16#81#, 16#80#, 16#01#, 16#81#, 16#80#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#04#, 16#60#, 16#00#, 16#04#, 16#60#, 16#00#, 16#0C#, 16#40#,
16#00#, 16#0C#, 16#40#, 16#00#, 16#08#, 16#C0#, 16#00#, 16#08#, 16#C0#,
16#00#, 16#18#, 16#80#, 16#00#, 16#18#, 16#80#, 16#00#, 16#11#, 16#80#,
16#01#, 16#FF#, 16#F8#, 16#00#, 16#31#, 16#00#, 16#00#, 16#23#, 16#00#,
16#00#, 16#63#, 16#00#, 16#00#, 16#62#, 16#00#, 16#07#, 16#FF#, 16#E0#,
16#00#, 16#C6#, 16#00#, 16#00#, 16#C4#, 16#00#, 16#00#, 16#84#, 16#00#,
16#00#, 16#8C#, 16#00#, 16#01#, 16#88#, 16#00#, 16#01#, 16#88#, 16#00#,
16#01#, 16#18#, 16#00#, 16#01#, 16#18#, 16#00#, 16#03#, 16#10#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#03#, 16#00#,
16#00#, 16#03#, 16#00#, 16#00#, 16#0F#, 16#D0#, 16#00#, 16#30#, 16#70#,
16#00#, 16#60#, 16#30#, 16#00#, 16#C0#, 16#30#, 16#00#, 16#C0#, 16#00#,
16#00#, 16#80#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#E0#, 16#00#,
16#00#, 16#3C#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#C0#,
16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#60#, 16#02#, 16#00#, 16#40#,
16#06#, 16#00#, 16#40#, 16#06#, 16#00#, 16#80#, 16#07#, 16#83#, 16#00#,
16#04#, 16#FC#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#20#, 16#00#,
16#00#, 16#20#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#,
16#00#, 16#63#, 16#00#, 16#00#, 16#C1#, 16#00#, 16#00#, 16#81#, 16#00#,
16#00#, 16#81#, 16#00#, 16#00#, 16#83#, 16#00#, 16#00#, 16#C6#, 16#00#,
16#00#, 16#78#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#03#, 16#C0#,
16#00#, 16#3E#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#07#, 16#00#, 16#00#,
16#00#, 16#0F#, 16#00#, 16#00#, 16#10#, 16#80#, 16#00#, 16#20#, 16#C0#,
16#00#, 16#60#, 16#C0#, 16#00#, 16#40#, 16#C0#, 16#00#, 16#60#, 16#80#,
16#00#, 16#21#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#31#, 16#80#,
16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#40#, 16#00#,
16#00#, 16#40#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#20#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#03#, 16#B0#, 16#C0#,
16#02#, 16#19#, 16#80#, 16#06#, 16#19#, 16#00#, 16#04#, 16#0B#, 16#00#,
16#04#, 16#0E#, 16#00#, 16#04#, 16#0C#, 16#00#, 16#06#, 16#1E#, 16#00#,
16#03#, 16#E7#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#07#, 16#80#, 16#00#, 16#07#, 16#80#, 16#00#, 16#07#, 16#00#,
16#00#, 16#0F#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#0E#, 16#00#,
16#00#, 16#0E#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#10#,
16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#C0#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#01#, 16#80#, 16#00#, 16#03#, 16#80#,
16#00#, 16#03#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#04#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#20#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#60#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#01#, 16#80#, 16#00#, 16#01#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#,
16#06#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#02#, 16#00#, 16#00#, 16#06#, 16#30#, 16#01#, 16#C7#, 16#F0#,
16#00#, 16#3F#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#1A#, 16#00#,
16#00#, 16#33#, 16#00#, 16#00#, 16#61#, 16#00#, 16#00#, 16#C1#, 16#80#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#07#, 16#FF#, 16#F8#, 16#00#, 16#08#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#20#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#,
16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#01#, 16#C0#, 16#00#,
16#03#, 16#C0#, 16#00#, 16#03#, 16#80#, 16#00#, 16#07#, 16#00#, 16#00#,
16#06#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#F8#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#38#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#F8#, 16#00#,
16#00#, 16#F8#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0C#,
16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#30#,
16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#C0#,
16#00#, 16#01#, 16#80#, 16#00#, 16#01#, 16#00#, 16#00#, 16#03#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#01#, 16#80#, 16#00#, 16#01#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#,
16#06#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#,
16#08#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#07#, 16#80#, 16#00#, 16#18#, 16#60#, 16#00#, 16#20#, 16#20#,
16#00#, 16#40#, 16#30#, 16#00#, 16#C0#, 16#30#, 16#00#, 16#80#, 16#30#,
16#01#, 16#80#, 16#30#, 16#01#, 16#00#, 16#30#, 16#01#, 16#00#, 16#30#,
16#03#, 16#00#, 16#30#, 16#03#, 16#00#, 16#20#, 16#02#, 16#00#, 16#20#,
16#02#, 16#00#, 16#60#, 16#02#, 16#00#, 16#60#, 16#06#, 16#00#, 16#40#,
16#06#, 16#00#, 16#C0#, 16#02#, 16#00#, 16#80#, 16#02#, 16#01#, 16#80#,
16#03#, 16#03#, 16#00#, 16#01#, 16#86#, 16#00#, 16#00#, 16#F8#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#,
16#00#, 16#0E#, 16#00#, 16#00#, 16#1A#, 16#00#, 16#00#, 16#72#, 16#00#,
16#00#, 16#E6#, 16#00#, 16#00#, 16#86#, 16#00#, 16#00#, 16#04#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#30#, 16#00#, 16#0F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#30#, 16#E0#,
16#00#, 16#40#, 16#20#, 16#00#, 16#80#, 16#30#, 16#01#, 16#80#, 16#10#,
16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#20#,
16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#80#, 16#00#, 16#03#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#70#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#01#, 16#80#, 16#00#,
16#03#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#80#, 16#18#, 16#00#, 16#80#,
16#1F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#0F#, 16#C0#, 16#00#, 16#70#, 16#60#, 16#00#, 16#C0#, 16#30#,
16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#10#,
16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#C0#,
16#00#, 16#1F#, 16#00#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#C0#,
16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#60#,
16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#C0#,
16#0C#, 16#01#, 16#80#, 16#06#, 16#06#, 16#00#, 16#01#, 16#F8#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#,
16#00#, 16#01#, 16#60#, 16#00#, 16#02#, 16#60#, 16#00#, 16#06#, 16#40#,
16#00#, 16#04#, 16#40#, 16#00#, 16#08#, 16#C0#, 16#00#, 16#10#, 16#C0#,
16#00#, 16#30#, 16#C0#, 16#00#, 16#60#, 16#80#, 16#00#, 16#40#, 16#80#,
16#00#, 16#81#, 16#80#, 16#01#, 16#81#, 16#80#, 16#03#, 16#01#, 16#00#,
16#06#, 16#01#, 16#00#, 16#07#, 16#FF#, 16#C0#, 16#00#, 16#03#, 16#00#,
16#00#, 16#03#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#02#, 16#00#, 16#00#, 16#3F#, 16#80#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#F0#, 16#00#, 16#60#, 16#00#,
16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#40#, 16#00#,
16#00#, 16#40#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#DF#, 16#80#,
16#00#, 16#E0#, 16#C0#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#60#,
16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#20#,
16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#C0#,
16#0C#, 16#00#, 16#80#, 16#0C#, 16#01#, 16#00#, 16#07#, 16#06#, 16#00#,
16#01#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#FC#, 16#00#, 16#03#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#40#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#80#, 16#00#,
16#01#, 16#8F#, 16#80#, 16#01#, 16#30#, 16#C0#, 16#01#, 16#60#, 16#60#,
16#01#, 16#C0#, 16#20#, 16#03#, 16#80#, 16#20#, 16#03#, 16#00#, 16#20#,
16#03#, 16#00#, 16#20#, 16#01#, 16#00#, 16#60#, 16#01#, 16#00#, 16#40#,
16#01#, 16#80#, 16#80#, 16#00#, 16#C3#, 16#00#, 16#00#, 16#7C#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#F8#,
16#00#, 16#80#, 16#18#, 16#00#, 16#80#, 16#10#, 16#00#, 16#00#, 16#30#,
16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#40#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#80#, 16#00#, 16#01#, 16#80#,
16#00#, 16#01#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#08#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#18#, 16#60#,
16#00#, 16#60#, 16#30#, 16#00#, 16#40#, 16#30#, 16#00#, 16#80#, 16#10#,
16#00#, 16#80#, 16#10#, 16#00#, 16#80#, 16#30#, 16#00#, 16#80#, 16#20#,
16#00#, 16#C0#, 16#40#, 16#00#, 16#61#, 16#80#, 16#00#, 16#3E#, 16#00#,
16#00#, 16#C1#, 16#80#, 16#01#, 16#00#, 16#C0#, 16#02#, 16#00#, 16#40#,
16#06#, 16#00#, 16#40#, 16#06#, 16#00#, 16#40#, 16#04#, 16#00#, 16#C0#,
16#06#, 16#00#, 16#80#, 16#06#, 16#01#, 16#00#, 16#03#, 16#06#, 16#00#,
16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#07#, 16#C0#, 16#00#, 16#18#, 16#60#, 16#00#, 16#20#, 16#30#,
16#00#, 16#60#, 16#10#, 16#00#, 16#C0#, 16#10#, 16#00#, 16#80#, 16#18#,
16#00#, 16#80#, 16#18#, 16#00#, 16#80#, 16#38#, 16#00#, 16#80#, 16#70#,
16#00#, 16#C0#, 16#D0#, 16#00#, 16#61#, 16#90#, 16#00#, 16#3E#, 16#30#,
16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#40#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#01#, 16#80#, 16#00#, 16#03#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#18#, 16#00#, 16#07#, 16#E0#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#,
16#00#, 16#1F#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#1E#, 16#00#,
16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#38#, 16#00#, 16#00#, 16#78#, 16#00#, 16#00#, 16#F8#, 16#00#,
16#00#, 16#F8#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#3E#, 16#00#,
16#00#, 16#3E#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#3C#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F8#, 16#00#,
16#00#, 16#F0#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#01#, 16#C0#, 16#00#,
16#03#, 16#C0#, 16#00#, 16#03#, 16#80#, 16#00#, 16#07#, 16#00#, 16#00#,
16#06#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#E0#,
16#00#, 16#03#, 16#80#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#38#, 16#00#,
16#00#, 16#E0#, 16#00#, 16#03#, 16#80#, 16#00#, 16#07#, 16#00#, 16#00#,
16#01#, 16#C0#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#38#, 16#00#,
16#00#, 16#1C#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#01#, 16#C0#,
16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#1F#, 16#FF#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#,
16#00#, 16#70#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#0E#, 16#00#,
16#00#, 16#07#, 16#00#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#70#,
16#00#, 16#00#, 16#70#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#07#, 16#00#,
16#00#, 16#1C#, 16#00#, 16#00#, 16#70#, 16#00#, 16#01#, 16#C0#, 16#00#,
16#07#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#70#, 16#60#,
16#00#, 16#C0#, 16#30#, 16#00#, 16#C0#, 16#10#, 16#00#, 16#80#, 16#10#,
16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#60#,
16#00#, 16#01#, 16#C0#, 16#00#, 16#07#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#,
16#00#, 16#F8#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#70#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#,
16#00#, 16#18#, 16#60#, 16#00#, 16#20#, 16#20#, 16#00#, 16#40#, 16#30#,
16#00#, 16#80#, 16#30#, 16#01#, 16#80#, 16#20#, 16#01#, 16#00#, 16#20#,
16#01#, 16#01#, 16#E0#, 16#03#, 16#06#, 16#60#, 16#03#, 16#08#, 16#60#,
16#02#, 16#10#, 16#40#, 16#02#, 16#10#, 16#40#, 16#06#, 16#30#, 16#40#,
16#06#, 16#30#, 16#C0#, 16#06#, 16#18#, 16#C0#, 16#04#, 16#0F#, 16#C0#,
16#04#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#,
16#06#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#03#, 16#03#, 16#00#,
16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#00#,
16#00#, 16#0D#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#19#, 16#00#,
16#00#, 16#11#, 16#00#, 16#00#, 16#21#, 16#80#, 16#00#, 16#61#, 16#80#,
16#00#, 16#41#, 16#80#, 16#00#, 16#C0#, 16#80#, 16#00#, 16#80#, 16#80#,
16#01#, 16#80#, 16#80#, 16#01#, 16#00#, 16#C0#, 16#03#, 16#FF#, 16#C0#,
16#02#, 16#00#, 16#C0#, 16#04#, 16#00#, 16#40#, 16#04#, 16#00#, 16#40#,
16#08#, 16#00#, 16#40#, 16#18#, 16#00#, 16#60#, 16#10#, 16#00#, 16#60#,
16#FF#, 16#03#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#C0#, 16#00#, 16#C0#, 16#30#,
16#00#, 16#80#, 16#10#, 16#00#, 16#80#, 16#18#, 16#00#, 16#80#, 16#18#,
16#01#, 16#80#, 16#10#, 16#01#, 16#80#, 16#10#, 16#01#, 16#00#, 16#20#,
16#01#, 16#00#, 16#C0#, 16#01#, 16#FF#, 16#80#, 16#03#, 16#00#, 16#E0#,
16#03#, 16#00#, 16#30#, 16#02#, 16#00#, 16#30#, 16#02#, 16#00#, 16#10#,
16#02#, 16#00#, 16#10#, 16#06#, 16#00#, 16#30#, 16#06#, 16#00#, 16#20#,
16#04#, 16#00#, 16#60#, 16#04#, 16#00#, 16#80#, 16#3F#, 16#FF#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#0F#, 16#C4#, 16#00#, 16#30#, 16#74#, 16#00#, 16#40#, 16#1C#,
16#01#, 16#80#, 16#0C#, 16#01#, 16#00#, 16#08#, 16#02#, 16#00#, 16#08#,
16#06#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#,
16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#,
16#08#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#,
16#0C#, 16#00#, 16#00#, 16#04#, 16#00#, 16#30#, 16#06#, 16#00#, 16#60#,
16#03#, 16#83#, 16#80#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#80#,
16#01#, 16#80#, 16#E0#, 16#01#, 16#80#, 16#20#, 16#01#, 16#00#, 16#30#,
16#01#, 16#00#, 16#10#, 16#01#, 16#00#, 16#18#, 16#03#, 16#00#, 16#18#,
16#03#, 16#00#, 16#18#, 16#02#, 16#00#, 16#18#, 16#02#, 16#00#, 16#10#,
16#02#, 16#00#, 16#10#, 16#06#, 16#00#, 16#10#, 16#06#, 16#00#, 16#30#,
16#04#, 16#00#, 16#20#, 16#04#, 16#00#, 16#60#, 16#04#, 16#00#, 16#40#,
16#0C#, 16#00#, 16#80#, 16#0C#, 16#01#, 16#00#, 16#0C#, 16#06#, 16#00#,
16#3F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#FC#, 16#00#, 16#C0#, 16#08#,
16#00#, 16#80#, 16#08#, 16#00#, 16#80#, 16#18#, 16#00#, 16#80#, 16#18#,
16#01#, 16#80#, 16#00#, 16#01#, 16#80#, 16#00#, 16#01#, 16#06#, 16#00#,
16#01#, 16#06#, 16#00#, 16#01#, 16#FE#, 16#00#, 16#03#, 16#04#, 16#00#,
16#03#, 16#04#, 16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#,
16#02#, 16#00#, 16#20#, 16#06#, 16#00#, 16#20#, 16#06#, 16#00#, 16#20#,
16#04#, 16#00#, 16#60#, 16#04#, 16#00#, 16#60#, 16#3F#, 16#FF#, 16#C0#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#03#, 16#FF#, 16#FC#, 16#00#, 16#C0#, 16#04#, 16#00#, 16#80#, 16#0C#,
16#00#, 16#80#, 16#0C#, 16#00#, 16#80#, 16#08#, 16#01#, 16#80#, 16#00#,
16#01#, 16#80#, 16#00#, 16#01#, 16#06#, 16#00#, 16#01#, 16#06#, 16#00#,
16#01#, 16#FE#, 16#00#, 16#03#, 16#04#, 16#00#, 16#03#, 16#04#, 16#00#,
16#02#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#,
16#06#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#,
16#04#, 16#00#, 16#00#, 16#3F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E4#,
16#00#, 16#30#, 16#3C#, 16#00#, 16#40#, 16#1C#, 16#01#, 16#80#, 16#0C#,
16#01#, 16#00#, 16#08#, 16#02#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#,
16#04#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#,
16#0C#, 16#00#, 16#00#, 16#08#, 16#07#, 16#F8#, 16#08#, 16#00#, 16#30#,
16#08#, 16#00#, 16#30#, 16#08#, 16#00#, 16#20#, 16#0C#, 16#00#, 16#20#,
16#04#, 16#00#, 16#60#, 16#06#, 16#00#, 16#60#, 16#03#, 16#81#, 16#E0#,
16#00#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#7E#, 16#00#, 16#C0#, 16#18#,
16#00#, 16#80#, 16#10#, 16#00#, 16#80#, 16#10#, 16#00#, 16#80#, 16#30#,
16#01#, 16#80#, 16#30#, 16#01#, 16#80#, 16#30#, 16#01#, 16#00#, 16#20#,
16#01#, 16#00#, 16#20#, 16#01#, 16#FF#, 16#E0#, 16#03#, 16#00#, 16#60#,
16#03#, 16#00#, 16#60#, 16#02#, 16#00#, 16#40#, 16#02#, 16#00#, 16#40#,
16#02#, 16#00#, 16#C0#, 16#06#, 16#00#, 16#C0#, 16#06#, 16#00#, 16#C0#,
16#04#, 16#00#, 16#80#, 16#04#, 16#00#, 16#80#, 16#3F#, 16#87#, 16#E0#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#FF#, 16#F8#, 16#00#, 16#02#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#30#, 16#00#, 16#0F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#,
16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#30#,
16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#60#,
16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#40#,
16#00#, 16#00#, 16#40#, 16#04#, 16#00#, 16#C0#, 16#04#, 16#00#, 16#C0#,
16#0C#, 16#00#, 16#80#, 16#0C#, 16#00#, 16#80#, 16#08#, 16#01#, 16#80#,
16#08#, 16#01#, 16#00#, 16#0C#, 16#02#, 16#00#, 16#07#, 16#0C#, 16#00#,
16#01#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#03#, 16#F8#, 16#7E#, 16#00#, 16#C0#, 16#18#,
16#00#, 16#80#, 16#30#, 16#00#, 16#80#, 16#C0#, 16#00#, 16#81#, 16#80#,
16#01#, 16#83#, 16#00#, 16#01#, 16#86#, 16#00#, 16#01#, 16#18#, 16#00#,
16#01#, 16#30#, 16#00#, 16#01#, 16#7C#, 16#00#, 16#03#, 16#C6#, 16#00#,
16#03#, 16#02#, 16#00#, 16#02#, 16#03#, 16#00#, 16#02#, 16#01#, 16#00#,
16#02#, 16#01#, 16#80#, 16#06#, 16#01#, 16#80#, 16#06#, 16#01#, 16#80#,
16#04#, 16#00#, 16#80#, 16#04#, 16#00#, 16#80#, 16#3F#, 16#80#, 16#F0#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#03#, 16#FF#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#20#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#60#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#,
16#00#, 16#40#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#00#, 16#80#, 16#10#, 16#00#, 16#80#, 16#10#,
16#00#, 16#80#, 16#30#, 16#01#, 16#80#, 16#30#, 16#01#, 16#80#, 16#20#,
16#01#, 16#00#, 16#20#, 16#3F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#0F#,
16#03#, 16#C0#, 16#14#, 16#03#, 16#C0#, 16#14#, 16#02#, 16#40#, 16#24#,
16#02#, 16#40#, 16#6C#, 16#06#, 16#60#, 16#4C#, 16#06#, 16#60#, 16#88#,
16#06#, 16#21#, 16#88#, 16#04#, 16#21#, 16#08#, 16#04#, 16#33#, 16#18#,
16#0C#, 16#36#, 16#18#, 16#0C#, 16#34#, 16#10#, 16#0C#, 16#1C#, 16#10#,
16#08#, 16#18#, 16#10#, 16#08#, 16#00#, 16#30#, 16#08#, 16#00#, 16#30#,
16#18#, 16#00#, 16#20#, 16#18#, 16#00#, 16#20#, 16#10#, 16#00#, 16#20#,
16#7F#, 16#03#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#7F#, 16#01#, 16#C0#, 16#08#,
16#01#, 16#E0#, 16#08#, 16#01#, 16#E0#, 16#18#, 16#01#, 16#20#, 16#18#,
16#01#, 16#30#, 16#18#, 16#03#, 16#30#, 16#10#, 16#03#, 16#18#, 16#10#,
16#03#, 16#18#, 16#30#, 16#02#, 16#08#, 16#30#, 16#02#, 16#0C#, 16#20#,
16#06#, 16#0C#, 16#20#, 16#06#, 16#04#, 16#20#, 16#06#, 16#06#, 16#60#,
16#04#, 16#02#, 16#60#, 16#04#, 16#03#, 16#40#, 16#0C#, 16#03#, 16#40#,
16#0C#, 16#01#, 16#40#, 16#08#, 16#01#, 16#C0#, 16#3F#, 16#80#, 16#C0#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#0F#, 16#80#, 16#00#, 16#30#, 16#60#, 16#00#, 16#C0#, 16#30#,
16#01#, 16#80#, 16#18#, 16#03#, 16#00#, 16#18#, 16#02#, 16#00#, 16#08#,
16#06#, 16#00#, 16#0C#, 16#04#, 16#00#, 16#0C#, 16#0C#, 16#00#, 16#08#,
16#08#, 16#00#, 16#08#, 16#08#, 16#00#, 16#08#, 16#08#, 16#00#, 16#18#,
16#08#, 16#00#, 16#10#, 16#08#, 16#00#, 16#10#, 16#08#, 16#00#, 16#20#,
16#0C#, 16#00#, 16#60#, 16#0C#, 16#00#, 16#C0#, 16#06#, 16#01#, 16#80#,
16#03#, 16#06#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#C0#,
16#00#, 16#C0#, 16#60#, 16#00#, 16#80#, 16#30#, 16#00#, 16#80#, 16#10#,
16#00#, 16#80#, 16#18#, 16#01#, 16#80#, 16#10#, 16#01#, 16#80#, 16#10#,
16#01#, 16#00#, 16#20#, 16#01#, 16#00#, 16#60#, 16#01#, 16#01#, 16#80#,
16#03#, 16#FE#, 16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#,
16#02#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#,
16#06#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#,
16#3F#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#30#, 16#60#,
16#00#, 16#C0#, 16#30#, 16#01#, 16#80#, 16#18#, 16#03#, 16#00#, 16#18#,
16#02#, 16#00#, 16#08#, 16#06#, 16#00#, 16#0C#, 16#04#, 16#00#, 16#0C#,
16#0C#, 16#00#, 16#0C#, 16#08#, 16#00#, 16#08#, 16#08#, 16#00#, 16#08#,
16#08#, 16#00#, 16#18#, 16#08#, 16#00#, 16#18#, 16#08#, 16#00#, 16#10#,
16#08#, 16#00#, 16#20#, 16#0C#, 16#00#, 16#60#, 16#0C#, 16#00#, 16#C0#,
16#06#, 16#01#, 16#80#, 16#03#, 16#06#, 16#00#, 16#01#, 16#F8#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#03#, 16#80#, 16#00#, 16#07#, 16#F8#, 16#60#,
16#0E#, 16#07#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#03#, 16#FF#, 16#C0#, 16#00#, 16#C0#, 16#60#, 16#00#, 16#80#, 16#30#,
16#00#, 16#80#, 16#10#, 16#00#, 16#80#, 16#18#, 16#01#, 16#80#, 16#10#,
16#01#, 16#80#, 16#10#, 16#01#, 16#00#, 16#30#, 16#01#, 16#00#, 16#60#,
16#01#, 16#01#, 16#80#, 16#03#, 16#FE#, 16#00#, 16#03#, 16#06#, 16#00#,
16#02#, 16#03#, 16#00#, 16#02#, 16#01#, 16#80#, 16#02#, 16#00#, 16#80#,
16#06#, 16#00#, 16#C0#, 16#06#, 16#00#, 16#C0#, 16#04#, 16#00#, 16#40#,
16#04#, 16#00#, 16#60#, 16#3F#, 16#80#, 16#78#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C8#,
16#00#, 16#30#, 16#78#, 16#00#, 16#40#, 16#38#, 16#00#, 16#80#, 16#10#,
16#01#, 16#80#, 16#10#, 16#01#, 16#80#, 16#10#, 16#01#, 16#80#, 16#00#,
16#01#, 16#80#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#7C#, 16#00#,
16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#60#,
16#00#, 16#00#, 16#60#, 16#0C#, 16#00#, 16#60#, 16#0C#, 16#00#, 16#60#,
16#0C#, 16#00#, 16#C0#, 16#0E#, 16#01#, 16#80#, 16#0B#, 16#03#, 16#00#,
16#19#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FE#, 16#03#, 16#02#, 16#04#,
16#03#, 16#06#, 16#04#, 16#02#, 16#06#, 16#04#, 16#02#, 16#04#, 16#0C#,
16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#,
16#00#, 16#08#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#, 16#07#, 16#FF#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#07#, 16#F8#, 16#7F#, 16#01#, 16#80#, 16#08#, 16#01#, 16#80#, 16#08#,
16#01#, 16#00#, 16#18#, 16#01#, 16#00#, 16#18#, 16#01#, 16#00#, 16#10#,
16#03#, 16#00#, 16#10#, 16#02#, 16#00#, 16#10#, 16#02#, 16#00#, 16#30#,
16#02#, 16#00#, 16#30#, 16#02#, 16#00#, 16#20#, 16#04#, 16#00#, 16#20#,
16#04#, 16#00#, 16#20#, 16#04#, 16#00#, 16#60#, 16#04#, 16#00#, 16#60#,
16#06#, 16#00#, 16#40#, 16#06#, 16#00#, 16#80#, 16#07#, 16#01#, 16#80#,
16#03#, 16#86#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#3F#,
16#03#, 16#00#, 16#04#, 16#03#, 16#00#, 16#0C#, 16#01#, 16#00#, 16#08#,
16#01#, 16#00#, 16#10#, 16#01#, 16#80#, 16#30#, 16#01#, 16#80#, 16#20#,
16#01#, 16#80#, 16#60#, 16#01#, 16#80#, 16#40#, 16#00#, 16#80#, 16#C0#,
16#00#, 16#81#, 16#80#, 16#00#, 16#81#, 16#00#, 16#00#, 16#C3#, 16#00#,
16#00#, 16#C2#, 16#00#, 16#00#, 16#C6#, 16#00#, 16#00#, 16#44#, 16#00#,
16#00#, 16#48#, 16#00#, 16#00#, 16#58#, 16#00#, 16#00#, 16#70#, 16#00#,
16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#07#, 16#F0#, 16#7F#, 16#02#, 16#00#, 16#06#,
16#02#, 16#00#, 16#04#, 16#02#, 16#00#, 16#04#, 16#02#, 16#04#, 16#0C#,
16#02#, 16#0E#, 16#08#, 16#02#, 16#0A#, 16#08#, 16#06#, 16#1A#, 16#18#,
16#06#, 16#12#, 16#10#, 16#06#, 16#32#, 16#10#, 16#06#, 16#22#, 16#30#,
16#06#, 16#62#, 16#20#, 16#04#, 16#42#, 16#20#, 16#04#, 16#C2#, 16#60#,
16#04#, 16#83#, 16#40#, 16#05#, 16#83#, 16#40#, 16#05#, 16#03#, 16#C0#,
16#0F#, 16#03#, 16#80#, 16#0E#, 16#03#, 16#80#, 16#0E#, 16#03#, 16#80#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#03#, 16#F0#, 16#7E#, 16#01#, 16#80#, 16#18#, 16#00#, 16#C0#, 16#30#,
16#00#, 16#C0#, 16#60#, 16#00#, 16#60#, 16#40#, 16#00#, 16#60#, 16#80#,
16#00#, 16#31#, 16#80#, 16#00#, 16#13#, 16#00#, 16#00#, 16#1E#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#34#, 16#00#,
16#00#, 16#66#, 16#00#, 16#00#, 16#C2#, 16#00#, 16#01#, 16#83#, 16#00#,
16#03#, 16#01#, 16#80#, 16#02#, 16#01#, 16#80#, 16#04#, 16#00#, 16#C0#,
16#08#, 16#00#, 16#C0#, 16#3F#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F0#, 16#3E#,
16#00#, 16#80#, 16#18#, 16#00#, 16#C0#, 16#30#, 16#00#, 16#40#, 16#20#,
16#00#, 16#60#, 16#60#, 16#00#, 16#60#, 16#C0#, 16#00#, 16#31#, 16#80#,
16#00#, 16#33#, 16#00#, 16#00#, 16#12#, 16#00#, 16#00#, 16#1C#, 16#00#,
16#00#, 16#1C#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#,
16#07#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#F8#, 16#00#, 16#80#, 16#10#,
16#00#, 16#80#, 16#20#, 16#00#, 16#80#, 16#60#, 16#00#, 16#80#, 16#C0#,
16#01#, 16#81#, 16#80#, 16#00#, 16#03#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#C0#, 16#60#,
16#01#, 16#80#, 16#60#, 16#03#, 16#00#, 16#40#, 16#02#, 16#00#, 16#40#,
16#04#, 16#00#, 16#40#, 16#0C#, 16#00#, 16#C0#, 16#0F#, 16#FF#, 16#C0#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#F0#,
16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#04#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#20#, 16#00#,
16#00#, 16#60#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#7E#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#40#, 16#00#,
16#00#, 16#60#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#20#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#04#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#03#, 16#00#,
16#00#, 16#03#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#01#, 16#00#,
16#00#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#3F#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#,
16#00#, 16#08#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#20#, 16#00#,
16#00#, 16#20#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#60#, 16#00#,
16#07#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#07#, 16#00#, 16#00#, 16#0D#, 16#80#, 16#00#, 16#19#, 16#80#,
16#00#, 16#30#, 16#C0#, 16#00#, 16#60#, 16#40#, 16#00#, 16#C0#, 16#60#,
16#01#, 16#80#, 16#30#, 16#01#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#,
16#01#, 16#C0#, 16#C0#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#40#,
16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#40#, 16#00#, 16#FF#, 16#C0#,
16#03#, 16#81#, 16#C0#, 16#06#, 16#00#, 16#80#, 16#0C#, 16#00#, 16#80#,
16#08#, 16#00#, 16#80#, 16#18#, 16#01#, 16#80#, 16#18#, 16#07#, 16#80#,
16#0C#, 16#1D#, 16#80#, 16#07#, 16#E1#, 16#E0#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#07#, 16#80#, 16#00#, 16#00#, 16#80#, 16#00#,
16#01#, 16#80#, 16#00#, 16#01#, 16#80#, 16#00#, 16#01#, 16#80#, 16#00#,
16#01#, 16#00#, 16#00#, 16#01#, 16#0F#, 16#80#, 16#03#, 16#30#, 16#E0#,
16#03#, 16#40#, 16#30#, 16#03#, 16#80#, 16#30#, 16#03#, 16#00#, 16#18#,
16#02#, 16#00#, 16#18#, 16#06#, 16#00#, 16#18#, 16#06#, 16#00#, 16#18#,
16#04#, 16#00#, 16#10#, 16#04#, 16#00#, 16#30#, 16#06#, 16#00#, 16#20#,
16#0E#, 16#00#, 16#40#, 16#0F#, 16#00#, 16#80#, 16#09#, 16#83#, 16#00#,
16#78#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#1F#, 16#88#, 16#00#, 16#60#, 16#F8#, 16#00#, 16#80#, 16#38#,
16#01#, 16#00#, 16#10#, 16#02#, 16#00#, 16#10#, 16#06#, 16#00#, 16#00#,
16#04#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#,
16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#04#, 16#00#, 16#20#,
16#06#, 16#00#, 16#60#, 16#03#, 16#03#, 16#80#, 16#00#, 16#FC#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3C#,
16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#08#,
16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#18#, 16#00#, 16#3F#, 16#18#,
16#00#, 16#C1#, 16#90#, 16#01#, 16#80#, 16#D0#, 16#02#, 16#00#, 16#70#,
16#06#, 16#00#, 16#30#, 16#04#, 16#00#, 16#30#, 16#0C#, 16#00#, 16#20#,
16#08#, 16#00#, 16#20#, 16#08#, 16#00#, 16#60#, 16#08#, 16#00#, 16#60#,
16#08#, 16#00#, 16#E0#, 16#0C#, 16#00#, 16#C0#, 16#0C#, 16#03#, 16#40#,
16#07#, 16#06#, 16#C0#, 16#01#, 16#F8#, 16#F0#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#C1#, 16#C0#,
16#01#, 16#80#, 16#60#, 16#03#, 16#00#, 16#20#, 16#06#, 16#00#, 16#30#,
16#0C#, 16#00#, 16#30#, 16#0C#, 16#00#, 16#10#, 16#0F#, 16#FF#, 16#F0#,
16#08#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#,
16#0C#, 16#00#, 16#00#, 16#06#, 16#00#, 16#60#, 16#03#, 16#03#, 16#80#,
16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#01#, 16#FE#, 16#00#, 16#06#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#18#, 16#00#,
16#01#, 16#FF#, 16#F0#, 16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#20#, 16#00#,
16#00#, 16#20#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#40#, 16#00#,
16#00#, 16#40#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#0F#, 16#FF#, 16#80#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#3E#,
16#00#, 16#C1#, 16#B0#, 16#01#, 16#00#, 16#E0#, 16#02#, 16#00#, 16#60#,
16#04#, 16#00#, 16#60#, 16#0C#, 16#00#, 16#60#, 16#08#, 16#00#, 16#60#,
16#08#, 16#00#, 16#40#, 16#08#, 16#00#, 16#40#, 16#08#, 16#00#, 16#C0#,
16#08#, 16#00#, 16#C0#, 16#0C#, 16#01#, 16#C0#, 16#04#, 16#02#, 16#80#,
16#07#, 16#0C#, 16#80#, 16#01#, 16#F1#, 16#80#, 16#00#, 16#01#, 16#80#,
16#00#, 16#01#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#80#, 16#00#,
16#00#, 16#80#, 16#00#, 16#01#, 16#8F#, 16#80#, 16#01#, 16#B0#, 16#C0#,
16#01#, 16#40#, 16#60#, 16#01#, 16#80#, 16#60#, 16#01#, 16#00#, 16#60#,
16#03#, 16#00#, 16#60#, 16#03#, 16#00#, 16#60#, 16#02#, 16#00#, 16#60#,
16#02#, 16#00#, 16#60#, 16#02#, 16#00#, 16#C0#, 16#06#, 16#00#, 16#C0#,
16#06#, 16#00#, 16#C0#, 16#04#, 16#00#, 16#80#, 16#04#, 16#00#, 16#80#,
16#3F#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#FC#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#, 16#1F#, 16#FF#, 16#C0#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#C0#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#C0#,
16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#80#,
16#00#, 16#00#, 16#80#, 16#00#, 16#01#, 16#80#, 16#00#, 16#01#, 16#80#,
16#00#, 16#01#, 16#80#, 16#00#, 16#01#, 16#00#, 16#00#, 16#01#, 16#00#,
16#00#, 16#03#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#08#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#40#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#40#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#00#, 16#C3#, 16#F0#, 16#00#, 16#81#, 16#80#,
16#00#, 16#83#, 16#00#, 16#01#, 16#8C#, 16#00#, 16#01#, 16#98#, 16#00#,
16#01#, 16#B0#, 16#00#, 16#01#, 16#60#, 16#00#, 16#01#, 16#B0#, 16#00#,
16#03#, 16#18#, 16#00#, 16#03#, 16#18#, 16#00#, 16#02#, 16#0C#, 16#00#,
16#02#, 16#06#, 16#00#, 16#02#, 16#03#, 16#00#, 16#06#, 16#03#, 16#00#,
16#3E#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#7F#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#08#, 16#00#,
16#00#, 16#08#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#, 16#1F#, 16#FF#, 16#C0#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#78#, 16#F0#,
16#07#, 16#8F#, 16#18#, 16#07#, 16#0E#, 16#08#, 16#06#, 16#0C#, 16#08#,
16#04#, 16#0C#, 16#18#, 16#0C#, 16#08#, 16#18#, 16#0C#, 16#08#, 16#10#,
16#0C#, 16#18#, 16#10#, 16#08#, 16#18#, 16#10#, 16#08#, 16#18#, 16#30#,
16#18#, 16#10#, 16#30#, 16#18#, 16#10#, 16#20#, 16#18#, 16#30#, 16#20#,
16#10#, 16#30#, 16#20#, 16#7C#, 16#3C#, 16#78#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#07#, 16#8F#, 16#80#, 16#01#, 16#B0#, 16#C0#,
16#01#, 16#C0#, 16#60#, 16#01#, 16#80#, 16#20#, 16#01#, 16#00#, 16#20#,
16#03#, 16#00#, 16#60#, 16#03#, 16#00#, 16#40#, 16#02#, 16#00#, 16#40#,
16#02#, 16#00#, 16#40#, 16#02#, 16#00#, 16#40#, 16#06#, 16#00#, 16#C0#,
16#06#, 16#00#, 16#C0#, 16#04#, 16#00#, 16#80#, 16#04#, 16#00#, 16#80#,
16#3F#, 16#07#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#1F#, 16#00#, 16#00#, 16#60#, 16#C0#, 16#01#, 16#80#, 16#60#,
16#03#, 16#00#, 16#30#, 16#06#, 16#00#, 16#30#, 16#04#, 16#00#, 16#10#,
16#0C#, 16#00#, 16#10#, 16#08#, 16#00#, 16#10#, 16#08#, 16#00#, 16#30#,
16#08#, 16#00#, 16#20#, 16#0C#, 16#00#, 16#60#, 16#0C#, 16#00#, 16#C0#,
16#06#, 16#01#, 16#80#, 16#03#, 16#07#, 16#00#, 16#00#, 16#F8#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#0F#, 16#80#,
16#03#, 16#30#, 16#60#, 16#03#, 16#C0#, 16#30#, 16#03#, 16#80#, 16#10#,
16#03#, 16#00#, 16#18#, 16#02#, 16#00#, 16#18#, 16#06#, 16#00#, 16#18#,
16#06#, 16#00#, 16#18#, 16#06#, 16#00#, 16#10#, 16#06#, 16#00#, 16#30#,
16#06#, 16#00#, 16#20#, 16#0E#, 16#00#, 16#40#, 16#0F#, 16#00#, 16#C0#,
16#0D#, 16#83#, 16#00#, 16#08#, 16#7C#, 16#00#, 16#08#, 16#00#, 16#00#,
16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#,
16#10#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#1E#, 16#00#, 16#C1#, 16#90#,
16#01#, 16#00#, 16#50#, 16#02#, 16#00#, 16#70#, 16#04#, 16#00#, 16#30#,
16#0C#, 16#00#, 16#30#, 16#08#, 16#00#, 16#20#, 16#08#, 16#00#, 16#20#,
16#08#, 16#00#, 16#60#, 16#08#, 16#00#, 16#60#, 16#08#, 16#00#, 16#E0#,
16#0C#, 16#00#, 16#C0#, 16#06#, 16#03#, 16#40#, 16#03#, 16#06#, 16#40#,
16#01#, 16#F8#, 16#C0#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#80#,
16#00#, 16#00#, 16#80#, 16#00#, 16#00#, 16#80#, 16#00#, 16#01#, 16#80#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#01#, 16#F0#, 16#F8#, 16#00#, 16#33#, 16#0C#, 16#00#, 16#26#, 16#00#,
16#00#, 16#38#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#40#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#40#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#00#, 16#80#, 16#00#, 16#00#, 16#80#, 16#00#, 16#1F#, 16#FF#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#B0#,
16#00#, 16#E0#, 16#E0#, 16#01#, 16#80#, 16#60#, 16#01#, 16#00#, 16#20#,
16#01#, 16#00#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#FE#, 16#00#,
16#00#, 16#0F#, 16#80#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#40#,
16#04#, 16#00#, 16#40#, 16#0C#, 16#00#, 16#C0#, 16#0C#, 16#00#, 16#80#,
16#0F#, 16#03#, 16#00#, 16#09#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#40#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#40#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#0F#, 16#FF#, 16#C0#, 16#00#, 16#80#, 16#00#,
16#00#, 16#80#, 16#00#, 16#01#, 16#80#, 16#00#, 16#01#, 16#00#, 16#00#,
16#01#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#,
16#03#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#,
16#02#, 16#00#, 16#00#, 16#03#, 16#00#, 16#C0#, 16#03#, 16#83#, 16#80#,
16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#0F#, 16#81#, 16#F0#, 16#01#, 16#80#, 16#30#, 16#01#, 16#00#, 16#20#,
16#01#, 16#00#, 16#20#, 16#03#, 16#00#, 16#60#, 16#03#, 16#00#, 16#60#,
16#03#, 16#00#, 16#60#, 16#02#, 16#00#, 16#40#, 16#02#, 16#00#, 16#40#,
16#06#, 16#00#, 16#C0#, 16#06#, 16#00#, 16#C0#, 16#06#, 16#00#, 16#C0#,
16#06#, 16#03#, 16#80#, 16#06#, 16#0E#, 16#80#, 16#03#, 16#F1#, 16#E0#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#FE#,
16#03#, 16#00#, 16#10#, 16#01#, 16#00#, 16#20#, 16#01#, 16#00#, 16#60#,
16#01#, 16#80#, 16#40#, 16#01#, 16#80#, 16#C0#, 16#01#, 16#80#, 16#80#,
16#00#, 16#81#, 16#00#, 16#00#, 16#83#, 16#00#, 16#00#, 16#C2#, 16#00#,
16#00#, 16#C6#, 16#00#, 16#00#, 16#44#, 16#00#, 16#00#, 16#48#, 16#00#,
16#00#, 16#48#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#7E#, 16#06#, 16#00#, 16#18#,
16#06#, 16#00#, 16#18#, 16#06#, 16#00#, 16#10#, 16#06#, 16#1C#, 16#30#,
16#02#, 16#1C#, 16#20#, 16#02#, 16#34#, 16#60#, 16#02#, 16#34#, 16#60#,
16#02#, 16#64#, 16#40#, 16#02#, 16#44#, 16#C0#, 16#02#, 16#C6#, 16#80#,
16#02#, 16#87#, 16#80#, 16#03#, 16#87#, 16#00#, 16#03#, 16#07#, 16#00#,
16#03#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#03#, 16#E0#, 16#F8#, 16#01#, 16#80#, 16#30#, 16#00#, 16#C0#, 16#C0#,
16#00#, 16#C1#, 16#80#, 16#00#, 16#63#, 16#00#, 16#00#, 16#36#, 16#00#,
16#00#, 16#1C#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#3C#, 16#00#,
16#00#, 16#C6#, 16#00#, 16#01#, 16#83#, 16#00#, 16#03#, 16#03#, 16#00#,
16#06#, 16#01#, 16#80#, 16#0C#, 16#00#, 16#C0#, 16#3F#, 16#07#, 16#E0#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#E0#, 16#FC#,
16#03#, 16#00#, 16#10#, 16#01#, 16#00#, 16#30#, 16#01#, 16#00#, 16#60#,
16#01#, 16#80#, 16#40#, 16#01#, 16#80#, 16#C0#, 16#00#, 16#81#, 16#80#,
16#00#, 16#81#, 16#00#, 16#00#, 16#C3#, 16#00#, 16#00#, 16#C2#, 16#00#,
16#00#, 16#46#, 16#00#, 16#00#, 16#6C#, 16#00#, 16#00#, 16#68#, 16#00#,
16#00#, 16#78#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#20#, 16#00#,
16#00#, 16#60#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#80#, 16#00#,
16#01#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#F0#, 16#01#, 16#00#, 16#60#,
16#01#, 16#00#, 16#C0#, 16#01#, 16#01#, 16#80#, 16#00#, 16#03#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#18#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#C0#, 16#00#,
16#01#, 16#80#, 16#C0#, 16#03#, 16#00#, 16#C0#, 16#06#, 16#00#, 16#80#,
16#0F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#E0#, 16#00#, 16#01#, 16#00#, 16#00#, 16#02#, 16#00#,
16#00#, 16#02#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#30#, 16#00#,
16#01#, 16#C0#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#20#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#20#, 16#00#,
16#00#, 16#20#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#,
16#00#, 16#02#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#08#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#30#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#20#, 16#00#,
16#00#, 16#60#, 16#00#, 16#00#, 16#60#, 16#00#, 16#00#, 16#40#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#06#, 16#00#,
16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#04#, 16#00#,
16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#06#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#0C#, 16#00#,
16#00#, 16#18#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#10#, 16#00#,
16#00#, 16#30#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#20#, 16#00#,
16#00#, 16#20#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#60#, 16#00#,
16#00#, 16#C0#, 16#00#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#F0#, 16#10#, 16#01#, 16#98#, 16#30#, 16#03#, 16#0C#, 16#20#,
16#06#, 16#06#, 16#40#, 16#04#, 16#03#, 16#80#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#,
16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#);
Font_D : aliased constant Bitmap_Font :=
(
Bytes_Per_Glyph => 105,
Glyph_Width => 24,
Glyph_Height => 35,
Data => FreeMonoOblique18pt7bBitmaps'Access);
Font : constant Bitmap_Font_Ref := Font_D'Access;
end GESTE_Fonts.FreeMonoOblique18pt7b;
|
with Ada.Strings.Unbounded;
with Gnat.Regpat;
with Protypo.Api.Engine_Values.Handlers;
with Protypo.Api.Engine_Values.Engine_Value_Vectors;
use Protypo.Api.Engine_Values;
package Protypo.Match_Data_Wrappers is
type Match_Data_Wrapper (<>) is
new Handlers.Ambivalent_Interface
with
private;
type Match_Data_Wrapper_Access is access Match_Data_Wrapper;
function Wrap (Match_Data : Gnat.Regpat.Match_Array;
Source : String)
return Handlers.Ambivalent_Interface_Access;
function Wrap (Match_Data : Gnat.Regpat.Match_Array;
Source : String)
return Engine_Value;
function Is_Field (X : Match_Data_Wrapper; Field : Id) return Boolean;
function Get (X : Match_Data_Wrapper;
Field : Id)
return Handler_Value;
function Get (X : Match_Data_Wrapper;
Index : Engine_Value_Vectors.Vector)
return Handler_Value;
private
use Ada.Strings.Unbounded;
type Submatches_Array is
array (Natural range <>) of Unbounded_String;
type Match_Data_Wrapper (N : Natural)is
new Api.Engine_Values.Handlers.Ambivalent_Interface
with
record
Matched : Boolean;
Submatches : Submatches_Array (0 .. N);
end record;
end Protypo.Match_Data_Wrappers;
|
pragma Ada_2012;
with GNAT.Source_Info;
package body GStreamer.Rtsp.Transport.Tests is
----------
-- Name --
----------
Test_Name : constant String := GNAT.Source_Info.Enclosing_Entity;
function Name (Test : Test_Case) return Message_String is
pragma Unreferenced (Test);
begin
return Format(Test_Name);
end Name;
--------------------
-- Register_Tests --
--------------------
procedure Register_Tests (Test : in out Test_Case) is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Register_Tests unimplemented");
-- raise Program_Error with "Unimplemented procedure Register_Tests";
end Register_Tests;
end GStreamer.Rtsp.transport.Tests;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . S T R I N G S . U N B O U N D E D --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2011, 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. --
-- --
------------------------------------------------------------------------------
with Ada.Strings.Maps;
with Ada.Finalization;
package Ada.Strings.Unbounded is
pragma Preelaborate;
type Unbounded_String is private;
pragma Preelaborable_Initialization (Unbounded_String);
Null_Unbounded_String : constant Unbounded_String;
function Length (Source : Unbounded_String) return Natural;
type String_Access is access all String;
procedure Free (X : in out String_Access);
--------------------------------------------------------
-- Conversion, Concatenation, and Selection Functions --
--------------------------------------------------------
function To_Unbounded_String
(Source : String) return Unbounded_String;
function To_Unbounded_String
(Length : Natural) return Unbounded_String;
function To_String (Source : Unbounded_String) return String;
procedure Set_Unbounded_String
(Target : out Unbounded_String;
Source : String);
pragma Ada_05 (Set_Unbounded_String);
procedure Append
(Source : in out Unbounded_String;
New_Item : Unbounded_String);
procedure Append
(Source : in out Unbounded_String;
New_Item : String);
procedure Append
(Source : in out Unbounded_String;
New_Item : Character);
function "&"
(Left : Unbounded_String;
Right : Unbounded_String) return Unbounded_String;
function "&"
(Left : Unbounded_String;
Right : String) return Unbounded_String;
function "&"
(Left : String;
Right : Unbounded_String) return Unbounded_String;
function "&"
(Left : Unbounded_String;
Right : Character) return Unbounded_String;
function "&"
(Left : Character;
Right : Unbounded_String) return Unbounded_String;
function Element
(Source : Unbounded_String;
Index : Positive) return Character;
procedure Replace_Element
(Source : in out Unbounded_String;
Index : Positive;
By : Character);
function Slice
(Source : Unbounded_String;
Low : Positive;
High : Natural) return String;
function Unbounded_Slice
(Source : Unbounded_String;
Low : Positive;
High : Natural) return Unbounded_String;
pragma Ada_05 (Unbounded_Slice);
procedure Unbounded_Slice
(Source : Unbounded_String;
Target : out Unbounded_String;
Low : Positive;
High : Natural);
pragma Ada_05 (Unbounded_Slice);
function "="
(Left : Unbounded_String;
Right : Unbounded_String) return Boolean;
function "="
(Left : Unbounded_String;
Right : String) return Boolean;
function "="
(Left : String;
Right : Unbounded_String) return Boolean;
function "<"
(Left : Unbounded_String;
Right : Unbounded_String) return Boolean;
function "<"
(Left : Unbounded_String;
Right : String) return Boolean;
function "<"
(Left : String;
Right : Unbounded_String) return Boolean;
function "<="
(Left : Unbounded_String;
Right : Unbounded_String) return Boolean;
function "<="
(Left : Unbounded_String;
Right : String) return Boolean;
function "<="
(Left : String;
Right : Unbounded_String) return Boolean;
function ">"
(Left : Unbounded_String;
Right : Unbounded_String) return Boolean;
function ">"
(Left : Unbounded_String;
Right : String) return Boolean;
function ">"
(Left : String;
Right : Unbounded_String) return Boolean;
function ">="
(Left : Unbounded_String;
Right : Unbounded_String) return Boolean;
function ">="
(Left : Unbounded_String;
Right : String) return Boolean;
function ">="
(Left : String;
Right : Unbounded_String) return Boolean;
------------------------
-- Search Subprograms --
------------------------
function Index
(Source : Unbounded_String;
Pattern : String;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping := Maps.Identity) return Natural;
function Index
(Source : Unbounded_String;
Pattern : String;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping_Function) return Natural;
function Index
(Source : Unbounded_String;
Set : Maps.Character_Set;
Test : Membership := Inside;
Going : Direction := Forward) return Natural;
function Index
(Source : Unbounded_String;
Pattern : String;
From : Positive;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping := Maps.Identity) return Natural;
pragma Ada_05 (Index);
function Index
(Source : Unbounded_String;
Pattern : String;
From : Positive;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping_Function) return Natural;
pragma Ada_05 (Index);
function Index
(Source : Unbounded_String;
Set : Maps.Character_Set;
From : Positive;
Test : Membership := Inside;
Going : Direction := Forward) return Natural;
pragma Ada_05 (Index);
function Index_Non_Blank
(Source : Unbounded_String;
Going : Direction := Forward) return Natural;
function Index_Non_Blank
(Source : Unbounded_String;
From : Positive;
Going : Direction := Forward) return Natural;
pragma Ada_05 (Index_Non_Blank);
function Count
(Source : Unbounded_String;
Pattern : String;
Mapping : Maps.Character_Mapping := Maps.Identity) return Natural;
function Count
(Source : Unbounded_String;
Pattern : String;
Mapping : Maps.Character_Mapping_Function) return Natural;
function Count
(Source : Unbounded_String;
Set : Maps.Character_Set) return Natural;
procedure Find_Token
(Source : Unbounded_String;
Set : Maps.Character_Set;
From : Positive;
Test : Membership;
First : out Positive;
Last : out Natural);
pragma Ada_2012 (Find_Token);
procedure Find_Token
(Source : Unbounded_String;
Set : Maps.Character_Set;
Test : Membership;
First : out Positive;
Last : out Natural);
------------------------------------
-- String Translation Subprograms --
------------------------------------
function Translate
(Source : Unbounded_String;
Mapping : Maps.Character_Mapping) return Unbounded_String;
procedure Translate
(Source : in out Unbounded_String;
Mapping : Maps.Character_Mapping);
function Translate
(Source : Unbounded_String;
Mapping : Maps.Character_Mapping_Function) return Unbounded_String;
procedure Translate
(Source : in out Unbounded_String;
Mapping : Maps.Character_Mapping_Function);
---------------------------------------
-- String Transformation Subprograms --
---------------------------------------
function Replace_Slice
(Source : Unbounded_String;
Low : Positive;
High : Natural;
By : String) return Unbounded_String;
procedure Replace_Slice
(Source : in out Unbounded_String;
Low : Positive;
High : Natural;
By : String);
function Insert
(Source : Unbounded_String;
Before : Positive;
New_Item : String) return Unbounded_String;
procedure Insert
(Source : in out Unbounded_String;
Before : Positive;
New_Item : String);
function Overwrite
(Source : Unbounded_String;
Position : Positive;
New_Item : String) return Unbounded_String;
procedure Overwrite
(Source : in out Unbounded_String;
Position : Positive;
New_Item : String);
function Delete
(Source : Unbounded_String;
From : Positive;
Through : Natural) return Unbounded_String;
procedure Delete
(Source : in out Unbounded_String;
From : Positive;
Through : Natural);
function Trim
(Source : Unbounded_String;
Side : Trim_End) return Unbounded_String;
procedure Trim
(Source : in out Unbounded_String;
Side : Trim_End);
function Trim
(Source : Unbounded_String;
Left : Maps.Character_Set;
Right : Maps.Character_Set) return Unbounded_String;
procedure Trim
(Source : in out Unbounded_String;
Left : Maps.Character_Set;
Right : Maps.Character_Set);
function Head
(Source : Unbounded_String;
Count : Natural;
Pad : Character := Space) return Unbounded_String;
procedure Head
(Source : in out Unbounded_String;
Count : Natural;
Pad : Character := Space);
function Tail
(Source : Unbounded_String;
Count : Natural;
Pad : Character := Space) return Unbounded_String;
procedure Tail
(Source : in out Unbounded_String;
Count : Natural;
Pad : Character := Space);
function "*"
(Left : Natural;
Right : Character) return Unbounded_String;
function "*"
(Left : Natural;
Right : String) return Unbounded_String;
function "*"
(Left : Natural;
Right : Unbounded_String) return Unbounded_String;
private
pragma Inline (Length);
package AF renames Ada.Finalization;
Null_String : aliased String := "";
function To_Unbounded (S : String) return Unbounded_String
renames To_Unbounded_String;
type Unbounded_String is new AF.Controlled with record
Reference : String_Access := Null_String'Access;
Last : Natural := 0;
end record;
-- The Unbounded_String is using a buffered implementation to increase
-- speed of the Append/Delete/Insert procedures. The Reference string
-- pointer above contains the current string value and extra room at the
-- end to be used by the next Append routine. Last is the index of the
-- string ending character. So the current string value is really
-- Reference (1 .. Last).
pragma Stream_Convert (Unbounded_String, To_Unbounded, To_String);
-- Provide stream routines without dragging in Ada.Streams
pragma Finalize_Storage_Only (Unbounded_String);
-- Finalization is required only for freeing storage
procedure Initialize (Object : in out Unbounded_String);
procedure Adjust (Object : in out Unbounded_String);
procedure Finalize (Object : in out Unbounded_String);
procedure Realloc_For_Chunk
(Source : in out Unbounded_String;
Chunk_Size : Natural);
pragma Inline (Realloc_For_Chunk);
-- Adjust the size allocated for the string. Add at least Chunk_Size so it
-- is safe to add a string of this size at the end of the current content.
-- The real size allocated for the string is Chunk_Size + x of the current
-- string size. This buffered handling makes the Append unbounded string
-- routines very fast. This spec is in the private part so that it can be
-- accessed from children (e.g. from Unbounded.Text_IO).
Null_Unbounded_String : constant Unbounded_String :=
(AF.Controlled with
Reference => Null_String'Access,
Last => 0);
end Ada.Strings.Unbounded;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015-2016, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
package HAL.Time is
type Delays is limited interface;
type Any_Delays is access all Delays'Class;
procedure Delay_Microseconds (This : in out Delays;
Us : Integer) is abstract;
procedure Delay_Milliseconds (This : in out Delays;
Ms : Integer) is abstract;
procedure Delay_Seconds (This : in out Delays;
S : Integer) is abstract;
end HAL.Time;
|
-- Institution: Technische Universität München
-- Department: Real-Time Computer Systems (RCS)
-- Project: StratoX
--
-- Authors: Martin Becker
-- @summary
-- Target-independent specification for HIL of Random number generator
with Interfaces; use Interfaces;
package HIL.Random with SPARK_Mode => On is
procedure initialize;
procedure Get_Unsigned (num : out Unsigned_32);
end HIL.Random;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015-2016, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
package body ST7735R is
---------------------------
-- Register definitions --
---------------------------
type MADCTL is record
Reserved1, Reserved2 : Boolean;
MH : Horizontal_Refresh_Order;
RGB : RGB_BGR_Order;
ML : Vertical_Refresh_Order;
MV : Boolean;
MX : Column_Address_Order;
MY : Row_Address_Order;
end record with Size => 8, Bit_Order => System.Low_Order_First;
for MADCTL use record
Reserved1 at 0 range 0 .. 0;
Reserved2 at 0 range 1 .. 1;
MH at 0 range 2 .. 2;
RGB at 0 range 3 .. 3;
ML at 0 range 4 .. 4;
MV at 0 range 5 .. 5;
MX at 0 range 6 .. 6;
MY at 0 range 7 .. 7;
end record;
function To_UInt8 is new Ada.Unchecked_Conversion (MADCTL, UInt8);
procedure Write_Command (LCD : ST7735R_Screen'Class;
Cmd : UInt8);
procedure Write_Command (LCD : ST7735R_Screen'Class;
Cmd : UInt8;
Data : HAL.UInt8_Array);
procedure Write_Pix_Repeat (LCD : ST7735R_Screen'Class;
Data : UInt16;
Count : Natural);
-- Send the same pixel data Count times. This is used to fill an area with
-- the same color without allocating a buffer.
procedure Write_Data (LCD : ST7735R_Screen'Class;
Data : HAL.UInt8_Array);
procedure Read_Data (LCD : ST7735R_Screen'Class;
Data : out UInt16);
procedure Set_Command_Mode (LCD : ST7735R_Screen'Class);
procedure Set_Data_Mode (LCD : ST7735R_Screen'Class);
procedure Start_Transaction (LCD : ST7735R_Screen'Class);
procedure End_Transaction (LCD : ST7735R_Screen'Class);
----------------------
-- Set_Command_Mode --
----------------------
procedure Set_Command_Mode (LCD : ST7735R_Screen'Class) is
begin
LCD.RS.Clear;
end Set_Command_Mode;
-------------------
-- Set_Data_Mode --
-------------------
procedure Set_Data_Mode (LCD : ST7735R_Screen'Class) is
begin
LCD.RS.Set;
end Set_Data_Mode;
-----------------------
-- Start_Transaction --
-----------------------
procedure Start_Transaction (LCD : ST7735R_Screen'Class) is
begin
LCD.CS.Clear;
end Start_Transaction;
---------------------
-- End_Transaction --
---------------------
procedure End_Transaction (LCD : ST7735R_Screen'Class) is
begin
LCD.CS.Set;
end End_Transaction;
-------------------
-- Write_Command --
-------------------
procedure Write_Command (LCD : ST7735R_Screen'Class;
Cmd : UInt8)
is
Status : SPI_Status;
begin
Start_Transaction (LCD);
Set_Command_Mode (LCD);
LCD.Port.Transmit (SPI_Data_8b'(1 => Cmd),
Status);
End_Transaction (LCD);
if Status /= Ok then
-- No error handling...
raise Program_Error;
end if;
end Write_Command;
-------------------
-- Write_Command --
-------------------
procedure Write_Command (LCD : ST7735R_Screen'Class;
Cmd : UInt8;
Data : HAL.UInt8_Array)
is
begin
Write_Command (LCD, Cmd);
Write_Data (LCD, Data);
end Write_Command;
----------------
-- Write_Data --
----------------
procedure Write_Data (LCD : ST7735R_Screen'Class;
Data : HAL.UInt8_Array)
is
Status : SPI_Status;
begin
Start_Transaction (LCD);
Set_Data_Mode (LCD);
LCD.Port.Transmit (SPI_Data_8b (Data), Status);
if Status /= Ok then
-- No error handling...
raise Program_Error;
end if;
End_Transaction (LCD);
end Write_Data;
----------------------
-- Write_Pix_Repeat --
----------------------
procedure Write_Pix_Repeat (LCD : ST7735R_Screen'Class;
Data : UInt16;
Count : Natural)
is
Status : SPI_Status;
Data8 : constant SPI_Data_8b :=
SPI_Data_8b'(1 => UInt8 (Shift_Right (Data, 8) and 16#FF#),
2 => UInt8 (Data and 16#FF#));
begin
Write_Command (LCD, 16#2C#);
Start_Transaction (LCD);
Set_Data_Mode (LCD);
for X in 1 .. Count loop
LCD.Port.Transmit (Data8, Status);
if Status /= Ok then
-- No error handling...
raise Program_Error;
end if;
end loop;
End_Transaction (LCD);
end Write_Pix_Repeat;
---------------
-- Read_Data --
---------------
procedure Read_Data (LCD : ST7735R_Screen'Class;
Data : out UInt16)
is
SPI_Data : SPI_Data_16b (1 .. 1);
Status : SPI_Status;
begin
Start_Transaction (LCD);
Set_Data_Mode (LCD);
LCD.Port.Receive (SPI_Data, Status);
if Status /= Ok then
-- No error handling...
raise Program_Error;
end if;
End_Transaction (LCD);
Data := SPI_Data (SPI_Data'First);
end Read_Data;
----------------
-- Initialize --
----------------
procedure Initialize (LCD : in out ST7735R_Screen) is
begin
LCD.Layer.LCD := LCD'Unchecked_Access;
LCD.RST.Clear;
LCD.Time.Delay_Milliseconds (100);
LCD.RST.Set;
LCD.Time.Delay_Milliseconds (100);
-- Sleep Exit
Write_Command (LCD, 16#11#);
LCD.Time.Delay_Milliseconds (100);
LCD.Initialized := True;
end Initialize;
-----------------
-- Initialized --
-----------------
overriding
function Initialized (LCD : ST7735R_Screen) return Boolean is
(LCD.Initialized);
-------------
-- Turn_On --
-------------
procedure Turn_On (LCD : ST7735R_Screen) is
begin
Write_Command (LCD, 16#29#);
end Turn_On;
--------------
-- Turn_Off --
--------------
procedure Turn_Off (LCD : ST7735R_Screen) is
begin
Write_Command (LCD, 16#28#);
end Turn_Off;
--------------------------
-- Display_Inversion_On --
--------------------------
procedure Display_Inversion_On (LCD : ST7735R_Screen) is
begin
Write_Command (LCD, 16#21#);
end Display_Inversion_On;
---------------------------
-- Display_Inversion_Off --
---------------------------
procedure Display_Inversion_Off (LCD : ST7735R_Screen) is
begin
Write_Command (LCD, 16#20#);
end Display_Inversion_Off;
---------------
-- Gamma_Set --
---------------
procedure Gamma_Set (LCD : ST7735R_Screen; Gamma_Curve : UInt4) is
begin
Write_Command (LCD, 16#26#, (0 => UInt8 (Gamma_Curve)));
end Gamma_Set;
----------------------
-- Set_Pixel_Format --
----------------------
procedure Set_Pixel_Format (LCD : ST7735R_Screen; Pix_Fmt : Pixel_Format) is
Value : constant UInt8 := (case Pix_Fmt is
when Pixel_12bits => 2#011#,
when Pixel_16bits => 2#101#,
when Pixel_18bits => 2#110#);
begin
Write_Command (LCD, 16#3A#, (0 => Value));
end Set_Pixel_Format;
----------------------------
-- Set_Memory_Data_Access --
----------------------------
procedure Set_Memory_Data_Access
(LCD : ST7735R_Screen;
Color_Order : RGB_BGR_Order;
Vertical : Vertical_Refresh_Order;
Horizontal : Horizontal_Refresh_Order;
Row_Addr_Order : Row_Address_Order;
Column_Addr_Order : Column_Address_Order;
Row_Column_Exchange : Boolean)
is
Value : MADCTL;
begin
Value.MY := Row_Addr_Order;
Value.MX := Column_Addr_Order;
Value.MV := Row_Column_Exchange;
Value.ML := Vertical;
Value.RGB := Color_Order;
Value.MH := Horizontal;
Write_Command (LCD, 16#36#, (0 => To_UInt8 (Value)));
end Set_Memory_Data_Access;
---------------------------
-- Set_Frame_Rate_Normal --
---------------------------
procedure Set_Frame_Rate_Normal
(LCD : ST7735R_Screen;
RTN : UInt4;
Front_Porch : UInt6;
Back_Porch : UInt6)
is
begin
Write_Command (LCD, 16#B1#,
(UInt8 (RTN), UInt8 (Front_Porch), UInt8 (Back_Porch)));
end Set_Frame_Rate_Normal;
-------------------------
-- Set_Frame_Rate_Idle --
-------------------------
procedure Set_Frame_Rate_Idle
(LCD : ST7735R_Screen;
RTN : UInt4;
Front_Porch : UInt6;
Back_Porch : UInt6)
is
begin
Write_Command (LCD, 16#B2#,
(UInt8 (RTN), UInt8 (Front_Porch), UInt8 (Back_Porch)));
end Set_Frame_Rate_Idle;
---------------------------------
-- Set_Frame_Rate_Partial_Full --
---------------------------------
procedure Set_Frame_Rate_Partial_Full
(LCD : ST7735R_Screen;
RTN_Part : UInt4;
Front_Porch_Part : UInt6;
Back_Porch_Part : UInt6;
RTN_Full : UInt4;
Front_Porch_Full : UInt6;
Back_Porch_Full : UInt6)
is
begin
Write_Command (LCD, 16#B3#,
(UInt8 (RTN_Part),
UInt8 (Front_Porch_Part),
UInt8 (Back_Porch_Part),
UInt8 (RTN_Full),
UInt8 (Front_Porch_Full),
UInt8 (Back_Porch_Full)));
end Set_Frame_Rate_Partial_Full;
---------------------------
-- Set_Inversion_Control --
---------------------------
procedure Set_Inversion_Control
(LCD : ST7735R_Screen;
Normal, Idle, Full_Partial : Inversion_Control)
is
Value : UInt8 := 0;
begin
if Normal = Line_Inversion then
Value := Value or 2#100#;
end if;
if Idle = Line_Inversion then
Value := Value or 2#010#;
end if;
if Full_Partial = Line_Inversion then
Value := Value or 2#001#;
end if;
Write_Command (LCD, 16#B4#, (0 => Value));
end Set_Inversion_Control;
-------------------------
-- Set_Power_Control_1 --
-------------------------
procedure Set_Power_Control_1
(LCD : ST7735R_Screen;
AVDD : UInt3;
VRHP : UInt5;
VRHN : UInt5;
MODE : UInt2)
is
P1, P2, P3 : UInt8;
begin
P1 := Shift_Left (UInt8 (AVDD), 5) or UInt8 (VRHP);
P2 := UInt8 (VRHN);
P3 := Shift_Left (UInt8 (MODE), 6) or 2#00_0100#;
Write_Command (LCD, 16#C0#, (P1, P2, P3));
end Set_Power_Control_1;
-------------------------
-- Set_Power_Control_2 --
-------------------------
procedure Set_Power_Control_2
(LCD : ST7735R_Screen;
VGH25 : UInt2;
VGSEL : UInt2;
VGHBT : UInt2)
is
P1 : UInt8;
begin
P1 := Shift_Left (UInt8 (VGH25), 6) or
Shift_Left (UInt8 (VGSEL), 2) or
UInt8 (VGHBT);
Write_Command (LCD, 16#C1#, (0 => P1));
end Set_Power_Control_2;
-------------------------
-- Set_Power_Control_3 --
-------------------------
procedure Set_Power_Control_3
(LCD : ST7735R_Screen;
P1, P2 : UInt8)
is
begin
Write_Command (LCD, 16#C2#, (P1, P2));
end Set_Power_Control_3;
-------------------------
-- Set_Power_Control_4 --
-------------------------
procedure Set_Power_Control_4
(LCD : ST7735R_Screen;
P1, P2 : UInt8)
is
begin
Write_Command (LCD, 16#C3#, (P1, P2));
end Set_Power_Control_4;
-------------------------
-- Set_Power_Control_5 --
-------------------------
procedure Set_Power_Control_5
(LCD : ST7735R_Screen;
P1, P2 : UInt8)
is
begin
Write_Command (LCD, 16#C4#, (P1, P2));
end Set_Power_Control_5;
--------------
-- Set_Vcom --
--------------
procedure Set_Vcom (LCD : ST7735R_Screen; VCOMS : UInt6) is
begin
Write_Command (LCD, 16#C5#, (0 => UInt8 (VCOMS)));
end Set_Vcom;
------------------------
-- Set_Column_Address --
------------------------
procedure Set_Column_Address (LCD : ST7735R_Screen; X_Start, X_End : UInt16)
is
P1, P2, P3, P4 : UInt8;
begin
P1 := UInt8 (Shift_Right (X_Start and 16#FF#, 8));
P2 := UInt8 (X_Start and 16#FF#);
P3 := UInt8 (Shift_Right (X_End and 16#FF#, 8));
P4 := UInt8 (X_End and 16#FF#);
Write_Command (LCD, 16#2A#, (P1, P2, P3, P4));
end Set_Column_Address;
---------------------
-- Set_Row_Address --
---------------------
procedure Set_Row_Address (LCD : ST7735R_Screen; Y_Start, Y_End : UInt16)
is
P1, P2, P3, P4 : UInt8;
begin
P1 := UInt8 (Shift_Right (Y_Start and 16#FF#, 8));
P2 := UInt8 (Y_Start and 16#FF#);
P3 := UInt8 (Shift_Right (Y_End and 16#FF#, 8));
P4 := UInt8 (Y_End and 16#FF#);
Write_Command (LCD, 16#2B#, (P1, P2, P3, P4));
end Set_Row_Address;
-----------------
-- Set_Address --
-----------------
procedure Set_Address (LCD : ST7735R_Screen;
X_Start, X_End, Y_Start, Y_End : UInt16)
is
begin
Set_Column_Address (LCD, X_Start, X_End);
Set_Row_Address (LCD, Y_Start, Y_End);
end Set_Address;
---------------
-- Set_Pixel --
---------------
procedure Set_Pixel (LCD : ST7735R_Screen;
X, Y : UInt16;
Color : UInt16)
is
Data : HAL.UInt16_Array (1 .. 1) := (1 => Color);
begin
Set_Address (LCD, X, X + 1, Y, Y + 1);
Write_Raw_Pixels (LCD, Data);
end Set_Pixel;
-----------
-- Pixel --
-----------
function Pixel (LCD : ST7735R_Screen;
X, Y : UInt16)
return UInt16
is
Ret : UInt16;
begin
Set_Address (LCD, X, X + 1, Y, Y + 1);
Read_Data (LCD, Ret);
return Ret;
end Pixel;
----------------------
-- Write_Raw_Pixels --
----------------------
procedure Write_Raw_Pixels (LCD : ST7735R_Screen;
Data : in out HAL.UInt8_Array)
is
Index : Natural := Data'First + 1;
Tmp : UInt8;
begin
-- The ST7735R uses a different endianness than our bitmaps
while Index <= Data'Last loop
Tmp := Data (Index);
Data (Index) := Data (Index - 1);
Data (Index - 1) := Tmp;
Index := Index + 1;
end loop;
Write_Command (LCD, 16#2C#);
Write_Data (LCD, Data);
end Write_Raw_Pixels;
----------------------
-- Write_Raw_Pixels --
----------------------
procedure Write_Raw_Pixels (LCD : ST7735R_Screen;
Data : in out HAL.UInt16_Array)
is
Data_8b : HAL.UInt8_Array (1 .. Data'Length * 2)
with Address => Data'Address;
begin
Write_Raw_Pixels (LCD, Data_8b);
end Write_Raw_Pixels;
--------------------
-- Get_Max_Layers --
--------------------
overriding
function Max_Layers
(Display : ST7735R_Screen) return Positive is (1);
------------------
-- Is_Supported --
------------------
overriding
function Supported
(Display : ST7735R_Screen;
Mode : FB_Color_Mode) return Boolean is
(Mode = HAL.Bitmap.RGB_565);
---------------------
-- Set_Orientation --
---------------------
overriding
procedure Set_Orientation
(Display : in out ST7735R_Screen;
Orientation : Display_Orientation)
is
begin
null;
end Set_Orientation;
--------------
-- Set_Mode --
--------------
overriding
procedure Set_Mode
(Display : in out ST7735R_Screen;
Mode : Wait_Mode)
is
begin
null;
end Set_Mode;
---------------
-- Get_Width --
---------------
overriding
function Width
(Display : ST7735R_Screen) return Positive is (Screen_Width);
----------------
-- Get_Height --
----------------
overriding
function Height
(Display : ST7735R_Screen) return Positive is (Screen_Height);
----------------
-- Is_Swapped --
----------------
overriding
function Swapped
(Display : ST7735R_Screen) return Boolean is (False);
--------------------
-- Set_Background --
--------------------
overriding
procedure Set_Background
(Display : ST7735R_Screen; R, G, B : UInt8)
is
begin
-- Does it make sense when there's no alpha channel...
raise Program_Error;
end Set_Background;
----------------------
-- Initialize_Layer --
----------------------
overriding
procedure Initialize_Layer
(Display : in out ST7735R_Screen;
Layer : Positive;
Mode : FB_Color_Mode;
X : Natural := 0;
Y : Natural := 0;
Width : Positive := Positive'Last;
Height : Positive := Positive'Last)
is
pragma Unreferenced (X, Y);
begin
if Layer /= 1 or else Mode /= RGB_565 then
raise Program_Error;
end if;
Display.Layer.Width := Width;
Display.Layer.Height := Height;
end Initialize_Layer;
-----------------
-- Initialized --
-----------------
overriding
function Initialized
(Display : ST7735R_Screen;
Layer : Positive) return Boolean
is
pragma Unreferenced (Display);
begin
return Layer = 1;
end Initialized;
------------------
-- Update_Layer --
------------------
overriding
procedure Update_Layer
(Display : in out ST7735R_Screen;
Layer : Positive;
Copy_Back : Boolean := False)
is
pragma Unreferenced (Copy_Back, Display);
begin
if Layer /= 1 then
raise Program_Error;
end if;
end Update_Layer;
-------------------
-- Update_Layers --
-------------------
overriding
procedure Update_Layers
(Display : in out ST7735R_Screen)
is
begin
Display.Update_Layer (1);
end Update_Layers;
--------------------
-- Get_Color_Mode --
--------------------
overriding
function Color_Mode
(Display : ST7735R_Screen;
Layer : Positive) return FB_Color_Mode
is
pragma Unreferenced (Display);
begin
if Layer /= 1 then
raise Program_Error;
end if;
return RGB_565;
end Color_Mode;
-----------------------
-- Get_Hidden_Buffer --
-----------------------
overriding
function Hidden_Buffer
(Display : in out ST7735R_Screen;
Layer : Positive) return not null HAL.Bitmap.Any_Bitmap_Buffer
is
begin
if Layer /= 1 then
raise Program_Error;
end if;
return Display.Layer'Unchecked_Access;
end Hidden_Buffer;
----------------
-- Pixel_Size --
----------------
overriding
function Pixel_Size
(Display : ST7735R_Screen;
Layer : Positive) return Positive is (16);
----------------
-- Set_Source --
----------------
overriding
procedure Set_Source (Buffer : in out ST7735R_Bitmap_Buffer;
Native : UInt32)
is
begin
Buffer.Native_Source := Native;
end Set_Source;
------------
-- Source --
------------
overriding
function Source
(Buffer : ST7735R_Bitmap_Buffer)
return UInt32
is
begin
return Buffer.Native_Source;
end Source;
---------------
-- Set_Pixel --
---------------
overriding
procedure Set_Pixel
(Buffer : in out ST7735R_Bitmap_Buffer;
Pt : Point)
is
begin
Buffer.LCD.Set_Pixel (UInt16 (Pt.X), UInt16 (Pt.Y),
UInt16 (Buffer.Native_Source));
end Set_Pixel;
---------------------
-- Set_Pixel_Blend --
---------------------
overriding
procedure Set_Pixel_Blend
(Buffer : in out ST7735R_Bitmap_Buffer;
Pt : Point) renames Set_Pixel;
-----------
-- Pixel --
-----------
overriding
function Pixel
(Buffer : ST7735R_Bitmap_Buffer;
Pt : Point)
return UInt32
is (UInt32 (Buffer.LCD.Pixel (UInt16 (Pt.X), UInt16 (Pt.Y))));
----------
-- Fill --
----------
overriding
procedure Fill
(Buffer : in out ST7735R_Bitmap_Buffer)
is
begin
-- Set the drawing area over the entire layer
Set_Address (Buffer.LCD.all,
0, UInt16 (Buffer.Width - 1),
0, UInt16 (Buffer.Height - 1));
-- Fill the drawing area with a single color
Write_Pix_Repeat (Buffer.LCD.all,
UInt16 (Buffer.Native_Source and 16#FFFF#),
Buffer.Width * Buffer.Height);
end Fill;
---------------
-- Fill_Rect --
---------------
overriding
procedure Fill_Rect
(Buffer : in out ST7735R_Bitmap_Buffer;
Area : Rect)
is
begin
-- Set the drawing area coresponding to the rectangle to draw
Set_Address (Buffer.LCD.all,
UInt16 (Area.Position.X),
UInt16 (Area.Position.X + Area.Width - 1),
UInt16 (Area.Position.Y),
UInt16 (Area.Position.Y + Area.Height - 1));
-- Fill the drawing area with a single color
Write_Pix_Repeat (Buffer.LCD.all,
UInt16 (Buffer.Native_Source and 16#FFFF#),
Area.Width * Area.Height);
end Fill_Rect;
------------------------
-- Draw_Vertical_Line --
------------------------
overriding
procedure Draw_Vertical_Line
(Buffer : in out ST7735R_Bitmap_Buffer;
Pt : Point;
Height : Integer)
is
begin
-- Set the drawing area coresponding to the line to draw
Set_Address (Buffer.LCD.all,
UInt16 (Pt.X),
UInt16 (Pt.X),
UInt16 (Pt.Y),
UInt16 (Pt.Y + Height - 1));
-- Fill the drawing area with a single color
Write_Pix_Repeat (Buffer.LCD.all,
UInt16 (Buffer.Native_Source and 16#FFFF#),
Height);
end Draw_Vertical_Line;
--------------------------
-- Draw_Horizontal_Line --
--------------------------
overriding
procedure Draw_Horizontal_Line
(Buffer : in out ST7735R_Bitmap_Buffer;
Pt : Point;
Width : Integer)
is
begin
-- Set the drawing area coresponding to the line to draw
Set_Address (Buffer.LCD.all,
UInt16 (Pt.X),
UInt16 (Pt.X + Width),
UInt16 (Pt.Y),
UInt16 (Pt.Y));
-- Fill the drawing area with a single color
Write_Pix_Repeat (Buffer.LCD.all,
UInt16 (Buffer.Native_Source and 16#FFFF#),
Width);
end Draw_Horizontal_Line;
end ST7735R;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . P E R F E C T _ H A S H _ G E N E R A T O R S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2002-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. --
-- --
------------------------------------------------------------------------------
-- This package provides a generator of static minimal perfect hash functions.
-- To understand what a perfect hash function is, we define several notions.
-- These definitions are inspired from the following paper:
-- Zbigniew J. Czech, George Havas, and Bohdan S. Majewski ``An Optimal
-- Algorithm for Generating Minimal Perfect Hash Functions'', Information
-- Processing Letters, 43(1992) pp.257-264, Oct.1992
-- Let W be a set of m words. A hash function h is a function that maps the
-- set of words W into some given interval of integers [0, k-1], where k is an
-- integer, usually k >= m. h (w) where is a word computes an address or an
-- integer from I for the storage or the retrieval of that item. The storage
-- area used to store items is known as a hash table. Words for which the same
-- address is computed are called synonyms. Due to the existence of synonyms a
-- situation called collision may arise in which two items w1 and w2 have the
-- same address. Several schemes for resolving known. A perfect hash function
-- is an injection from the word set W to the integer interval I with k >= m.
-- If k = m, then h is a minimal perfect hash function. A hash function is
-- order preserving if it puts entries into the hash table in prespecified
-- order.
-- A minimal perfect hash function is defined by two properties:
-- Since no collisions occur each item can be retrieved from the table in
-- *one* probe. This represents the "perfect" property.
-- The hash table size corresponds to the exact size of W and *no larger*.
-- This represents the "minimal" property.
-- The functions generated by this package require the key set to be known in
-- advance (they are "static" hash functions). The hash functions are also
-- order preservering. If w2 is inserted after w1 in the generator, then (w1)
-- < f (w2). These hashing functions are convenient for use with realtime
-- applications.
package GNAT.Perfect_Hash_Generators is
Default_K_To_V : constant Float := 2.05;
-- Default ratio for the algorithm. When K is the number of keys, V =
-- (K_To_V) * K is the size of the main table of the hash function. To
-- converge, the algorithm requires K_To_V to be stricly greater than 2.0.
Default_Pkg_Name : constant String := "Perfect_Hash";
-- Default package name in which the hash function is defined
Default_Position : constant String := "";
-- The generator allows selection of the character positions used in the
-- hash function. By default, all positions are selected.
Default_Tries : constant Positive := 20;
-- This algorithm may not succeed to find a possible mapping on the first
-- try and may have to iterate a number of times. This constant bounds the
-- number of tries.
type Optimization is (Memory_Space, CPU_Time);
Default_Optimization : constant Optimization := CPU_Time;
-- Optimize either the memory space or the execution time
Verbose : Boolean := False;
-- Output the status of the algorithm. For instance, the tables, the random
-- graph (edges, vertices) and selected char positions are output between
-- two iterations.
procedure Initialize
(Seed : Natural;
K_To_V : Float := Default_K_To_V;
Optim : Optimization := CPU_Time;
Tries : Positive := Default_Tries);
-- Initialize the generator and its internal structures. Set the ratio of
-- vertices over keys in the random graphs. This value has to be greater
-- than 2.0 in order for the algorithm to succeed. The key set is not
-- modified (in particular when it is already set). For instance, it is
-- possible to run several times the generator with different settings on
-- the same key set.
procedure Finalize;
-- Deallocate the internal structures and the key table
procedure Insert (Value : String);
-- Insert a new key in the table
Too_Many_Tries : exception;
-- Raised after Tries unsuccessfull runs
procedure Compute (Position : String := Default_Position);
-- Compute the hash function. Position allows to define selection of
-- character positions used in the keywords hash function. Positions can be
-- separated by commas and range like x-y may be used. Character '$'
-- represents the final character of a key. With an empty position, the
-- generator automatically produces positions to reduce the memory usage.
-- Raise Too_Many_Tries in case that the algorithm does not succeed in less
-- than Tries attempts (see Initialize).
procedure Produce (Pkg_Name : String := Default_Pkg_Name);
-- Generate the hash function package Pkg_Name. This package includes the
-- minimal perfect Hash function.
-- The routines and structures defined below allow producing the hash
-- function using a different way from the procedure above. The procedure
-- Define returns the lengths of an internal table and its item type size.
-- The function Value returns the value of each item in the table.
-- The hash function has the following form:
-- h (w) = (g (f1 (w)) + g (f2 (w))) mod m
-- G is a function based on a graph table [0,n-1] -> [0,m-1]. m is the
-- number of keys. n is an internally computed value and it can be obtained
-- as the length of vector G.
-- F1 and F2 are two functions based on two function tables T1 and T2.
-- Their definition depends on the chosen optimization mode.
-- Only some character positions are used in the keys because they are
-- significant. They are listed in a character position table (P in the
-- pseudo-code below). For instance, in {"jan", "feb", "mar", "apr", "jun",
-- "jul", "aug", "sep", "oct", "nov", "dec"}, only positions 2 and 3 are
-- significant (the first character can be ignored). In this example, P =
-- {2, 3}
-- When Optimization is CPU_Time, the first dimension of T1 and T2
-- corresponds to the character position in the key and the second to the
-- character set. As all the character set is not used, we define a used
-- character table which associates a distinct index to each used character
-- (unused characters are mapped to zero). In this case, the second
-- dimension of T1 and T2 is reduced to the used character set (C in the
-- pseudo-code below). Therefore, the hash function has the following:
-- function Hash (S : String) return Natural is
-- F : constant Natural := S'First - 1;
-- L : constant Natural := S'Length;
-- F1, F2 : Natural := 0;
-- J : <t>;
-- begin
-- for K in P'Range loop
-- exit when L < P (K);
-- J := C (S (P (K) + F));
-- F1 := (F1 + Natural (T1 (K, J))) mod <n>;
-- F2 := (F2 + Natural (T2 (K, J))) mod <n>;
-- end loop;
-- return (Natural (G (F1)) + Natural (G (F2))) mod <m>;
-- end Hash;
-- When Optimization is Memory_Space, the first dimension of T1 and T2
-- corresponds to the character position in the key and the second
-- dimension is ignored. T1 and T2 are no longer matrices but vectors.
-- Therefore, the used character table is not available. The hash function
-- has the following form:
-- function Hash (S : String) return Natural is
-- F : constant Natural := S'First - 1;
-- L : constant Natural := S'Length;
-- F1, F2 : Natural := 0;
-- J : <t>;
-- begin
-- for K in P'Range loop
-- exit when L < P (K);
-- J := Character'Pos (S (P (K) + F));
-- F1 := (F1 + Natural (T1 (K) * J)) mod <n>;
-- F2 := (F2 + Natural (T2 (K) * J)) mod <n>;
-- end loop;
-- return (Natural (G (F1)) + Natural (G (F2))) mod <m>;
-- end Hash;
type Table_Name is
(Character_Position,
Used_Character_Set,
Function_Table_1,
Function_Table_2,
Graph_Table);
procedure Define
(Name : Table_Name;
Item_Size : out Natural;
Length_1 : out Natural;
Length_2 : out Natural);
-- Return the definition of the table Name. This includes the length of
-- dimensions 1 and 2 and the size of an unsigned integer item. When
-- Length_2 is zero, the table has only one dimension. All the ranges start
-- from zero.
function Value
(Name : Table_Name;
J : Natural;
K : Natural := 0) return Natural;
-- Return the value of the component (I, J) of the table Name. When the
-- table has only one dimension, J is ignored.
end GNAT.Perfect_Hash_Generators;
|
-- C43204A.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- OBJECTIVE:
-- CHECK THAT AN ARRAY AGGREGATE WITH AN OTHERS CHOICE CAN APPEAR
-- (AND BOUNDS ARE DETERMINED CORRECTLY) AS AN ACTUAL PARAMETER OF
-- A SUBPROGRAM CALL WHEN THE FORMAL PARAMETER IS CONSTRAINED.
-- HISTORY:
-- JET 08/04/88 CREATED ORIGINAL TEST.
WITH REPORT; USE REPORT;
PROCEDURE C43204A IS
TYPE ARR10 IS ARRAY(IDENT_INT(1)..IDENT_INT(0)) OF INTEGER;
TYPE ARR11 IS ARRAY(INTEGER RANGE -3..3) OF INTEGER;
TYPE ARR12 IS ARRAY(IDENT_INT(-3)..IDENT_INT(3)) OF INTEGER;
TYPE ARR20 IS ARRAY(IDENT_INT(1)..IDENT_INT(0),
IDENT_INT(0)..IDENT_INT(-1)) OF INTEGER;
TYPE ARR21 IS ARRAY(INTEGER RANGE -1..1,
INTEGER RANGE -1..1) OF INTEGER;
TYPE ARR22 IS ARRAY(IDENT_INT(-1)..IDENT_INT(1),
IDENT_INT(-1)..IDENT_INT(1)) OF INTEGER;
TYPE ARR23 IS ARRAY(INTEGER'(-1)..1,
IDENT_INT(-1)..IDENT_INT(1)) OF INTEGER;
PROCEDURE PROC10 (A : ARR10) IS
BEGIN
IF A'LENGTH /= IDENT_INT(0) THEN
FAILED ("PROC10 ARRAY IS NOT NULL");
END IF;
END PROC10;
PROCEDURE PROC11 (A : ARR11; C : INTEGER) IS
BEGIN
IF A'LENGTH /= IDENT_INT(7) OR
A'FIRST /= IDENT_INT(-3) OR
A'LAST /= IDENT_INT(3) THEN
FAILED ("INCORRECT LENGTH IN PROC11 CALL NUMBER" &
INTEGER'IMAGE(C));
END IF;
FOR I IN IDENT_INT(-3)..IDENT_INT(3) LOOP
IF IDENT_INT(A(I)) /= C THEN
FAILED ("INCORRECT VALUE OF COMPONENT " &
INTEGER'IMAGE(I) & ", PROC11 CALL NUMBER" &
INTEGER'IMAGE(C));
END IF;
END LOOP;
END PROC11;
PROCEDURE PROC12 (A : ARR12) IS
BEGIN
IF A'LENGTH /= IDENT_INT(7) THEN
FAILED ("INCORRECT LENGTH IN PROC12");
END IF;
FOR I IN IDENT_INT(-3)..IDENT_INT(3) LOOP
IF IDENT_INT(A(I)) /= 3 THEN
FAILED ("INCORRECT VALUE OF COMPONENT " &
INTEGER'IMAGE(I) & ", PROC12");
END IF;
END LOOP;
END PROC12;
PROCEDURE PROC20 (A : ARR20) IS
BEGIN
IF A'LENGTH(1) /= IDENT_INT(0) OR
A'LENGTH(2) /= IDENT_INT(0) THEN
FAILED ("PROC20 ARRAY IS NOT NULL");
END IF;
END PROC20;
PROCEDURE PROC21 (A : ARR21; C : INTEGER) IS
BEGIN
FOR I IN INTEGER'(-1)..1 LOOP
FOR J IN INTEGER'(-1)..1 LOOP
IF IDENT_INT(A(I,J)) /= C THEN
FAILED ("INCORRECT VALUE OF COMPONENT (" &
INTEGER'IMAGE(I) & "," &
INTEGER'IMAGE(J) & "), PROC21 CALL " &
"NUMBER" & INTEGER'IMAGE(C));
END IF;
END LOOP;
END LOOP;
END PROC21;
PROCEDURE PROC22 (A : ARR22) IS
BEGIN
FOR I IN INTEGER'(-1)..1 LOOP
FOR J IN INTEGER'(-1)..1 LOOP
IF IDENT_INT(A(I,J)) /= 5 THEN
FAILED ("INCORRECT VALUE OF COMPONENT (" &
INTEGER'IMAGE(I) & "," &
INTEGER'IMAGE(J) & "), PROC22");
END IF;
END LOOP;
END LOOP;
END PROC22;
PROCEDURE PROC23 (A : ARR23) IS
BEGIN
FOR I IN INTEGER'(-1)..1 LOOP
FOR J IN INTEGER'(-1)..1 LOOP
IF IDENT_INT(A(I,J)) /= 7 THEN
FAILED ("INCORRECT VALUE OF COMPONENT (" &
INTEGER'IMAGE(I) & "," &
INTEGER'IMAGE(J) & "), PROC23");
END IF;
END LOOP;
END LOOP;
END PROC23;
BEGIN
TEST ("C43204A", "CHECK THAT AN ARRAY AGGREGATE WITH AN OTHERS " &
"CHOICE CAN APPEAR (AND BOUNDS ARE DETERMINED " &
"CORRECTLY) AS AN ACTUAL PARAMETER OF A " &
"SUBPROGRAM CALL WHEN THE FORMAL PARAMETER IS " &
"CONSTRAINED");
PROC11 ((1,1,1, OTHERS => 1), 1);
PROC11 ((2 => 2, 3 => 2, OTHERS => 2), 2);
PROC12 ((OTHERS => 3));
PROC10 ((OTHERS => 4));
PROC21 (((1,1,1), OTHERS => (1,1,1)), 1);
PROC21 ((1 => (2,2,2), OTHERS => (2,2,2)), 2);
PROC21 (((3,OTHERS => 3), (3,OTHERS => 3), (3,3,OTHERS => 3)), 3);
PROC21 (((-1 => 4, OTHERS => 4), (0 => 4, OTHERS => 4),
(1 => 4, OTHERS => 4)), 4);
PROC22 ((OTHERS => (OTHERS => 5)));
PROC20 ((OTHERS => (OTHERS => 6)));
PROC23 ((OTHERS => (7,7,7)));
RESULT;
END C43204A;
|
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
procedure tri_sel is
N : constant Integer := 8;
tab : array (1..N) of Integer := (7, 8, 6, 5, 4, 3, 2, 1);
tmp, minI : Integer;
begin
for i in 1..N-1 loop
for k in 1..N loop
Put(tab(k));
end loop;
New_Line;
minI := i;
for j in i+1..N loop
if tab(j) < tab(minI) then
minI := j;
end if;
end loop;
tmp := tab(i);
tab(i) := tab(minI);
tab(minI) := tmp;
end loop;
for i in 1..N loop
Put(tab(i));
end loop;
end tri_sel;
|
No-one has translated the taskvent example into Ada yet. Be the first to create
taskvent in Ada and get one free Internet! If you're the author of the Ada
binding, this is a great way to get people to use 0MQ in Ada.
To submit a new translation email it to zeromq-dev@lists.zeromq.org. Please:
* Stick to identical functionality and naming used in examples so that readers
can easily compare languages.
* You MUST place your name as author in the examples so readers can contact you.
* You MUST state in the email that you license your code under the MIT/X11
license.
Subscribe to this list at http://lists.zeromq.org/mailman/listinfo/zeromq-dev.
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . C O M P I L E R _ V E R S I O N --
-- --
-- S p e c --
-- --
-- Copyright (C) 2002-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. --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- This package provides a routine for obtaining the version number of the
-- GNAT compiler used to compile the program. It relies on the generated
-- constant in the binder generated package that records this information.
-- Note: to use this package you must first instantiate it, for example:
-- package CVer is new GNAT.Compiler_Version;
-- and then you use the function in the instantiated package (Cver.Version).
-- The reason that this unit is generic is that otherwise the direct attempt
-- to import the necessary variable from the binder file causes trouble when
-- building a shared library, since the symbol is not available.
-- Note: this unit is only useable if the main program is written in Ada.
-- It cannot be used if the main program is written in foreign language.
generic
package GNAT.Compiler_Version is
pragma Pure;
function Version return String;
-- This function returns the version in the form "v.vvx (yyyyddmm)".
-- Here v.vv is the main version number (e.g. 3.16), x is the version
-- designator (e.g. a1 in 3.16a1), and yyyyddmm is the date in ISO form.
-- An example of the returned value would be "3.16w (20021029)". The
-- version is actually that of the binder used to bind the program,
-- which will be the same as the compiler version if a consistent
-- set of tools is used to build the program.
end GNAT.Compiler_Version;
|
with IRC;
package Plugin.Base
is
procedure Say (Message : IRC.Message);
procedure Join (Message : IRC.Message);
procedure Leave (Message : IRC.Message);
procedure Nick (Message : IRC.Message);
end Plugin.Base;
|
with
openGL.Tasks,
GL.Binding,
ada.Text_IO;
package body openGL.Errors
is
use GL;
function Current return String
is
use GL.Binding;
check_is_OK : constant Boolean := openGL.Tasks.Check; pragma Unreferenced (check_is_OK);
the_Error : constant GL.GLenum := glGetError;
begin
case the_Error is
when GL.GL_NO_ERROR => return "no error";
when GL_INVALID_ENUM => return "invalid Enum";
when GL_INVALID_VALUE => return "invalid Value";
when GL_INVALID_OPERATION => return "invalid Operation";
when GL_OUT_OF_MEMORY => return "out of Memory";
when others => return "unknown openGL error detected";
end case;
end Current;
procedure log (Prefix : in String := "")
is
current_Error : constant String := Current;
function Error_Message return String
is
begin
if Prefix = ""
then return "openGL error: '" & current_Error & "'";
else return Prefix & ": '" & current_Error & "'";
end if;
end Error_Message;
begin
if current_Error = "no error"
then
return;
end if;
raise openGL.Error with Error_Message;
end log;
procedure log (Prefix : in String := ""; Error_occurred : out Boolean)
is
use ada.Text_IO;
current_Error : constant String := Current;
begin
if current_Error = "no error"
then
error_Occurred := False;
return;
end if;
error_Occurred := True;
if Prefix = ""
then put_Line ("openGL error: '" & current_Error & "'");
else put_Line (Prefix & ": '" & current_Error & "'");
end if;
end log;
end openGL.Errors;
|
<?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>Pool</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>9</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>gmem</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></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>2</direction>
<if_type>4</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>CHin_V</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>
<direction>0</direction>
<if_type>0</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>Hin_V</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>
<direction>0</direction>
<if_type>0</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>Win_V</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>
<direction>0</direction>
<if_type>0</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>Kx_V</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>
<direction>0</direction>
<if_type>0</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="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>Ky_V</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>
<direction>0</direction>
<if_type>0</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="_7">
<Value>
<Obj>
<type>1</type>
<id>7</id>
<name>mode_V</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>
<direction>0</direction>
<if_type>0</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="_8">
<Value>
<Obj>
<type>1</type>
<id>8</id>
<name>feature_in</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>feature_in</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</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="_9">
<Value>
<Obj>
<type>1</type>
<id>9</id>
<name>feature_out</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>feature_out</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</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>180</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>feature_out_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>feature_out</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>227</item>
<item>228</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>feature_in_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>feature_in</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>229</item>
<item>230</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>mode_V_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>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>232</item>
<item>233</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>Ky_V_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>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>235</item>
<item>236</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>Kx_V_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>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>237</item>
<item>238</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>Win_V_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>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>240</item>
<item>241</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>Hin_V_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>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>242</item>
<item>243</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>CHin_V_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>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>244</item>
<item>245</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>tmp_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>30</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>247</item>
<item>248</item>
<item>250</item>
<item>252</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>tmp_7_cast</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>49</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>253</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>tmp_7</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>30</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>254</item>
<item>255</item>
<item>256</item>
<item>257</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>tmp_32_cast</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>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>258</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>lhs_V</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</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>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lhs.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>259</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>r_V_14</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>260</item>
<item>261</item>
</oprand_edges>
<opcode>udiv</opcode>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>rhs_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>rhs.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>262</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>tmp_4</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>24</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>263</item>
<item>264</item>
</oprand_edges>
<opcode>udiv</opcode>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>rhs_V_1_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</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>265</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>rhs_V_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>rhs.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>266</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>tmp_6</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>267</item>
<item>269</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>rhs_V_2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>rhs.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>270</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>r_V_15</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>52</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>271</item>
<item>272</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>tmp_3</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>52</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>273</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>tmp_s</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>52</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>274</item>
</oprand_edges>
<opcode>sitofp</opcode>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>rhs_V_2_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>275</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>tmp_9</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>33</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>33</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>276</item>
<item>278</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>sum</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>279</item>
<item>281</item>
<item>283</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>tmp_2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>284</item>
<item>285</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>p_sum</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>286</item>
<item>287</item>
<item>289</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>cast2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>24</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>290</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>bound4</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>291</item>
<item>292</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>293</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>bound</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>294</item>
<item>295</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>exitcond_mid</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>27</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>296</item>
<item>298</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>24</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>299</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>indvar_flatten1</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>48</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>301</item>
<item>302</item>
<item>303</item>
<item>304</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>op_assign_8</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>24</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>op</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>305</item>
<item>306</item>
<item>307</item>
<item>308</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>indvar_flatten6</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</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>310</item>
<item>311</item>
<item>312</item>
<item>313</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>i_op_assign_s</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>27</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i_op</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</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>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>i_op_assign_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>318</item>
<item>319</item>
<item>320</item>
<item>321</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>i_op_assign_13_cast5</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>26</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>26</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>322</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>r_V</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>323</item>
<item>324</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>r_V_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>325</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>r_V_1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>326</item>
<item>327</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>exitcond_flatten1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</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>328</item>
<item>329</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>indvar_flatten_next1</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>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>330</item>
<item>332</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</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>333</item>
<item>334</item>
<item>335</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>exitcond_flatten2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</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>581</item>
<item>582</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>i_op_assign_11_mid</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>583</item>
<item>584</item>
<item>585</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>c</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>24</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>586</item>
<item>587</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>i_op_assign_17_cast6_mid2_v</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>24</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>588</item>
<item>589</item>
<item>590</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>i_op_assign_17_cast6_mid2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>24</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>591</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>rhs_V_7_cast_mid2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>592</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>tmp_11</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>593</item>
<item>594</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>tmp_1_mid</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>595</item>
<item>596</item>
<item>597</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>r_V_1_mid</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>598</item>
<item>599</item>
<item>600</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>exitcond</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>27</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>601</item>
<item>602</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>exitcond_mid1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>27</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>603</item>
<item>604</item>
<item>605</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>i</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>26</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>26</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>606</item>
<item>607</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>tmp_12</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>27</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>608</item>
<item>609</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>i_op_assign_13_mid2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>27</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>610</item>
<item>611</item>
<item>612</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>i_op_assign_13_cast5_mid1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>26</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>26</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>613</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>r_V_mid1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>614</item>
<item>615</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>r_V_cast_mid1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>616</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>tmp_1_mid1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>617</item>
<item>618</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>tmp_1_mid2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>619</item>
<item>620</item>
<item>621</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>r_V_1_mid1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>622</item>
<item>623</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>r_V_1_mid2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>624</item>
<item>625</item>
<item>626</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>i_op_assign_11_mid2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>27</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>627</item>
<item>628</item>
<item>629</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>i_op_assign_15_cast4</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>27</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>630</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>tmp_5</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>631</item>
<item>632</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>37</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>633</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>indvar_flatten</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>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>336</item>
<item>337</item>
<item>338</item>
<item>339</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>i_op_assign_2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i_op</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>341</item>
<item>342</item>
<item>343</item>
<item>344</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>sum_3</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>345</item>
<item>346</item>
<item>347</item>
<item>348</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>i_op_assign_3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>jj</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>349</item>
<item>350</item>
<item>351</item>
<item>352</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>exitcond_flatten</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>52</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>353</item>
<item>354</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>indvar_flatten_next</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>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>355</item>
<item>357</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>52</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>358</item>
<item>359</item>
<item>360</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>exitcond1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>38</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>506</item>
<item>507</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>i_op_assign_14_mid2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>38</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>508</item>
<item>509</item>
<item>510</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>ii7</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>511</item>
<item>512</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>r_V_4_mid2_v_v_v_v_v_v</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</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>513</item>
<item>514</item>
<item>515</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>r_V_4_mid2_v_v_v_v_v</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</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>516</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>r_V_4_mid2_v_v_v_v</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>517</item>
<item>518</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>r_V_4_mid2_v_v_v</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</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>519</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>r_V_4_mid2_v_v</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>520</item>
<item>521</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>r_V_4_mid2_v</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>522</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>r_V_4_mid2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>523</item>
<item>524</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name>tmp_10</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>42</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>525</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>w_V</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>w.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>526</item>
<item>527</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>43</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>8</count>
<item_version>0</item_version>
<item>528</item>
<item>529</item>
<item>530</item>
<item>531</item>
<item>532</item>
<item>533</item>
<item>535</item>
<item>536</item>
</oprand_edges>
<opcode>switch</opcode>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>lhs_V_3</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lhs.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>442</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>r_V_11</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>443</item>
<item>444</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>rhs_V_11_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>445</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>r_V_12</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>446</item>
<item>447</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>r_V_13</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>448</item>
<item>449</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>133</id>
<name>feature_in2_sum</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>450</item>
<item>451</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>feature_in2_sum_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</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>452</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>gmem_addr_3</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>453</item>
<item>454</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>gmem_load_2_req</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>455</item>
<item>456</item>
<item>457</item>
</oprand_edges>
<opcode>readreq</opcode>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>gmem_addr_3_read</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>458</item>
<item>459</item>
<item>860</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>sum_3_to_int7</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>460</item>
</oprand_edges>
<opcode>bitcast</opcode>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>tmp_22</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>461</item>
<item>462</item>
<item>463</item>
<item>464</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>tmp_23</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>465</item>
</oprand_edges>
<opcode>trunc</opcode>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>feature_in_load_2_to_int</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</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>466</item>
</oprand_edges>
<opcode>bitcast</opcode>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>tmp_24</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>467</item>
<item>468</item>
<item>469</item>
<item>470</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>tmp_25</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>471</item>
</oprand_edges>
<opcode>trunc</opcode>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>notlhs</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>472</item>
<item>473</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>notrhs</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>474</item>
<item>475</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>tmp_26</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>476</item>
<item>477</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name>notlhs8</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</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>478</item>
<item>479</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name>notrhs9</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</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>480</item>
<item>481</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>tmp_27</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</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>482</item>
<item>483</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name>tmp_28</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>484</item>
<item>485</item>
</oprand_edges>
<opcode>and</opcode>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>tmp_29</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</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>486</item>
<item>487</item>
</oprand_edges>
<opcode>fcmp</opcode>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>tmp_30</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</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>488</item>
<item>489</item>
</oprand_edges>
<opcode>and</opcode>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name>sum_3_feature_in_load_2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>490</item>
<item>491</item>
<item>492</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>47</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>493</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name>lhs_V_2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lhs.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>385</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>r_V_8</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>386</item>
<item>387</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>rhs_V_9_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>388</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name>r_V_9</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>389</item>
<item>390</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>r_V_10</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>391</item>
<item>392</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>feature_in2_sum5</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>393</item>
<item>394</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>feature_in2_sum5_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</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>395</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>gmem_addr_2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>396</item>
<item>397</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>gmem_load_1_req</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>398</item>
<item>399</item>
<item>400</item>
</oprand_edges>
<opcode>readreq</opcode>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>gmem_addr_2_read</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>401</item>
<item>402</item>
<item>861</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>166</id>
<name>sum_3_to_int</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>403</item>
</oprand_edges>
<opcode>bitcast</opcode>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>tmp_13</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>405</item>
<item>406</item>
<item>408</item>
<item>410</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name>tmp_14</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>411</item>
</oprand_edges>
<opcode>trunc</opcode>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>169</id>
<name>feature_in_load_1_to_int</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</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>412</item>
</oprand_edges>
<opcode>bitcast</opcode>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>tmp_15</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>413</item>
<item>414</item>
<item>415</item>
<item>416</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>171</id>
<name>tmp_16</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>23</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>417</item>
</oprand_edges>
<opcode>trunc</opcode>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>notlhs1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>418</item>
<item>420</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>173</id>
<name>notrhs1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>421</item>
<item>423</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>tmp_17</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>424</item>
<item>425</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>175</id>
<name>notlhs2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</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>426</item>
<item>427</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>176</id>
<name>notrhs2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</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>428</item>
<item>429</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>177</id>
<name>tmp_18</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</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>430</item>
<item>431</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>178</id>
<name>tmp_19</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>30</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>30</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>432</item>
<item>433</item>
</oprand_edges>
<opcode>and</opcode>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>179</id>
<name>tmp_20</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</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>434</item>
<item>435</item>
</oprand_edges>
<opcode>fcmp</opcode>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>180</id>
<name>tmp_21</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</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>436</item>
<item>437</item>
</oprand_edges>
<opcode>and</opcode>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>181</id>
<name>feature_in_load_1_sum_3</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>438</item>
<item>439</item>
<item>440</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>182</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>46</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>441</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>184</id>
<name>lhs_V_1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lhs.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>361</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>185</id>
<name>r_V_5</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>362</item>
<item>363</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_157">
<Value>
<Obj>
<type>0</type>
<id>186</id>
<name>rhs_V_6_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>364</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>187</id>
<name>r_V_6</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>365</item>
<item>366</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>188</id>
<name>r_V_7</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>367</item>
<item>368</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>189</id>
<name>feature_in2_sum6</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>369</item>
<item>370</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>190</id>
<name>feature_in2_sum6_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</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>371</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_162">
<Value>
<Obj>
<type>0</type>
<id>191</id>
<name>gmem_addr_1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>372</item>
<item>373</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_163">
<Value>
<Obj>
<type>0</type>
<id>192</id>
<name>gmem_load_req</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>375</item>
<item>376</item>
<item>378</item>
</oprand_edges>
<opcode>readreq</opcode>
</item>
<item class_id_reference="9" object_id="_164">
<Value>
<Obj>
<type>0</type>
<id>193</id>
<name>gmem_addr_1_read</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>380</item>
<item>381</item>
<item>862</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_165">
<Value>
<Obj>
<type>0</type>
<id>194</id>
<name>sum_2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>sum</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>382</item>
<item>383</item>
</oprand_edges>
<opcode>fadd</opcode>
</item>
<item class_id_reference="9" object_id="_166">
<Value>
<Obj>
<type>0</type>
<id>195</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>45</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>384</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_167">
<Value>
<Obj>
<type>0</type>
<id>197</id>
<name>sum_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>sum</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>8</count>
<item_version>0</item_version>
<item>494</item>
<item>495</item>
<item>496</item>
<item>497</item>
<item>498</item>
<item>499</item>
<item>500</item>
<item>501</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_168">
<Value>
<Obj>
<type>0</type>
<id>199</id>
<name>jj</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>38</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>jj</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>502</item>
<item>504</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_169">
<Value>
<Obj>
<type>0</type>
<id>200</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>38</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>505</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_170">
<Value>
<Obj>
<type>0</type>
<id>202</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>51</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>537</item>
<item>538</item>
<item>539</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_171">
<Value>
<Obj>
<type>0</type>
<id>204</id>
<name>sum_1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>52</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>sum</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>540</item>
<item>541</item>
</oprand_edges>
<opcode>fdiv</opcode>
</item>
<item class_id_reference="9" object_id="_172">
<Value>
<Obj>
<type>0</type>
<id>205</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>52</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>542</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_173">
<Value>
<Obj>
<type>0</type>
<id>207</id>
<name>sum_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>sum</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>543</item>
<item>544</item>
<item>545</item>
<item>546</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_174">
<Value>
<Obj>
<type>0</type>
<id>208</id>
<name>r_V_2</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>547</item>
<item>548</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_175">
<Value>
<Obj>
<type>0</type>
<id>209</id>
<name>tmp1</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>549</item>
<item>550</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_176">
<Value>
<Obj>
<type>0</type>
<id>210</id>
<name>tmp1_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>551</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_177">
<Value>
<Obj>
<type>0</type>
<id>211</id>
<name>tmp_8</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>48</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>552</item>
<item>553</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_178">
<Value>
<Obj>
<type>0</type>
<id>212</id>
<name>tmp_17_cast_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>49</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>554</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_179">
<Value>
<Obj>
<type>0</type>
<id>213</id>
<name>feature_out4_sum</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>49</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>555</item>
<item>556</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_180">
<Value>
<Obj>
<type>0</type>
<id>214</id>
<name>feature_out4_sum_cast</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</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>557</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_181">
<Value>
<Obj>
<type>0</type>
<id>215</id>
<name>gmem_addr</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>558</item>
<item>559</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_182">
<Value>
<Obj>
<type>0</type>
<id>216</id>
<name>gmem_addr_req</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>561</item>
<item>562</item>
<item>563</item>
</oprand_edges>
<opcode>writereq</opcode>
</item>
<item class_id_reference="9" object_id="_183">
<Value>
<Obj>
<type>0</type>
<id>217</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>565</item>
<item>566</item>
<item>567</item>
<item>569</item>
<item>864</item>
</oprand_edges>
<opcode>write</opcode>
</item>
<item class_id_reference="9" object_id="_184">
<Value>
<Obj>
<type>0</type>
<id>218</id>
<name>gmem_addr_resp</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>53</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>571</item>
<item>572</item>
<item>863</item>
</oprand_edges>
<opcode>writeresp</opcode>
</item>
<item class_id_reference="9" object_id="_185">
<Value>
<Obj>
<type>0</type>
<id>219</id>
<name>j</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>27</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>573</item>
<item>574</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_186">
<Value>
<Obj>
<type>0</type>
<id>220</id>
<name>indvar_flatten6_op</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>575</item>
<item>576</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_187">
<Value>
<Obj>
<type>0</type>
<id>221</id>
<name>indvar_flatten_next7</name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>21</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>577</item>
<item>578</item>
<item>579</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_188">
<Value>
<Obj>
<type>0</type>
<id>222</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>27</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>580</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_189">
<Value>
<Obj>
<type>0</type>
<id>224</id>
<name></name>
<fileName>pool/Pool_core.cpp</fileName>
<fileDirectory>C:\Users\luojiawei\Desktop\pynq_1\ip</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>Pool</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\luojiawei\Desktop\pynq_1\ip</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>pool/Pool_core.cpp</first>
<second>Pool</second>
</first>
<second>55</second>
</item>
</second>
</item>
</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>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>21</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_190">
<Value>
<Obj>
<type>2</type>
<id>249</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>2</content>
</item>
<item class_id_reference="16" object_id="_191">
<Value>
<Obj>
<type>2</type>
<id>251</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>31</content>
</item>
<item class_id_reference="16" object_id="_192">
<Value>
<Obj>
<type>2</type>
<id>268</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="_193">
<Value>
<Obj>
<type>2</type>
<id>277</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="_194">
<Value>
<Obj>
<type>2</type>
<id>280</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>1</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_195">
<Value>
<Obj>
<type>2</type>
<id>282</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>1</const_type>
<content>1e+17</content>
</item>
<item class_id_reference="16" object_id="_196">
<Value>
<Obj>
<type>2</type>
<id>288</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>1</const_type>
<content>-1e+17</content>
</item>
<item class_id_reference="16" object_id="_197">
<Value>
<Obj>
<type>2</type>
<id>297</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>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_198">
<Value>
<Obj>
<type>2</type>
<id>300</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>48</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_199">
<Value>
<Obj>
<type>2</type>
<id>309</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="_200">
<Value>
<Obj>
<type>2</type>
<id>331</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>48</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_201">
<Value>
<Obj>
<type>2</type>
<id>340</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="_202">
<Value>
<Obj>
<type>2</type>
<id>356</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>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_203">
<Value>
<Obj>
<type>2</type>
<id>377</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="_204">
<Value>
<Obj>
<type>2</type>
<id>407</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>23</content>
</item>
<item class_id_reference="16" object_id="_205">
<Value>
<Obj>
<type>2</type>
<id>409</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>30</content>
</item>
<item class_id_reference="16" object_id="_206">
<Value>
<Obj>
<type>2</type>
<id>419</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>255</content>
</item>
<item class_id_reference="16" object_id="_207">
<Value>
<Obj>
<type>2</type>
<id>422</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>23</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_208">
<Value>
<Obj>
<type>2</type>
<id>503</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>1</content>
</item>
<item class_id_reference="16" object_id="_209">
<Value>
<Obj>
<type>2</type>
<id>534</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="_210">
<Value>
<Obj>
<type>2</type>
<id>568</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>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>15</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_211">
<Obj>
<type>3</type>
<id>62</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>34</count>
<item_version>0</item_version>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
<item>14</item>
<item>15</item>
<item>16</item>
<item>17</item>
<item>18</item>
<item>19</item>
<item>20</item>
<item>21</item>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
<item>57</item>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_212">
<Obj>
<type>3</type>
<id>75</id>
<name>.preheader1010</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>12</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_213">
<Obj>
<type>3</type>
<id>102</id>
<name>.preheader1011.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>25</count>
<item_version>0</item_version>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
<item>81</item>
<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>
<item>93</item>
<item>94</item>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
<item>101</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_214">
<Obj>
<type>3</type>
<id>110</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>7</count>
<item_version>0</item_version>
<item>103</item>
<item>104</item>
<item>105</item>
<item>106</item>
<item>107</item>
<item>108</item>
<item>109</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_215">
<Obj>
<type>3</type>
<id>127</id>
<name>.preheader1009</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>13</count>
<item_version>0</item_version>
<item>112</item>
<item>113</item>
<item>114</item>
<item>115</item>
<item>116</item>
<item>117</item>
<item>118</item>
<item>119</item>
<item>120</item>
<item>121</item>
<item>124</item>
<item>125</item>
<item>126</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_216">
<Obj>
<type>3</type>
<id>155</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>27</count>
<item_version>0</item_version>
<item>128</item>
<item>129</item>
<item>130</item>
<item>131</item>
<item>132</item>
<item>133</item>
<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>
<item>148</item>
<item>149</item>
<item>150</item>
<item>151</item>
<item>152</item>
<item>153</item>
<item>154</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_217">
<Obj>
<type>3</type>
<id>183</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>27</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>163</item>
<item>164</item>
<item>165</item>
<item>166</item>
<item>167</item>
<item>168</item>
<item>169</item>
<item>170</item>
<item>171</item>
<item>172</item>
<item>173</item>
<item>174</item>
<item>175</item>
<item>176</item>
<item>177</item>
<item>178</item>
<item>179</item>
<item>180</item>
<item>181</item>
<item>182</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_218">
<Obj>
<type>3</type>
<id>196</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>12</count>
<item_version>0</item_version>
<item>184</item>
<item>185</item>
<item>186</item>
<item>187</item>
<item>188</item>
<item>189</item>
<item>190</item>
<item>191</item>
<item>192</item>
<item>193</item>
<item>194</item>
<item>195</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_219">
<Obj>
<type>3</type>
<id>201</id>
<name>._crit_edge</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>197</item>
<item>199</item>
<item>200</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_220">
<Obj>
<type>3</type>
<id>203</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>202</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_221">
<Obj>
<type>3</type>
<id>206</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>204</item>
<item>205</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_222">
<Obj>
<type>3</type>
<id>223</id>
<name>._crit_edge1014</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>16</count>
<item_version>0</item_version>
<item>207</item>
<item>208</item>
<item>209</item>
<item>210</item>
<item>211</item>
<item>212</item>
<item>213</item>
<item>214</item>
<item>215</item>
<item>216</item>
<item>217</item>
<item>218</item>
<item>219</item>
<item>220</item>
<item>221</item>
<item>222</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_223">
<Obj>
<type>3</type>
<id>225</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>224</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>376</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_224">
<id>228</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_225">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_226">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_227">
<id>236</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_228">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_229">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_230">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_231">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_232">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_233">
<id>250</id>
<edge_type>1</edge_type>
<source_obj>249</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_234">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_235">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_236">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_237">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>249</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_238">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_239">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_240">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_241">
<id>260</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_242">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_243">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_244">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_245">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_246">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_247">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_248">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_249">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_250">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_251">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_252">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_253">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_254">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_255">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_256">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_257">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>277</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_258">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_259">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>280</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_260">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>282</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_261">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_262">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_263">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_264">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_265">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>288</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_266">
<id>290</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_267">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_268">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_269">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_270">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_271">
<id>295</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_272">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_273">
<id>298</id>
<edge_type>1</edge_type>
<source_obj>297</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_274">
<id>299</id>
<edge_type>2</edge_type>
<source_obj>75</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_275">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>300</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_276">
<id>302</id>
<edge_type>2</edge_type>
<source_obj>62</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_277">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_278">
<id>304</id>
<edge_type>2</edge_type>
<source_obj>223</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_279">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>297</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_280">
<id>306</id>
<edge_type>2</edge_type>
<source_obj>62</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_281">
<id>307</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_282">
<id>308</id>
<edge_type>2</edge_type>
<source_obj>223</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_283">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_284">
<id>311</id>
<edge_type>2</edge_type>
<source_obj>62</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_285">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>221</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_286">
<id>313</id>
<edge_type>2</edge_type>
<source_obj>223</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_287">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>297</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_288">
<id>315</id>
<edge_type>2</edge_type>
<source_obj>62</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_289">
<id>316</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_290">
<id>317</id>
<edge_type>2</edge_type>
<source_obj>223</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_291">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>297</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_292">
<id>319</id>
<edge_type>2</edge_type>
<source_obj>62</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_293">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>219</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_294">
<id>321</id>
<edge_type>2</edge_type>
<source_obj>223</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_295">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_296">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_297">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_298">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_299">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_300">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_301">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_302">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_303">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_304">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>331</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_305">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_306">
<id>334</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_307">
<id>335</id>
<edge_type>2</edge_type>
<source_obj>225</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_308">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>297</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_309">
<id>337</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_310">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_311">
<id>339</id>
<edge_type>2</edge_type>
<source_obj>201</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_312">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>340</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_313">
<id>342</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_314">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_315">
<id>344</id>
<edge_type>2</edge_type>
<source_obj>201</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_316">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_317">
<id>346</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_318">
<id>347</id>
<edge_type>1</edge_type>
<source_obj>197</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_319">
<id>348</id>
<edge_type>2</edge_type>
<source_obj>201</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_320">
<id>349</id>
<edge_type>1</edge_type>
<source_obj>340</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_321">
<id>350</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_322">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_323">
<id>352</id>
<edge_type>2</edge_type>
<source_obj>201</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_324">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_325">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_326">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_327">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>356</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_328">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_329">
<id>359</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_330">
<id>360</id>
<edge_type>2</edge_type>
<source_obj>203</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_331">
<id>361</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>184</sink_obj>
</item>
<item class_id_reference="20" object_id="_332">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>185</sink_obj>
</item>
<item class_id_reference="20" object_id="_333">
<id>363</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>185</sink_obj>
</item>
<item class_id_reference="20" object_id="_334">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>185</source_obj>
<sink_obj>186</sink_obj>
</item>
<item class_id_reference="20" object_id="_335">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>186</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_336">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_337">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_338">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_339">
<id>369</id>
<edge_type>1</edge_type>
<source_obj>188</source_obj>
<sink_obj>189</sink_obj>
</item>
<item class_id_reference="20" object_id="_340">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>189</sink_obj>
</item>
<item class_id_reference="20" object_id="_341">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>189</source_obj>
<sink_obj>190</sink_obj>
</item>
<item class_id_reference="20" object_id="_342">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>191</sink_obj>
</item>
<item class_id_reference="20" object_id="_343">
<id>373</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>191</sink_obj>
</item>
<item class_id_reference="20" object_id="_344">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>192</sink_obj>
</item>
<item class_id_reference="20" object_id="_345">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>377</source_obj>
<sink_obj>192</sink_obj>
</item>
<item class_id_reference="20" object_id="_346">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>193</sink_obj>
</item>
<item class_id_reference="20" object_id="_347">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>194</sink_obj>
</item>
<item class_id_reference="20" object_id="_348">
<id>383</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>194</sink_obj>
</item>
<item class_id_reference="20" object_id="_349">
<id>384</id>
<edge_type>2</edge_type>
<source_obj>201</source_obj>
<sink_obj>195</sink_obj>
</item>
<item class_id_reference="20" object_id="_350">
<id>385</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_351">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_352">
<id>387</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_353">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>158</sink_obj>
</item>
<item class_id_reference="20" object_id="_354">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>159</sink_obj>
</item>
<item class_id_reference="20" object_id="_355">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>159</sink_obj>
</item>
<item class_id_reference="20" object_id="_356">
<id>391</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_357">
<id>392</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_358">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_359">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_360">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>162</sink_obj>
</item>
<item class_id_reference="20" object_id="_361">
<id>396</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_362">
<id>397</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_363">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_364">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>377</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_365">
<id>402</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_366">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>166</sink_obj>
</item>
<item class_id_reference="20" object_id="_367">
<id>406</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_368">
<id>408</id>
<edge_type>1</edge_type>
<source_obj>407</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_369">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>409</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_370">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>168</sink_obj>
</item>
<item class_id_reference="20" object_id="_371">
<id>412</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>169</sink_obj>
</item>
<item class_id_reference="20" object_id="_372">
<id>414</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>170</sink_obj>
</item>
<item class_id_reference="20" object_id="_373">
<id>415</id>
<edge_type>1</edge_type>
<source_obj>407</source_obj>
<sink_obj>170</sink_obj>
</item>
<item class_id_reference="20" object_id="_374">
<id>416</id>
<edge_type>1</edge_type>
<source_obj>409</source_obj>
<sink_obj>170</sink_obj>
</item>
<item class_id_reference="20" object_id="_375">
<id>417</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>171</sink_obj>
</item>
<item class_id_reference="20" object_id="_376">
<id>418</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>172</sink_obj>
</item>
<item class_id_reference="20" object_id="_377">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>419</source_obj>
<sink_obj>172</sink_obj>
</item>
<item class_id_reference="20" object_id="_378">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>168</source_obj>
<sink_obj>173</sink_obj>
</item>
<item class_id_reference="20" object_id="_379">
<id>423</id>
<edge_type>1</edge_type>
<source_obj>422</source_obj>
<sink_obj>173</sink_obj>
</item>
<item class_id_reference="20" object_id="_380">
<id>424</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>174</sink_obj>
</item>
<item class_id_reference="20" object_id="_381">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>174</sink_obj>
</item>
<item class_id_reference="20" object_id="_382">
<id>426</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>175</sink_obj>
</item>
<item class_id_reference="20" object_id="_383">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>419</source_obj>
<sink_obj>175</sink_obj>
</item>
<item class_id_reference="20" object_id="_384">
<id>428</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>176</sink_obj>
</item>
<item class_id_reference="20" object_id="_385">
<id>429</id>
<edge_type>1</edge_type>
<source_obj>422</source_obj>
<sink_obj>176</sink_obj>
</item>
<item class_id_reference="20" object_id="_386">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>177</sink_obj>
</item>
<item class_id_reference="20" object_id="_387">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>177</sink_obj>
</item>
<item class_id_reference="20" object_id="_388">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>174</source_obj>
<sink_obj>178</sink_obj>
</item>
<item class_id_reference="20" object_id="_389">
<id>433</id>
<edge_type>1</edge_type>
<source_obj>177</source_obj>
<sink_obj>178</sink_obj>
</item>
<item class_id_reference="20" object_id="_390">
<id>434</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>179</sink_obj>
</item>
<item class_id_reference="20" object_id="_391">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>179</sink_obj>
</item>
<item class_id_reference="20" object_id="_392">
<id>436</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>180</sink_obj>
</item>
<item class_id_reference="20" object_id="_393">
<id>437</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>180</sink_obj>
</item>
<item class_id_reference="20" object_id="_394">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>181</sink_obj>
</item>
<item class_id_reference="20" object_id="_395">
<id>439</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>181</sink_obj>
</item>
<item class_id_reference="20" object_id="_396">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>181</sink_obj>
</item>
<item class_id_reference="20" object_id="_397">
<id>441</id>
<edge_type>2</edge_type>
<source_obj>201</source_obj>
<sink_obj>182</sink_obj>
</item>
<item class_id_reference="20" object_id="_398">
<id>442</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>128</sink_obj>
</item>
<item class_id_reference="20" object_id="_399">
<id>443</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>129</sink_obj>
</item>
<item class_id_reference="20" object_id="_400">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>129</sink_obj>
</item>
<item class_id_reference="20" object_id="_401">
<id>445</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>130</sink_obj>
</item>
<item class_id_reference="20" object_id="_402">
<id>446</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>131</sink_obj>
</item>
<item class_id_reference="20" object_id="_403">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>131</sink_obj>
</item>
<item class_id_reference="20" object_id="_404">
<id>448</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_405">
<id>449</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_406">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>133</sink_obj>
</item>
<item class_id_reference="20" object_id="_407">
<id>451</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>133</sink_obj>
</item>
<item class_id_reference="20" object_id="_408">
<id>452</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>134</sink_obj>
</item>
<item class_id_reference="20" object_id="_409">
<id>453</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_410">
<id>454</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_411">
<id>456</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_412">
<id>457</id>
<edge_type>1</edge_type>
<source_obj>377</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_413">
<id>459</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_414">
<id>460</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>138</sink_obj>
</item>
<item class_id_reference="20" object_id="_415">
<id>462</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_416">
<id>463</id>
<edge_type>1</edge_type>
<source_obj>407</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_417">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>409</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_418">
<id>465</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_419">
<id>466</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_420">
<id>468</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_421">
<id>469</id>
<edge_type>1</edge_type>
<source_obj>407</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_422">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>409</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_423">
<id>471</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>143</sink_obj>
</item>
<item class_id_reference="20" object_id="_424">
<id>472</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_425">
<id>473</id>
<edge_type>1</edge_type>
<source_obj>419</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_426">
<id>474</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_427">
<id>475</id>
<edge_type>1</edge_type>
<source_obj>422</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_428">
<id>476</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_429">
<id>477</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_430">
<id>478</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_431">
<id>479</id>
<edge_type>1</edge_type>
<source_obj>419</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_432">
<id>480</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_433">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>422</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_434">
<id>482</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_435">
<id>483</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_436">
<id>484</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>150</sink_obj>
</item>
<item class_id_reference="20" object_id="_437">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>150</sink_obj>
</item>
<item class_id_reference="20" object_id="_438">
<id>486</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>151</sink_obj>
</item>
<item class_id_reference="20" object_id="_439">
<id>487</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>151</sink_obj>
</item>
<item class_id_reference="20" object_id="_440">
<id>488</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>152</sink_obj>
</item>
<item class_id_reference="20" object_id="_441">
<id>489</id>
<edge_type>1</edge_type>
<source_obj>151</source_obj>
<sink_obj>152</sink_obj>
</item>
<item class_id_reference="20" object_id="_442">
<id>490</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>153</sink_obj>
</item>
<item class_id_reference="20" object_id="_443">
<id>491</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>153</sink_obj>
</item>
<item class_id_reference="20" object_id="_444">
<id>492</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>153</sink_obj>
</item>
<item class_id_reference="20" object_id="_445">
<id>493</id>
<edge_type>2</edge_type>
<source_obj>201</source_obj>
<sink_obj>154</sink_obj>
</item>
<item class_id_reference="20" object_id="_446">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_447">
<id>495</id>
<edge_type>2</edge_type>
<source_obj>196</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_448">
<id>496</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_449">
<id>497</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_450">
<id>498</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_451">
<id>499</id>
<edge_type>2</edge_type>
<source_obj>183</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_452">
<id>500</id>
<edge_type>1</edge_type>
<source_obj>153</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_453">
<id>501</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_454">
<id>502</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>199</sink_obj>
</item>
<item class_id_reference="20" object_id="_455">
<id>504</id>
<edge_type>1</edge_type>
<source_obj>503</source_obj>
<sink_obj>199</sink_obj>
</item>
<item class_id_reference="20" object_id="_456">
<id>505</id>
<edge_type>2</edge_type>
<source_obj>110</source_obj>
<sink_obj>200</sink_obj>
</item>
<item class_id_reference="20" object_id="_457">
<id>506</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_458">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_459">
<id>508</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_460">
<id>509</id>
<edge_type>1</edge_type>
<source_obj>340</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_461">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_462">
<id>511</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_463">
<id>512</id>
<edge_type>1</edge_type>
<source_obj>503</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_464">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_465">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_466">
<id>515</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_467">
<id>516</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_468">
<id>517</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_469">
<id>518</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_470">
<id>519</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_471">
<id>520</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_472">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_473">
<id>522</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_474">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_475">
<id>524</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_476">
<id>525</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_477">
<id>526</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_478">
<id>527</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_479">
<id>528</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_480">
<id>529</id>
<edge_type>2</edge_type>
<source_obj>201</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_481">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_482">
<id>531</id>
<edge_type>2</edge_type>
<source_obj>196</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_483">
<id>532</id>
<edge_type>1</edge_type>
<source_obj>277</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_484">
<id>533</id>
<edge_type>2</edge_type>
<source_obj>183</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_485">
<id>535</id>
<edge_type>1</edge_type>
<source_obj>534</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_486">
<id>536</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_487">
<id>537</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>202</sink_obj>
</item>
<item class_id_reference="20" object_id="_488">
<id>538</id>
<edge_type>2</edge_type>
<source_obj>223</source_obj>
<sink_obj>202</sink_obj>
</item>
<item class_id_reference="20" object_id="_489">
<id>539</id>
<edge_type>2</edge_type>
<source_obj>206</source_obj>
<sink_obj>202</sink_obj>
</item>
<item class_id_reference="20" object_id="_490">
<id>540</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>204</sink_obj>
</item>
<item class_id_reference="20" object_id="_491">
<id>541</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>204</sink_obj>
</item>
<item class_id_reference="20" object_id="_492">
<id>542</id>
<edge_type>2</edge_type>
<source_obj>223</source_obj>
<sink_obj>205</sink_obj>
</item>
<item class_id_reference="20" object_id="_493">
<id>543</id>
<edge_type>1</edge_type>
<source_obj>204</source_obj>
<sink_obj>207</sink_obj>
</item>
<item class_id_reference="20" object_id="_494">
<id>544</id>
<edge_type>2</edge_type>
<source_obj>206</source_obj>
<sink_obj>207</sink_obj>
</item>
<item class_id_reference="20" object_id="_495">
<id>545</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>207</sink_obj>
</item>
<item class_id_reference="20" object_id="_496">
<id>546</id>
<edge_type>2</edge_type>
<source_obj>203</source_obj>
<sink_obj>207</sink_obj>
</item>
<item class_id_reference="20" object_id="_497">
<id>547</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>208</sink_obj>
</item>
<item class_id_reference="20" object_id="_498">
<id>548</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>208</sink_obj>
</item>
<item class_id_reference="20" object_id="_499">
<id>549</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>209</sink_obj>
</item>
<item class_id_reference="20" object_id="_500">
<id>550</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>209</sink_obj>
</item>
<item class_id_reference="20" object_id="_501">
<id>551</id>
<edge_type>1</edge_type>
<source_obj>209</source_obj>
<sink_obj>210</sink_obj>
</item>
<item class_id_reference="20" object_id="_502">
<id>552</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>211</sink_obj>
</item>
<item class_id_reference="20" object_id="_503">
<id>553</id>
<edge_type>1</edge_type>
<source_obj>210</source_obj>
<sink_obj>211</sink_obj>
</item>
<item class_id_reference="20" object_id="_504">
<id>554</id>
<edge_type>1</edge_type>
<source_obj>211</source_obj>
<sink_obj>212</sink_obj>
</item>
<item class_id_reference="20" object_id="_505">
<id>555</id>
<edge_type>1</edge_type>
<source_obj>212</source_obj>
<sink_obj>213</sink_obj>
</item>
<item class_id_reference="20" object_id="_506">
<id>556</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>213</sink_obj>
</item>
<item class_id_reference="20" object_id="_507">
<id>557</id>
<edge_type>1</edge_type>
<source_obj>213</source_obj>
<sink_obj>214</sink_obj>
</item>
<item class_id_reference="20" object_id="_508">
<id>558</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>215</sink_obj>
</item>
<item class_id_reference="20" object_id="_509">
<id>559</id>
<edge_type>1</edge_type>
<source_obj>214</source_obj>
<sink_obj>215</sink_obj>
</item>
<item class_id_reference="20" object_id="_510">
<id>562</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>216</sink_obj>
</item>
<item class_id_reference="20" object_id="_511">
<id>563</id>
<edge_type>1</edge_type>
<source_obj>377</source_obj>
<sink_obj>216</sink_obj>
</item>
<item class_id_reference="20" object_id="_512">
<id>566</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>217</sink_obj>
</item>
<item class_id_reference="20" object_id="_513">
<id>567</id>
<edge_type>1</edge_type>
<source_obj>207</source_obj>
<sink_obj>217</sink_obj>
</item>
<item class_id_reference="20" object_id="_514">
<id>569</id>
<edge_type>1</edge_type>
<source_obj>568</source_obj>
<sink_obj>217</sink_obj>
</item>
<item class_id_reference="20" object_id="_515">
<id>572</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>218</sink_obj>
</item>
<item class_id_reference="20" object_id="_516">
<id>573</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>219</sink_obj>
</item>
<item class_id_reference="20" object_id="_517">
<id>574</id>
<edge_type>1</edge_type>
<source_obj>356</source_obj>
<sink_obj>219</sink_obj>
</item>
<item class_id_reference="20" object_id="_518">
<id>575</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>220</sink_obj>
</item>
<item class_id_reference="20" object_id="_519">
<id>576</id>
<edge_type>1</edge_type>
<source_obj>377</source_obj>
<sink_obj>220</sink_obj>
</item>
<item class_id_reference="20" object_id="_520">
<id>577</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>221</sink_obj>
</item>
<item class_id_reference="20" object_id="_521">
<id>578</id>
<edge_type>1</edge_type>
<source_obj>377</source_obj>
<sink_obj>221</sink_obj>
</item>
<item class_id_reference="20" object_id="_522">
<id>579</id>
<edge_type>1</edge_type>
<source_obj>220</source_obj>
<sink_obj>221</sink_obj>
</item>
<item class_id_reference="20" object_id="_523">
<id>580</id>
<edge_type>2</edge_type>
<source_obj>75</source_obj>
<sink_obj>222</sink_obj>
</item>
<item class_id_reference="20" object_id="_524">
<id>581</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_525">
<id>582</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_526">
<id>583</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_527">
<id>584</id>
<edge_type>1</edge_type>
<source_obj>297</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_528">
<id>585</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_529">
<id>586</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_530">
<id>587</id>
<edge_type>1</edge_type>
<source_obj>356</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_531">
<id>588</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_532">
<id>589</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_533">
<id>590</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_534">
<id>591</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_535">
<id>592</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_536">
<id>593</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_537">
<id>594</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_538">
<id>595</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_539">
<id>596</id>
<edge_type>1</edge_type>
<source_obj>297</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_540">
<id>597</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_541">
<id>598</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_542">
<id>599</id>
<edge_type>1</edge_type>
<source_obj>300</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_543">
<id>600</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_544">
<id>601</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_545">
<id>602</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_546">
<id>603</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_547">
<id>604</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_548">
<id>605</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_549">
<id>606</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_550">
<id>607</id>
<edge_type>1</edge_type>
<source_obj>356</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_551">
<id>608</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_552">
<id>609</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_553">
<id>610</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_554">
<id>611</id>
<edge_type>1</edge_type>
<source_obj>297</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_555">
<id>612</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_556">
<id>613</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_557">
<id>614</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_558">
<id>615</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_559">
<id>616</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_560">
<id>617</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_561">
<id>618</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_562">
<id>619</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_563">
<id>620</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_564">
<id>621</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_565">
<id>622</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_566">
<id>623</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_567">
<id>624</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_568">
<id>625</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_569">
<id>626</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_570">
<id>627</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_571">
<id>628</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_572">
<id>629</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_573">
<id>630</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>99</sink_obj>
</item>
<item class_id_reference="20" object_id="_574">
<id>631</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_575">
<id>632</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_576">
<id>633</id>
<edge_type>2</edge_type>
<source_obj>110</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_577">
<id>841</id>
<edge_type>2</edge_type>
<source_obj>62</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_578">
<id>842</id>
<edge_type>2</edge_type>
<source_obj>75</source_obj>
<sink_obj>225</sink_obj>
</item>
<item class_id_reference="20" object_id="_579">
<id>843</id>
<edge_type>2</edge_type>
<source_obj>75</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_580">
<id>844</id>
<edge_type>2</edge_type>
<source_obj>102</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_581">
<id>845</id>
<edge_type>2</edge_type>
<source_obj>110</source_obj>
<sink_obj>203</sink_obj>
</item>
<item class_id_reference="20" object_id="_582">
<id>846</id>
<edge_type>2</edge_type>
<source_obj>110</source_obj>
<sink_obj>127</sink_obj>
</item>
<item class_id_reference="20" object_id="_583">
<id>847</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>201</sink_obj>
</item>
<item class_id_reference="20" object_id="_584">
<id>848</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>196</sink_obj>
</item>
<item class_id_reference="20" object_id="_585">
<id>849</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>183</sink_obj>
</item>
<item class_id_reference="20" object_id="_586">
<id>850</id>
<edge_type>2</edge_type>
<source_obj>127</source_obj>
<sink_obj>155</sink_obj>
</item>
<item class_id_reference="20" object_id="_587">
<id>851</id>
<edge_type>2</edge_type>
<source_obj>155</source_obj>
<sink_obj>201</sink_obj>
</item>
<item class_id_reference="20" object_id="_588">
<id>852</id>
<edge_type>2</edge_type>
<source_obj>183</source_obj>
<sink_obj>201</sink_obj>
</item>
<item class_id_reference="20" object_id="_589">
<id>853</id>
<edge_type>2</edge_type>
<source_obj>196</source_obj>
<sink_obj>201</sink_obj>
</item>
<item class_id_reference="20" object_id="_590">
<id>854</id>
<edge_type>2</edge_type>
<source_obj>201</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_591">
<id>855</id>
<edge_type>2</edge_type>
<source_obj>203</source_obj>
<sink_obj>206</sink_obj>
</item>
<item class_id_reference="20" object_id="_592">
<id>856</id>
<edge_type>2</edge_type>
<source_obj>203</source_obj>
<sink_obj>223</sink_obj>
</item>
<item class_id_reference="20" object_id="_593">
<id>857</id>
<edge_type>2</edge_type>
<source_obj>206</source_obj>
<sink_obj>223</sink_obj>
</item>
<item class_id_reference="20" object_id="_594">
<id>858</id>
<edge_type>2</edge_type>
<source_obj>223</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_595">
<id>860</id>
<edge_type>4</edge_type>
<source_obj>136</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_596">
<id>861</id>
<edge_type>4</edge_type>
<source_obj>164</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_597">
<id>862</id>
<edge_type>4</edge_type>
<source_obj>192</source_obj>
<sink_obj>193</sink_obj>
</item>
<item class_id_reference="20" object_id="_598">
<id>863</id>
<edge_type>4</edge_type>
<source_obj>217</source_obj>
<sink_obj>218</sink_obj>
</item>
<item class_id_reference="20" object_id="_599">
<id>864</id>
<edge_type>4</edge_type>
<source_obj>216</source_obj>
<sink_obj>217</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="_600">
<mId>1</mId>
<mTag>Pool</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>-1</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_601">
<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>62</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>19</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_602">
<mId>3</mId>
<mTag>Loop 1</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>0</mMinTripCount>
<mMaxTripCount>196607</mMaxTripCount>
<mMinLatency>-2</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_603">
<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>75</item>
<item>102</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>1</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_604">
<mId>5</mId>
<mTag>Loop 1.1</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>6</count>
<item_version>0</item_version>
<item>110</item>
<item>127</item>
<item>155</item>
<item>183</item>
<item>196</item>
<item>201</item>
</basic_blocks>
<mII>1</mII>
<mDepth>10</mDepth>
<mMinTripCount>0</mMinTripCount>
<mMaxTripCount>65025</mMaxTripCount>
<mMinLatency>65034</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_605">
<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>3</count>
<item_version>0</item_version>
<item>203</item>
<item>206</item>
<item>223</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>8</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_606">
<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>225</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="_607">
<states class_id="25" tracking_level="0" version="0">
<count>41</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_608">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>14</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_609">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_610">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_611">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_612">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_613">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_614">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_615">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_616">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_617">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_618">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_619">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_620">
<id>41</id>
<stage>20</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_621">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_622">
<id>43</id>
<stage>20</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_623">
<id>2</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_624">
<id>41</id>
<stage>19</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_625">
<id>43</id>
<stage>19</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_626">
<id>3</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_627">
<id>41</id>
<stage>18</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_628">
<id>43</id>
<stage>18</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_629">
<id>4</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_630">
<id>41</id>
<stage>17</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_631">
<id>43</id>
<stage>17</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_632">
<id>5</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_633">
<id>41</id>
<stage>16</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_634">
<id>43</id>
<stage>16</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_635">
<id>6</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_636">
<id>41</id>
<stage>15</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_637">
<id>43</id>
<stage>15</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_638">
<id>7</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_639">
<id>41</id>
<stage>14</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_640">
<id>43</id>
<stage>14</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_641">
<id>8</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_642">
<id>41</id>
<stage>13</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_643">
<id>43</id>
<stage>13</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_644">
<id>9</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_645">
<id>41</id>
<stage>12</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_646">
<id>43</id>
<stage>12</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_647">
<id>10</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_648">
<id>41</id>
<stage>11</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_649">
<id>43</id>
<stage>11</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_650">
<id>11</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_651">
<id>41</id>
<stage>10</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_652">
<id>43</id>
<stage>10</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_653">
<id>12</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_654">
<id>41</id>
<stage>9</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_655">
<id>43</id>
<stage>9</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_656">
<id>13</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_657">
<id>41</id>
<stage>8</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_658">
<id>43</id>
<stage>8</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_659">
<id>14</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_660">
<id>41</id>
<stage>7</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_661">
<id>43</id>
<stage>7</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_662">
<id>15</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_663">
<id>41</id>
<stage>6</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_664">
<id>43</id>
<stage>6</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_665">
<id>16</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_666">
<id>41</id>
<stage>5</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_667">
<id>43</id>
<stage>5</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_668">
<id>17</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_669">
<id>41</id>
<stage>4</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_670">
<id>43</id>
<stage>4</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_671">
<id>18</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_672">
<id>41</id>
<stage>3</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_673">
<id>43</id>
<stage>3</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_674">
<id>19</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_675">
<id>41</id>
<stage>2</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_676">
<id>43</id>
<stage>2</stage>
<latency>20</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_677">
<id>20</id>
<operations>
<count>40</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_678">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_679">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_680">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_681">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_682">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_683">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_684">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_685">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_686">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_687">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_688">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_689">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_690">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_691">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_692">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_693">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_694">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_695">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_696">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_697">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_698">
<id>41</id>
<stage>1</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_699">
<id>43</id>
<stage>1</stage>
<latency>20</latency>
</item>
<item class_id_reference="28" object_id="_700">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_701">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_702">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_703">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_704">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_705">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_706">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_707">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_708">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_709">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_710">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_711">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_712">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_713">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_714">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_715">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_716">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_717">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_718">
<id>21</id>
<operations>
<count>16</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_719">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_720">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_721">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_722">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_723">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_724">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_725">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_726">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_727">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_728">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_729">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_730">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_731">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_732">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_733">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_734">
<id>224</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_735">
<id>22</id>
<operations>
<count>23</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_736">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_737">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_738">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_739">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_740">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_741">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_742">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_743">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_744">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_745">
<id>88</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_746">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_747">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_748">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_749">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_750">
<id>93</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_751">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_752">
<id>95</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_753">
<id>96</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_754">
<id>97</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_755">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_756">
<id>99</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_757">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_758">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_759">
<id>23</id>
<operations>
<count>42</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_760">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_761">
<id>104</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_762">
<id>106</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_763">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_764">
<id>108</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_765">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_766">
<id>113</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_767">
<id>114</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_768">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_769">
<id>116</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_770">
<id>117</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_771">
<id>118</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_772">
<id>119</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_773">
<id>120</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_774">
<id>121</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_775">
<id>124</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_776">
<id>125</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_777">
<id>128</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_778">
<id>129</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_779">
<id>130</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_780">
<id>131</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_781">
<id>132</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_782">
<id>133</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_783">
<id>134</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_784">
<id>135</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_785">
<id>156</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_786">
<id>157</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_787">
<id>158</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_788">
<id>159</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_789">
<id>160</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_790">
<id>161</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_791">
<id>162</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_792">
<id>163</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_793">
<id>184</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_794">
<id>185</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_795">
<id>186</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_796">
<id>187</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_797">
<id>188</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_798">
<id>189</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_799">
<id>190</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_800">
<id>191</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_801">
<id>199</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_802">
<id>24</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_803">
<id>136</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_804">
<id>164</id>
<stage>7</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_805">
<id>192</id>
<stage>7</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_806">
<id>25</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_807">
<id>136</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_808">
<id>164</id>
<stage>6</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_809">
<id>192</id>
<stage>6</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_810">
<id>26</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_811">
<id>136</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_812">
<id>164</id>
<stage>5</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_813">
<id>192</id>
<stage>5</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_814">
<id>27</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_815">
<id>136</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_816">
<id>164</id>
<stage>4</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_817">
<id>192</id>
<stage>4</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_818">
<id>28</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_819">
<id>136</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_820">
<id>164</id>
<stage>3</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_821">
<id>192</id>
<stage>3</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_822">
<id>29</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_823">
<id>136</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_824">
<id>164</id>
<stage>2</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_825">
<id>192</id>
<stage>2</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_826">
<id>30</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_827">
<id>136</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_828">
<id>164</id>
<stage>1</stage>
<latency>7</latency>
</item>
<item class_id_reference="28" object_id="_829">
<id>192</id>
<stage>1</stage>
<latency>7</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_830">
<id>31</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_831">
<id>137</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_832">
<id>165</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_833">
<id>193</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_834">
<id>32</id>
<operations>
<count>45</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_835">
<id>105</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_836">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_837">
<id>111</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_838">
<id>122</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_839">
<id>123</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_840">
<id>126</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_841">
<id>138</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_842">
<id>139</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_843">
<id>140</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_844">
<id>141</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_845">
<id>142</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_846">
<id>143</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_847">
<id>144</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_848">
<id>145</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_849">
<id>146</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_850">
<id>147</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_851">
<id>148</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_852">
<id>149</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_853">
<id>150</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_854">
<id>151</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_855">
<id>152</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_856">
<id>153</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_857">
<id>154</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_858">
<id>166</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_859">
<id>167</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_860">
<id>168</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_861">
<id>169</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_862">
<id>170</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_863">
<id>171</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_864">
<id>172</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_865">
<id>173</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_866">
<id>174</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_867">
<id>175</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_868">
<id>176</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_869">
<id>177</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_870">
<id>178</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_871">
<id>179</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_872">
<id>180</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_873">
<id>181</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_874">
<id>182</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_875">
<id>194</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_876">
<id>195</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_877">
<id>197</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_878">
<id>198</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_879">
<id>200</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_880">
<id>33</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_881">
<id>202</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_882">
<id>204</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_883">
<id>34</id>
<operations>
<count>13</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_884">
<id>204</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_885">
<id>205</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_886">
<id>208</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_887">
<id>209</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_888">
<id>210</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_889">
<id>211</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_890">
<id>212</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_891">
<id>213</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_892">
<id>214</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_893">
<id>215</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_894">
<id>219</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_895">
<id>220</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_896">
<id>221</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_897">
<id>35</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_898">
<id>207</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_899">
<id>216</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_900">
<id>36</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_901">
<id>217</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_902">
<id>37</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_903">
<id>218</id>
<stage>5</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_904">
<id>38</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_905">
<id>218</id>
<stage>4</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_906">
<id>39</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_907">
<id>218</id>
<stage>3</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_908">
<id>40</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_909">
<id>218</id>
<stage>2</stage>
<latency>5</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_910">
<id>41</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_911">
<id>218</id>
<stage>1</stage>
<latency>5</latency>
</item>
<item class_id_reference="28" object_id="_912">
<id>222</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>42</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_913">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>85</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="_914">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>86</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="_915">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>87</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="_916">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>88</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="_917">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>89</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="_918">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>90</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="_919">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>91</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="_920">
<inState>8</inState>
<outState>9</outState>
<condition>
<id>92</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="_921">
<inState>9</inState>
<outState>10</outState>
<condition>
<id>93</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="_922">
<inState>10</inState>
<outState>11</outState>
<condition>
<id>94</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="_923">
<inState>11</inState>
<outState>12</outState>
<condition>
<id>95</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="_924">
<inState>12</inState>
<outState>13</outState>
<condition>
<id>96</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="_925">
<inState>13</inState>
<outState>14</outState>
<condition>
<id>97</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="_926">
<inState>14</inState>
<outState>15</outState>
<condition>
<id>98</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="_927">
<inState>15</inState>
<outState>16</outState>
<condition>
<id>99</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="_928">
<inState>16</inState>
<outState>17</outState>
<condition>
<id>100</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="_929">
<inState>17</inState>
<outState>18</outState>
<condition>
<id>101</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="_930">
<inState>18</inState>
<outState>19</outState>
<condition>
<id>102</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="_931">
<inState>19</inState>
<outState>20</outState>
<condition>
<id>103</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="_932">
<inState>20</inState>
<outState>21</outState>
<condition>
<id>105</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="_933">
<inState>21</inState>
<outState>22</outState>
<condition>
<id>106</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>72</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_934">
<inState>22</inState>
<outState>23</outState>
<condition>
<id>109</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="_935">
<inState>33</inState>
<outState>34</outState>
<condition>
<id>168</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="_936">
<inState>34</inState>
<outState>35</outState>
<condition>
<id>170</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="_937">
<inState>35</inState>
<outState>36</outState>
<condition>
<id>172</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="_938">
<inState>36</inState>
<outState>37</outState>
<condition>
<id>173</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="_939">
<inState>37</inState>
<outState>38</outState>
<condition>
<id>174</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="_940">
<inState>38</inState>
<outState>39</outState>
<condition>
<id>175</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="_941">
<inState>39</inState>
<outState>40</outState>
<condition>
<id>176</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="_942">
<inState>40</inState>
<outState>41</outState>
<condition>
<id>177</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="_943">
<inState>41</inState>
<outState>21</outState>
<condition>
<id>179</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="_944">
<inState>23</inState>
<outState>24</outState>
<condition>
<id>180</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="_945">
<inState>24</inState>
<outState>25</outState>
<condition>
<id>181</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="_946">
<inState>25</inState>
<outState>26</outState>
<condition>
<id>182</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="_947">
<inState>26</inState>
<outState>27</outState>
<condition>
<id>183</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="_948">
<inState>27</inState>
<outState>28</outState>
<condition>
<id>184</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="_949">
<inState>28</inState>
<outState>29</outState>
<condition>
<id>185</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="_950">
<inState>29</inState>
<outState>30</outState>
<condition>
<id>186</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="_951">
<inState>30</inState>
<outState>31</outState>
<condition>
<id>187</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="_952">
<inState>31</inState>
<outState>32</outState>
<condition>
<id>188</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="_953">
<inState>32</inState>
<outState>33</outState>
<condition>
<id>189</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>107</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_954">
<inState>32</inState>
<outState>23</outState>
<condition>
<id>190</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>107</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>180</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>10</first>
<second class_id="39" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>13</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>18</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>0</first>
<second>19</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>0</first>
<second>19</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>19</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>21</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>23</first>
<second>6</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>30</first>
<second>0</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>23</first>
<second>6</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>30</first>
<second>0</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>175</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>177</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>180</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>181</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>182</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>184</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>185</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>186</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>187</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>188</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>189</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>190</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>192</first>
<second>
<first>23</first>
<second>6</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>30</first>
<second>0</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>197</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>199</first>
<second>
<first>22</first>
<second>0</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>31</first>
<second>0</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>32</first>
<second>0</second>
</second>
</item>
<item>
<first>204</first>
<second>
<first>32</first>
<second>1</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>207</first>
<second>
<first>34</first>
<second>0</second>
</second>
</item>
<item>
<first>208</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>209</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>210</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>216</first>
<second>
<first>34</first>
<second>0</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>35</first>
<second>0</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>36</first>
<second>4</second>
</second>
</item>
<item>
<first>219</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>220</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>221</first>
<second>
<first>33</first>
<second>0</second>
</second>
</item>
<item>
<first>222</first>
<second>
<first>40</first>
<second>0</second>
</second>
</item>
<item>
<first>224</first>
<second>
<first>20</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="40" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="41" tracking_level="0" version="0">
<first>62</first>
<second class_id="42" tracking_level="0" version="0">
<first>0</first>
<second>19</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>20</first>
<second>20</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>20</first>
<second>21</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>22</first>
<second>31</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>22</first>
<second>31</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>22</first>
<second>31</second>
</second>
</item>
<item>
<first>183</first>
<second>
<first>22</first>
<second>31</second>
</second>
</item>
<item>
<first>196</first>
<second>
<first>22</first>
<second>31</second>
</second>
</item>
<item>
<first>201</first>
<second>
<first>22</first>
<second>31</second>
</second>
</item>
<item>
<first>203</first>
<second>
<first>32</first>
<second>32</second>
</second>
</item>
<item>
<first>206</first>
<second>
<first>32</first>
<second>33</second>
</second>
</item>
<item>
<first>223</first>
<second>
<first>33</first>
<second>40</second>
</second>
</item>
<item>
<first>225</first>
<second>
<first>20</first>
<second>20</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="_955">
<region_name>Loop 1.1</region_name>
<basic_blocks>
<count>6</count>
<item_version>0</item_version>
<item>110</item>
<item>127</item>
<item>155</item>
<item>183</item>
<item>196</item>
<item>201</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>10</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="45" tracking_level="0" version="0">
<count>152</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>126</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>144</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>150</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>156</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>174</first>
<second>
<count>28</count>
<item_version>0</item_version>
<item>136</item>
<item>136</item>
<item>136</item>
<item>136</item>
<item>136</item>
<item>136</item>
<item>136</item>
<item>164</item>
<item>164</item>
<item>164</item>
<item>164</item>
<item>164</item>
<item>164</item>
<item>164</item>
<item>192</item>
<item>192</item>
<item>192</item>
<item>192</item>
<item>192</item>
<item>192</item>
<item>192</item>
<item>216</item>
<item>217</item>
<item>218</item>
<item>218</item>
<item>218</item>
<item>218</item>
<item>218</item>
</second>
</item>
<item>
<first>181</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>137</item>
<item>165</item>
<item>193</item>
</second>
</item>
<item>
<first>195</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>218</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>230</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>254</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>265</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>276</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>297</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>313</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
<item>
<first>321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>327</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>204</item>
<item>204</item>
</second>
</item>
<item>
<first>332</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>335</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>151</item>
<item>179</item>
</second>
</item>
<item>
<first>346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>356</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>366</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>370</first>
<second>
<count>20</count>
<item_version>0</item_version>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
</second>
</item>
<item>
<first>376</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>380</first>
<second>
<count>20</count>
<item_version>0</item_version>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
</second>
</item>
<item>
<first>386</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>392</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>399</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>404</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>407</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>411</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>416</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>419</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>424</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>432</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>438</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>446</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>450</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>453</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>459</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>469</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>477</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>482</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>488</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>493</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>498</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>505</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>512</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>518</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>525</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>529</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>533</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>539</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>545</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>551</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>563</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>567</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>570</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>576</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>581</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>588</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>595</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>599</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>604</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>610</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>615</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>623</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>637</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>641</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>646</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>650</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>655</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>659</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>664</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>668</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
<item>
<first>673</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>677</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>681</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>686</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>690</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>696</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</second>
</item>
<item>
<first>700</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>704</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>709</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>713</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>719</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</second>
</item>
<item>
<first>723</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</second>
</item>
<item>
<first>727</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>732</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</second>
</item>
<item>
<first>736</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>742</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</second>
</item>
<item>
<first>748</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>752</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>762</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>766</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>770</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>780</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>784</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>144</item>
</second>
</item>
<item>
<first>790</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>796</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>802</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>808</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>814</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>149</item>
</second>
</item>
<item>
<first>820</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>826</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>832</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>841</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>845</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>855</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>168</item>
</second>
</item>
<item>
<first>859</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>863</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</second>
</item>
<item>
<first>873</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</second>
</item>
<item>
<first>877</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</second>
</item>
<item>
<first>883</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>173</item>
</second>
</item>
<item>
<first>889</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>174</item>
</second>
</item>
<item>
<first>895</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>901</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>176</item>
</second>
</item>
<item>
<first>907</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>177</item>
</second>
</item>
<item>
<first>913</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>919</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>180</item>
</second>
</item>
<item>
<first>925</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>934</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>937</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</second>
</item>
<item>
<first>942</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</second>
</item>
<item>
<first>946</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>951</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>955</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>961</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</second>
</item>
<item>
<first>966</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>220</item>
</second>
</item>
<item>
<first>972</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
<item>
<first>979</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>986</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>991</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>997</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>1003</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>1009</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>157</item>
<item>158</item>
<item>159</item>
</second>
</item>
<item>
<first>1017</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>185</item>
<item>186</item>
<item>187</item>
</second>
</item>
<item>
<first>1025</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>1031</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>208</item>
<item>209</item>
</second>
</item>
<item>
<first>1037</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>129</item>
<item>130</item>
<item>131</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="48" tracking_level="0" version="0">
<count>139</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>bound4_fu_979</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>bound_fu_453</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>c_fu_512</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>cast2_fu_446</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>cast_fu_450</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>exitcond1_fu_610</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>exitcond_flatten1_fu_477</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>exitcond_flatten2_fu_488</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>exitcond_flatten_fu_599</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>exitcond_fu_493</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>exitcond_mid1_fu_498</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>exitcond_mid_fu_459</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>feature_in2_sum5_cast_fu_709</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>162</item>
</second>
</item>
<item>
<first>feature_in2_sum5_fu_704</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</second>
</item>
<item>
<first>feature_in2_sum6_cast_fu_732</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>190</item>
</second>
</item>
<item>
<first>feature_in2_sum6_fu_727</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>189</item>
</second>
</item>
<item>
<first>feature_in2_sum_cast_fu_686</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>134</item>
</second>
</item>
<item>
<first>feature_in2_sum_fu_681</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>133</item>
</second>
</item>
<item>
<first>feature_in_load_1_sum_3_fu_925</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>181</item>
</second>
</item>
<item>
<first>feature_in_load_1_to_int_fu_859</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>169</item>
</second>
</item>
<item>
<first>feature_in_load_2_to_int_fu_766</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>141</item>
</second>
</item>
<item>
<first>feature_out4_sum_cast_fu_951</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>214</item>
</second>
</item>
<item>
<first>feature_out4_sum_fu_946</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>213</item>
</second>
</item>
<item>
<first>gmem_addr_1_fu_736</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>gmem_addr_2_fu_713</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>gmem_addr_3_fu_690</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>gmem_addr_fu_955</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>grp_fu_1009</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>157</item>
<item>158</item>
<item>159</item>
</second>
</item>
<item>
<first>grp_fu_1017</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>185</item>
<item>186</item>
<item>187</item>
</second>
</item>
<item>
<first>grp_fu_1031</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>208</item>
<item>209</item>
</second>
</item>
<item>
<first>grp_fu_1037</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>129</item>
<item>130</item>
<item>131</item>
</second>
</item>
<item>
<first>grp_fu_335</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>151</item>
<item>179</item>
</second>
</item>
<item>
<first>i_fu_545</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>i_op_assign_11_mid2_fu_588</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>i_op_assign_11_mid_fu_505</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>i_op_assign_13_cast5_fu_465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>i_op_assign_13_cast5_mid1_fu_563</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>i_op_assign_13_mid2_fu_555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>i_op_assign_14_mid2_fu_615</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>i_op_assign_15_cast4_fu_595</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>i_op_assign_17_cast6_mid2_fu_525</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>i_op_assign_17_cast6_mid2_v_fu_518</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>i_op_assign_1_phi_fu_242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>i_op_assign_2_phi_fu_265</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>i_op_assign_3_phi_fu_276</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>i_op_assign_s_phi_fu_230</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>ii7_fu_623</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>indvar_flatten1_phi_fu_195</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>indvar_flatten6_op_fu_966</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>220</item>
</second>
</item>
<item>
<first>indvar_flatten6_phi_fu_218</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>indvar_flatten_next1_fu_482</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>indvar_flatten_next7_fu_972</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
<item>
<first>indvar_flatten_next_fu_604</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>indvar_flatten_phi_fu_254</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>j_fu_961</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</second>
</item>
<item>
<first>jj_fu_742</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</second>
</item>
<item>
<first>lhs_V_1_fu_719</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>184</item>
</second>
</item>
<item>
<first>lhs_V_2_fu_696</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>156</item>
</second>
</item>
<item>
<first>lhs_V_3_fu_673</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>128</item>
</second>
</item>
<item>
<first>lhs_V_fu_366</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>notlhs1_fu_877</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>172</item>
</second>
</item>
<item>
<first>notlhs2_fu_895</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>175</item>
</second>
</item>
<item>
<first>notlhs8_fu_802</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>147</item>
</second>
</item>
<item>
<first>notlhs_fu_784</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>144</item>
</second>
</item>
<item>
<first>notrhs1_fu_883</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>173</item>
</second>
</item>
<item>
<first>notrhs2_fu_901</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>176</item>
</second>
</item>
<item>
<first>notrhs9_fu_808</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>148</item>
</second>
</item>
<item>
<first>notrhs_fu_790</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>145</item>
</second>
</item>
<item>
<first>op_assign_8_phi_fu_206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>p_sum_fu_438</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>r_V_10_fu_700</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>160</item>
</second>
</item>
<item>
<first>r_V_13_fu_677</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>132</item>
</second>
</item>
<item>
<first>r_V_15_fu_407</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>r_V_1_fu_472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>r_V_1_mid1_fu_576</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>r_V_1_mid2_fu_581</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>r_V_1_mid_fu_539</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>r_V_4_mid2_fu_659</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>r_V_4_mid2_v_fu_655</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>r_V_4_mid2_v_v_fu_650</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>r_V_4_mid2_v_v_v_fu_646</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>r_V_4_mid2_v_v_v_v_fu_641</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>r_V_4_mid2_v_v_v_v_v_fu_637</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>r_V_4_mid2_v_v_v_v_v_v_fu_629</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>r_V_7_fu_723</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>188</item>
</second>
</item>
<item>
<first>r_V_cast_fu_469</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>r_V_cast_mid1_fu_567</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>r_V_fu_1003</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>r_V_mid1_fu_997</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>rhs_V_1_cast_fu_392</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>rhs_V_1_fu_396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>rhs_V_2_cast_fu_416</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>rhs_V_2_fu_404</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>rhs_V_7_cast_mid2_fu_529</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>rhs_V_fu_376</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>sum_2_fu_321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>194</item>
</second>
</item>
<item>
<first>sum_3_feature_in_load_2_fu_832</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>153</item>
</second>
</item>
<item>
<first>sum_3_phi_fu_286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>sum_3_to_int7_fu_748</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>138</item>
</second>
</item>
<item>
<first>sum_3_to_int_fu_841</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>166</item>
</second>
</item>
<item>
<first>sum_4_phi_fu_297</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>sum_5_phi_fu_313</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
<item>
<first>sum_fu_424</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>tmp1_cast_fu_934</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>210</item>
</second>
</item>
<item>
<first>tmp_10_fu_664</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>124</item>
</second>
</item>
<item>
<first>tmp_11_fu_1025</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>tmp_12_fu_551</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>tmp_13_fu_845</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>167</item>
</second>
</item>
<item>
<first>tmp_14_fu_855</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>168</item>
</second>
</item>
<item>
<first>tmp_15_fu_863</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>170</item>
</second>
</item>
<item>
<first>tmp_16_fu_873</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>171</item>
</second>
</item>
<item>
<first>tmp_17_cast_cast_fu_942</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>212</item>
</second>
</item>
<item>
<first>tmp_17_fu_889</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>174</item>
</second>
</item>
<item>
<first>tmp_18_fu_907</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>177</item>
</second>
</item>
<item>
<first>tmp_19_fu_913</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>178</item>
</second>
</item>
<item>
<first>tmp_1_fu_346</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>tmp_1_mid1_fu_991</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>tmp_1_mid2_fu_570</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>tmp_1_mid_fu_533</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>tmp_21_fu_919</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>180</item>
</second>
</item>
<item>
<first>tmp_22_fu_752</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>139</item>
</second>
</item>
<item>
<first>tmp_23_fu_762</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>140</item>
</second>
</item>
<item>
<first>tmp_24_fu_770</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>142</item>
</second>
</item>
<item>
<first>tmp_25_fu_780</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>143</item>
</second>
</item>
<item>
<first>tmp_26_fu_796</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>146</item>
</second>
</item>
<item>
<first>tmp_27_fu_814</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>149</item>
</second>
</item>
<item>
<first>tmp_28_fu_820</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>150</item>
</second>
</item>
<item>
<first>tmp_2_fu_432</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>tmp_30_fu_826</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>152</item>
</second>
</item>
<item>
<first>tmp_32_cast_fu_389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>tmp_3_fu_411</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>tmp_5_fu_986</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>tmp_6_fu_399</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>tmp_7_cast_fu_386</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>tmp_7_fu_356</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>tmp_8_fu_937</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>211</item>
</second>
</item>
<item>
<first>tmp_9_fu_419</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>tmp_s_fu_332</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>w_V_fu_668</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>3</count>
<item_version>0</item_version>
<item>
<first>grp_fu_327</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>204</item>
<item>204</item>
</second>
</item>
<item>
<first>grp_fu_370</first>
<second>
<count>20</count>
<item_version>0</item_version>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
<item>41</item>
</second>
</item>
<item>
<first>grp_fu_380</first>
<second>
<count>20</count>
<item_version>0</item_version>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
<item>43</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>10</count>
<item_version>0</item_version>
<item>
<first>CHin_V_read_read_fu_168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>Hin_V_read_read_fu_162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>Kx_V_read_read_fu_150</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>Ky_V_read_read_fu_144</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>Win_V_read_read_fu_156</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>feature_in_read_read_fu_132</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>feature_out_read_read_fu_126</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>grp_read_fu_181</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>137</item>
<item>165</item>
<item>193</item>
</second>
</item>
<item>
<first>grp_writeresp_fu_174</first>
<second>
<count>28</count>
<item_version>0</item_version>
<item>136</item>
<item>136</item>
<item>136</item>
<item>136</item>
<item>136</item>
<item>136</item>
<item>136</item>
<item>164</item>
<item>164</item>
<item>164</item>
<item>164</item>
<item>164</item>
<item>164</item>
<item>164</item>
<item>192</item>
<item>192</item>
<item>192</item>
<item>192</item>
<item>192</item>
<item>192</item>
<item>192</item>
<item>216</item>
<item>217</item>
<item>218</item>
<item>218</item>
<item>218</item>
<item>218</item>
<item>218</item>
</second>
</item>
<item>
<first>mode_V_read_read_fu_138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</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>59</count>
<item_version>0</item_version>
<item>
<first>191</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>250</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>293</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>309</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
<item>
<first>340</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>137</item>
<item>165</item>
<item>193</item>
</second>
</item>
<item>
<first>1045</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>1051</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>1056</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>1062</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>1067</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>1073</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>1078</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>1083</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>1090</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>1098</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>1103</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>1110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>1115</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>1121</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>1130</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>1134</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>1139</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>1144</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>1149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>1155</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>1160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>1165</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>1170</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>1175</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>1183</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>1188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>1198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>1206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>1211</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>1216</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>1223</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>1228</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>1233</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>1238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>1243</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>1248</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>1253</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>1257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>1262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>1267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>1273</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>1279</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>1285</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</second>
</item>
<item>
<first>1290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>204</item>
</second>
</item>
<item>
<first>1295</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>1300</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</second>
</item>
<item>
<first>1305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>59</count>
<item_version>0</item_version>
<item>
<first>CHin_V_read_reg_1067</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>Hin_V_read_reg_1062</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>Kx_V_read_reg_1051</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>Win_V_read_reg_1056</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>bound4_reg_1160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>bound_reg_1165</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>exitcond_flatten2_reg_1188</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>exitcond_flatten_reg_1253</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>exitcond_mid1_reg_1198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>exitcond_mid_reg_1170</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>gmem_addr_1_reg_1279</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>191</item>
</second>
</item>
<item>
<first>gmem_addr_2_reg_1273</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>163</item>
</second>
</item>
<item>
<first>gmem_addr_3_reg_1267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>135</item>
</second>
</item>
<item>
<first>gmem_addr_reg_1295</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>215</item>
</second>
</item>
<item>
<first>i_op_assign_11_mid2_reg_1238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>i_op_assign_13_mid2_reg_1223</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>i_op_assign_15_cast4_reg_1243</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>i_op_assign_17_cast6_mid2_reg_1211</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>i_op_assign_17_cast6_mid2_v_reg_1206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>i_op_assign_1_reg_238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>i_op_assign_2_reg_261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>i_op_assign_3_reg_272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>i_op_assign_s_reg_226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>indvar_flatten1_reg_191</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>indvar_flatten6_reg_214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>indvar_flatten_next1_reg_1183</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>indvar_flatten_next7_reg_1305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>221</item>
</second>
</item>
<item>
<first>indvar_flatten_next_reg_1257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>indvar_flatten_reg_250</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>j_reg_1300</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>219</item>
</second>
</item>
<item>
<first>jj_reg_1285</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>199</item>
</second>
</item>
<item>
<first>lhs_V_reg_1083</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>mode_V_read_reg_1045</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>op_assign_8_reg_202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>p_sum_reg_1155</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>r_V_14_reg_1110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>r_V_15_reg_1139</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>r_V_1_mid2_reg_1233</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>r_V_1_reg_1175</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>r_V_4_mid2_v_v_v_v_v_v_reg_1262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>reg_340</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>137</item>
<item>165</item>
<item>193</item>
</second>
</item>
<item>
<first>rhs_V_1_cast_reg_1115</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>rhs_V_1_reg_1121</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>rhs_V_2_cast_reg_1149</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>rhs_V_2_reg_1134</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>rhs_V_7_cast_mid2_reg_1216</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>rhs_V_reg_1090</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>sum_1_reg_1290</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>204</item>
</second>
</item>
<item>
<first>sum_3_reg_283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>sum_4_reg_293</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>sum_5_reg_309</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
<item>
<first>tmp_1_mid2_reg_1228</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>tmp_1_reg_1073</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>tmp_32_cast_reg_1103</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>tmp_5_reg_1248</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>tmp_6_reg_1130</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>tmp_7_cast_reg_1098</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>tmp_7_reg_1078</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>tmp_s_reg_1144</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>11</count>
<item_version>0</item_version>
<item>
<first>191</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>250</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>293</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>309</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>11</count>
<item_version>0</item_version>
<item>
<first>i_op_assign_1_reg_238</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>i_op_assign_2_reg_261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>i_op_assign_3_reg_272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>i_op_assign_s_reg_226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>indvar_flatten1_reg_191</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>indvar_flatten6_reg_214</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>indvar_flatten_reg_250</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>op_assign_8_reg_202</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>sum_3_reg_283</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>sum_4_reg_293</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>197</item>
</second>
</item>
<item>
<first>sum_5_reg_309</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>207</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="51" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>CHin_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>17</item>
</second>
</item>
</second>
</item>
<item>
<first>Hin_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>16</item>
</second>
</item>
</second>
</item>
<item>
<first>Kx_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>14</item>
</second>
</item>
</second>
</item>
<item>
<first>Ky_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>13</item>
</second>
</item>
</second>
</item>
<item>
<first>Win_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>15</item>
</second>
</item>
</second>
</item>
<item>
<first>feature_in</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
</second>
</item>
<item>
<first>feature_out</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
</second>
</item>
<item>
<first>gmem</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mode_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>12</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="53" 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>
|
with Tkmrpc.Servers.Ike;
with Tkmrpc.Response.Ike.Tkm_Limits.Convert;
package body Tkmrpc.Operation_Handlers.Ike.Tkm_Limits is
-------------------------------------------------------------------------
procedure Handle (Req : Request.Data_Type; Res : out Response.Data_Type) is
pragma Unreferenced (Req);
Specific_Res : Response.Ike.Tkm_Limits.Response_Type;
begin
Specific_Res := Response.Ike.Tkm_Limits.Null_Response;
Servers.Ike.Tkm_Limits
(Result => Specific_Res.Header.Result,
Max_Active_Requests => Specific_Res.Data.Max_Active_Requests,
Nc_Contexts => Specific_Res.Data.Nc_Contexts,
Dh_Contexts => Specific_Res.Data.Dh_Contexts,
Cc_Contexts => Specific_Res.Data.Cc_Contexts,
Ae_Contexts => Specific_Res.Data.Ae_Contexts,
Isa_Contexts => Specific_Res.Data.Isa_Contexts,
Esa_Contexts => Specific_Res.Data.Esa_Contexts);
Res := Response.Ike.Tkm_Limits.Convert.To_Response (S => Specific_Res);
end Handle;
end Tkmrpc.Operation_Handlers.Ike.Tkm_Limits;
|
pragma License (Unrestricted);
-- implementation unit required by compiler
with System.Packed_Arrays;
package System.Pack_03 is
pragma Preelaborate;
-- It can not be Pure, subprograms would become __attribute__((const)).
type Bits_03 is mod 2 ** 3;
for Bits_03'Size use 3;
package Indexing is new Packed_Arrays.Indexing (Bits_03);
-- required for accessing arrays by compiler
function Get_03 (
Arr : Address;
N : Natural;
Rev_SSO : Boolean)
return Bits_03
renames Indexing.Get;
procedure Set_03 (
Arr : Address;
N : Natural;
E : Bits_03;
Rev_SSO : Boolean)
renames Indexing.Set;
end System.Pack_03;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with AMF.Elements;
with AMF.Internals.Element_Collections;
with AMF.Internals.Helpers;
with AMF.Internals.Tables.UML_Attributes;
with AMF.Visitors.UML_Iterators;
with AMF.Visitors.UML_Visitors;
with League.Strings.Internals;
with Matreshka.Internals.Strings;
package body AMF.Internals.UML_Regions is
-------------------
-- Enter_Element --
-------------------
overriding procedure Enter_Element
(Self : not null access constant UML_Region_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then
AMF.Visitors.UML_Visitors.UML_Visitor'Class
(Visitor).Enter_Region
(AMF.UML.Regions.UML_Region_Access (Self),
Control);
end if;
end Enter_Element;
-------------------
-- Leave_Element --
-------------------
overriding procedure Leave_Element
(Self : not null access constant UML_Region_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then
AMF.Visitors.UML_Visitors.UML_Visitor'Class
(Visitor).Leave_Region
(AMF.UML.Regions.UML_Region_Access (Self),
Control);
end if;
end Leave_Element;
-------------------
-- Visit_Element --
-------------------
overriding procedure Visit_Element
(Self : not null access constant UML_Region_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Iterator in AMF.Visitors.UML_Iterators.UML_Iterator'Class then
AMF.Visitors.UML_Iterators.UML_Iterator'Class
(Iterator).Visit_Region
(Visitor,
AMF.UML.Regions.UML_Region_Access (Self),
Control);
end if;
end Visit_Element;
-------------------------
-- Get_Extended_Region --
-------------------------
overriding function Get_Extended_Region
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Regions.UML_Region_Access is
begin
return
AMF.UML.Regions.UML_Region_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Extended_Region
(Self.Element)));
end Get_Extended_Region;
-------------------------
-- Set_Extended_Region --
-------------------------
overriding procedure Set_Extended_Region
(Self : not null access UML_Region_Proxy;
To : AMF.UML.Regions.UML_Region_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Extended_Region
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Extended_Region;
------------------------------
-- Get_Redefinition_Context --
------------------------------
overriding function Get_Redefinition_Context
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Classifiers.UML_Classifier_Access is
begin
raise Program_Error;
return Get_Redefinition_Context (Self);
end Get_Redefinition_Context;
---------------
-- Get_State --
---------------
overriding function Get_State
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.States.UML_State_Access is
begin
return
AMF.UML.States.UML_State_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_State
(Self.Element)));
end Get_State;
---------------
-- Set_State --
---------------
overriding procedure Set_State
(Self : not null access UML_Region_Proxy;
To : AMF.UML.States.UML_State_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_State
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_State;
-----------------------
-- Get_State_Machine --
-----------------------
overriding function Get_State_Machine
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.State_Machines.UML_State_Machine_Access is
begin
return
AMF.UML.State_Machines.UML_State_Machine_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_State_Machine
(Self.Element)));
end Get_State_Machine;
-----------------------
-- Set_State_Machine --
-----------------------
overriding procedure Set_State_Machine
(Self : not null access UML_Region_Proxy;
To : AMF.UML.State_Machines.UML_State_Machine_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_State_Machine
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_State_Machine;
-------------------
-- Get_Subvertex --
-------------------
overriding function Get_Subvertex
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Vertexs.Collections.Set_Of_UML_Vertex is
begin
return
AMF.UML.Vertexs.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Subvertex
(Self.Element)));
end Get_Subvertex;
--------------------
-- Get_Transition --
--------------------
overriding function Get_Transition
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Transitions.Collections.Set_Of_UML_Transition is
begin
return
AMF.UML.Transitions.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Transition
(Self.Element)));
end Get_Transition;
------------------------
-- Get_Element_Import --
------------------------
overriding function Get_Element_Import
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Element_Imports.Collections.Set_Of_UML_Element_Import is
begin
return
AMF.UML.Element_Imports.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Element_Import
(Self.Element)));
end Get_Element_Import;
-------------------------
-- Get_Imported_Member --
-------------------------
overriding function Get_Imported_Member
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element is
begin
return
AMF.UML.Packageable_Elements.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Imported_Member
(Self.Element)));
end Get_Imported_Member;
----------------
-- Get_Member --
----------------
overriding function Get_Member
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is
begin
return
AMF.UML.Named_Elements.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Member
(Self.Element)));
end Get_Member;
----------------------
-- Get_Owned_Member --
----------------------
overriding function Get_Owned_Member
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is
begin
return
AMF.UML.Named_Elements.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Owned_Member
(Self.Element)));
end Get_Owned_Member;
--------------------
-- Get_Owned_Rule --
--------------------
overriding function Get_Owned_Rule
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint is
begin
return
AMF.UML.Constraints.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Owned_Rule
(Self.Element)));
end Get_Owned_Rule;
------------------------
-- Get_Package_Import --
------------------------
overriding function Get_Package_Import
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Package_Imports.Collections.Set_Of_UML_Package_Import is
begin
return
AMF.UML.Package_Imports.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Package_Import
(Self.Element)));
end Get_Package_Import;
---------------------------
-- Get_Client_Dependency --
---------------------------
overriding function Get_Client_Dependency
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency is
begin
return
AMF.UML.Dependencies.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Client_Dependency
(Self.Element)));
end Get_Client_Dependency;
-------------------------
-- Get_Name_Expression --
-------------------------
overriding function Get_Name_Expression
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access is
begin
return
AMF.UML.String_Expressions.UML_String_Expression_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Name_Expression
(Self.Element)));
end Get_Name_Expression;
-------------------------
-- Set_Name_Expression --
-------------------------
overriding procedure Set_Name_Expression
(Self : not null access UML_Region_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Name_Expression
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Name_Expression;
-------------------
-- Get_Namespace --
-------------------
overriding function Get_Namespace
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access is
begin
return
AMF.UML.Namespaces.UML_Namespace_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Namespace
(Self.Element)));
end Get_Namespace;
------------------------
-- Get_Qualified_Name --
------------------------
overriding function Get_Qualified_Name
(Self : not null access constant UML_Region_Proxy)
return AMF.Optional_String is
begin
declare
use type Matreshka.Internals.Strings.Shared_String_Access;
Aux : constant Matreshka.Internals.Strings.Shared_String_Access
:= AMF.Internals.Tables.UML_Attributes.Internal_Get_Qualified_Name (Self.Element);
begin
if Aux = null then
return (Is_Empty => True);
else
return (False, League.Strings.Internals.Create (Aux));
end if;
end;
end Get_Qualified_Name;
-----------------
-- Get_Is_Leaf --
-----------------
overriding function Get_Is_Leaf
(Self : not null access constant UML_Region_Proxy)
return Boolean is
begin
return
AMF.Internals.Tables.UML_Attributes.Internal_Get_Is_Leaf
(Self.Element);
end Get_Is_Leaf;
-----------------
-- Set_Is_Leaf --
-----------------
overriding procedure Set_Is_Leaf
(Self : not null access UML_Region_Proxy;
To : Boolean) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Is_Leaf
(Self.Element, To);
end Set_Is_Leaf;
---------------------------
-- Get_Redefined_Element --
---------------------------
overriding function Get_Redefined_Element
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Redefinable_Elements.Collections.Set_Of_UML_Redefinable_Element is
begin
return
AMF.UML.Redefinable_Elements.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Redefined_Element
(Self.Element)));
end Get_Redefined_Element;
------------------------------
-- Get_Redefinition_Context --
------------------------------
overriding function Get_Redefinition_Context
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is
begin
return
AMF.UML.Classifiers.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Redefinition_Context
(Self.Element)));
end Get_Redefinition_Context;
--------------------
-- Belongs_To_PSM --
--------------------
overriding function Belongs_To_PSM
(Self : not null access constant UML_Region_Proxy)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Belongs_To_PSM unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Belongs_To_PSM";
return Belongs_To_PSM (Self);
end Belongs_To_PSM;
------------------------------
-- Containing_State_Machine --
------------------------------
overriding function Containing_State_Machine
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.State_Machines.UML_State_Machine_Access is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Containing_State_Machine unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Containing_State_Machine";
return Containing_State_Machine (Self);
end Containing_State_Machine;
------------------------
-- Is_Consistent_With --
------------------------
overriding function Is_Consistent_With
(Self : not null access constant UML_Region_Proxy;
Redefinee : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Consistent_With unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Is_Consistent_With";
return Is_Consistent_With (Self, Redefinee);
end Is_Consistent_With;
-----------------------------------
-- Is_Redefinition_Context_Valid --
-----------------------------------
overriding function Is_Redefinition_Context_Valid
(Self : not null access constant UML_Region_Proxy;
Redefined : AMF.UML.Regions.UML_Region_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Redefinition_Context_Valid unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Is_Redefinition_Context_Valid";
return Is_Redefinition_Context_Valid (Self, Redefined);
end Is_Redefinition_Context_Valid;
--------------------------
-- Redefinition_Context --
--------------------------
overriding function Redefinition_Context
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Classifiers.UML_Classifier_Access is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Redefinition_Context unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Redefinition_Context";
return Redefinition_Context (Self);
end Redefinition_Context;
------------------------
-- Exclude_Collisions --
------------------------
overriding function Exclude_Collisions
(Self : not null access constant UML_Region_Proxy;
Imps : AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Exclude_Collisions unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Exclude_Collisions";
return Exclude_Collisions (Self, Imps);
end Exclude_Collisions;
-------------------------
-- Get_Names_Of_Member --
-------------------------
overriding function Get_Names_Of_Member
(Self : not null access constant UML_Region_Proxy;
Element : AMF.UML.Named_Elements.UML_Named_Element_Access)
return AMF.String_Collections.Set_Of_String is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Get_Names_Of_Member unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Get_Names_Of_Member";
return Get_Names_Of_Member (Self, Element);
end Get_Names_Of_Member;
--------------------
-- Import_Members --
--------------------
overriding function Import_Members
(Self : not null access constant UML_Region_Proxy;
Imps : AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Import_Members unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Import_Members";
return Import_Members (Self, Imps);
end Import_Members;
---------------------
-- Imported_Member --
---------------------
overriding function Imported_Member
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Imported_Member unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Imported_Member";
return Imported_Member (Self);
end Imported_Member;
---------------------------------
-- Members_Are_Distinguishable --
---------------------------------
overriding function Members_Are_Distinguishable
(Self : not null access constant UML_Region_Proxy)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Members_Are_Distinguishable unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Members_Are_Distinguishable";
return Members_Are_Distinguishable (Self);
end Members_Are_Distinguishable;
------------------
-- Owned_Member --
------------------
overriding function Owned_Member
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Owned_Member unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Owned_Member";
return Owned_Member (Self);
end Owned_Member;
-------------------------
-- All_Owning_Packages --
-------------------------
overriding function All_Owning_Packages
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "All_Owning_Packages unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.All_Owning_Packages";
return All_Owning_Packages (Self);
end All_Owning_Packages;
-----------------------------
-- Is_Distinguishable_From --
-----------------------------
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Region_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Is_Distinguishable_From";
return Is_Distinguishable_From (Self, N, Ns);
end Is_Distinguishable_From;
---------------
-- Namespace --
---------------
overriding function Namespace
(Self : not null access constant UML_Region_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Namespace unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Namespace";
return Namespace (Self);
end Namespace;
-----------------------------------
-- Is_Redefinition_Context_Valid --
-----------------------------------
overriding function Is_Redefinition_Context_Valid
(Self : not null access constant UML_Region_Proxy;
Redefined : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Redefinition_Context_Valid unimplemented");
raise Program_Error with "Unimplemented procedure UML_Region_Proxy.Is_Redefinition_Context_Valid";
return Is_Redefinition_Context_Valid (Self, Redefined);
end Is_Redefinition_Context_Valid;
end AMF.Internals.UML_Regions;
|
with Ada.Text_IO;
use Ada.Text_IO;
package body Alumnos is
package Escuela_IO is new Enumeration_IO(Tipo_Escuela);
procedure Escribe (Alu : in Alumno) is
begin
Put_Line("--------------------------");
Put("Nombre : ");
Put_Line(Alu.Nombre(1..Alu.N_Nombre));
Put_Line("Telefono : "&Alu.Telefono);
Put("Escuela : ");
Escuela_IO.Put(Alu.Escuela);
New_Line;
Put_Line("--------------------------");
New_Line;
end Escribe;
procedure Lee (Alu : out Alumno) is
begin
Put("Nombre del alumno: ");
Get_Line(Alu.Nombre,Alu.N_Nombre);
Put("Numero de Telefono: (9 cifras) ");
Get(Alu.Telefono);
Skip_Line;
Put("Escuela: ");
Escuela_IO.Get(Alu.Escuela);
Skip_Line;
end Lee;
end Alumnos;
|
with Program.Parsers.Nodes;
use Program.Parsers.Nodes;
pragma Style_Checks ("N");
procedure Program.Parsers.On_Reduce_501
(Self : access Parse_Context;
Prod : Anagram.Grammars.Production_Index;
Nodes : in out Program.Parsers.Nodes.Node_Array) is
begin
case Prod is
when 501 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
No_Token,
No_Token,
None,
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 502 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
Nodes (11),
Nodes (12));
when 503 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11));
when 504 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
None,
Nodes (10),
Nodes (11),
Nodes (12));
when 505 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
None,
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11));
when 506 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
None,
No_Token,
Nodes (10),
Nodes (11));
when 507 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
None,
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
when 508 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
Nodes (9),
No_Token,
Nodes (10),
Nodes (11));
when 509 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
Nodes (9),
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
when 510 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
None,
Nodes (9),
Nodes (10),
Nodes (11));
when 511 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
None,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
when 512 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
None,
No_Token,
Nodes (8),
Nodes (9));
when 513 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
None,
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 514 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
Nodes (9),
Nodes (10));
when 515 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 516 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
None,
Nodes (8),
Nodes (9),
Nodes (10));
when 517 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
None,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 518 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
None,
No_Token,
Nodes (8),
Nodes (9));
when 519 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
None,
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 520 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
No_Token,
Nodes (7),
No_Token,
Nodes (8),
Nodes (9));
when 521 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
No_Token,
Nodes (7),
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 522 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
No_Token,
None,
Nodes (7),
Nodes (8),
Nodes (9));
when 523 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
No_Token,
None,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 524 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
No_Token,
No_Token,
None,
No_Token,
Nodes (6),
Nodes (7));
when 525 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
No_Token,
No_Token,
None,
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 526 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
Nodes (12),
Nodes (13));
when 527 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12));
when 528 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
None,
Nodes (11),
Nodes (12),
Nodes (13));
when 529 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
None,
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12));
when 530 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
None,
No_Token,
Nodes (11),
Nodes (12));
when 531 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
None,
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11));
when 532 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
No_Token,
Nodes (10),
No_Token,
Nodes (11),
Nodes (12));
when 533 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
No_Token,
Nodes (10),
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11));
when 534 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
No_Token,
None,
Nodes (10),
Nodes (11),
Nodes (12));
when 535 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
No_Token,
None,
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11));
when 536 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
No_Token,
No_Token,
None,
No_Token,
Nodes (9),
Nodes (10));
when 537 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
No_Token,
No_Token,
None,
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 538 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
Nodes (9),
Nodes (10));
when 539 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 540 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
None,
Nodes (8),
Nodes (9),
Nodes (10));
when 541 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
None,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 542 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
None,
No_Token,
Nodes (8),
Nodes (9));
when 543 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
None,
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 544 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
No_Token,
Nodes (7),
No_Token,
Nodes (8),
Nodes (9));
when 545 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
No_Token,
Nodes (7),
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 546 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
No_Token,
None,
Nodes (7),
Nodes (8),
Nodes (9));
when 547 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
No_Token,
None,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 548 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
No_Token,
No_Token,
None,
No_Token,
Nodes (6),
Nodes (7));
when 549 =>
Nodes (1) :=
Self.Factory.Formal_Function_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
No_Token,
No_Token,
None,
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 550 =>
Nodes (1) :=
Self.Factory.Formal_Incomplete_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6));
when 551 =>
Nodes (1) :=
Self.Factory.Formal_Incomplete_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
No_Token,
Nodes (4));
when 552 =>
Nodes (1) :=
Self.Factory.Formal_Incomplete_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Nodes (4),
Nodes (5));
when 553 =>
Nodes (1) :=
Self.Factory.Formal_Incomplete_Type_Declaration
(Nodes (1),
Nodes (2),
None,
No_Token,
No_Token,
Nodes (3));
when 554 =>
Nodes (1) := Self.Factory.
Formal_Interface_Type_Definition
(Nodes (1),
Nodes (2),
Nodes (3));
when 555 =>
Nodes (1) := Self.Factory.
Formal_Interface_Type_Definition
(Nodes (1),
Nodes (2),
(Self.Factory.Subtype_Mark_Sequence));
when 556 =>
Nodes (1) := Self.Factory.
Formal_Interface_Type_Definition
(No_Token,
Nodes (1),
Nodes (2));
when 557 =>
Nodes (1) := Self.Factory.
Formal_Interface_Type_Definition
(No_Token,
Nodes (1),
(Self.Factory.Subtype_Mark_Sequence));
when 558 =>
Nodes (1) :=
Self.Factory.Formal_Modular_Type_Definition
(Nodes (1),
Nodes (2));
when 559 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11));
when 560 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
when 561 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
None,
Nodes (8),
Nodes (9));
when 562 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 563 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9));
when 564 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 565 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
No_Token,
Nodes (5),
No_Token,
None,
Nodes (6),
Nodes (7));
when 566 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
No_Token,
Nodes (5),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 567 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10));
when 568 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 569 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
None,
Nodes (7),
Nodes (8));
when 570 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 571 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8));
when 572 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 573 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
No_Token,
No_Token,
Nodes (4),
No_Token,
None,
Nodes (5),
Nodes (6));
when 574 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
No_Token,
No_Token,
Nodes (4),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (5));
when 575 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10));
when 576 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 577 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
None,
Nodes (7),
Nodes (8));
when 578 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 579 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8));
when 580 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 581 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
No_Token,
None,
Nodes (5),
Nodes (6));
when 582 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (5));
when 583 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9));
when 584 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 585 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
No_Token,
None,
Nodes (6),
Nodes (7));
when 586 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 587 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
No_Token,
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7));
when 588 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
No_Token,
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 589 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
No_Token,
No_Token,
Nodes (3),
No_Token,
None,
Nodes (4),
Nodes (5));
when 590 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
No_Token,
No_Token,
Nodes (3),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (4));
when 591 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9));
when 592 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
when 593 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
No_Token,
Nodes (5),
No_Token,
None,
Nodes (6),
Nodes (7));
when 594 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
No_Token,
Nodes (5),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 595 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8));
when 596 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 597 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
No_Token,
No_Token,
Nodes (4),
No_Token,
None,
Nodes (5),
Nodes (6));
when 598 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
No_Token,
No_Token,
Nodes (4),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (5));
when 599 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8));
when 600 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 601 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
No_Token,
None,
Nodes (5),
Nodes (6));
when 602 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (5));
when 603 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
No_Token,
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7));
when 604 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
No_Token,
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 605 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
No_Token,
No_Token,
Nodes (3),
No_Token,
None,
Nodes (4),
Nodes (5));
when 606 =>
Nodes (1) :=
Self.Factory.Formal_Object_Declaration
(Nodes (1),
Nodes (2),
No_Token,
No_Token,
No_Token,
No_Token,
Nodes (3),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (4));
when 607 =>
Nodes (1) := Self.Factory
.Formal_Ordinary_Fixed_Point_Definition
(Nodes (1),
Nodes (2));
when 608 =>
declare
List : Node :=
Self.Factory.Generic_Association_Sequence;
Box : constant Node :=
Self.Factory.Generic_Association
(Nodes (1),
Nodes (2),
None,
Nodes (3));
begin
Self.Factory.Append_Generic_Association
(List, Box);
Nodes (1) := List;
end;
when 609 =>
declare
List : Node :=
Self.Factory.Generic_Association_Sequence;
Box : constant Node :=
Self.Factory.Generic_Association
(None,
No_Token,
None,
Nodes (1));
begin
Self.Factory.Append_Generic_Association
(List, Box);
Nodes (1) := List;
end;
when 610 =>
declare
List : Node :=
Nodes (2);
Box : constant Node :=
Self.Factory.Generic_Association
(Nodes (4),
Nodes (5),
None,
Nodes (6));
begin
Self.Factory.Prepend_Generic_Association
(List, Nodes (1));
Self.Factory.Append_Generic_Association
(List, Box);
Nodes (1) := List;
end;
when 611 =>
declare
List : Node :=
Nodes (2);
begin
Self.Factory.Prepend_Generic_Association
(List, Nodes (1));
Nodes (1) := List;
end;
when 612 =>
declare
List : Node :=
Self.Factory.Generic_Association_Sequence;
Box : constant Node :=
Self.Factory.Generic_Association
(Nodes (3),
Nodes (4),
None,
Nodes (5));
begin
Self.Factory.Prepend_Generic_Association
(List, Nodes (1));
Self.Factory.Append_Generic_Association
(List, Box);
Nodes (1) := List;
end;
when 613 =>
declare
List : Node :=
Self.Factory.Generic_Association_Sequence;
begin
Self.Factory.Prepend_Generic_Association
(List, Nodes (1));
Nodes (1) := List;
end;
when 614 =>
null;
when 615 =>
Nodes (1) :=
Self.Factory.Generic_Association
(Nodes (1),
Nodes (2),
None,
Nodes (3));
when 616 =>
declare
List : Node := Nodes (1);
begin
Self.Factory.Append_Generic_Association
(List, Nodes (3));
Nodes (1) := List;
end;
when 617 =>
declare
List : Node := Self.
Factory.Generic_Association_Sequence;
begin
Self.Factory.Append_Generic_Association
(List, Nodes (2));
Nodes (1) := List;
end;
when 618 =>
Nodes (1) :=
Self.Factory.Formal_Package_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11));
when 619 =>
Nodes (1) :=
Self.Factory.Formal_Package_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
when 620 =>
Nodes (1) :=
Self.Factory.Formal_Package_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
(Self.Factory.Generic_Association_Sequence),
No_Token,
Nodes (7),
Nodes (8));
when 621 =>
Nodes (1) :=
Self.Factory.Formal_Package_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
(Self.Factory.Generic_Association_Sequence),
No_Token,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 622 =>
declare
List : Node :=
Nodes (2);
begin
Self.Factory.Prepend_Parameter_Specification
(List, Nodes (1));
Nodes (1) := List;
end;
when 623 =>
declare
List : Node :=
Self.Factory.Parameter_Specification_Sequence;
begin
Self.Factory.Prepend_Parameter_Specification
(List, Nodes (1));
Nodes (1) := List;
end;
when 624 =>
Nodes (1) :=
Self.Factory.Formal_Private_Type_Definition
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4));
when 625 =>
Nodes (1) :=
Self.Factory.Formal_Private_Type_Definition
(Nodes (1),
Nodes (2),
No_Token,
Nodes (3));
when 626 =>
Nodes (1) :=
Self.Factory.Formal_Private_Type_Definition
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3));
when 627 =>
Nodes (1) :=
Self.Factory.Formal_Private_Type_Definition
(No_Token,
Nodes (1),
No_Token,
Nodes (2));
when 628 =>
Nodes (1) :=
Self.Factory.Formal_Private_Type_Definition
(No_Token,
No_Token,
Nodes (1),
Nodes (2));
when 629 =>
Nodes (1) :=
Self.Factory.Formal_Private_Type_Definition
(No_Token,
No_Token,
No_Token,
Nodes (1));
when 630 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11));
when 631 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
when 632 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
No_Token,
None,
Nodes (10),
Nodes (11));
when 633 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
when 634 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
Nodes (9),
None,
Nodes (10),
Nodes (11));
when 635 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
Nodes (9),
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
when 636 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
None,
Nodes (9),
Nodes (10));
when 637 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 638 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10));
when 639 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 640 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
Nodes (8),
No_Token,
None,
Nodes (9),
Nodes (10));
when 641 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
Nodes (8),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 642 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
None,
Nodes (9),
Nodes (10));
when 643 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
when 644 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
No_Token,
No_Token,
None,
Nodes (7),
Nodes (8));
when 645 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
No_Token,
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 646 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8));
when 647 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 648 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
None,
Nodes (7),
Nodes (8));
when 649 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 650 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
No_Token,
Nodes (6),
None,
Nodes (7),
Nodes (8));
when 651 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
No_Token,
Nodes (6),
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
when 652 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
No_Token,
No_Token,
None,
Nodes (6),
Nodes (7));
when 653 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
No_Token,
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 654 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7));
when 655 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 656 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
Nodes (5),
No_Token,
None,
Nodes (6),
Nodes (7));
when 657 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
Nodes (5),
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 658 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
None,
Nodes (6),
Nodes (7));
when 659 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 660 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
No_Token,
No_Token,
No_Token,
No_Token,
None,
Nodes (4),
Nodes (5));
when 661 =>
Nodes (1) :=
Self.Factory.Formal_Procedure_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
No_Token,
No_Token,
No_Token,
No_Token,
None,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (4));
when 662 =>
Nodes (1) := Self.Factory
.Formal_Signed_Integer_Type_Definition
(Nodes (1),
Nodes (2));
when 663 =>
null;
when 664 =>
null;
when 665 =>
null;
when 666 =>
null;
when 667 =>
null;
when 668 =>
null;
when 669 =>
null;
when 670 =>
null;
when 671 =>
null;
when 672 =>
null;
when 673 =>
null;
when 674 =>
declare
List : Node :=
Nodes (4);
begin
Self.Factory.Prepend_Subtype_Mark
(List, Nodes (3));
Nodes (1) := Self.Factory.
Formal_Unconstrained_Array_Definition
(Nodes (1),
Nodes (2),
List,
Nodes (5),
Nodes (6),
Nodes (7));
end;
when 675 =>
declare
List : Node :=
Self.Factory.
Subtype_Mark_Sequence;
begin
Self.Factory.Prepend_Subtype_Mark
(List, Nodes (3));
Nodes (1) := Self.Factory.
Formal_Unconstrained_Array_Definition
(Nodes (1),
Nodes (2),
List,
Nodes (4),
Nodes (5),
Nodes (6));
end;
when 676 =>
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7));
when 677 =>
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
when 678 =>
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6));
when 679 =>
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Nodes (4),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (5));
when 680 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (12),
Nodes (13));
end;
when 681 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12));
end;
when 682 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (9),
Nodes (10));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (11),
Nodes (12));
end;
when 683 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (9),
Nodes (10));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11));
end;
when 684 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (9),
Nodes (10));
end;
when 685 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
end;
when 686 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (5),
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (11),
Nodes (12));
end;
when 687 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (5),
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11));
end;
when 688 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (5),
No_Token,
Nodes (6),
Nodes (7),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (10),
Nodes (11));
end;
when 689 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (5),
No_Token,
Nodes (6),
Nodes (7),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
end;
when 690 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(Nodes (5),
No_Token,
Nodes (6),
Nodes (7));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (8),
Nodes (9));
end;
when 691 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(Nodes (5),
No_Token,
Nodes (6),
Nodes (7));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
end;
when 692 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (11),
Nodes (12));
end;
when 693 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11));
end;
when 694 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (10),
Nodes (11));
end;
when 695 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
end;
when 696 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(No_Token,
Nodes (5),
Nodes (6),
Nodes (7));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (8),
Nodes (9));
end;
when 697 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(No_Token,
Nodes (5),
Nodes (6),
Nodes (7));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
end;
when 698 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (10),
Nodes (11));
end;
when 699 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
end;
when 700 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
No_Token,
Nodes (5),
Nodes (6),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (7),
Nodes (8));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (9),
Nodes (10));
end;
when 701 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
No_Token,
Nodes (5),
Nodes (6),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (7),
Nodes (8));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
end;
when 702 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(No_Token,
No_Token,
Nodes (5),
Nodes (6));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
Nodes (7),
Nodes (8));
end;
when 703 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(No_Token,
No_Token,
Nodes (5),
Nodes (6));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
end;
when 704 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (11),
Nodes (12));
end;
when 705 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11));
end;
when 706 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (10),
Nodes (11));
end;
when 707 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
end;
when 708 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (8),
Nodes (9));
end;
when 709 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
end;
when 710 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (4),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (10),
Nodes (11));
end;
when 711 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (4),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
end;
when 712 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (4),
No_Token,
Nodes (5),
Nodes (6),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (7),
Nodes (8));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (9),
Nodes (10));
end;
when 713 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(Nodes (4),
No_Token,
Nodes (5),
Nodes (6),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (7),
Nodes (8));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
end;
when 714 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(Nodes (4),
No_Token,
Nodes (5),
Nodes (6));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (7),
Nodes (8));
end;
when 715 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(Nodes (4),
No_Token,
Nodes (5),
Nodes (6));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
end;
when 716 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (10),
Nodes (11));
end;
when 717 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10));
end;
when 718 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (7),
Nodes (8));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (9),
Nodes (10));
end;
when 719 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (7),
Nodes (8));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
end;
when 720 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(No_Token,
Nodes (4),
Nodes (5),
Nodes (6));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (7),
Nodes (8));
end;
when 721 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(No_Token,
Nodes (4),
Nodes (5),
Nodes (6));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7));
end;
when 722 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (9),
Nodes (10));
end;
when 723 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9));
end;
when 724 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
No_Token,
Nodes (4),
Nodes (5),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (6),
Nodes (7));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (8),
Nodes (9));
end;
when 725 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Record_Definition
(No_Token,
No_Token,
Nodes (4),
Nodes (5),
(Self.Factory.Subtype_Mark_Sequence),
Nodes (6),
Nodes (7));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8));
end;
when 726 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(No_Token,
No_Token,
Nodes (4),
Nodes (5));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
Nodes (6),
Nodes (7));
end;
when 727 =>
declare
Type_Definition : constant Node :=
Self.Factory.Derived_Type_Definition
(No_Token,
No_Token,
Nodes (4),
Nodes (5));
begin
Nodes (1) :=
Self.Factory.Full_Type_Declaration
(Nodes (1),
Nodes (2),
None,
Nodes (3),
Type_Definition,
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6));
end;
when 728 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
Nodes (19),
Nodes (20),
Nodes (21));
when 729 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
Nodes (19),
None,
Nodes (20));
when 730 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (17),
Nodes (18),
Nodes (19));
when 731 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (17),
None,
Nodes (18));
when 732 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
Nodes (16),
Nodes (17));
when 733 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
None,
Nodes (16));
when 734 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
(Self.Factory.Declarative_Item_Sequence),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
Nodes (19),
Nodes (20));
when 735 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
(Self.Factory.Declarative_Item_Sequence),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
None,
Nodes (19));
when 736 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
(Self.Factory.Declarative_Item_Sequence),
Nodes (14),
Nodes (15),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (16),
Nodes (17),
Nodes (18));
when 737 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
(Self.Factory.Declarative_Item_Sequence),
Nodes (14),
Nodes (15),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (16),
None,
Nodes (17));
when 738 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
Nodes (15),
Nodes (16));
when 739 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
None,
Nodes (15));
when 740 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
Nodes (19),
Nodes (20));
when 741 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
None,
Nodes (19));
when 742 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (16),
Nodes (17),
Nodes (18));
when 743 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (16),
None,
Nodes (17));
when 744 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
Nodes (15),
Nodes (16));
when 745 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
None,
Nodes (15));
when 746 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
Nodes (19));
when 747 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
None,
Nodes (18));
when 748 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
Nodes (16),
Nodes (17));
when 749 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
None,
Nodes (16));
when 750 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 751 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 752 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
Nodes (19));
when 753 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
None,
Nodes (18));
when 754 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
Nodes (16),
Nodes (17));
when 755 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
None,
Nodes (16));
when 756 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 757 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 758 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18));
when 759 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
None,
Nodes (17));
when 760 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
Nodes (15),
Nodes (16));
when 761 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
None,
Nodes (15));
when 762 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 763 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 764 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18));
when 765 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
None,
Nodes (17));
when 766 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
Nodes (15),
Nodes (16));
when 767 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
None,
Nodes (15));
when 768 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 769 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 770 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17));
when 771 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
None,
Nodes (16));
when 772 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 773 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 774 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 775 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
No_Token,
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 776 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18));
when 777 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
None,
Nodes (17));
when 778 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
Nodes (15),
Nodes (16));
when 779 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
None,
Nodes (15));
when 780 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 781 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 782 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17));
when 783 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
None,
Nodes (16));
when 784 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 785 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 786 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 787 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 788 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17));
when 789 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
None,
Nodes (16));
when 790 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 791 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 792 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 793 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 794 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16));
when 795 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
None,
Nodes (15));
when 796 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 797 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 798 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 799 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 800 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16));
when 801 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
None,
Nodes (15));
when 802 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 803 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 804 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 805 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 806 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15));
when 807 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
None,
Nodes (14));
when 808 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 809 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 810 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
Nodes (10),
Nodes (11));
when 811 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
None,
Nodes (10));
when 812 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15));
when 813 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
None,
Nodes (14));
when 814 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 815 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 816 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
Nodes (10),
Nodes (11));
when 817 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
None,
Nodes (10));
when 818 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14));
when 819 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
None,
Nodes (13));
when 820 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 821 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 822 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (8),
Nodes (9),
Nodes (10));
when 823 =>
Nodes (1) := Self.Factory.Function_Body
(Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (5),
No_Token,
No_Token,
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (8),
None,
Nodes (9));
when 824 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
Nodes (19),
Nodes (20));
when 825 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
None,
Nodes (19));
when 826 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (16),
Nodes (17),
Nodes (18));
when 827 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (16),
None,
Nodes (17));
when 828 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
Nodes (15),
Nodes (16));
when 829 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
None,
Nodes (15));
when 830 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
Nodes (19));
when 831 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
None,
Nodes (18));
when 832 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
Nodes (16),
Nodes (17));
when 833 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
None,
Nodes (16));
when 834 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 835 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 836 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
Nodes (19));
when 837 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
None,
Nodes (18));
when 838 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
Nodes (16),
Nodes (17));
when 839 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
None,
Nodes (16));
when 840 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 841 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 842 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18));
when 843 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
None,
Nodes (17));
when 844 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
Nodes (15),
Nodes (16));
when 845 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
None,
Nodes (15));
when 846 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 847 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 848 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18));
when 849 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
None,
Nodes (17));
when 850 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
Nodes (15),
Nodes (16));
when 851 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
None,
Nodes (15));
when 852 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 853 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 854 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17));
when 855 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
None,
Nodes (16));
when 856 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 857 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 858 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 859 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
Nodes (9),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 860 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17));
when 861 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
None,
Nodes (16));
when 862 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 863 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 864 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 865 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 866 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16));
when 867 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
None,
Nodes (15));
when 868 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 869 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 870 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 871 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
No_Token,
Nodes (8),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 872 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17));
when 873 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
None,
Nodes (16));
when 874 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 875 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 876 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 877 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 878 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16));
when 879 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
None,
Nodes (15));
when 880 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 881 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 882 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 883 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 884 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16));
when 885 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
None,
Nodes (15));
when 886 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 887 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 888 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 889 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 890 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15));
when 891 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
None,
Nodes (14));
when 892 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 893 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 894 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
Nodes (10),
Nodes (11));
when 895 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
None,
Nodes (10));
when 896 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15));
when 897 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
None,
Nodes (14));
when 898 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 899 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 900 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
Nodes (10),
Nodes (11));
when 901 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
None,
Nodes (10));
when 902 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14));
when 903 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
None,
Nodes (13));
when 904 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 905 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 906 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (8),
Nodes (9),
Nodes (10));
when 907 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
Nodes (6),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (8),
None,
Nodes (9));
when 908 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14));
when 909 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
None,
Nodes (13));
when 910 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 911 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 912 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
Nodes (7),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (8),
Nodes (9),
Nodes (10));
when 913 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
Nodes (7),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (8),
None,
Nodes (9));
when 914 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
(Self.Factory.Declarative_Item_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13));
when 915 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
(Self.Factory.Declarative_Item_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
None,
Nodes (12));
when 916 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
(Self.Factory.Declarative_Item_Sequence),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
Nodes (10),
Nodes (11));
when 917 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
(Self.Factory.Declarative_Item_Sequence),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
None,
Nodes (10));
when 918 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (7),
Nodes (8),
Nodes (9));
when 919 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (4),
No_Token,
No_Token,
Nodes (5),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (6),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (7),
None,
Nodes (8));
when 920 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18),
Nodes (19));
when 921 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
None,
Nodes (18));
when 922 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
Nodes (16),
Nodes (17));
when 923 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (15),
None,
Nodes (16));
when 924 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 925 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 926 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18));
when 927 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
None,
Nodes (17));
when 928 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
Nodes (15),
Nodes (16));
when 929 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
None,
Nodes (15));
when 930 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 931 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 932 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17),
Nodes (18));
when 933 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
None,
Nodes (17));
when 934 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
Nodes (15),
Nodes (16));
when 935 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (14),
None,
Nodes (15));
when 936 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 937 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 938 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17));
when 939 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
None,
Nodes (16));
when 940 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 941 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 942 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 943 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (10),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 944 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16),
Nodes (17));
when 945 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
None,
Nodes (16));
when 946 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
Nodes (14),
Nodes (15));
when 947 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (13),
None,
Nodes (14));
when 948 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 949 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 950 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16));
when 951 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
None,
Nodes (15));
when 952 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 953 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 954 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 955 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
Nodes (8),
Nodes (9),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 956 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16));
when 957 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
None,
Nodes (15));
when 958 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 959 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 960 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 961 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 962 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15));
when 963 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
None,
Nodes (14));
when 964 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 965 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 966 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
Nodes (10),
Nodes (11));
when 967 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
No_Token,
No_Token,
Nodes (7),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
None,
Nodes (10));
when 968 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15),
Nodes (16));
when 969 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
None,
Nodes (15));
when 970 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
Nodes (13),
Nodes (14));
when 971 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (12),
None,
Nodes (13));
when 972 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 973 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 974 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15));
when 975 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
None,
Nodes (14));
when 976 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 977 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 978 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
Nodes (10),
Nodes (11));
when 979 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
None,
Nodes (10));
when 980 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14),
Nodes (15));
when 981 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
None,
Nodes (14));
when 982 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
Nodes (12),
Nodes (13));
when 983 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (11),
None,
Nodes (12));
when 984 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
Nodes (10),
Nodes (11));
when 985 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
None,
Nodes (10));
when 986 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14));
when 987 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
None,
Nodes (13));
when 988 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 989 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 990 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (8),
Nodes (9),
Nodes (10));
when 991 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Aspect_Specification_Sequence),
Nodes (7),
(Self.Factory.Declarative_Item_Sequence),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (8),
None,
Nodes (9));
when 992 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13),
Nodes (14));
when 993 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
None,
Nodes (13));
when 994 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
Nodes (11),
Nodes (12));
when 995 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
Nodes (8),
Nodes (9),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (10),
None,
Nodes (11));
when 996 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (8),
Nodes (9),
Nodes (10));
when 997 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
Nodes (7),
No_Token,
(Self.Factory.Statement_Sequence),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (8),
None,
Nodes (9));
when 998 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Declarative_Item_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
Nodes (12),
Nodes (13));
when 999 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Declarative_Item_Sequence),
Nodes (7),
Nodes (8),
Nodes (9),
Nodes (10),
Nodes (11),
None,
Nodes (12));
when 1000 =>
Nodes (1) := Self.Factory.Function_Body
(No_Token,
No_Token,
Nodes (1),
Nodes (2),
No_Token,
(Self.Factory.Parameter_Specification_Sequence),
No_Token,
Nodes (3),
No_Token,
No_Token,
Nodes (4),
Nodes (5),
Nodes (6),
(Self.Factory.Declarative_Item_Sequence),
Nodes (7),
Nodes (8),
No_Token,
(Self.Factory.Exception_Handler_Sequence),
Nodes (9),
Nodes (10),
Nodes (11));
when others =>
raise Constraint_Error;
end case;
end Program.Parsers.On_Reduce_501;
|
with BitOperations.Shift;
with BitOperations.Types;
generic
with package Types is new BitOperations.Types (<>);
package BitOperations.Mask with
SPARK_Mode, Pure, Preelaborate is
package Shift is new BitOperations.Shift(Types);
use Types;
use Shift;
function Make (Size : Mask_Size) return Modular is
(Logic_Right(Modular'Last, Modular'Size - Size))
with Pre => Size in 0 .. Modular'Size,
Post => Make'Result = 2 ** Size -1;
end BitOperations.Mask;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . V A L _ L L D --
-- --
-- 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 routines for scanning decimal values where the size
-- of the type is greater than Standard.Integer'Size, for use in Text_IO.
-- Decimal_IO, and the Value attribute for such decimal types.
package System.Val_LLD is
pragma Pure;
function Scan_Long_Long_Decimal
(Str : String;
Ptr : access Integer;
Max : Integer;
Scale : Integer) return Long_Long_Integer;
-- This function scans the string starting at Str (Ptr.all) for a valid
-- real literal according to the syntax described in (RM 3.5(43)). The
-- substring scanned extends no further than Str (Max). There are three
-- cases for the return:
--
-- If a valid real literal is found after scanning past any initial spaces,
-- then Ptr.all is updated past the last character of the literal (but
-- trailing spaces are not scanned out). The value returned is the value
-- Long_Long_Integer'Integer_Value (decimal-literal-value), using the given
-- Scale to determine this value.
--
-- If no valid real literal is found, then Ptr.all points either to an
-- initial non-digit character, or to Max + 1 if the field is all spaces
-- and the exception Constraint_Error is raised.
--
-- If a syntactically valid integer is scanned, but the value is out of
-- range, or, in the based case, the base value is out of range or there
-- is an out of range digit, then Ptr.all points past the integer, and
-- Constraint_Error is raised.
--
-- Note: these rules correspond to the requirements for leaving the
-- pointer positioned in Text_Io.Get
--
-- Note: if Str is null, i.e. if Max is less than Ptr, then this is a
-- special case of an all-blank string, and Ptr is unchanged, and hence
-- is greater than Max as required in this case.
function Value_Long_Long_Decimal
(Str : String;
Scale : Integer) return Long_Long_Integer;
-- Used in computing X'Value (Str) where X is a decimal types whose size
-- exceeds Standard.Integer'Size. Str is the string argument of the
-- attribute. Constraint_Error is raised if the string is malformed
-- or if the value is out of range, otherwise the value returned is the
-- value Long_Long_Integer'Integer_Value (decimal-literal-value), using
-- the given Scale to determine this value.
end System.Val_LLD;
|
------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding --
-- --
-- Terminal_Interface.Curses.Panels --
-- --
-- B O D Y --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 1998 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Juergen Pfeifer <Juergen.Pfeifer@T-Online.de> 1996
-- Version Control:
-- $Revision: 1.6 $
-- Binding Version 00.93
------------------------------------------------------------------------------
with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux;
with Interfaces.C;
package body Terminal_Interface.Curses.Panels is
use type Interfaces.C.int;
function Create (Win : Window) return Panel
is
function Newpanel (Win : Window) return Panel;
pragma Import (C, Newpanel, "new_panel");
Pan : Panel;
begin
Pan := Newpanel (Win);
if Pan = Null_Panel then
raise Panel_Exception;
end if;
return Pan;
end Create;
procedure Bottom (Pan : in Panel)
is
function Bottompanel (Pan : Panel) return C_Int;
pragma Import (C, Bottompanel, "bottom_panel");
begin
if Bottompanel (Pan) = Curses_Err then
raise Panel_Exception;
end if;
end Bottom;
procedure Top (Pan : in Panel)
is
function Toppanel (Pan : Panel) return C_Int;
pragma Import (C, Toppanel, "top_panel");
begin
if Toppanel (Pan) = Curses_Err then
raise Panel_Exception;
end if;
end Top;
procedure Show (Pan : in Panel)
is
function Showpanel (Pan : Panel) return C_Int;
pragma Import (C, Showpanel, "show_panel");
begin
if Showpanel (Pan) = Curses_Err then
raise Panel_Exception;
end if;
end Show;
procedure Hide (Pan : in Panel)
is
function Hidepanel (Pan : Panel) return C_Int;
pragma Import (C, Hidepanel, "hide_panel");
begin
if Hidepanel (Pan) = Curses_Err then
raise Panel_Exception;
end if;
end Hide;
function Get_Window (Pan : Panel) return Window
is
function Panel_Win (Pan : Panel) return Window;
pragma Import (C, Panel_Win, "panel_window");
Win : Window := Panel_Win (Pan);
begin
if Win = Null_Window then
raise Panel_Exception;
end if;
return Win;
end Get_Window;
procedure Replace (Pan : in Panel;
Win : in Window)
is
function Replace_Pan (Pan : Panel;
Win : Window) return C_Int;
pragma Import (C, Replace_Pan, "replace_panel");
begin
if Replace_Pan (Pan, Win) = Curses_Err then
raise Panel_Exception;
end if;
end Replace;
procedure Move (Pan : in Panel;
Line : in Line_Position;
Column : in Column_Position)
is
function Move (Pan : Panel;
Line : C_Int;
Column : C_Int) return C_Int;
pragma Import (C, Move, "move_panel");
begin
if Move (Pan, C_Int (Line), C_Int (Column)) = Curses_Err then
raise Panel_Exception;
end if;
end Move;
function Is_Hidden (Pan : Panel) return Boolean
is
function Panel_Hidden (Pan : Panel) return C_Int;
pragma Import (C, Panel_Hidden, "panel_hidden");
begin
if Panel_Hidden (Pan) = Curses_False then
return False;
else
return True;
end if;
end Is_Hidden;
procedure Delete (Pan : in out Panel)
is
function Del_Panel (Pan : Panel) return C_Int;
pragma Import (C, Del_Panel, "del_panel");
begin
if Del_Panel (Pan) = Curses_Err then
raise Panel_Exception;
end if;
Pan := Null_Panel;
end Delete;
end Terminal_Interface.Curses.Panels;
|
<Diagramm>
<AdditionalSQLCode>
<SQLCode>
<AdditionalSQLCodePostChanging>Script C</AdditionalSQLCodePostChanging>
<AdditionalSQLCodePostReducing>Script D</AdditionalSQLCodePostReducing>
<AdditionalSQLCodePreChanging>Script B</AdditionalSQLCodePreChanging>
<AdditionalSQLCodePreExtending>Script A</AdditionalSQLCodePreExtending>
</SQLCode>
</AdditionalSQLCode>
<Colors>
<Anzahl>23</Anzahl>
<Color0>
<B>255</B>
<G>0</G>
<Name>blau</Name>
<R>0</R>
</Color0>
<Color1>
<B>221</B>
<G>212</G>
<Name>blaugrau</Name>
<R>175</R>
</Color1>
<Color10>
<B>192</B>
<G>192</G>
<Name>hellgrau</Name>
<R>192</R>
</Color10>
<Color11>
<B>255</B>
<G>0</G>
<Name>kamesinrot</Name>
<R>255</R>
</Color11>
<Color12>
<B>0</B>
<G>200</G>
<Name>orange</Name>
<R>255</R>
</Color12>
<Color13>
<B>255</B>
<G>247</G>
<Name>pastell-blau</Name>
<R>211</R>
</Color13>
<Color14>
<B>186</B>
<G>245</G>
<Name>pastell-gelb</Name>
<R>255</R>
</Color14>
<Color15>
<B>234</B>
<G>255</G>
<Name>pastell-gr&uuml;n</Name>
<R>211</R>
</Color15>
<Color16>
<B>255</B>
<G>211</G>
<Name>pastell-lila</Name>
<R>244</R>
</Color16>
<Color17>
<B>191</B>
<G>165</G>
<Name>pastell-rot</Name>
<R>244</R>
</Color17>
<Color18>
<B>175</B>
<G>175</G>
<Name>pink</Name>
<R>255</R>
</Color18>
<Color19>
<B>0</B>
<G>0</G>
<Name>rot</Name>
<R>255</R>
</Color19>
<Color2>
<B>61</B>
<G>125</G>
<Name>braun</Name>
<R>170</R>
</Color2>
<Color20>
<B>0</B>
<G>0</G>
<Name>schwarz</Name>
<R>0</R>
</Color20>
<Color21>
<B>255</B>
<G>255</G>
<Name>t&uuml;rkis</Name>
<R>0</R>
</Color21>
<Color22>
<B>255</B>
<G>255</G>
<Name>wei&szlig;</Name>
<R>255</R>
</Color22>
<Color3>
<B>64</B>
<G>64</G>
<Name>dunkelgrau</Name>
<R>64</R>
</Color3>
<Color4>
<B>84</B>
<G>132</G>
<Name>dunkelgr&uuml;n</Name>
<R>94</R>
</Color4>
<Color5>
<B>0</B>
<G>255</G>
<Name>gelb</Name>
<R>255</R>
</Color5>
<Color6>
<B>0</B>
<G>225</G>
<Name>goldgelb</Name>
<R>255</R>
</Color6>
<Color7>
<B>128</B>
<G>128</G>
<Name>grau</Name>
<R>128</R>
</Color7>
<Color8>
<B>0</B>
<G>255</G>
<Name>gr&uuml;n</Name>
<R>0</R>
</Color8>
<Color9>
<B>255</B>
<G>212</G>
<Name>hellblau</Name>
<R>191</R>
</Color9>
</Colors>
<ComplexIndices>
<Index0>
<Column0>
<Name>Building</Name>
</Column0>
<Column1>
<Name>RoomNumber</Name>
</Column1>
<ColumnCount>2</ColumnCount>
<Name>Room_Building_RoomNumber</Name>
<Table>
<Name>Room</Name>
</Table>
</Index0>
<IndexCount>1</IndexCount>
</ComplexIndices>
<DataSource>
<Import>
<DBName>B</DBName>
<Description></Description>
<Domains>true</Domains>
<Driver>A</Driver>
<Name></Name>
<Referenzen>true</Referenzen>
<User>C</User>
</Import>
</DataSource>
<DatabaseConnections>
<Count>1</Count>
<DatabaseConnection0>
<DBExecMode>HSQL</DBExecMode>
<Driver>org.hsqldb.jdbcDriver</Driver>
<Name>HypersonicSQL</Name>
<Quote>"</Quote>
<SetDomains>true</SetDomains>
<SetNotNull>true</SetNotNull>
<SetReferences>true</SetReferences>
<URL>jdbc:hsqldb:DATABASE_NAME</URL>
<UserName>op1</UserName>
</DatabaseConnection0>
</DatabaseConnections>
<DefaultComment>
<Anzahl>0</Anzahl>
</DefaultComment>
<Domains>
<Anzahl>4</Anzahl>
<Domain0>
<Datatype>-7</Datatype>
<History></History>
<Initialwert>NULL</Initialwert>
<Kommentar></Kommentar>
<Length>0</Length>
<NKS>0</NKS>
<Name>Boolean</Name>
<Parameters></Parameters>
</Domain0>
<Domain1>
<Datatype>12</Datatype>
<History></History>
<Initialwert>NULL</Initialwert>
<Kommentar></Kommentar>
<Length>50</Length>
<NKS>0</NKS>
<Name>Description</Name>
<Parameters></Parameters>
</Domain1>
<Domain2>
<Datatype>4</Datatype>
<History>Nochmal bla</History>
<Initialwert>4711</Initialwert>
<Kommentar>Bla</Kommentar>
<Length>1</Length>
<NKS>2</NKS>
<Name>Dummy</Name>
<Parameters>DOOF</Parameters>
</Domain2>
<Domain3>
<Datatype>-5</Datatype>
<History></History>
<Initialwert>NULL</Initialwert>
<Kommentar></Kommentar>
<Length>0</Length>
<NKS>0</NKS>
<Name>Ident</Name>
<Parameters></Parameters>
</Domain3>
</Domains>
<Factories>
<Object>archimedes.legacy.scheme.DefaultObjectFactory</Object>
</Factories>
<Pages>
<PerColumn>5</PerColumn>
<PerRow>10</PerRow>
</Pages>
<Parameter>
<AdditionalSQLScriptListener>fan.tasy.Listener</AdditionalSQLScriptListener>
<Applicationname>THE-APP</Applicationname>
<AufgehobeneAusblenden>true</AufgehobeneAusblenden>
<Autor>OLI</Autor>
<Basepackagename>app.base</Basepackagename>
<CodeFactoryClassName>fan.tasy.CodeGenerator</CodeFactoryClassName>
<Codebasispfad>.\</Codebasispfad>
<DBVersionDBVersionColumn>Version</DBVersionDBVersionColumn>
<DBVersionDescriptionColumn>Description</DBVersionDescriptionColumn>
<DBVersionTablename>Versions</DBVersionTablename>
<History>Done something on last Friday.</History>
<Kommentar>Bla bla$BR$bla$BR$laber</Kommentar>
<Name>TST</Name>
<Optionen>
<Anzahl>2</Anzahl>
<Option0>
<Name>OPTION_1</Name>
<Parameter>one</Parameter>
</Option0>
<Option1>
<Name>OPTION_2</Name>
<Parameter>Two</Parameter>
</Option1>
</Optionen>
<PflichtfelderMarkieren>true</PflichtfelderMarkieren>
<ReferenzierteSpaltenAnzeigen>true</ReferenzierteSpaltenAnzeigen>
<RelationColorExternalTables>hellgrau</RelationColorExternalTables>
<RelationColorRegular>schwarz</RelationColorRegular>
<SchemaName>SCHEME</SchemaName>
<Schriftgroessen>
<Tabelleninhalte>14</Tabelleninhalte>
<Ueberschriften>28</Ueberschriften>
<Untertitel>14</Untertitel>
</Schriftgroessen>
<Scripte>
<AfterWrite>&lt;null&gt;</AfterWrite>
</Scripte>
<TechnischeFelderAusgrauen>true</TechnischeFelderAusgrauen>
<TransienteFelderAusgrauen>true</TransienteFelderAusgrauen>
<UdschebtiBaseClassName>NoneUschepti</UdschebtiBaseClassName>
<Version>3</Version>
<Versionsdatum>11.03.2016</Versionsdatum>
<Versionskommentar>4711</Versionskommentar>
</Parameter>
<Sequences>
<Count>2</Count>
<Sequence0>
<Comment></Comment>
<History></History>
<Increment>25</Increment>
<Name>BuildingSeq</Name>
<StartValue>50</StartValue>
</Sequence0>
<Sequence1>
<Comment>bla, bla$BR$s&uuml;lz</Comment>
<History>1. added$BR$2. changed</History>
<Increment>50</Increment>
<Name>RoomSeq</Name>
<StartValue>100</StartValue>
</Sequence1>
</Sequences>
<Stereotype>
<Anzahl>3</Anzahl>
<Stereotype0>
<DoNotPrint>false</DoNotPrint>
<HideTable>false</HideTable>
<History>B</History>
<Kommentar>A</Kommentar>
<Name>Anchor</Name>
</Stereotype0>
<Stereotype1>
<DoNotPrint>true</DoNotPrint>
<HideTable>true</HideTable>
<History>Y</History>
<Kommentar>X</Kommentar>
<Name>Dummy</Name>
</Stereotype1>
<Stereotype2>
<DoNotPrint>false</DoNotPrint>
<HideTable>false</HideTable>
<History>D</History>
<Kommentar>C</Kommentar>
<Name>ListObject</Name>
</Stereotype2>
</Stereotype>
<Tabellen>
<Anzahl>2</Anzahl>
<Tabelle0>
<Aufgehoben>false</Aufgehoben>
<Codegenerator>
<AuswahlMembers>
<Anzahl>2</Anzahl>
<Member0>
<Attribute>OPTIONAL</Attribute>
<Spalte>Id</Spalte>
<Tabelle>Building</Tabelle>
</Member0>
<Member1>
<Attribute>IMPORTANT</Attribute>
<Spalte>Name</Spalte>
<Tabelle>Building</Tabelle>
</Member1>
</AuswahlMembers>
<CompareMembers>
<Anzahl>1</Anzahl>
<Member0>
<Spalte>Name</Spalte>
</Member0>
</CompareMembers>
<Equalsmembers>
<Anzahl>2</Anzahl>
<Member0>
<Spalte>Id</Spalte>
</Member0>
<Member1>
<Spalte>Name</Spalte>
</Member1>
</Equalsmembers>
<HashCodeMembers>
<Anzahl>2</Anzahl>
<Member0>
<Spalte>Name</Spalte>
</Member0>
<Member1>
<Spalte>Id</Spalte>
</Member1>
</HashCodeMembers>
<NReferenzen>
<Anzahl>1</Anzahl>
<NReferenz0>
<Alterable>true</Alterable>
<DeleteConfirmationRequired>true</DeleteConfirmationRequired>
<Extensible>true</Extensible>
<Id>1</Id>
<Panel>1</Panel>
<PanelType>standard</PanelType>
<PermitCreate>true</PermitCreate>
<Spalte>Building</Spalte>
<Tabelle>Room</Tabelle>
</NReferenz0>
</NReferenzen>
<OrderMembers>
<Anzahl>2</Anzahl>
<Member0>
<Richtung>ASC</Richtung>
<Spalte>Name</Spalte>
<Tabelle>Building</Tabelle>
</Member0>
<Member1>
<Richtung>DESC</Richtung>
<Spalte>Id</Spalte>
<Tabelle>Building</Tabelle>
</Member1>
</OrderMembers>
<ToComboStringMembers>
<Anzahl>1</Anzahl>
<Member0>
<Prefix><</Prefix>
<Spalte>Name</Spalte>
<Suffix>></Suffix>
</Member0>
</ToComboStringMembers>
<ToStringMembers>
<Anzahl>2</Anzahl>
<Member0>
<Prefix>Id=</Prefix>
<Spalte>Id</Spalte>
<Suffix>, </Suffix>
</Member0>
<Member1>
<Prefix>Name=</Prefix>
<Spalte>Name</Spalte>
<Suffix></Suffix>
</Member1>
</ToStringMembers>
</Codegenerator>
<ExternalTable>false</ExternalTable>
<Farben>
<Hintergrund>goldgelb</Hintergrund>
<Schrift>schwarz</Schrift>
</Farben>
<FirstGenerationDone>true</FirstGenerationDone>
<History>@changed OLI - Added.</History>
<InDevelopment>false</InDevelopment>
<Kommentar>Comment</Kommentar>
<NMRelation>false</NMRelation>
<Name>Building</Name>
<Options>
<Count>3</Count>
<Option0>
<Name>OPT1</Name>
<Parameter>ena</Parameter>
</Option0>
<Option1>
<Name>OPT2</Name>
<Parameter>dyo</Parameter>
</Option1>
<Option2>
<Name>OPT3</Name>
<Parameter>tres</Parameter>
</Option2>
</Options>
<Panels>
<Anzahl>2</Anzahl>
<Panel0>
<PanelClass>FORM</PanelClass>
<PanelNumber>0</PanelNumber>
<TabMnemonic>1</TabMnemonic>
<TabTitle>data</TabTitle>
<TabToolTipText>Hier können Sie die Daten des Objekt warten</TabToolTipText>
</Panel0>
<Panel1>
<PanelClass>LIST</PanelClass>
<PanelNumber>1</PanelNumber>
<TabMnemonic>A</TabMnemonic>
<TabTitle>rooms</TabTitle>
<TabToolTipText>The rooms</TabToolTipText>
</Panel1>
</Panels>
<Spalten>
<Anzahl>2</Anzahl>
<Codegenerator>
<ActiveInApplication>true</ActiveInApplication>
<AdditionalCreateConstraints>Constraint</AdditionalCreateConstraints>
<Codegeneratoroptionen>OPT</Codegeneratoroptionen>
<Codeverzeichnis>pack</Codeverzeichnis>
<Codieren>true</Codieren>
<DynamicCode>true</DynamicCode>
<Inherited>true</Inherited>
<Kontextname>Context</Kontextname>
<UniqueFormula>Id & Name</UniqueFormula>
</Codegenerator>
<Spalte0>
<AlterInBatch>true</AlterInBatch>
<Aufgehoben>true</Aufgehoben>
<CanBeReferenced>true</CanBeReferenced>
<Disabled>true</Disabled>
<Domain>Ident</Domain>
<Editordescriptor>
<Editormember>true</Editormember>
<LabelText>Id</LabelText>
<MaxCharacters>42</MaxCharacters>
<Mnemonic>I</Mnemonic>
<Position>1</Position>
<ReferenceWeight>wenige</ReferenceWeight>
<RessourceIdentifier>A</RessourceIdentifier>
<ToolTipText>The id</ToolTipText>
</Editordescriptor>
<ForeignKey>false</ForeignKey>
<Global>true</Global>
<GlobalId>true</GlobalId>
<HideReference>true</HideReference>
<History>@changed OLI - Added.</History>
<IndexSearchMember>true</IndexSearchMember>
<Indexed>true</Indexed>
<IndividualDefaultValue>4711</IndividualDefaultValue>
<Kodiert>true</Kodiert>
<Kommentar>bla bla$BR$laber$BR$s&uuml;lz</Kommentar>
<Konsistenz>
<Writeablemember>true</Writeablemember>
</Konsistenz>
<LastModificationField>true</LastModificationField>
<ListItemField>true</ListItemField>
<Name>Id</Name>
<NotNull>true</NotNull>
<PanelNumber>0</PanelNumber>
<Parameter>B</Parameter>
<PrimaryKey>true</PrimaryKey>
<RemovedStateField>true</RemovedStateField>
<SequenceForKeyGeneration>BuildingSeq</SequenceForKeyGeneration>
<SuppressForeignKeyConstraints>true</SuppressForeignKeyConstraints>
<TechnicalField>true</TechnicalField>
<Transient>true</Transient>
<Unique>true</Unique>
</Spalte0>
<Spalte1>
<AlterInBatch>false</AlterInBatch>
<Aufgehoben>false</Aufgehoben>
<CanBeReferenced>false</CanBeReferenced>
<Disabled>false</Disabled>
<Domain>Description</Domain>
<Editordescriptor>
<Editormember>false</Editormember>
<LabelText></LabelText>
<MaxCharacters>0</MaxCharacters>
<Mnemonic></Mnemonic>
<Position>0</Position>
<ReferenceWeight>keine</ReferenceWeight>
<RessourceIdentifier></RessourceIdentifier>
<ToolTipText></ToolTipText>
</Editordescriptor>
<ForeignKey>false</ForeignKey>
<Global>false</Global>
<GlobalId>false</GlobalId>
<HideReference>false</HideReference>
<History>@changed OLI - Added.</History>
<IndexSearchMember>false</IndexSearchMember>
<Indexed>false</Indexed>
<IndividualDefaultValue></IndividualDefaultValue>
<Kodiert>false</Kodiert>
<Kommentar></Kommentar>
<Konsistenz>
<Writeablemember>false</Writeablemember>
</Konsistenz>
<LastModificationField>false</LastModificationField>
<ListItemField>false</ListItemField>
<Name>Name</Name>
<NotNull>true</NotNull>
<PanelNumber>0</PanelNumber>
<Parameter></Parameter>
<PrimaryKey>false</PrimaryKey>
<RemovedStateField>false</RemovedStateField>
<SequenceForKeyGeneration></SequenceForKeyGeneration>
<SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints>
<TechnicalField>false</TechnicalField>
<Transient>false</Transient>
<Unique>false</Unique>
</Spalte1>
</Spalten>
<Stereotype>
<Anzahl>1</Anzahl>
</Stereotype>
<Stereotype0>Anchor</Stereotype0>
<Views>
<Anzahl>1</Anzahl>
<View0>
<Name>Main</Name>
<X>400</X>
<Y>125</Y>
</View0>
</Views>
</Tabelle0>
<Tabelle1>
<Aufgehoben>false</Aufgehoben>
<Codegenerator>
<AuswahlMembers>
<Anzahl>0</Anzahl>
</AuswahlMembers>
<CompareMembers>
<Anzahl>0</Anzahl>
</CompareMembers>
<Equalsmembers>
<Anzahl>0</Anzahl>
</Equalsmembers>
<HashCodeMembers>
<Anzahl>0</Anzahl>
</HashCodeMembers>
<NReferenzen>
<Anzahl>0</Anzahl>
</NReferenzen>
<OrderMembers>
<Anzahl>0</Anzahl>
</OrderMembers>
<ToComboStringMembers>
<Anzahl>0</Anzahl>
</ToComboStringMembers>
<ToStringMembers>
<Anzahl>0</Anzahl>
</ToStringMembers>
</Codegenerator>
<ExternalTable>false</ExternalTable>
<Farben>
<Hintergrund>pastell-gelb</Hintergrund>
<Schrift>schwarz</Schrift>
</Farben>
<FirstGenerationDone>false</FirstGenerationDone>
<History>@changed OLI - Added.</History>
<InDevelopment>false</InDevelopment>
<Kommentar></Kommentar>
<NMRelation>false</NMRelation>
<Name>Room</Name>
<Options>
<Count>0</Count>
</Options>
<Panels>
<Anzahl>1</Anzahl>
<Panel0>
<PanelClass></PanelClass>
<PanelNumber>0</PanelNumber>
<TabMnemonic>1</TabMnemonic>
<TabTitle>1.Daten</TabTitle>
<TabToolTipText>Hier können Sie die Daten des Objekt warten</TabToolTipText>
</Panel0>
</Panels>
<Spalten>
<Anzahl>4</Anzahl>
<Codegenerator>
<ActiveInApplication>false</ActiveInApplication>
<AdditionalCreateConstraints></AdditionalCreateConstraints>
<Codegeneratoroptionen></Codegeneratoroptionen>
<Codeverzeichnis>.</Codeverzeichnis>
<Codieren>true</Codieren>
<DynamicCode>true</DynamicCode>
<Inherited>false</Inherited>
<Kontextname></Kontextname>
<UniqueFormula></UniqueFormula>
</Codegenerator>
<Spalte0>
<AlterInBatch>false</AlterInBatch>
<Aufgehoben>false</Aufgehoben>
<CanBeReferenced>true</CanBeReferenced>
<Disabled>false</Disabled>
<Domain>Ident</Domain>
<Editordescriptor>
<Editormember>false</Editormember>
<LabelText></LabelText>
<MaxCharacters>0</MaxCharacters>
<Mnemonic></Mnemonic>
<Position>0</Position>
<ReferenceWeight>keine</ReferenceWeight>
<RessourceIdentifier></RessourceIdentifier>
<ToolTipText></ToolTipText>
</Editordescriptor>
<ForeignKey>false</ForeignKey>
<Global>false</Global>
<GlobalId>false</GlobalId>
<HideReference>false</HideReference>
<History>@changed OLI - Added.</History>
<IndexSearchMember>false</IndexSearchMember>
<Indexed>false</Indexed>
<IndividualDefaultValue></IndividualDefaultValue>
<Kodiert>false</Kodiert>
<Kommentar></Kommentar>
<Konsistenz>
<Writeablemember>false</Writeablemember>
</Konsistenz>
<LastModificationField>false</LastModificationField>
<ListItemField>false</ListItemField>
<Name>Id</Name>
<NotNull>true</NotNull>
<PanelNumber>0</PanelNumber>
<Parameter></Parameter>
<PrimaryKey>true</PrimaryKey>
<RemovedStateField>false</RemovedStateField>
<SequenceForKeyGeneration></SequenceForKeyGeneration>
<SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints>
<TechnicalField>false</TechnicalField>
<Transient>false</Transient>
<Unique>false</Unique>
</Spalte0>
<Spalte1>
<AlterInBatch>false</AlterInBatch>
<Aufgehoben>false</Aufgehoben>
<CanBeReferenced>false</CanBeReferenced>
<Disabled>false</Disabled>
<Domain>Ident</Domain>
<Editordescriptor>
<Editormember>false</Editormember>
<LabelText></LabelText>
<MaxCharacters>0</MaxCharacters>
<Mnemonic></Mnemonic>
<Position>0</Position>
<ReferenceWeight>keine</ReferenceWeight>
<RessourceIdentifier></RessourceIdentifier>
<ToolTipText></ToolTipText>
</Editordescriptor>
<ForeignKey>true</ForeignKey>
<Global>false</Global>
<GlobalId>false</GlobalId>
<HideReference>false</HideReference>
<History>@changed OLI - Added.</History>
<IndexSearchMember>false</IndexSearchMember>
<Indexed>false</Indexed>
<IndividualDefaultValue></IndividualDefaultValue>
<Kodiert>false</Kodiert>
<Kommentar></Kommentar>
<Konsistenz>
<Writeablemember>false</Writeablemember>
</Konsistenz>
<LastModificationField>false</LastModificationField>
<ListItemField>false</ListItemField>
<Name>Building</Name>
<NotNull>true</NotNull>
<PanelNumber>0</PanelNumber>
<Parameter></Parameter>
<PrimaryKey>false</PrimaryKey>
<Referenz>
<Direction0>UP</Direction0>
<Direction1>LEFT</Direction1>
<Offset0>25</Offset0>
<Offset1>25</Offset1>
<Spalte>Id</Spalte>
<Tabelle>Building</Tabelle>
<Views>
<Anzahl>1</Anzahl>
<View0>
<Direction0>UP</Direction0>
<Direction1>LEFT</Direction1>
<Name>Main</Name>
<Offset0>25</Offset0>
<Offset1>25</Offset1>
<Points>
<Anzahl>1</Anzahl>
<Point1>
<X>275</X>
<Y>150</Y>
</Point1>
</Points>
</View0>
</Views>
</Referenz>
<RemovedStateField>false</RemovedStateField>
<SequenceForKeyGeneration></SequenceForKeyGeneration>
<SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints>
<TechnicalField>false</TechnicalField>
<Transient>false</Transient>
<Unique>false</Unique>
</Spalte1>
<Spalte2>
<AlterInBatch>false</AlterInBatch>
<Aufgehoben>false</Aufgehoben>
<CanBeReferenced>false</CanBeReferenced>
<Disabled>false</Disabled>
<Domain>Boolean</Domain>
<Editordescriptor>
<Editormember>false</Editormember>
<LabelText></LabelText>
<MaxCharacters>0</MaxCharacters>
<Mnemonic></Mnemonic>
<Position>0</Position>
<ReferenceWeight>keine</ReferenceWeight>
<RessourceIdentifier></RessourceIdentifier>
<ToolTipText></ToolTipText>
</Editordescriptor>
<ForeignKey>false</ForeignKey>
<Global>false</Global>
<GlobalId>false</GlobalId>
<HideReference>false</HideReference>
<History>@changed OLI - Added.</History>
<IndexSearchMember>false</IndexSearchMember>
<Indexed>false</Indexed>
<IndividualDefaultValue>FALSE</IndividualDefaultValue>
<Kodiert>false</Kodiert>
<Kommentar></Kommentar>
<Konsistenz>
<Writeablemember>false</Writeablemember>
</Konsistenz>
<LastModificationField>false</LastModificationField>
<ListItemField>false</ListItemField>
<Name>Assigned</Name>
<NotNull>false</NotNull>
<PanelNumber>0</PanelNumber>
<Parameter></Parameter>
<PrimaryKey>false</PrimaryKey>
<RemovedStateField>false</RemovedStateField>
<SequenceForKeyGeneration></SequenceForKeyGeneration>
<SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints>
<TechnicalField>false</TechnicalField>
<Transient>false</Transient>
<Unique>false</Unique>
</Spalte2>
<Spalte3>
<AlterInBatch>false</AlterInBatch>
<Aufgehoben>false</Aufgehoben>
<CanBeReferenced>false</CanBeReferenced>
<Disabled>false</Disabled>
<Domain>Description</Domain>
<Editordescriptor>
<Editormember>false</Editormember>
<LabelText></LabelText>
<MaxCharacters>0</MaxCharacters>
<Mnemonic></Mnemonic>
<Position>0</Position>
<ReferenceWeight>keine</ReferenceWeight>
<RessourceIdentifier></RessourceIdentifier>
<ToolTipText></ToolTipText>
</Editordescriptor>
<ForeignKey>false</ForeignKey>
<Global>false</Global>
<GlobalId>false</GlobalId>
<HideReference>false</HideReference>
<History>@changed OLI - Added.</History>
<IndexSearchMember>false</IndexSearchMember>
<Indexed>false</Indexed>
<IndividualDefaultValue></IndividualDefaultValue>
<Kodiert>false</Kodiert>
<Kommentar></Kommentar>
<Konsistenz>
<Writeablemember>false</Writeablemember>
</Konsistenz>
<LastModificationField>false</LastModificationField>
<ListItemField>false</ListItemField>
<Name>RoomNumber</Name>
<NotNull>true</NotNull>
<PanelNumber>0</PanelNumber>
<Parameter></Parameter>
<PrimaryKey>false</PrimaryKey>
<RemovedStateField>false</RemovedStateField>
<SequenceForKeyGeneration></SequenceForKeyGeneration>
<SuppressForeignKeyConstraints>false</SuppressForeignKeyConstraints>
<TechnicalField>false</TechnicalField>
<Transient>false</Transient>
<Unique>false</Unique>
</Spalte3>
</Spalten>
<Stereotype>
<Anzahl>1</Anzahl>
</Stereotype>
<Stereotype0>ListObject</Stereotype0>
<Views>
<Anzahl>1</Anzahl>
<View0>
<Name>Main</Name>
<X>250</X>
<Y>375</Y>
</View0>
</Views>
</Tabelle1>
</Tabellen>
<Views>
<Anzahl>1</Anzahl>
<View0>
<Beschreibung>Diese Sicht beinhaltet alle Tabellen des Schemas</Beschreibung>
<Name>Main</Name>
<ReferenzierteSpaltenAnzeigen>true</ReferenzierteSpaltenAnzeigen>
<Tabelle0>Building</Tabelle0>
<Tabelle1>Room</Tabelle1>
<Tabellenanzahl>2</Tabellenanzahl>
<TechnischeSpaltenVerstecken>false</TechnischeSpaltenVerstecken>
</View0>
</Views>
</Diagramm>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.